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/bugreport.yaml b/.github/ISSUE_TEMPLATE/bugreport.yaml index f31971ab2a..e3d60e41e0 100644 --- a/.github/ISSUE_TEMPLATE/bugreport.yaml +++ b/.github/ISSUE_TEMPLATE/bugreport.yaml @@ -1,6 +1,6 @@ name: Bug Report description: Create a report to help us fix issues. -labels: "Type: Bug" +labels: ["Type: Bug", "Status: Triage"] body: - type: markdown attributes: @@ -14,7 +14,7 @@ body: attributes: label: Application Version description: The version of Cura this issue occurs with. - placeholder: 4.9.0 + placeholder: 5.0.0 validations: required: true - type: input diff --git a/.github/no-response.yml b/.github/no-response.yml deleted file mode 100644 index a386aaa7ba..0000000000 --- a/.github/no-response.yml +++ /dev/null @@ -1,13 +0,0 @@ -# Configuration for probot-no-response - https://github.com/probot/no-response - -# Number of days of inactivity before an Issue is closed for lack of response -daysUntilClose: 14 -# Label requiring a response -responseRequiredLabel: 'Status: Needs Info' -# Comment to post when closing an Issue for lack of response. Set to `false` to disable -closeComment: > - This issue has been automatically closed because there has been no response - to our request for more information from the original author. With only the - information that is currently in the issue, we don't have enough information - to take action. Please reach out if you have or find the answers we need so - that we can investigate further. diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 6dbe51a09e..0000000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,21 +0,0 @@ ---- -name: CI -on: - push: - branches: - - master - - 'WIP**' - - '4.*' - - 'CURA-*' - pull_request: -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..da641c5c78 --- /dev/null +++ b/.github/workflows/conan-package-create.yml @@ -0,0 +1,144 @@ +name: Create and Upload Conan package + +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_clean_local_cache: + required: false + type: boolean + default: false + + conan_upload_community: + required: false + default: true + type: boolean + + create_from_source: + required: false + default: false + type: boolean + +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 + +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 and Create default Conan profile + run: | + pip install -r .github/workflows/requirements-conan-package.txt + conan profile new default --detect + + - 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-${{ runner.os }}-${{ 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-${{ runner.os }}-${{ runner.arch }}-create-cache + + - name: Install MacOS system requirements + if: ${{ runner.os == 'Macos' }} + run: brew install autoconf automake ninja + + - name: Install Linux system requirements + if: ${{ runner.os == 'Linux' }} + run: | + 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: 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: Create the Packages + if: ${{ !inputs.create_from_source }} + run: conan install ${{ inputs.recipe_id_full }} --build=missing --update + + - name: Create the Packages (from source) + if: ${{ inputs.create_from_source }} + run: conan create . ${{ inputs.recipe_id_full }} --build=missing --update + + - name: Remove the latest alias + if: ${{ inputs.create_from_source && inputs.recipe_id_latest != '' && runner.os == 'Linux' }} + run: | + conan remove ${{ inputs.recipe_id_latest }} -r cura -f || true + conan remove ${{ inputs.recipe_id_latest }} -r cura-ce -f || true + + - name: Create the latest alias + if: ${{ inputs.create_from_source && inputs.recipe_id_latest != '' && always() }} + run: conan alias ${{ inputs.recipe_id_latest }} ${{ inputs.recipe_id_full }} + + - name: Upload the Package(s) + if: always() + run: conan upload "*" -r cura --all -c + + - name: Upload the Package(s) community + if: ${{ always() && inputs.conan_upload_community == 'true' }} + run: conan upload "*" -r cura-ce -c diff --git a/.github/workflows/conan-package.yml b/.github/workflows/conan-package.yml new file mode 100644 index 0000000000..d7f4557b81 --- /dev/null +++ b/.github/workflows/conan-package.yml @@ -0,0 +1,103 @@ +--- +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].[0-9]+' + +jobs: + conan-recipe-version: + uses: ultimaker/cura/.github/workflows/conan-recipe-version.yml@main + with: + project_name: cura + + conan-package-export: + needs: [ conan-recipe-version ] + uses: ultimaker/cura/.github/workflows/conan-recipe-export.yml@main + with: + recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} + recipe_id_latest: ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} + runs_on: 'ubuntu-20.04' + python_version: '3.10.x' + conan_logging_level: 'info' + secrets: inherit + + conan-package-create-linux: + if: ${{ (github.event_name == 'push' && (github.ref_name == 'main' || github.ref_name == 'master' || needs.conan-recipe-version.outputs.is_release_branch == 'true')) || (github.event_name == 'workflow_dispatch' && inputs.create_binaries_linux) }} + needs: [ conan-recipe-version, conan-package-export ] + + uses: ultimaker/cura/.github/workflows/conan-package-create.yml@main + with: + recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} + runs_on: 'ubuntu-20.04' + python_version: '3.10.x' + conan_logging_level: 'info' + secrets: inherit + + notify-export: + if: ${{ always() }} + needs: [ conan-recipe-version, conan-package-export ] + + uses: ultimaker/cura/.github/workflows/notify.yml@main + with: + success: ${{ contains(join(needs.*.result, ','), 'success') }} + success_title: "New Conan recipe exported in ${{ github.repository }}" + success_body: "Exported ${{ needs.conan-recipe-version.outputs.recipe_id_full }}" + failure_title: "Failed to export Conan Export in ${{ github.repository }}" + failure_body: "Failed to exported ${{ needs.conan-recipe-version.outputs.recipe_id_full }}" + secrets: inherit + + 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')) || (github.event_name == 'workflow_dispatch' && inputs.create_binaries_linux)) }} + 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..cab21604fe --- /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_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 + +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 .github/workflows/requirements-conan-package.txt + conan profile new default --detect + + - 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: 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: Remove the latest alias + if: ${{ inputs.recipe_id_latest != '' && runner.os == 'Linux' }} + run: | + conan remove ${{ inputs.recipe_id_latest }} -r cura -f || true + conan remove ${{ inputs.recipe_id_latest }} -r cura-ce -f || true + + - name: Create the latest alias + if: ${{ inputs.recipe_id_latest != '' && always() }} + run: conan alias ${{ inputs.recipe_id_latest }} ${{ inputs.recipe_id_full }} + + - name: Upload the Package(s) + if: always() + run: conan upload "*" -r cura --all -c + + - name: Upload the Package(s) community + if: ${{ always() && inputs.conan_upload_community == 'true' }} + run: conan upload "*" -r cura-ce -c diff --git a/.github/workflows/conan-recipe-version.yml b/.github/workflows/conan-recipe-version.yml new file mode 100644 index 0000000000..fe85766db0 --- /dev/null +++ b/.github/workflows/conan-recipe-version.yml @@ -0,0 +1,172 @@ +name: Get Conan Recipe Version + +on: + workflow_call: + inputs: + project_name: + required: true + 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 }} + + recipe_user: + description: "The conan user" + value: ${{ jobs.get-semver.outputs.user }} + + recipe_channel: + description: "The conan channel" + value: ${{ jobs.get-semver.outputs.channel }} + +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 + with: + ref: ${{ github.head_ref }} + fetch-depth: 0 + + - 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 + from conans import tools + from conans.errors import ConanException + from git import Repo + + repo = Repo('.') + user = "${{ github.repository_owner }}".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 + + # FIXME: for when we push a tag (such as an release) + channel = "testing" + if is_tag: + branch_version = tools.Version("${{ github.ref_name }}") + is_release_branch = True + channel = "_" + user = "_" + else: + try: + branch_version = tools.Version(repo.active_branch.name) + except ConanException: + branch_version = tools.Version('0.0.0') + if "${{ github.ref_name }}" == f"{branch_version.major}.{branch_version.minor}": + channel = 'stable' + is_release_branch = True + elif "${{ github.ref_name }}" in ("main", "master"): + channel = 'testing' + else: + channel = repo.active_branch.name.split("_")[0].replace("-", "_").lower() + + if event_name == "pull_request": + channel = f"pr_{issue_number}" + + # %% Get the actual version + latest_branch_version = tools.Version("0.0.0") + latest_branch_tag = None + for tag in repo.git.tag(merged = True).splitlines(): + try: + version = tools.Version(tag) + except ConanException: + continue + if version > latest_branch_version: + latest_branch_version = version + latest_branch_tag = repo.tag(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 + + if no_commits == 0: + # This is a release + actual_version = f"{latest_branch_version.major}.{latest_branch_version.minor}.{latest_branch_version.patch}" + if channel == "stable": + user = "_" + channel = "_" + else: + if event_name == "pull_request": + actual_version = f"{latest_branch_version.major}.{latest_branch_version.minor}.{latest_branch_version.patch}-{latest_branch_version.prerelease.lower()}+pr_{issue_number}_{no_commits}" + else: + if channel in ("stable", "_", ""): + channel_metadata = f"{no_commits}" + else: + channel_metadata = f"{channel}_{no_commits}" + # FIXME: for when we create a new release branch + if latest_branch_version.prerelease == "": + bump_up_minor = int(latest_branch_version.minor) + 1 + actual_version = f"{latest_branch_version.major}.{bump_up_minor}.{latest_branch_version.patch}-alpha+{channel_metadata}" + else: + actual_version = f"{latest_branch_version.major}.{latest_branch_version.minor}.{latest_branch_version.patch}-{latest_branch_version.prerelease.lower()}+{channel_metadata}" + + # %% print to output + cmd_name = ["echo", f"::set-output name=name::{project_name}"] + subprocess.call(cmd_name) + cmd_version = ["echo", f"::set-output name=version::{actual_version}"] + subprocess.call(cmd_version) + cmd_channel = ["echo", f"::set-output name=channel::{channel}"] + subprocess.call(cmd_channel) + cmd_id_full= ["echo", f"::set-output name=recipe_id_full::{project_name}/{actual_version}@{user}/{channel}"] + subprocess.call(cmd_id_full) + cmd_id_latest = ["echo", f"::set-output name=recipe_id_latest::{project_name}/latest@{user}/{channel}"] + subprocess.call(cmd_id_latest) + cmd_semver_full = ["echo", f"::set-output name=semver_full::{actual_version}"] + subprocess.call(cmd_semver_full) + cmd_is_release_branch = ["echo", f"::set-output name=is_release_branch::{str(is_release_branch).lower()}"] + subprocess.call(cmd_is_release_branch) + + print("::group::Conan Recipe Information") + print(f"name = {project_name}") + print(f"version = {actual_version}") + print(f"user = {user}") + print(f"channel = {channel}") + print(f"recipe_id_full = {project_name}/{actual_version}@{user}/{channel}") + print(f"recipe_id_latest = {project_name}/latest@{user}/{channel}") + print(f"semver_full = {actual_version}") + print(f"is_release_branch = {str(is_release_branch).lower()}") + print("::endgroup::") + shell: python diff --git a/.github/workflows/cura-installer.yml b/.github/workflows/cura-installer.yml new file mode 100644 index 0000000000..2941d34e7f --- /dev/null +++ b/.github/workflows/cura-installer.yml @@ -0,0 +1,245 @@ +name: Cura Installer + +on: + workflow_dispatch: + inputs: + cura_conan_version: + description: 'Cura Conan Version' + default: 'cura/latest@ultimaker/testing' + required: true + conan_args: + description: 'Conan args: eq.: --require-override' + default: '' + required: false + conan_config: + description: 'Conan config branch to use' + default: '' + required: false + enterprise: + description: 'Build Cura as an Enterprise edition' + required: true + default: false + type: boolean + staging: + description: 'Use staging API' + required: true + default: false + type: boolean + installer: + description: 'Create the installer' + required: true + default: false + type: boolean + + # Run the nightly at 3:25 UTC on working days + #FIXME: Provide the same default values as the workflow dispatch + schedule: + - cron: '25 3 * * 1-5' + +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 + CODESIGN_IDENTITY: ${{ secrets.CODESIGN_IDENTITY }} + 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_USER: ${{ secrets.MACOS_CERT_USER }} + GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} + MACOS_CERT_PASSPHRASE: ${{ secrets.MACOS_CERT_PASSPHRASE }} + +jobs: + cura-installer-create: + runs-on: ${{ matrix.os }} + + strategy: + fail-fast: false + matrix: + include: + - { os: macos-11, os_id: 'mac' } + - { os: windows-2022, os_id: 'win64' } + - { os: ubuntu-20.04, os_id: 'linux' } + - { os: ubuntu-22.04, os_id: 'linux-modern' } + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - 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 + conan profile new default --detect + + - 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-${{ runner.os }}-${{ runner.arch }}-installer-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-${{ runner.os }}-${{ runner.arch }}-installer-cache + + - name: Install MacOS system requirements + if: ${{ runner.os == 'Macos' }} + run: brew install autoconf automake ninja create-dmg + + - name: Install Linux system requirements + if: ${{ runner.os == 'Linux' }} + run: | + 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: Configure GPG Key Linux (Bash) + if: ${{ runner.os == 'Linux' }} + run: echo -n "$GPG_PRIVATE_KEY" | base64 --decode | gpg --import + + - name: Configure Macos keychain (Bash) + id: macos-keychain + if: ${{ runner.os == 'Macos' }} + uses: apple-actions/import-codesign-certs@v1 + with: + 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: 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: Create the Packages + run: conan install ${{ inputs.cura_conan_version }} ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=${{ inputs.enterprise }} -o cura:staging=${{ inputs.staging }} --json "cura_inst/conan_install_info.json" + + - name: Set Environment variables for Cura (bash) + if: ${{ runner.os != 'Windows' }} + run: | + . ./cura_inst/bin/activate_github_actions_env.sh + . ./cura_inst/bin/activate_github_actions_version_env.sh + + - name: Set Environment variables for Cura (Powershell) + if: ${{ runner.os == 'Windows' }} + run: | + .\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.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 + + - name: Archive the artifacts (bash) + if: ${{ github.event.inputs.installer == 'false' && runner.os != 'Windows' }} + run: tar -zcf "./Ultimaker-Cura-$CURA_VERSION_FULL-${{ matrix.os_id }}.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-${{ matrix.os_id }}.zip" + working-directory: dist + + - name: Create the Windows exe installer (Powershell) + if: ${{ github.event.inputs.installer == 'true' && runner.os == 'Windows' }} + run: | + python ..\cura_inst\packaging\NSIS\create_windows_installer.py ../cura_inst . "Ultimaker-Cura-$Env:CURA_VERSION_FULL-${{ matrix.os_id }}.exe" + 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 "Ultimaker-Cura-$CURA_VERSION_FULL-${{ matrix.os_id }}.AppImage" + 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_noterize.py ../cura_inst . "Ultimaker-Cura-$CURA_VERSION_FULL-${{ matrix.os_id }}.dmg" + working-directory: dist + + - name: Upload the artifacts + uses: actions/upload-artifact@v3 + with: + name: Ultimaker-Cura-${{ env.CURA_VERSION_FULL }}-${{ matrix.os_id }} + path: | + dist/*.tar.gz + dist/*.zip + dist/*.exe + dist/*.msi + dist/*.dmg + dist/*.AppImage + dist/*.asc + 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 new file mode 100644 index 0000000000..b22c825c8c --- /dev/null +++ b/.github/workflows/no-response.yml @@ -0,0 +1,31 @@ +name: No Response + +# Both `issue_comment` and `scheduled` event types are required for this Action +# to work properly. +on: + issue_comment: + types: [created] + schedule: + # Schedule for ten minutes after the hour, every hour + - cron: '* */12 * * *' + +# By specifying the access of one of the scopes, all of those that are not +# specified are set to 'none'. +permissions: + issues: write + +jobs: + noResponse: + runs-on: ubuntu-latest + steps: + - uses: lee-dohm/no-response@v0.5.0 + with: + token: ${{ github.token }} + daysUntilClose: 14 + responseRequiredLabel: 'Status: Needs Info' + closeComment: > + This issue has been automatically closed because there has been no response + to our request for more information from the original author. With only the + information that is currently in the issue, we don't have enough information + to take action. Please reach out if you have or find the answers we need so + that we can investigate further. 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/requirements-conan-package.txt b/.github/workflows/requirements-conan-package.txt new file mode 100644 index 0000000000..9ac91d2704 --- /dev/null +++ b/.github/workflows/requirements-conan-package.txt @@ -0,0 +1,2 @@ +conan!=1.51.0 +sip==6.5.1 diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml new file mode 100644 index 0000000000..20ea83bdb1 --- /dev/null +++ b/.github/workflows/unit-test.yml @@ -0,0 +1,164 @@ +--- +name: unit-test +# FIXME: This should be a reusable workflow + +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 + +jobs: + conan-recipe-version: + uses: ultimaker/cura/.github/workflows/conan-recipe-version.yml@main + with: + project_name: cura + + testing: + runs-on: ubuntu-20.04 + needs: [ conan-recipe-version ] + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Setup Python and pip + uses: actions/setup-python@v4 + with: + python-version: '3.10.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 + conan profile new default --detect + 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 + + - name: Install Linux system requirements + if: ${{ runner.os == 'Linux' }} + run: 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 -y + + - name: Get Conan configuration + run: conan config install https://github.com/Ultimaker/conan-config.git + + - 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: Upload Test Results + if: always() + uses: actions/upload-artifact@v3 + with: + name: Test Results + path: "tests/**/*.xml" + + publish-test-results: + runs-on: ubuntu-20.04 + needs: [ testing ] + if: success() || failure() + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Setup Python and pip + uses: actions/setup-python@v4 + with: + python-version: '3.10.x' + architecture: 'x64' + cache: 'pip' + cache-dependency-path: .github/workflows/requirements-conan-package.txt + + - name: Download Artifacts + uses: actions/download-artifact@v3 + with: + path: artifacts + + - name: Publish Unit Test Results + id: test-results + uses: EnricoMi/publish-unit-test-result-action@v1 + with: + files: "artifacts/**/*.xml" + + - name: Conclusion + run: echo "Conclusion is ${{ fromJSON( steps.test-results.outputs.json ).conclusion }}" diff --git a/.gitignore b/.gitignore index 51b98e330e..26fe1ccf4a 100644 --- a/.gitignore +++ b/.gitignore @@ -38,6 +38,7 @@ cura.desktop .settings #Externally located plug-ins commonly installed by our devs. +plugins/BarbarianPlugin plugins/cura-big-flame-graph plugins/cura-camera-position plugins/cura-god-mode-plugin @@ -64,6 +65,7 @@ plugins/CuraRemoteSupport plugins/ModelCutter plugins/PrintProfileCreator plugins/MultiPrintPlugin +plugins/CuraOrientationPlugin #Build stuff CMakeCache.txt @@ -87,4 +89,13 @@ 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/ diff --git a/CITATION.cff b/CITATION.cff index b97fdf7c49..7efa45fda7 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -1,11 +1,30 @@ # YAML 1.2 --- -authors: -cff-version: "1.1.0" -date-released: 2021-06-28 -license: "LGPL-3.0" -message: "If you use this software, please cite it using these metadata." -repository-code: "https://github.com/ultimaker/cura/" -title: "Ultimaker Cura" -version: "4.12.0" +cff-version: 1.2.0 +type: software +message: >- + If you use this software, please cite it using the + metadata from this file. +title: Ultimaker Cura +abstract: >- + A state-of-the-art slicer application built on top + of the Uranium framework. +authors: + - name: Ultimaker B.V. +contact: + - email: info@ultimaker.com + name: "Ultimaker B.V." +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' +keywords: + - Ultimaker + - Cura + - Uranium + - Arachne + - 3DPrinting + - Slicer ... diff --git a/CMakeLists.txt b/CMakeLists.txt index f61737fbcf..9d6e3c709b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,8 @@ # Copyright (c) 2022 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. +# 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) diff --git a/CuraVersion.py.jinja b/CuraVersion.py.jinja new file mode 100644 index 0000000000..1c30a0b5af --- /dev/null +++ b/CuraVersion.py.jinja @@ -0,0 +1,13 @@ +# Copyright (c) 2022 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_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 }}" 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/GitVersion.yml b/GitVersion.yml new file mode 100644 index 0000000000..6f94c14540 --- /dev/null +++ b/GitVersion.yml @@ -0,0 +1,55 @@ +mode: ContinuousDelivery +next-version: 5.1 +branches: + main: + regex: ^main$ + mode: ContinuousDelivery + tag: alpha + increment: None + prevent-increment-of-merged-branch-version: true + track-merge-target: false + source-branches: [ ] + tracks-release-branches: false + is-release-branch: false + is-mainline: true + pre-release-weight: 55000 + develop: + regex: ^CURA-.*$ + mode: ContinuousDelivery + tag: alpha + increment: None + prevent-increment-of-merged-branch-version: false + track-merge-target: true + source-branches: [ 'main' ] + tracks-release-branches: true + is-release-branch: false + is-mainline: false + pre-release-weight: 0 + release: + regex: ^[\d]+\.[\d]+$ + mode: ContinuousDelivery + tag: beta + increment: None + prevent-increment-of-merged-branch-version: true + track-merge-target: false + source-branches: [ 'main' ] + tracks-release-branches: false + is-release-branch: true + is-mainline: false + pre-release-weight: 30000 + pull-request-main: + regex: ^(pull|pull\-requests|pr)[/-] + mode: ContinuousDelivery + tag: alpha+ + increment: Inherit + prevent-increment-of-merged-branch-version: true + tag-number-pattern: '[/-](?\d+)[-/]' + track-merge-target: true + source-branches: [ 'main' ] + tracks-release-branches: false + is-release-branch: false + is-mainline: false + pre-release-weight: 30000 +ignore: + sha: [ ] +merge-message-formats: { } diff --git a/README.md b/README.md index 1090d13aa7..8ec3101ef6 100644 --- a/README.md +++ b/README.md @@ -1,61 +1,64 @@ -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. +# 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) -Logging Issues ------------- +## 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) + * `%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 +If the Cura user interface still starts, you can also reach this directory from the application menu in Help -> Show settings folder. +An alternative is to install the [ExtensiveSupportLogging plugin](https://marketplace.ultimaker.com/app/cura/plugins/UltimakerPackages/ExtensiveSupportLogging) +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. -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). - -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. - -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. - -Build scripts -------------- -Please check out [cura-build](https://github.com/Ultimaker/cura-build) for detailed building instructions. - -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.) - -Running from Source -------------- +## 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. -Plugins -------------- +## 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. +## 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. -Configuring Cura ----------------- +## Configuring Cura Please check out [Wiki page](https://github.com/Ultimaker/Cura/wiki/Cura-Settings) about configuration options for developers. -Translating Cura ----------------- +## 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. +## License +![License](https://img.shields.io/github/license/ultimaker/cura?style=flat) +Cura is released under terms of the LGPLv3 or higher. A copy of this license should be included with the software. Terms of the license can be found in the LICENSE file. Or at +http://www.gnu.org/licenses/lgpl.html + +> But in general it boils down to: +> **You need to share the source of any Cura modifications** diff --git a/Ultimaker-Cura.spec.jinja b/Ultimaker-Cura.spec.jinja new file mode 100644 index 0000000000..74e4fd098b --- /dev/null +++ b/Ultimaker-Cura.spec.jinja @@ -0,0 +1,273 @@ +# -*- 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("{{ venv_script_path }}").glob("*.so*")]) +binaries.extend([(str(bin), ".") for bin in Path("{{ venv_script_path }}").glob("*.dll")]) +binaries.extend([(str(bin), ".") for bin in Path("{{ 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", + "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='{{ name }}.app', + icon={{ icon }}, + bundle_identifier={{ osx_bundle_identifier }}, + version={{ version }}, + info_plist={ + 'CFBundleDisplayName': '{{ display_name }}', + 'NSPrincipalClass': 'NSApplication', + 'CFBundleDevelopmentRegion': 'English', + 'CFBundleExecutable': '{{ name }}', + 'CFBundleInfoDictionaryVersion': '6.0', + 'CFBundlePackageType': 'APPL', + '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/com.ultimaker.cura.appdata.xml b/com.ultimaker.cura.appdata.xml index bdd25e5242..3af0e9c352 100644 --- a/com.ultimaker.cura.appdata.xml +++ b/com.ultimaker.cura.appdata.xml @@ -25,9 +25,10 @@ - https://raw.githubusercontent.com/Ultimaker/Cura/master/screenshot.png + 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/conandata.yml b/conandata.yml new file mode 100644 index 0000000000..7db6e9a28d --- /dev/null +++ b/conandata.yml @@ -0,0 +1,288 @@ +--- +# Usage: defaults to None +# If you're on a release branch create an entry for that **version** e.q.: `5.1.0` update the requirements (use pinned versions, not latest) +# also create a beta entry for that **version** e.q.: `5.1.0-beta`, update the requirements (use the /(latest)@ultimaker/stable) +# +# If you're working on a feature/bugfix branch from a release branch, create an entry for that **channel**, update the requirements (use +# the /(latest)@ultimaker/stable) +# +# If you're working on a feature/bugfix branch from a main branch, it is optional to create an entry for that **channel**, update the +# requirements (use the /(latest)@ultimaker/testing) +# +# Subject to change in the future! +"None": + requirements: + - "pyarcus/(latest)@ultimaker/testing" + - "curaengine/(latest)@ultimaker/testing" + - "pysavitar/(latest)@ultimaker/testing" + - "pynest2d/(latest)@ultimaker/testing" + - "uranium/(latest)@ultimaker/testing" + - "fdm_materials/(latest)@ultimaker/testing" + - "cura_binary_data/(latest)@ultimaker/testing" + - "cpython/3.10.4" + runinfo: + entrypoint: "cura_app.py" + pyinstaller: + datas: + cura_plugins: + package: "cura" + src: "plugins" + dst: "share/cura/plugins" + cura_resources: + package: "cura" + src: "resources" + dst: "share/cura/resources" + 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: "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" +"5.2.0-alpha": + requirements: + - "pyarcus/(latest)@ultimaker/testing" + - "curaengine/(latest)@ultimaker/testing" + - "pysavitar/(latest)@ultimaker/testing" + - "pynest2d/(latest)@ultimaker/testing" + - "uranium/(latest)@ultimaker/testing" + - "fdm_materials/(latest)@ultimaker/testing" + - "cura_binary_data/(latest)@ultimaker/testing" + - "cpython/3.10.4" + runinfo: + entrypoint: "cura_app.py" + pyinstaller: + datas: + cura_plugins: + package: "cura" + src: "plugins" + dst: "share/cura/plugins" + cura_resources: + package: "cura" + src: "resources" + dst: "share/cura/resources" + 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: "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" +"5.1.0": + requirements: + - "arcus/5.1.0" + - "curaengine/5.1.0" + - "savitar/5.1.0" + - "pynest2d/5.1.0" + - "uranium/5.1.0" + - "fdm_materials/5.1.0" + - "cura_binary_data/5.1.0" + - "cpython/3.10.4" + runinfo: + entrypoint: "cura_app.py" + pyinstaller: + datas: + cura_plugins: + package: "cura" + src: "plugins" + dst: "share/cura/plugins" + cura_resources: + package: "cura" + src: "resources" + dst: "share/cura/resources" + 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: "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" diff --git a/conanfile.py b/conanfile.py new file mode 100644 index 0000000000..c59a22eef2 --- /dev/null +++ b/conanfile.py @@ -0,0 +1,423 @@ +import os +import sys +from pathlib import Path + +from io import StringIO + +from platform import python_version + +from jinja2 import Template + +from conans import tools +from conan import ConanFile +from conan.tools import files +from conan.tools.env import VirtualRunEnv, Environment +from conan.errors import ConanInvalidConfiguration + +required_conan_version = ">=1.47.0" + + +class CuraConan(ConanFile): + name = "cura" + license = "LGPL-3.0" + author = "Ultimaker B.V." + url = "https://github.com/Ultimaker/cura" + description = "3D printer / slicing GUI built on top of the Uranium framework" + topics = ("conan", "python", "pyqt5", "qt", "qml", "3d-printing", "slicer") + build_policy = "missing" + exports = "LICENSE*", "Ultimaker-Cura.spec.jinja", "CuraVersion.py.jinja" + settings = "os", "compiler", "build_type", "arch" + no_copy_source = True # We won't build so no need to copy sources to the build folder + + # FIXME: Remove specific branch once merged to main + # Extending the conanfile with the UMBaseConanfile https://github.com/Ultimaker/conan-ultimaker-index/tree/CURA-9177_Fix_CI_CD/recipes/umbase + python_requires = "umbase/0.1.5@ultimaker/testing" + 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 + } + default_options = { + "enterprise": "False", + "staging": "False", + "devtools": False, + "cloud_api_version": "1", + "display_name": "Ultimaker Cura", + "cura_debug_mode": False # Not yet implemented + } + scm = { + "type": "git", + "subfolder": ".", + "url": "auto", + "revision": "auto" + } + + # TODO: Add unit tests (but they need a different jinja template + _pycharm_targets = [{ + "name": "cura", + "module_name": "Cura", + "script_name": "cura_app.py", + }, { + "name": "cura_external_engine", + "module_name": "Cura", + "script_name": "cura_app.py", + "parameters": "--external-backend" + } + ] + + # 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 _staging(self): + return self.options.staging in ["True", 'true'] + + @property + def _enterprise(self): + return self.options.enterprise in ["True", 'true'] + + @property + def _cloud_api_root(self): + return "https://api-staging.ultimaker.com" if self._staging else "https://api.ultimaker.com" + + @property + def _cloud_account_api_root(self): + return "https://account-staging.ultimaker.com" if self._staging else "https://account.ultimaker.com" + + @property + def _marketplace_root(self): + return "https://marketplace-staging.ultimaker.com" if self._staging else "https://marketplace.ultimaker.com" + + @property + def _digital_factory_url(self): + return "https://digitalfactory-staging.ultimaker.com" if self._staging else "https://digitalfactory.ultimaker.com" + + @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 = tools.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 + + def _generate_cura_version(self, location): + with open(Path(__file__).parent.joinpath("CuraVersion.py.jinja"), "r") as f: + cura_version_py = Template(f.read()) + + with open(Path(location, "CuraVersion.py"), "w") as f: + f.write(cura_version_py.render( + cura_app_name = self.name, + cura_app_display_name = self.options.display_name, + cura_version = self.version, + cura_build_type = "Enterprise" if self._enterprise else "", + cura_debug_mode = self.options.cura_debug_mode, + cura_cloud_api_root = self._cloud_api_root, + cura_cloud_api_version = self.options.cloud_api_version, + cura_cloud_account_api_root = self._cloud_account_api_root, + cura_marketplace_root = self._marketplace_root, + cura_digital_factory_url = self._digital_factory_url)) + + def _generate_pyinstaller_spec(self, location, entrypoint_location, icon_path, entitlements_file): + pyinstaller_metadata = self._um_data()["pyinstaller"] + datas = [(str(self._base_dir.joinpath("conan_install_info.json")), ".")] + for data in pyinstaller_metadata["datas"].values(): + if "package" in data: # get the paths from conan package + if data["package"] == self.name: + if self.in_local_cache: + src_path = Path(self.package_folder, data["src"]) + else: + src_path = Path(self.source_folder, data["src"]) + else: + src_path = Path(self.deps_cpp_info[data["package"]].rootpath, data["src"]) + elif "root" in data: # get the paths relative from the sourcefolder + src_path = Path(self.source_folder, data["root"], data["src"]) + else: + continue + if 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 = Path(self.deps_cpp_info[binary["package"]].rootpath, binary["src"]) + elif "root" in binary: # get the paths relative from the sourcefolder + src_path = Path(self.source_folder, binary["root"], binary["src"]) + else: + continue + if not src_path.exists(): + continue + for bin in src_path.glob(binary["binary"] + ".*[exe|dll|so|dylib]"): + binaries.append((str(bin), binary["dst"])) + for bin in src_path.glob(binary["binary"]): + binaries.append((str(bin), binary["dst"])) + + for _, dependency in self.dependencies.items(): + for bin_paths in dependency.cpp_info.bindirs: + binaries.extend([(f"{p}", ".") for p in Path(bin_paths).glob("**/*.dll")]) + binaries.extend([(f"{p}", ".") for p in Path(bin_paths).glob("**/*.dylib")]) + binaries.extend([(f"{p}", ".") for p in Path(bin_paths).glob("**/*.so")]) + + # Copy dynamic libs from lib path + binaries.extend([(f"{p}", ".") for p in Path(self._base_dir.joinpath("lib")).glob("**/*.dylib")]) + + # 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(Path(__file__).parent.joinpath("Ultimaker-Cura.spec.jinja"), "r") as f: + pyinstaller = Template(f.read()) + + cura_version = tools.Version(self.version) if self.version else tools.Version("0.0.0") + + with open(Path(location, "Ultimaker-Cura.spec"), "w") as f: + f.write(pyinstaller.render( + name = str(self.options.display_name).replace(" ", "-"), + display_name = self.options.display_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 = "'x86_64'" if self.settings.os == "Macos" else "None", # FIXME: Make this dependent on the settings.arch_target + macos = self.settings.os == "Macos", + version = f"'{self.version}'", + short_version = f"'{cura_version.major}.{cura_version.minor}.{cura_version.patch}'", + )) + + 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): + if self.version and tools.Version(self.version) <= tools.Version("4"): + raise ConanInvalidConfiguration("Only versions 5+ are support") + + def requirements(self): + for req in self._um_data()["requirements"]: + self.requires(req) + + def layout(self): + self.folders.source = "." + self.folders.build = "venv" + self.folders.generators = Path(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 build(self): + pass + + def generate(self): + 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(self.folders.generators.joinpath(f"cura_run_environment{ext}")) + + vr = VirtualRunEnv(self) + vr.generate() + + self._generate_cura_version(Path(self.source_folder, "cura")) + + if self.options.devtools: + entitlements_file = "'{}'".format(Path(self.source_folder, "packaging", "dmg", "cura.entitlements")) + self._generate_pyinstaller_spec(location = self.generators_folder, + entrypoint_location = "'{}'".format(Path(self.source_folder, self._um_data()["runinfo"]["entrypoint"])).replace("\\", "\\\\"), + icon_path = "'{}'".format(Path(self.source_folder, "packaging", self._um_data()["pyinstaller"]["icon"][str(self.settings.os)])).replace("\\", "\\\\"), + entitlements_file = entitlements_file if self.settings.os == "Macos" else "None") + + 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) + + files.rmdir(self, "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) + + # Copy resources of cura_binary_data + self.copy("*", root_package = "cura_binary_data", src = self.deps_cpp_info["cura_binary_data"].resdirs[0], + dst = "venv/share/cura", keep_path = True) + self.copy("*", root_package = "cura_binary_data", src = self.deps_cpp_info["cura_binary_data"].resdirs[1], + dst = "venv/share/uranium", 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 + # TODO: Fix source such that it will get the curaengine relative from the executable (Python bindir in this case) + self.copy_deps("CuraEngine.exe", root_package = "curaengine", src = self.deps_cpp_info["curaengine"].bindirs[0], + dst = self._base_dir, + keep_path = False) + self.copy_deps("CuraEngine", root_package = "curaengine", src = self.deps_cpp_info["curaengine"].bindirs[0], dst = self._base_dir, + keep_path = False) + + # Copy resources of Cura (keep folder structure) + self.copy("*", src = self.cpp_info.bindirs[0], dst = self._base_dir, keep_path = False) + self.copy("*", src = self.cpp_info.libdirs[0], dst = self._site_packages.joinpath("cura"), keep_path = True) + self.copy("*", src = self.cpp_info.resdirs[0], dst = self._share_dir.joinpath("cura", "resources"), keep_path = True) + self.copy("*", src = self.cpp_info.resdirs[1], dst = self._share_dir.joinpath("cura", "plugins"), keep_path = True) + + # Copy materials (flat) + self.copy_deps("*.fdm_material", root_package = "fdm_materials", src = self.deps_cpp_info["fdm_materials"].resdirs[0], + dst = self._share_dir.joinpath("cura", "resources", "materials"), keep_path = False) + self.copy_deps("*.sig", root_package = "fdm_materials", src = self.deps_cpp_info["fdm_materials"].resdirs[0], + dst = self._share_dir.joinpath("cura", "resources", "materials"), keep_path = False) + + # Copy resources of Uranium (keep folder structure) + self.copy_deps("*", root_package = "uranium", src = self.deps_cpp_info["uranium"].resdirs[0], + dst = self._share_dir.joinpath("uranium", "resources"), keep_path = True) + self.copy_deps("*", root_package = "uranium", src = self.deps_cpp_info["uranium"].resdirs[1], + dst = self._share_dir.joinpath("uranium", "plugins"), keep_path = True) + self.copy_deps("*", root_package = "uranium", src = self.deps_cpp_info["uranium"].libdirs[0], + dst = self._site_packages.joinpath("UM"), + keep_path = True) + self.copy_deps("*", root_package = "uranium", src = str(Path(self.deps_cpp_info["uranium"].libdirs[0], "Qt", "qml", "UM")), + dst = self._site_packages.joinpath("PyQt6", "Qt6", "qml", "UM"), + keep_path = True) + + # Copy resources of cura_binary_data + self.copy_deps("*", root_package = "cura_binary_data", src = self.deps_cpp_info["cura_binary_data"].resdirs[0], + dst = self._share_dir.joinpath("cura"), keep_path = True) + self.copy_deps("*", root_package = "cura_binary_data", src = self.deps_cpp_info["cura_binary_data"].resdirs[1], + dst = self._share_dir.joinpath("uranium"), keep_path = True) + if self.settings.os == "Windows": + self.copy_deps("*", root_package = "cura_binary_data", src = self.deps_cpp_info["cura_binary_data"].resdirs[2], + dst = self._share_dir.joinpath("windows"), keep_path = True) + + self.copy_deps("*.dll", src = "@bindirs", dst = self._site_packages) + self.copy_deps("*.pyd", src = "@libdirs", dst = self._site_packages) + self.copy_deps("*.pyi", src = "@libdirs", dst = self._site_packages) + self.copy_deps("*.dylib", src = "@libdirs", dst = self._base_dir.joinpath("lib")) + + # Copy packaging scripts + self.copy("*", src = self.cpp_info.resdirs[2], dst = self._base_dir.joinpath("packaging")) + + # Copy requirements.txt's + self.copy("*.txt", src = self.cpp_info.resdirs[-1], dst = self._base_dir.joinpath("pip_requirements")) + + # Generate the GitHub Action version info Environment + cura_version = tools.Version(self.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 + """).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, + env_prefix = env_prefix) + + ext = ".sh" if self.settings.os != "Windows" else ".ps1" + files.save(self, self._script_dir.joinpath(f"activate_github_actions_version_env{ext}"), activate_github_actions_version_env) + + self._generate_cura_version(Path(self._site_packages, "cura")) + + entitlements_file = "'{}'".format(Path(self.cpp_info.res_paths[2], "dmg", "cura.entitlements")) + self._generate_pyinstaller_spec(location = self._base_dir, + entrypoint_location = "'{}'".format(Path(self.cpp_info.bin_paths[0], self._um_data()["runinfo"]["entrypoint"])).replace("\\", "\\\\"), + icon_path = "'{}'".format(Path(self.cpp_info.res_paths[2], self._um_data()["pyinstaller"]["icon"][str(self.settings.os)])).replace("\\", "\\\\"), + entitlements_file = entitlements_file if self.settings.os == "Macos" else "None") + + def package(self): + self.copy("cura_app.py", src = ".", dst = self.cpp.package.bindirs[0]) + self.copy("*", src = "cura", dst = self.cpp.package.libdirs[0]) + self.copy("*", src = "resources", dst = self.cpp.package.resdirs[0]) + self.copy("*", src = "plugins", dst = self.cpp.package.resdirs[1]) + self.copy("requirement*.txt", src = ".", dst = self.cpp.package.resdirs[-1]) + self.copy("*", src = "packaging", dst = 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", str(Path(self.cpp_info.lib_paths[0]).parent)) + self.runenv_info.append_path("PYTHONPATH", self.cpp_info.res_paths[1]) # Add plugins to PYTHONPATH + 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): + del self.info.settings.os + del self.info.settings.compiler + del self.info.settings.build_type + del self.info.settings.arch + + # 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/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 f367f61cc7..60d9201d8e 100644 --- a/cura/ApplicationMetadata.py +++ b/cura/ApplicationMetadata.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. # --------- @@ -6,14 +6,14 @@ # --------- DEFAULT_CURA_APP_NAME = "cura" DEFAULT_CURA_DISPLAY_NAME = "Ultimaker Cura" -DEFAULT_CURA_VERSION = "master" +DEFAULT_CURA_VERSION = "dev" DEFAULT_CURA_BUILD_TYPE = "" DEFAULT_CURA_DEBUG_MODE = False # 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 = "7.9.0" +CuraSDKVersion = "8.1.0" try: from cura.CuraVersion import CuraAppName # type: ignore @@ -60,3 +60,14 @@ try: 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/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 fe607915c1..776d92a1f6 100755 --- a/cura/BuildVolume.py +++ b/cura/BuildVolume.py @@ -565,8 +565,8 @@ class BuildVolume(SceneNode): self._updateScaleFactor() self._volume_aabb = AxisAlignedBox( - minimum = Vector(min_w, min_h - 1.0, min_d).scale(self._scale_vector), - maximum = Vector(max_w, max_h - self._raft_thickness - self._extra_z_clearance, max_d).scale(self._scale_vector) + minimum = Vector(min_w, min_h - 1.0, min_d), + maximum = Vector(max_w, max_h - self._raft_thickness - self._extra_z_clearance, max_d) ) bed_adhesion_size = self.getEdgeDisallowedSize() @@ -575,8 +575,8 @@ class BuildVolume(SceneNode): # This is probably wrong in all other cases. TODO! # The +1 and -1 is added as there is always a bit of extra room required to work properly. scale_to_max_bounds = AxisAlignedBox( - minimum = Vector(min_w + bed_adhesion_size + 1, min_h, min_d + self._disallowed_area_size - bed_adhesion_size + 1).scale(self._scale_vector), - maximum = Vector(max_w - bed_adhesion_size - 1, max_h - self._raft_thickness - self._extra_z_clearance, max_d - self._disallowed_area_size + bed_adhesion_size - 1).scale(self._scale_vector) + minimum = Vector(min_w + bed_adhesion_size + 1, min_h, min_d + self._disallowed_area_size - bed_adhesion_size + 1), + maximum = Vector(max_w - bed_adhesion_size - 1, max_h - self._raft_thickness - self._extra_z_clearance, max_d - self._disallowed_area_size + bed_adhesion_size - 1) ) self._application.getController().getScene()._maximum_bounds = scale_to_max_bounds # type: ignore @@ -645,7 +645,7 @@ class BuildVolume(SceneNode): for extruder in extruders: extruder.propertyChanged.connect(self._onSettingPropertyChanged) - self._width = self._global_container_stack.getProperty("machine_width", "value") * self._scale_vector.x + self._width = self._global_container_stack.getProperty("machine_width", "value") machine_height = self._global_container_stack.getProperty("machine_height", "value") if self._global_container_stack.getProperty("print_sequence", "value") == "one_at_a_time" and len(self._scene_objects) > 1: self._height = min(self._global_container_stack.getProperty("gantry_height", "value") * self._scale_vector.z, machine_height) @@ -656,7 +656,7 @@ class BuildVolume(SceneNode): else: self._height = self._global_container_stack.getProperty("machine_height", "value") self._build_volume_message.hide() - self._depth = self._global_container_stack.getProperty("machine_depth", "value") * self._scale_vector.y + self._depth = self._global_container_stack.getProperty("machine_depth", "value") self._shape = self._global_container_stack.getProperty("machine_shape", "value") self._updateDisallowedAreas() @@ -752,8 +752,8 @@ class BuildVolume(SceneNode): return self._updateScaleFactor() self._height = self._global_container_stack.getProperty("machine_height", "value") * self._scale_vector.z - self._width = self._global_container_stack.getProperty("machine_width", "value") * self._scale_vector.x - self._depth = self._global_container_stack.getProperty("machine_depth", "value") * self._scale_vector.y + self._width = self._global_container_stack.getProperty("machine_width", "value") + self._depth = self._global_container_stack.getProperty("machine_depth", "value") self._shape = self._global_container_stack.getProperty("machine_shape", "value") def _updateDisallowedAreasAndRebuild(self): @@ -770,14 +770,6 @@ class BuildVolume(SceneNode): self._extra_z_clearance = self._calculateExtraZClearance(ExtruderManager.getInstance().getUsedExtruderStacks()) self.rebuild() - def _scaleAreas(self, result_areas: List[Polygon]) -> None: - if self._global_container_stack is None: - return - for i, polygon in enumerate(result_areas): - result_areas[i] = polygon.scale( - 100.0 / max(100.0, self._global_container_stack.getProperty("material_shrinkage_percentage_xy", "value")) - ) - def _updateDisallowedAreas(self) -> None: if not self._global_container_stack: return @@ -833,11 +825,9 @@ class BuildVolume(SceneNode): self._disallowed_areas = [] for extruder_id in result_areas: - self._scaleAreas(result_areas[extruder_id]) self._disallowed_areas.extend(result_areas[extruder_id]) self._disallowed_areas_no_brim = [] for extruder_id in result_areas_no_brim: - self._scaleAreas(result_areas_no_brim[extruder_id]) self._disallowed_areas_no_brim.extend(result_areas_no_brim[extruder_id]) def _computeDisallowedAreasPrinted(self, used_extruders): @@ -993,6 +983,9 @@ class BuildVolume(SceneNode): half_machine_width = self._global_container_stack.getProperty("machine_width", "value") / 2 half_machine_depth = self._global_container_stack.getProperty("machine_depth", "value") / 2 + # We need at a minimum a very small border around the edge so that models can't go off the build plate + border_size = max(border_size, 0.1) + if self._shape != "elliptic": if border_size - left_unreachable_border > 0: result[extruder_id].append(Polygon(numpy.array([ diff --git a/cura/CrashHandler.py b/cura/CrashHandler.py index bda9568666..541a270058 100644 --- a/cura/CrashHandler.py +++ b/cura/CrashHandler.py @@ -261,7 +261,7 @@ class CrashHandler: opengl_instance = OpenGL.getInstance() if not opengl_instance: self.data["opengl"] = {"version": "n/a", "vendor": "n/a", "type": "n/a"} - return catalog.i18nc("@label", "Not yet initialized
") + return catalog.i18nc("@label", "Not yet initialized") + "
" info = "
    " info += catalog.i18nc("@label OpenGL version", "
  • OpenGL Version: {version}
  • ").format(version = opengl_instance.getOpenGLVersion()) @@ -291,6 +291,7 @@ class CrashHandler: if with_sentry_sdk: with configure_scope() as scope: scope.set_tag("opengl_version", opengl_instance.getOpenGLVersion()) + scope.set_tag("opengl_version_short", opengl_instance.getOpenGLVersionShort()) scope.set_tag("gpu_vendor", opengl_instance.getGPUVendorName()) scope.set_tag("gpu_type", opengl_instance.getGPUType()) scope.set_tag("active_machine", active_machine_definition_id) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index a242aa5363..eeaead4f71 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.ActiveIntentQualitiesModel import ActiveIntentQualitiesModel +from .Machines.Models.IntentSelectionModel import IntentSelectionModel from .SingleInstance import SingleInstance if TYPE_CHECKING: @@ -257,6 +259,7 @@ class CuraApplication(QtApplication): from UM.CentralFileStorage import CentralFileStorage CentralFileStorage.setIsEnterprise(ApplicationMetadata.IsEnterpriseVersion) + Resources.setIsEnterprise(ApplicationMetadata.IsEnterpriseVersion) @pyqtProperty(str, constant=True) def ultimakerCloudApiRootUrl(self) -> str: @@ -315,7 +318,7 @@ class CuraApplication(QtApplication): def initialize(self) -> None: self.__addExpectedResourceDirsAndSearchPaths() # Must be added before init of super - super().initialize() + super().initialize(ApplicationMetadata.IsEnterpriseVersion) self._preferences.addPreference("cura/single_instance", False) self._use_single_instance = self._preferences.getValue("cura/single_instance") or self._cli_args.single_instance @@ -348,13 +351,18 @@ class CuraApplication(QtApplication): Resources.addExpectedDirNameInData(dir_name) app_root = os.path.abspath(os.path.join(os.path.dirname(sys.executable))) - Resources.addSearchPath(os.path.join(app_root, "share", "cura", "resources")) - Resources.addSearchPath(os.path.join(os.path.abspath(os.path.dirname(__file__)), "..", "share", "cura", "resources")) + Resources.addSecureSearchPath(os.path.join(app_root, "share", "cura", "resources")) - Resources.addSearchPath(os.path.join(self._app_install_dir, "share", "cura", "resources")) + 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.addSearchPath(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): @@ -812,6 +820,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() @@ -943,6 +957,7 @@ class CuraApplication(QtApplication): self._qml_import_paths.append(Resources.getPath(self.ResourceTypes.QmlFiles)) self._setLoadingHint(self._i18n_catalog.i18nc("@info:progress", "Initializing engine...")) self.initializeEngine() + self.getTheme().setCheckIfTrusted(ApplicationMetadata.IsEnterpriseVersion) # Initialize UI state controller.setActiveStage("PrepareStage") @@ -1191,6 +1206,8 @@ class CuraApplication(QtApplication): qmlRegisterType(NozzleModel, "Cura", 1, 0, "NozzleModel") qmlRegisterType(IntentModel, "Cura", 1, 6, "IntentModel") qmlRegisterType(IntentCategoryModel, "Cura", 1, 6, "IntentCategoryModel") + qmlRegisterType(IntentSelectionModel, "Cura", 1, 7, "IntentSelectionModel") + qmlRegisterType(ActiveIntentQualitiesModel, "Cura", 1, 7, "ActiveIntentQualitiesModel") self.processEvents() qmlRegisterType(MaterialSettingsVisibilityHandler, "Cura", 1, 0, "MaterialSettingsVisibilityHandler") diff --git a/cura/CuraPackageManager.py b/cura/CuraPackageManager.py index 17d6832ac6..a8f5b24a7b 100644 --- a/cura/CuraPackageManager.py +++ b/cura/CuraPackageManager.py @@ -1,14 +1,21 @@ # Copyright (c) 2018 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. +import glob +import os +from pathlib import Path from typing import Any, cast, Dict, List, Set, Tuple, TYPE_CHECKING, Optional +from UM.Logger import Logger +from UM.PluginRegistry import PluginRegistry from cura.CuraApplication import CuraApplication # To find some resource types. 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") if TYPE_CHECKING: @@ -48,9 +55,62 @@ 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() + def isMaterialBundled(self, file_name: str, guid: str): + """ Check if there is a bundled material name with file_name and guid """ + for path in Resources.getSecureSearchPaths(): + # Secure search paths are install directory paths, if a material is in here it must be bundled. + + paths = [Path(p) for p in glob.glob(path + '/**/*.xml.fdm_material', recursive=True)] + for material in paths: + if material.name == file_name: + Logger.info(f"Found bundled material: {material.name}. Located in path: {str(material)}") + with open(material, encoding="utf-8") as f: + # Make sure the file we found has the same guid as our material + # Parsing this xml would be better but the namespace is needed to search it. + parsed_guid = PluginRegistry.getInstance().getPluginObject( + "XmlMaterialProfile").getMetadataFromSerialized( + f.read(), "GUID") + if guid == parsed_guid: + # The material we found matches both filename and GUID + return True + + return False + + 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 + + for root, _, file_names in os.walk(material_package.path): + if file_name not in file_names: + # File with the name we are looking for is not in this directory + continue + + with open(os.path.join(root, file_name), encoding="utf-8") as f: + # Make sure the file we found has the same guid as our material + # Parsing this xml would be better but the namespace is needed to search it. + parsed_guid = PluginRegistry.getInstance().getPluginObject("XmlMaterialProfile").getMetadataFromSerialized( + f.read(), "GUID") + + if guid == parsed_guid: + 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]]]: """Returns a list of where the package is used 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/Machines/MachineErrorChecker.py b/cura/Machines/MachineErrorChecker.py index bfefe80fa5..2cb333d157 100644 --- a/cura/Machines/MachineErrorChecker.py +++ b/cura/Machines/MachineErrorChecker.py @@ -53,6 +53,8 @@ class MachineErrorChecker(QObject): self._keys_to_check = set() # type: Set[str] + self._num_keys_to_check_per_update = 10 + def initialize(self) -> None: self._error_check_timer.timeout.connect(self._rescheduleCheck) @@ -162,37 +164,37 @@ class MachineErrorChecker(QObject): self._check_in_progress = True - # If there is nothing to check any more, it means there is no error. - if not self._stacks_and_keys_to_check: - # Finish - self._setResult(False) - return + for i in range(self._num_keys_to_check_per_update): + # If there is nothing to check any more, it means there is no error. + if not self._stacks_and_keys_to_check: + # Finish + self._setResult(False) + return - # Get the next stack and key to check - stack, key = self._stacks_and_keys_to_check.popleft() + # Get the next stack and key to check + stack, key = self._stacks_and_keys_to_check.popleft() - enabled = stack.getProperty(key, "enabled") - if not enabled: - self._application.callLater(self._checkStack) - return + enabled = stack.getProperty(key, "enabled") + if not enabled: + continue - validation_state = stack.getProperty(key, "validationState") - if validation_state is None: - # Setting is not validated. This can happen if there is only a setting definition. - # We do need to validate it, because a setting definitions value can be set by a function, which could - # be an invalid setting. - definition = stack.getSettingDefinition(key) - validator_type = SettingDefinition.getValidatorForType(definition.type) - if validator_type: - validator = validator_type(key) - validation_state = validator(stack) - if validation_state in (ValidatorState.Exception, ValidatorState.MaximumError, ValidatorState.MinimumError, ValidatorState.Invalid): - # Since we don't know if any of the settings we didn't check is has an error value, store the list for the - # next check. - keys_to_recheck = {setting_key for stack, setting_key in self._stacks_and_keys_to_check} - keys_to_recheck.add(key) - self._setResult(True, keys_to_recheck = keys_to_recheck) - return + validation_state = stack.getProperty(key, "validationState") + if validation_state is None: + # Setting is not validated. This can happen if there is only a setting definition. + # We do need to validate it, because a setting definitions value can be set by a function, which could + # be an invalid setting. + definition = stack.getSettingDefinition(key) + validator_type = SettingDefinition.getValidatorForType(definition.type) + if validator_type: + validator = validator_type(key) + validation_state = validator(stack) + if validation_state in (ValidatorState.Exception, ValidatorState.MaximumError, ValidatorState.MinimumError, ValidatorState.Invalid): + # Since we don't know if any of the settings we didn't check is has an error value, store the list for the + # next check. + keys_to_recheck = {setting_key for stack, setting_key in self._stacks_and_keys_to_check} + keys_to_recheck.add(key) + self._setResult(True, keys_to_recheck = keys_to_recheck) + return # Schedule the check for the next key self._application.callLater(self._checkStack) diff --git a/cura/Machines/Models/ActiveIntentQualitiesModel.py b/cura/Machines/Models/ActiveIntentQualitiesModel.py new file mode 100644 index 0000000000..2e13f7dbcb --- /dev/null +++ b/cura/Machines/Models/ActiveIntentQualitiesModel.py @@ -0,0 +1,131 @@ +# Copyright (c) 2022 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. +from typing import Optional, Set, Dict, List, Any + +from PyQt6.QtCore import Qt, QObject, QTimer + +import cura.CuraApplication +from UM.Logger import Logger +from UM.Qt.ListModel import ListModel +from UM.Settings.ContainerStack import ContainerStack +from cura.Machines.ContainerTree import ContainerTree +from cura.Machines.Models.MachineModelUtils import fetchLayerHeight +from cura.Machines.MaterialNode import MaterialNode +from cura.Machines.QualityGroup import QualityGroup +from cura.Settings.IntentManager import IntentManager + + +class ActiveIntentQualitiesModel(ListModel): + NameRole = Qt.ItemDataRole.UserRole + 1 + DisplayTextRole = Qt.ItemDataRole.UserRole + 2 + QualityTypeRole = Qt.ItemDataRole.UserRole + 3 + LayerHeightRole = Qt.ItemDataRole.UserRole + 4 + IntentCategeoryRole = Qt.ItemDataRole.UserRole + 5 + + def __init__(self, parent: Optional[QObject] = None) -> None: + super().__init__(parent) + + self.addRoleName(self.NameRole, "name") + self.addRoleName(self.QualityTypeRole, "quality_type") + self.addRoleName(self.LayerHeightRole, "layer_height") + self.addRoleName(self.DisplayTextRole, "display_text") + self.addRoleName(self.IntentCategeoryRole, "intent_category") + + self._intent_category = "" + + IntentManager.intentCategoryChangedSignal.connect(self._update) + machine_manager = cura.CuraApplication.CuraApplication.getInstance().getMachineManager() + machine_manager.activeQualityGroupChanged.connect(self._update) + machine_manager.globalContainerChanged.connect(self._updateDelayed) + machine_manager.extruderChanged.connect(self._updateDelayed) # We also need to update if an extruder gets disabled + + self._update_timer = QTimer() + self._update_timer.setInterval(100) + self._update_timer.setSingleShot(True) + self._update_timer.timeout.connect(self._update) + + self._update() + + def _updateDelayed(self): + self._update_timer.start() + + def _onChanged(self, container: ContainerStack) -> None: + if container.getMetaDataEntry("type") == "intent": + self._updateDelayed() + + def _update(self): + active_extruder_stack = cura.CuraApplication.CuraApplication.getInstance().getMachineManager().activeStack + if active_extruder_stack: + self._intent_category = active_extruder_stack.intent.getMetaDataEntry("intent_category", "") + + new_items: List[Dict[str, Any]] = [] + global_stack = cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack() + if not global_stack: + self.setItems(new_items) + return + quality_groups = ContainerTree.getInstance().getCurrentQualityGroups() + + material_nodes = self._getActiveMaterials() + + added_quality_type_set: Set[str] = set() + for material_node in material_nodes: + intents = self._getIntentsForMaterial(material_node, quality_groups) + for intent in intents: + if intent["quality_type"] not in added_quality_type_set: + new_items.append(intent) + added_quality_type_set.add(intent["quality_type"]) + + new_items = sorted(new_items, key=lambda x: x["layer_height"]) + self.setItems(new_items) + + def _getActiveMaterials(self) -> Set["MaterialNode"]: + """Get the active materials for all extruders. No duplicates will be returned""" + + global_stack = cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack() + if global_stack is None: + return set() + + container_tree = ContainerTree.getInstance() + machine_node = container_tree.machines[global_stack.definition.getId()] + nodes: Set[MaterialNode] = set() + + for extruder in global_stack.extruderList: + active_variant_name = extruder.variant.getMetaDataEntry("name") + if active_variant_name not in machine_node.variants: + Logger.log("w", "Could not find the variant %s", active_variant_name) + continue + active_variant_node = machine_node.variants[active_variant_name] + active_material_node = active_variant_node.materials.get(extruder.material.getMetaDataEntry("base_file")) + if active_material_node is None: + Logger.log("w", "Could not find the material %s", extruder.material.getMetaDataEntry("base_file")) + continue + nodes.add(active_material_node) + + return nodes + + def _getIntentsForMaterial(self, active_material_node: "MaterialNode", quality_groups: Dict[str, "QualityGroup"]) -> List[Dict[str, Any]]: + extruder_intents: List[Dict[str, Any]] = [] + + for quality_id, quality_node in active_material_node.qualities.items(): + if quality_node.quality_type not in quality_groups: # Don't add the empty quality type (or anything else that would crash, defensively). + continue + quality_group = quality_groups[quality_node.quality_type] + + if not quality_group.is_available: + continue + + layer_height = fetchLayerHeight(quality_group) + + for intent_id, intent_node in quality_node.intents.items(): + if intent_node.intent_category != self._intent_category: + continue + + extruder_intents.append({"name": quality_group.name, + "display_text": f"{quality_group.name} - {layer_height}mm", + "quality_type": quality_group.quality_type, + "layer_height": layer_height, + "intent_category": self._intent_category + }) + return extruder_intents + + diff --git a/cura/Machines/Models/GlobalStacksModel.py b/cura/Machines/Models/GlobalStacksModel.py index 033d89952c..8f13d34ccf 100644 --- a/cura/Machines/Models/GlobalStacksModel.py +++ b/cura/Machines/Models/GlobalStacksModel.py @@ -135,7 +135,7 @@ class GlobalStacksModel(ListModel): continue device_name = container_stack.getMetaDataEntry("group_name", container_stack.getName()) - section_name = "Connected printers" if has_remote_connection else "Preset printers" + section_name = self._catalog.i18nc("@label", "Connected printers") if has_remote_connection else self._catalog.i18nc("@label", "Preset printers") section_name = self._catalog.i18nc("@info:title", section_name) default_removal_warning = self._catalog.i18nc( diff --git a/cura/Machines/Models/IntentCategoryModel.py b/cura/Machines/Models/IntentCategoryModel.py index 14e3c4d35e..e94bbe6d00 100644 --- a/cura/Machines/Models/IntentCategoryModel.py +++ b/cura/Machines/Models/IntentCategoryModel.py @@ -111,7 +111,7 @@ class IntentCategoryModel(ListModel): except ValueError: weight = 99 result.append({ - "name": IntentCategoryModel.translation(category, "name", category), + "name": IntentCategoryModel.translation(category, "name", category.title()), "description": IntentCategoryModel.translation(category, "description", None), "intent_category": category, "weight": weight, diff --git a/cura/Machines/Models/IntentSelectionModel.py b/cura/Machines/Models/IntentSelectionModel.py new file mode 100644 index 0000000000..ec6957832c --- /dev/null +++ b/cura/Machines/Models/IntentSelectionModel.py @@ -0,0 +1,129 @@ +# Copyright (c) 2022 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +import collections +from typing import OrderedDict, Optional + +from PyQt6.QtCore import Qt, QTimer, QObject + +import cura +from UM import i18nCatalog +from UM.Logger import Logger +from UM.Qt.ListModel import ListModel +from UM.Settings.ContainerRegistry import ContainerRegistry +from UM.Settings.Interfaces import ContainerInterface +from cura.Settings.IntentManager import IntentManager + +catalog = i18nCatalog("cura") + + +class IntentSelectionModel(ListModel): + + NameRole = Qt.ItemDataRole.UserRole + 1 + IntentCategoryRole = Qt.ItemDataRole.UserRole + 2 + WeightRole = Qt.ItemDataRole.UserRole + 3 + DescriptionRole = Qt.ItemDataRole.UserRole + 4 + IconRole = Qt.ItemDataRole.UserRole + 5 + + def __init__(self, parent: Optional[QObject] = None) -> None: + super().__init__(parent) + + self.addRoleName(self.NameRole, "name") + self.addRoleName(self.IntentCategoryRole, "intent_category") + self.addRoleName(self.WeightRole, "weight") + self.addRoleName(self.DescriptionRole, "description") + self.addRoleName(self.IconRole, "icon") + + application = cura.CuraApplication.CuraApplication.getInstance() + + ContainerRegistry.getInstance().containerAdded.connect(self._onContainerChange) + ContainerRegistry.getInstance().containerRemoved.connect(self._onContainerChange) + machine_manager = cura.CuraApplication.CuraApplication.getInstance().getMachineManager() + machine_manager.activeMaterialChanged.connect(self._update) + machine_manager.activeVariantChanged.connect(self._update) + machine_manager.extruderChanged.connect(self._update) + + extruder_manager = application.getExtruderManager() + extruder_manager.extrudersChanged.connect(self._update) + + self._update_timer: QTimer = QTimer() + self._update_timer.setInterval(100) + self._update_timer.setSingleShot(True) + self._update_timer.timeout.connect(self._update) + + self._onChange() + + @staticmethod + def _getDefaultProfileInformation() -> OrderedDict[str, dict]: + """ Default information user-visible string. Ordered by weight. """ + default_profile_information = collections.OrderedDict() + default_profile_information["default"] = { + "name": catalog.i18nc("@label", "Default"), + "icon": "GearCheck" + } + default_profile_information["visual"] = { + "name": catalog.i18nc("@label", "Visual"), + "description": catalog.i18nc("@text", "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."), + "icon" : "Visual" + } + default_profile_information["engineering"] = { + "name": catalog.i18nc("@label", "Engineering"), + "description": catalog.i18nc("@text", "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."), + "icon": "Nut" + } + default_profile_information["quick"] = { + "name": catalog.i18nc("@label", "Draft"), + "description": catalog.i18nc("@text", "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."), + "icon": "SpeedOMeter" + } + return default_profile_information + + def _onContainerChange(self, container: ContainerInterface) -> None: + """Updates the list of intents if an intent profile was added or removed.""" + + if container.getMetaDataEntry("type") == "intent": + self._update() + + def _onChange(self) -> None: + self._update_timer.start() + + def _update(self) -> None: + Logger.log("d", "Updating {model_class_name}.".format(model_class_name = self.__class__.__name__)) + + global_stack = cura.CuraApplication.CuraApplication.getInstance().getGlobalContainerStack() + if global_stack is None: + self.setItems([]) + Logger.log("d", "No active GlobalStack, set quality profile model as empty.") + return + + # Check for material compatibility + if not cura.CuraApplication.CuraApplication.getInstance().getMachineManager().activeMaterialsCompatible(): + Logger.log("d", "No active material compatibility, set quality profile model as empty.") + self.setItems([]) + return + + default_profile_info = self._getDefaultProfileInformation() + + available_categories = IntentManager.getInstance().currentAvailableIntentCategories() + result = [] + for i, category in enumerate(available_categories): + profile_info = default_profile_info.get(category, {}) + + try: + weight = list(default_profile_info.keys()).index(category) + except ValueError: + weight = len(available_categories) + i + + result.append({ + "name": profile_info.get("name", category.title()), + "description": profile_info.get("description", None), + "icon" : profile_info.get("icon", ""), + "intent_category": category, + "weight": weight, + }) + + result.sort(key=lambda k: k["weight"]) + + self.setItems(result) + + diff --git a/cura/Machines/Models/MaterialManagementModel.py b/cura/Machines/Models/MaterialManagementModel.py index 53d0cca0a2..7d0cf9ee54 100644 --- a/cura/Machines/Models/MaterialManagementModel.py +++ b/cura/Machines/Models/MaterialManagementModel.py @@ -34,62 +34,6 @@ class MaterialManagementModel(QObject): def __init__(self, parent: Optional[QObject] = None) -> None: super().__init__(parent = parent) self._material_sync = CloudMaterialSync(parent=self) - self._checkIfNewMaterialsWereInstalled() - - def _checkIfNewMaterialsWereInstalled(self) -> None: - """ - Checks whether new material packages were installed in the latest startup. If there were, then it shows - a message prompting the user to sync the materials with their printers. - """ - application = cura.CuraApplication.CuraApplication.getInstance() - for package_id, package_data in application.getPackageManager().getPackagesInstalledOnStartup().items(): - if package_data["package_info"]["package_type"] == "material": - # At least one new material was installed - # TODO: This should be enabled again once CURA-8609 is merged - #self._showSyncNewMaterialsMessage() - break - - def _showSyncNewMaterialsMessage(self) -> None: - sync_materials_message = Message( - text = catalog.i18nc("@action:button", - "Please sync the material profiles with your printers before starting to print."), - title = catalog.i18nc("@action:button", "New materials installed"), - message_type = Message.MessageType.WARNING, - lifetime = 0 - ) - - sync_materials_message.addAction( - "sync", - name = catalog.i18nc("@action:button", "Sync materials"), - icon = "", - description = "Sync your newly installed materials with your printers.", - button_align = Message.ActionButtonAlignment.ALIGN_RIGHT - ) - - sync_materials_message.addAction( - "learn_more", - name = catalog.i18nc("@action:button", "Learn more"), - icon = "", - description = "Learn more about syncing your newly installed materials with your printers.", - button_align = Message.ActionButtonAlignment.ALIGN_LEFT, - button_style = Message.ActionButtonStyle.LINK - ) - sync_materials_message.actionTriggered.connect(self._onSyncMaterialsMessageActionTriggered) - - # Show the message only if there are printers that support material export - container_registry = cura.CuraApplication.CuraApplication.getInstance().getContainerRegistry() - global_stacks = container_registry.findContainerStacks(type = "machine") - if any([stack.supportsMaterialExport for stack in global_stacks]): - sync_materials_message.show() - - def _onSyncMaterialsMessageActionTriggered(self, sync_message: Message, sync_message_action: str): - if sync_message_action == "sync": - QDesktopServices.openUrl(QUrl("https://example.com/openSyncAllWindow")) - # self.openSyncAllWindow() - sync_message.hide() - elif sync_message_action == "learn_more": - QDesktopServices.openUrl(QUrl("https://support.ultimaker.com/hc/en-us/articles/360013137919?utm_source=cura&utm_medium=software&utm_campaign=sync-material-printer-message")) - @pyqtSlot("QVariant", result = bool) def canMaterialBeRemoved(self, material_node: "MaterialNode") -> bool: diff --git a/cura/Machines/Models/QualityManagementModel.py b/cura/Machines/Models/QualityManagementModel.py index 8db8719784..b4fb8b38b5 100644 --- a/cura/Machines/Models/QualityManagementModel.py +++ b/cura/Machines/Models/QualityManagementModel.py @@ -358,8 +358,9 @@ class QualityManagementModel(ListModel): "quality_type": quality_type, "quality_changes_group": None, "intent_category": intent_category, - "section_name": catalog.i18nc("@label", intent_translations.get(intent_category, {}).get("name", catalog.i18nc("@label", "Unknown"))), + "section_name": catalog.i18nc("@label", intent_translations.get(intent_category, {}).get("name", catalog.i18nc("@label", intent_category.title()))), }) + # Sort by quality_type for each intent category intent_translations_list = list(intent_translations) diff --git a/cura/PrinterOutput/Models/PrintJobOutputModel.py b/cura/PrinterOutput/Models/PrintJobOutputModel.py index b6a12cb183..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 @@ -119,16 +133,16 @@ class PrintJobOutputModel(QObject): @pyqtProperty(int, notify = timeTotalChanged) def timeTotal(self) -> int: - return self._time_total + return int(self._time_total) @pyqtProperty(int, notify = timeElapsedChanged) def timeElapsed(self) -> int: - return self._time_elapsed + return int(self._time_elapsed) @pyqtProperty(int, notify = timeElapsedChanged) def timeRemaining(self) -> int: # Never get a negative time remaining - return max(self.timeTotal - self.timeElapsed, 0) + return int(max(self.timeTotal - self.timeElapsed, 0)) @pyqtProperty(float, notify = timeElapsedChanged) def progress(self) -> float: diff --git a/cura/Settings/ContainerManager.py b/cura/Settings/ContainerManager.py index c1b0ceeaae..676cdd6c65 100644 --- a/cura/Settings/ContainerManager.py +++ b/cura/Settings/ContainerManager.py @@ -114,7 +114,7 @@ class ContainerManager(QObject): for _ in range(len(entries)): item = item.get(entries.pop(0), {}) - if item[entry_name] != entry_value: + if entry_name not in item or item[entry_name] != entry_value: sub_item_changed = True item[entry_name] = entry_value @@ -206,7 +206,7 @@ class ContainerManager(QObject): if os.path.exists(file_url): result = QMessageBox.question(None, catalog.i18nc("@title:window", "File Already Exists"), catalog.i18nc("@label Don't translate the XML tag !", "The file {0} already exists. Are you sure you want to overwrite it?").format(file_url)) - if result == QMessageBox.ButtonRole.NoRole: + if result == QMessageBox.StandardButton.No: return {"status": "cancelled", "message": "User cancelled"} try: diff --git a/cura/Settings/CuraContainerRegistry.py b/cura/Settings/CuraContainerRegistry.py index a72828708b..6ff856efcb 100644 --- a/cura/Settings/CuraContainerRegistry.py +++ b/cura/Settings/CuraContainerRegistry.py @@ -139,7 +139,7 @@ class CuraContainerRegistry(ContainerRegistry): if os.path.exists(file_name): result = QMessageBox.question(None, catalog.i18nc("@title:window", "File Already Exists"), catalog.i18nc("@label Don't translate the XML tag !", "The file {0} already exists. Are you sure you want to overwrite it?").format(file_name)) - if result == QMessageBox.ButtonRole.NoRole: + if result == QMessageBox.StandardButton.No: return False profile_writer = self._findProfileWriter(extension, description) diff --git a/cura/Settings/CuraStackBuilder.py b/cura/Settings/CuraStackBuilder.py index 7ede6950d7..ff9a795c43 100644 --- a/cura/Settings/CuraStackBuilder.py +++ b/cura/Settings/CuraStackBuilder.py @@ -17,7 +17,7 @@ class CuraStackBuilder: """Contains helper functions to create new machines.""" @classmethod - def createMachine(cls, name: str, definition_id: str, machine_extruder_count: Optional[int] = None) -> Optional[GlobalStack]: + def createMachine(cls, name: str, definition_id: str, machine_extruder_count: Optional[int] = None, show_warning_message: bool = True) -> Optional[GlobalStack]: """Create a new instance of a machine. :param name: The name of the new machine. @@ -34,7 +34,8 @@ class CuraStackBuilder: definitions = registry.findDefinitionContainers(id = definition_id) if not definitions: - ConfigurationErrorMessage.getInstance().addFaultyContainers(definition_id) + if show_warning_message: + ConfigurationErrorMessage.getInstance().addFaultyContainers(definition_id) Logger.log("w", "Definition {definition} was not found!", definition = definition_id) return None diff --git a/cura/Settings/ExtruderManager.py b/cura/Settings/ExtruderManager.py index 07c074254f..52d63b611b 100755 --- a/cura/Settings/ExtruderManager.py +++ b/cura/Settings/ExtruderManager.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. from PyQt6.QtCore import pyqtSignal, pyqtProperty, QObject, QVariant # For communicating data and events to Qt. @@ -382,7 +382,10 @@ class ExtruderManager(QObject): # "fdmextruder". We need to check a machine here so its extruder definition is correct according to this. def fixSingleExtrusionMachineExtruderDefinition(self, global_stack: "GlobalStack") -> None: container_registry = ContainerRegistry.getInstance() - expected_extruder_definition_0_id = global_stack.getMetaDataEntry("machine_extruder_trains")["0"] + expected_extruder_stack = global_stack.getMetaDataEntry("machine_extruder_trains") + if expected_extruder_stack is None: + return + expected_extruder_definition_0_id = expected_extruder_stack["0"] try: extruder_stack_0 = global_stack.extruderList[0] except IndexError: diff --git a/cura/Settings/IntentManager.py b/cura/Settings/IntentManager.py index 2dfec02201..7d3e2659bf 100644 --- a/cura/Settings/IntentManager.py +++ b/cura/Settings/IntentManager.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 PyQt6.QtCore import QObject, pyqtProperty, pyqtSignal, pyqtSlot @@ -8,6 +8,7 @@ from UM.Logger import Logger from UM.Settings.InstanceContainer import InstanceContainer import cura.CuraApplication +from UM.Signal import Signal from cura.Machines.ContainerTree import ContainerTree from cura.Settings.cura_empty_instance_containers import empty_intent_container @@ -29,6 +30,7 @@ class IntentManager(QObject): return cls.__instance intentCategoryChanged = pyqtSignal() #Triggered when we switch categories. + intentCategoryChangedSignal = Signal() def intentMetadatas(self, definition_id: str, nozzle_name: str, material_base_file: str) -> List[Dict[str, Any]]: """Gets the metadata dictionaries of all intent profiles for a given @@ -189,3 +191,4 @@ class IntentManager(QObject): application.getMachineManager().setQualityGroupByQualityType(quality_type) if old_intent_category != intent_category: self.intentCategoryChanged.emit() + self.intentCategoryChangedSignal.emit() diff --git a/cura/Settings/MachineManager.py b/cura/Settings/MachineManager.py index 1c7a8f0e98..64d34d6c3e 100755 --- a/cura/Settings/MachineManager.py +++ b/cura/Settings/MachineManager.py @@ -1611,7 +1611,7 @@ class MachineManager(QObject): if intent_category != "default": intent_display_name = IntentCategoryModel.translation(intent_category, "name", - catalog.i18nc("@label", "Unknown")) + intent_category.title()) display_name = "{intent_name} - {the_rest}".format(intent_name = intent_display_name, the_rest = display_name) @@ -1778,3 +1778,31 @@ class MachineManager(QObject): abbr_machine += stripped_word return abbr_machine + + @pyqtSlot(str, str, result = bool) + def intentCategoryHasQuality(self, intent_category: str, quality_type: str) -> bool: + """ Checks if there are any quality groups for active extruders that have an intent category """ + quality_groups = ContainerTree.getInstance().getCurrentQualityGroups() + + if quality_type in quality_groups: + quality_group = quality_groups[quality_type] + for node in quality_group.nodes_for_extruders.values(): + if any(intent.intent_category == intent_category for intent in node.intents.values()): + return True + + return False + + @pyqtSlot(str, result = str) + def getDefaultQualityTypeForIntent(self, intent_category) -> str: + """ If there is an intent category for the default machine quality return it, otherwise return the first quality for this intent category """ + machine = ContainerTree.getInstance().machines.get(self._global_container_stack.definition.getId()) + + if self.intentCategoryHasQuality(intent_category, machine.preferred_quality_type): + return machine.preferred_quality_type + + for quality_type, quality_group in ContainerTree.getInstance().getCurrentQualityGroups().items(): + for node in quality_group.nodes_for_extruders.values(): + if any(intent.intent_category == intent_category for intent in node.intents.values()): + return quality_type + + return "" diff --git a/cura/SingleInstance.py b/cura/SingleInstance.py index af98869ad7..61ab1204fe 100644 --- a/cura/SingleInstance.py +++ b/cura/SingleInstance.py @@ -29,7 +29,7 @@ class SingleInstance: single_instance_socket.connectToServer("ultimaker-cura") single_instance_socket.waitForConnected(msecs = 3000) # wait for 3 seconds - if single_instance_socket.state() != QLocalSocket.ConnectedState: + if single_instance_socket.state() != QLocalSocket.LocalSocketState.ConnectedState: return False # We only send the files that need to be opened. @@ -37,7 +37,7 @@ class SingleInstance: Logger.log("i", "No file need to be opened, do nothing.") return True - if single_instance_socket.state() == QLocalSocket.ConnectedState: + if single_instance_socket.state() == QLocalSocket.LocalSocketState.ConnectedState: Logger.log("i", "Connection has been made to the single-instance Cura socket.") # Protocol is one line of JSON terminated with a carriage return. diff --git a/cura/UI/PrintInformation.py b/cura/UI/PrintInformation.py index e18fc38247..2b8e13b09f 100644 --- a/cura/UI/PrintInformation.py +++ b/cura/UI/PrintInformation.py @@ -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]] diff --git a/cura/UltimakerCloud/CloudMaterialSync.py b/cura/UltimakerCloud/CloudMaterialSync.py index e2eb50f97e..210fc23898 100644 --- a/cura/UltimakerCloud/CloudMaterialSync.py +++ b/cura/UltimakerCloud/CloudMaterialSync.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. from PyQt6.QtCore import pyqtProperty, pyqtSignal, pyqtSlot, QObject, QUrl @@ -18,6 +18,7 @@ if TYPE_CHECKING: from UM.Signal import Signal catalog = i18nCatalog("cura") + class CloudMaterialSync(QObject): """ Handles the synchronisation of material profiles with cloud accounts. @@ -44,7 +45,6 @@ class CloudMaterialSync(QObject): break def openSyncAllWindow(self): - self.reset() if self.sync_all_dialog is None: diff --git a/cura_app.py b/cura_app.py index e11e3c4232..905d8f4ee0 100755 --- a/cura_app.py +++ b/cura_app.py @@ -18,6 +18,7 @@ import os if sys.platform != "linux": # Turns out the Linux build _does_ use this, but we're not making an Enterprise release for that system anyway. os.environ["QT_PLUGIN_PATH"] = "" # Security workaround: Don't need it, and introduces an attack vector, so set to nul. os.environ["QML2_IMPORT_PATH"] = "" # Security workaround: Don't need it, and introduces an attack vector, so set to nul. + os.environ["QT_OPENGL_DLL"] = "" # Security workaround: Don't need it, and introduces an attack vector, so set to nul. from PyQt6.QtNetwork import QSslConfiguration, QSslSocket 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/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..d2beac8745 --- /dev/null +++ b/packaging/AppImage/AppRun @@ -0,0 +1,20 @@ +#!/bin/sh + +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" + +$scriptdir/Ultimaker-Cura "$@" + +# If this variable is set on Zorin OS 16 Cura would crash +# unset `QT_STYLE_OVERRIDE` as a precaution +unset QT_STYLE_OVERRIDE \ No newline at end of file diff --git a/packaging/AppImage/create_appimage.py b/packaging/AppImage/create_appimage.py new file mode 100644 index 0000000000..bb8396f43c --- /dev/null +++ b/packaging/AppImage/create_appimage.py @@ -0,0 +1,76 @@ +# Copyright (c) 2022 Ultimaker B.V. +# 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..de940af939 --- /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/master/screenshot.png + + +
    diff --git a/packaging/AppImage/cura.desktop.jinja b/packaging/AppImage/cura.desktop.jinja new file mode 100644 index 0000000000..1026d10cb0 --- /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/NSIS/Ultimaker-Cura.nsi.jinja b/packaging/NSIS/Ultimaker-Cura.nsi.jinja new file mode 100644 index 0000000000..9a51b81110 --- /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 "HKCR" +!define REG_APP_PATH "Software\Microsoft\Windows\CurrentVersion\App Paths\${APP_NAME}" +!define UNINSTALL_PATH "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" + +!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 "$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..c8d28c82a4 --- /dev/null +++ b/packaging/NSIS/create_windows_installer.py @@ -0,0 +1,80 @@ +# Copyright (c) 2022 Ultimaker B.V. +# 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 B.V.", + 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..8643510664 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/packaging/dmg/cura.entitlements b/packaging/dmg/cura.entitlements new file mode 100644 index 0000000000..3b95f077c9 --- /dev/null +++ b/packaging/dmg/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/dmg/cura_background_dmg.png b/packaging/dmg/cura_background_dmg.png new file mode 100644 index 0000000000..e838608293 Binary files /dev/null and b/packaging/dmg/cura_background_dmg.png differ diff --git a/packaging/dmg/dmg_sign_noterize.py b/packaging/dmg/dmg_sign_noterize.py new file mode 100644 index 0000000000..8baf58e43c --- /dev/null +++ b/packaging/dmg/dmg_sign_noterize.py @@ -0,0 +1,67 @@ +import os +import argparse # Command line arguments parsing and help. +import subprocess + +ULTIMAKER_CURA_DOMAIN = os.environ.get("ULTIMAKER_CURA_DOMAIN", "nl.ultimaker.cura") + + +def build_dmg(source_path: str, dist_path: str, filename: 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", "Ultimaker-Cura.app", "169", "272", + "--eula", f"{source_path}/packaging/cura_license.txt", + "--background", f"{source_path}/packaging/dmg/cura_background_dmg.png", + f"{dist_path}/{filename}", + f"{dist_path}/Ultimaker-Cura.app"] + + subprocess.run(arguments) + + +def sign(dist_path: str, filename: str) -> None: + codesign_executable = os.environ.get("CODESIGN", "codesign") + codesign_identity = os.environ.get("CODESIGN_IDENTITY") + + arguments = [codesign_executable, + "-s", codesign_identity, + "--timestamp", + "-i", f"{ULTIMAKER_CURA_DOMAIN}.dmg", # TODO: check if this really should have the extra dmg. We seem to be doing this also in the old Rundeck scripts + f"{dist_path}/{filename}"] + + subprocess.run(arguments) + + +def notarize(dist_path: str, filename: str) -> None: + notarize_user = os.environ.get("MAC_NOTARIZE_USER") + notarize_password = os.environ.get("MAC_NOTARIZE_PASS") + altool_executable = os.environ.get("ALTOOL_EXECUTABLE", "altool") + + arguments = [ + "xcrun", altool_executable, + "--notarize-app", + "--primary-bundle-id", ULTIMAKER_CURA_DOMAIN, + "--username", notarize_user, + "--password", notarize_password, + "--file", f"{dist_path}/{filename}" + ] + + subprocess.run(arguments) + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description = "Create dmg 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 dmg (e.g. 'Ultimaker-Cura-5.1.0-beta-Linux-X64.dmg')") + args = parser.parse_args() + build_dmg(args.source_path, args.dist_path, args.filename) + sign(args.dist_path, args.filename) + + notarize_dmg = bool(os.environ.get("NOTARIZE_DMG", "TRUE")) + if notarize_dmg: + notarize(args.dist_path, args.filename) 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/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index ddc7922546..c8f7bc8abd 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -23,6 +23,7 @@ from UM.Settings.ContainerRegistry import ContainerRegistry from UM.MimeTypeDatabase import MimeTypeDatabase, MimeType from UM.Job import Job from UM.Preferences import Preferences +from cura.CuraPackageManager import CuraPackageManager from cura.Machines.ContainerTree import ContainerTree from cura.Settings.CuraStackBuilder import CuraStackBuilder @@ -579,6 +580,10 @@ class ThreeMFWorkspaceReader(WorkspaceReader): is_printer_group = True machine_name = group_name + # Getting missing required package ids + package_metadata = self._parse_packages_metadata(archive) + missing_package_metadata = self._filter_missing_package_metadata(package_metadata) + # Show the dialog, informing the user what is about to happen. self._dialog.setMachineConflict(machine_conflict) self._dialog.setIsPrinterGroup(is_printer_group) @@ -599,6 +604,7 @@ class ThreeMFWorkspaceReader(WorkspaceReader): self._dialog.setExtruders(extruders) self._dialog.setVariantType(variant_type_name) self._dialog.setHasObjectsOnPlate(Application.getInstance().platformActivity) + self._dialog.setMissingPackagesMetadata(missing_package_metadata) self._dialog.show() # Block until the dialog is closed. @@ -1243,3 +1249,29 @@ class ThreeMFWorkspaceReader(WorkspaceReader): metadata = data.iterfind("./um:metadata/um:name/um:label", {"um": "http://www.ultimaker.com/material"}) for entry in metadata: return entry.text + + @staticmethod + def _parse_packages_metadata(archive: zipfile.ZipFile) -> List[Dict[str, str]]: + try: + package_metadata = json.loads(archive.open("Cura/packages.json").read().decode("utf-8")) + return package_metadata["packages"] + except KeyError: + Logger.warning("No package metadata was found in .3mf file.") + except Exception: + Logger.error("Failed to load packages metadata from .3mf file.") + + return [] + + + @staticmethod + def _filter_missing_package_metadata(package_metadata: List[Dict[str, str]]) -> List[Dict[str, str]]: + """Filters out installed packages from package_metadata""" + missing_packages = [] + package_manager = cast(CuraPackageManager, CuraApplication.getInstance().getPackageManager()) + + for package in package_metadata: + package_id = package["id"] + if not package_manager.isPackageInstalled(package_id): + missing_packages.append(package) + + return missing_packages diff --git a/plugins/3MFReader/WorkspaceDialog.py b/plugins/3MFReader/WorkspaceDialog.py index b63d8b6288..0a8f7784b2 100644 --- a/plugins/3MFReader/WorkspaceDialog.py +++ b/plugins/3MFReader/WorkspaceDialog.py @@ -1,14 +1,19 @@ -# Copyright (c) 2020 Ultimaker B.V. +# Copyright (c) 2022 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. + +from PyQt6.QtCore import pyqtSignal, QObject, pyqtProperty, QCoreApplication, QUrl +from PyQt6.QtGui import QDesktopServices from typing import List, Optional, Dict, cast -from PyQt6.QtCore import pyqtSignal, QObject, pyqtProperty, QCoreApplication -from UM.FlameProfiler import pyqtSlot -from UM.PluginRegistry import PluginRegistry -from UM.Application import Application -from UM.i18n import i18nCatalog -from UM.Settings.ContainerRegistry import ContainerRegistry from cura.Settings.GlobalStack import GlobalStack +from UM.Application import Application +from UM.FlameProfiler import pyqtSlot +from UM.i18n import i18nCatalog +from UM.Logger import Logger +from UM.Message import Message +from UM.PluginRegistry import PluginRegistry +from UM.Settings.ContainerRegistry import ContainerRegistry + from .UpdatableMachinesModel import UpdatableMachinesModel import os @@ -23,7 +28,7 @@ i18n_catalog = i18nCatalog("cura") class WorkspaceDialog(QObject): showDialogSignal = pyqtSignal() - def __init__(self, parent = None): + def __init__(self, parent = None) -> None: super().__init__(parent) self._component = None self._context = None @@ -59,6 +64,9 @@ class WorkspaceDialog(QObject): self._objects_on_plate = False self._is_printer_group = False self._updatable_machines_model = UpdatableMachinesModel(self) + self._missing_package_metadata: List[Dict[str, str]] = [] + self._plugin_registry: PluginRegistry = CuraApplication.getInstance().getPluginRegistry() + self._install_missing_package_dialog: Optional[QObject] = None machineConflictChanged = pyqtSignal() qualityChangesConflictChanged = pyqtSignal() @@ -79,6 +87,7 @@ class WorkspaceDialog(QObject): variantTypeChanged = pyqtSignal() extrudersChanged = pyqtSignal() isPrinterGroupChanged = pyqtSignal() + missingPackagesChanged = pyqtSignal() @pyqtProperty(bool, notify = isPrinterGroupChanged) def isPrinterGroup(self) -> bool: @@ -274,6 +283,21 @@ class WorkspaceDialog(QObject): self._has_quality_changes_conflict = quality_changes_conflict self.qualityChangesConflictChanged.emit() + def setMissingPackagesMetadata(self, missing_package_metadata: List[Dict[str, str]]) -> None: + self._missing_package_metadata = missing_package_metadata + self.missingPackagesChanged.emit() + + @pyqtProperty("QVariantList", notify=missingPackagesChanged) + def missingPackages(self) -> List[Dict[str, str]]: + return self._missing_package_metadata + + @pyqtSlot() + def installMissingPackages(self) -> None: + marketplace_plugin = PluginRegistry.getInstance().getPluginObject("Marketplace") + if not marketplace_plugin: + Logger.warning("Could not show dialog to install missing plug-ins. Is Marketplace plug-in not available?") + marketplace_plugin.showInstallMissingPackageDialog(self._missing_package_metadata, self.showMissingMaterialsWarning) # type: ignore + def getResult(self) -> Dict[str, Optional[str]]: if "machine" in self._result and self.updatableMachinesModel.count <= 1: self._result["machine"] = None @@ -360,6 +384,41 @@ class WorkspaceDialog(QObject): time.sleep(1 / 50) QCoreApplication.processEvents() # Ensure that the GUI does not freeze. + @pyqtSlot() + def showMissingMaterialsWarning(self) -> None: + result_message = Message( + i18n_catalog.i18nc("@info:status", "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."), + lifetime=0, + title=i18n_catalog.i18nc("@info:title", "Material profiles not installed"), + message_type=Message.MessageType.WARNING + ) + result_message.addAction( + "learn_more", + name=i18n_catalog.i18nc("@action:button", "Learn more"), + icon="", + description="Learn more about project materials.", + button_align=Message.ActionButtonAlignment.ALIGN_LEFT, + button_style=Message.ActionButtonStyle.LINK + ) + result_message.addAction( + "install_materials", + name=i18n_catalog.i18nc("@action:button", "Install Materials"), + icon="", + description="Install missing materials from project file.", + button_align=Message.ActionButtonAlignment.ALIGN_RIGHT, + button_style=Message.ActionButtonStyle.DEFAULT + ) + result_message.actionTriggered.connect(self._onMessageActionTriggered) + result_message.show() + + def _onMessageActionTriggered(self, message: Message, sync_message_action: str) -> None: + if sync_message_action == "install_materials": + self.installMissingPackages() + message.hide() + elif sync_message_action == "learn_more": + QDesktopServices.openUrl(QUrl("https://support.ultimaker.com/hc/en-us/articles/360011968360-Using-the-Ultimaker-Marketplace")) + + def __show(self) -> None: if self._view is None: self._createViewFromQML() diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index e69cced221..4899c6873a 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -17,7 +17,8 @@ UM.Dialog minimumWidth: UM.Theme.getSize("popup_dialog").width minimumHeight: UM.Theme.getSize("popup_dialog").height width: minimumWidth - + backgroundColor: UM.Theme.getColor("main_background") + margin: UM.Theme.getSize("default_margin").width property int comboboxHeight: UM.Theme.getSize("default_margin").height onClosing: manager.notifyClosed() @@ -31,337 +32,220 @@ UM.Dialog } } - Item + Flickable { - id: dialogSummaryItem + clip: true width: parent.width - height: childrenRect.height - anchors.margins: 10 * screenScaleFactor + height: parent.height + contentHeight: dialogSummaryItem.height + ScrollBar.vertical: UM.ScrollBar { id: verticalScrollBar } - UM.I18nCatalog + Item { - id: catalog - name: "cura" - } - - ListModel - { - id: resolveStrategiesModel - // Instead of directly adding the list elements, we add them afterwards. - // This is because it's impossible to use setting function results to be bound to listElement properties directly. - // See http://stackoverflow.com/questions/7659442/listelement-fields-as-properties - Component.onCompleted: - { - append({"key": "override", "label": catalog.i18nc("@action:ComboBox Update/override existing profile", "Update existing")}); - append({"key": "new", "label": catalog.i18nc("@action:ComboBox Save settings in a new profile", "Create new")}); - } - } - - Column - { - width: parent.width + id: dialogSummaryItem + width: verticalScrollBar.visible ? parent.width - verticalScrollBar.width - UM.Theme.getSize("default_margin").width : parent.width height: childrenRect.height - spacing: UM.Theme.getSize("default_margin").height + anchors.margins: 10 * screenScaleFactor + + UM.I18nCatalog + { + id: catalog + name: "cura" + } + + ListModel + { + id: resolveStrategiesModel + // Instead of directly adding the list elements, we add them afterwards. + // This is because it's impossible to use setting function results to be bound to listElement properties directly. + // See http://stackoverflow.com/questions/7659442/listelement-fields-as-properties + Component.onCompleted: + { + append({"key": "override", "label": catalog.i18nc("@action:ComboBox Update/override existing profile", "Update existing")}); + append({"key": "new", "label": catalog.i18nc("@action:ComboBox Save settings in a new profile", "Create new")}); + } + } Column { width: parent.width height: childrenRect.height + spacing: UM.Theme.getSize("default_margin").height - UM.Label + Column { - id: titleLabel - text: catalog.i18nc("@action:title", "Summary - Cura Project") - font: UM.Theme.getFont("large") - } - - Rectangle - { - id: separator - color: UM.Theme.getColor("text") width: parent.width - height: UM.Theme.getSize("default_lining").height - } - } + height: childrenRect.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 + UM.Label { - id: machineResolveComboBox - model: manager.updatableMachinesModel - visible: machineResolveStrategyTooltip.visible - textRole: "displayName" + id: titleLabel + text: catalog.i18nc("@action:title", "Summary - Cura Project") + font: UM.Theme.getFont("large") + } + + Rectangle + { + id: separator + color: UM.Theme.getColor("text") width: parent.width - height: UM.Theme.getSize("button").height - onCurrentIndexChanged: - { - if (model.getItem(currentIndex).id == "new" - && model.getItem(currentIndex).type == "default_option") - { - manager.setResolveStrategy("machine", "new") - } - else - { - manager.setResolveStrategy("machine", "override") - manager.setMachineToOverride(model.getItem(currentIndex).id) - } - } + height: UM.Theme.getSize("default_lining").height + } + } - onVisibleChanged: - { - if (!visible) {return} + Item + { + width: parent.width + height: childrenRect.height - 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++) + 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 + { + id: machineResolveComboBox + model: manager.updatableMachinesModel + visible: machineResolveStrategyTooltip.visible + textRole: "displayName" + width: parent.width + height: UM.Theme.getSize("button").height + onCurrentIndexChanged: { - if (model.getItem(i).name == manager.machineName) + if (model.getItem(currentIndex).id == "new" + && model.getItem(currentIndex).type == "default_option") { - currentIndex = i - break + manager.setResolveStrategy("machine", "new") + } + else + { + manager.setResolveStrategy("machine", "override") + manager.setMachineToOverride(model.getItem(currentIndex).id) } } - // 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) + + onVisibleChanged: { - currentIndex = 1 + 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 - { - id: printer_settings_label - text: catalog.i18nc("@action:label", "Printer settings") - font: UM.Theme.getFont("default_bold") - } - - Row + Column { 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 - } - } - } - } - - Item - { - width: parent.width - height: childrenRect.height - - UM.TooltipArea - { - anchors.right: parent.right - anchors.top: parent.top - width: (parent.width / 3) | 0 - height: visible ? comboboxHeight : 0 - 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) - } - } - } - - Column - { - width: parent.width - height: childrenRect.height - - UM.Label - { - text: catalog.i18nc("@action:label", "Profile settings") - font: UM.Theme.getFont("default_bold") - } - - Row - { - 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 - } - } - - Row - { - 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 - } - } - } - } - - Item - { - width: parent.width - height: childrenRect.height - - UM.TooltipArea - { - 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") + id: printer_settings_label + text: catalog.i18nc("@action:label", "Printer settings") font: UM.Theme.getFont("default_bold") - width: (parent.width / 3) | 0 } - } - Repeater - { - model: manager.materialLabels - delegate: Row + 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 + } + } + } + } + + Item + { + width: parent.width + height: childrenRect.height + + UM.TooltipArea + { + anchors.right: parent.right + anchors.top: parent.top + width: (parent.width / 3) | 0 + height: visible ? comboboxHeight : 0 + 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) + } + } + } + + Column + { + width: parent.width + height: childrenRect.height + + UM.Label + { + text: catalog.i18nc("@action:label", "Profile settings") + font: UM.Theme.getFont("default_bold") + } + + Row + { + width: parent.width + height: childrenRect.height + UM.Label { text: catalog.i18nc("@action:label", "Name") @@ -369,77 +253,250 @@ UM.Dialog } UM.Label { - text: modelData + text: manager.qualityName width: (parent.width / 3) | 0 wrapMode: Text.WordWrap } } + + Row + { + 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 + } + } } } - } - Column - { - width: parent.width - height: childrenRect.height - - UM.Label + Item { - text: catalog.i18nc("@action:label", "Setting visibility") - font: UM.Theme.getFont("default_bold") + width: parent.width + height: childrenRect.height + + UM.TooltipArea + { + 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 + } + } + + Repeater + { + model: manager.materialLabels + delegate: Row + { + 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 + } + } + } + } } + + Column + { + width: parent.width + height: childrenRect.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 + { + text: catalog.i18nc("@action:label", "Mode") + width: (parent.width / 3) | 0 + } + UM.Label + { + 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 + } + } + } + Row { width: parent.width height: childrenRect.height - UM.Label + visible: manager.hasObjectsOnPlate + UM.ColorImage { - text: catalog.i18nc("@action:label", "Mode") - width: (parent.width / 3) | 0 + width: warningLabel.height + height: width + source: UM.Theme.getIcon("Information") + color: UM.Theme.getColor("text") } UM.Label { - 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 + id: warningLabel + text: catalog.i18nc("@action:warning", "Loading a project will clear all models on the build plate.") } } } + } + } - Row + property bool warning: manager.missingPackages.length > 0 + + footerComponent: Rectangle + { + color: warning ? UM.Theme.getColor("warning") : "transparent" + anchors.bottom: parent.bottom + width: parent.width + height: childrenRect.height + 2 * base.margin + + Column + { + height: childrenRect.height + spacing: base.margin + + anchors.margins: base.margin + anchors.left: parent.left + anchors.right: parent.right + anchors.top: parent.top + + RowLayout { - width: parent.width + id: warningRow height: childrenRect.height - visible: manager.hasObjectsOnPlate + visible: warning + spacing: base.margin UM.ColorImage { - width: warningLabel.height - height: width - source: UM.Theme.getIcon("Information") - color: UM.Theme.getColor("text") + width: UM.Theme.getSize("extruder_icon").width + height: UM.Theme.getSize("extruder_icon").height + source: UM.Theme.getIcon("Warning") } + UM.Label { - id: warningLabel - text: catalog.i18nc("@action:warning", "Loading a project will clear all models on the build plate.") - wrapMode: Text.Wrap + id: warningText + text: catalog.i18nc("@label", "The material used in this project is currently not installed in Cura.
    Install the material profile and reopen the project.") } } + + Loader + { + width: parent.width + height: childrenRect.height + sourceComponent: buttonRow + } } } @@ -448,13 +505,30 @@ UM.Dialog rightButtons: [ Cura.TertiaryButton { + visible: !warning text: catalog.i18nc("@action:button", "Cancel") onClicked: reject() }, Cura.PrimaryButton { + visible: !warning text: catalog.i18nc("@action:button", "Open") onClicked: accept() + }, + Cura.TertiaryButton + { + visible: warning + text: catalog.i18nc("@action:button", "Open project anyway") + onClicked: { + manager.showMissingMaterialsWarning(); + accept(); + } + }, + Cura.PrimaryButton + { + visible: warning + text: catalog.i18nc("@action:button", "Install missing material") + onClicked: manager.installMissingPackages() } ] diff --git a/plugins/3MFReader/plugin.json b/plugins/3MFReader/plugin.json index 09fcf6c573..bf0bc05364 100644 --- a/plugins/3MFReader/plugin.json +++ b/plugins/3MFReader/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Provides support for reading 3MF files.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/3MFWriter/ThreeMFWriter.py b/plugins/3MFWriter/ThreeMFWriter.py index 853aa08513..57c667145e 100644 --- a/plugins/3MFWriter/ThreeMFWriter.py +++ b/plugins/3MFWriter/ThreeMFWriter.py @@ -1,15 +1,22 @@ # Copyright (c) 2015-2022 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -from typing import Optional +import json + +from typing import Optional, cast, List, Dict from UM.Mesh.MeshWriter import MeshWriter from UM.Math.Vector import Vector from UM.Logger import Logger from UM.Math.Matrix import Matrix from UM.Application import Application +from UM.Message import Message +from UM.Resources import Resources from UM.Scene.SceneNode import SceneNode +from UM.Settings.ContainerRegistry import ContainerRegistry +from UM.Settings.EmptyInstanceContainer import EmptyInstanceContainer from cura.CuraApplication import CuraApplication +from cura.CuraPackageManager import CuraPackageManager from cura.Utils.Threading import call_on_qt_thread from cura.Snapshot import Snapshot @@ -34,6 +41,9 @@ import UM.Application from UM.i18n import i18nCatalog catalog = i18nCatalog("cura") +THUMBNAIL_PATH = "Metadata/thumbnail.png" +MODEL_PATH = "3D/3dmodel.model" +PACKAGE_METADATA_PATH = "Cura/packages.json" class ThreeMFWriter(MeshWriter): def __init__(self): @@ -46,7 +56,7 @@ class ThreeMFWriter(MeshWriter): } self._unit_matrix_string = self._convertMatrixToString(Matrix()) - self._archive = None # type: Optional[zipfile.ZipFile] + self._archive: Optional[zipfile.ZipFile] = None self._store_archive = False def _convertMatrixToString(self, matrix): @@ -132,11 +142,11 @@ class ThreeMFWriter(MeshWriter): def getArchive(self): return self._archive - def write(self, stream, nodes, mode = MeshWriter.OutputMode.BinaryMode): + def write(self, stream, nodes, mode = MeshWriter.OutputMode.BinaryMode) -> bool: self._archive = None # Reset archive archive = zipfile.ZipFile(stream, "w", compression = zipfile.ZIP_DEFLATED) try: - model_file = zipfile.ZipInfo("3D/3dmodel.model") + model_file = zipfile.ZipInfo(MODEL_PATH) # Because zipfile is stupid and ignores archive-level compression settings when writing with ZipInfo. model_file.compress_type = zipfile.ZIP_DEFLATED @@ -151,7 +161,7 @@ class ThreeMFWriter(MeshWriter): relations_file = zipfile.ZipInfo("_rels/.rels") relations_file.compress_type = zipfile.ZIP_DEFLATED relations_element = ET.Element("Relationships", xmlns = self._namespaces["relationships"]) - model_relation_element = ET.SubElement(relations_element, "Relationship", Target = "/3D/3dmodel.model", Id = "rel0", Type = "http://schemas.microsoft.com/3dmanufacturing/2013/01/3dmodel") + model_relation_element = ET.SubElement(relations_element, "Relationship", Target = "/" + MODEL_PATH, Id = "rel0", Type = "http://schemas.microsoft.com/3dmanufacturing/2013/01/3dmodel") # Attempt to add a thumbnail snapshot = self._createSnapshot() @@ -160,28 +170,32 @@ class ThreeMFWriter(MeshWriter): thumbnail_buffer.open(QBuffer.OpenModeFlag.ReadWrite) snapshot.save(thumbnail_buffer, "PNG") - thumbnail_file = zipfile.ZipInfo("Metadata/thumbnail.png") + thumbnail_file = zipfile.ZipInfo(THUMBNAIL_PATH) # Don't try to compress snapshot file, because the PNG is pretty much as compact as it will get archive.writestr(thumbnail_file, thumbnail_buffer.data()) # Add PNG to content types file thumbnail_type = ET.SubElement(content_types, "Default", Extension = "png", ContentType = "image/png") # Add thumbnail relation to _rels/.rels file - thumbnail_relation_element = ET.SubElement(relations_element, "Relationship", Target = "/Metadata/thumbnail.png", Id = "rel1", Type = "http://schemas.openxmlformats.org/package/2006/relationships/metadata/thumbnail") + thumbnail_relation_element = ET.SubElement(relations_element, "Relationship", Target = "/" + THUMBNAIL_PATH, Id = "rel1", Type = "http://schemas.openxmlformats.org/package/2006/relationships/metadata/thumbnail") + + # Write material metadata + material_metadata = self._getMaterialPackageMetadata() + self._storeMetadataJson({"packages": material_metadata}, archive, PACKAGE_METADATA_PATH) savitar_scene = Savitar.Scene() - metadata_to_store = CuraApplication.getInstance().getController().getScene().getMetaData() + scene_metadata = CuraApplication.getInstance().getController().getScene().getMetaData() - for key, value in metadata_to_store.items(): + for key, value in scene_metadata.items(): savitar_scene.setMetaDataEntry(key, value) current_time_string = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S") - if "Application" not in metadata_to_store: + if "Application" not in scene_metadata: # This might sound a bit strange, but this field should store the original application that created # the 3mf. So if it was already set, leave it to whatever it was. savitar_scene.setMetaDataEntry("Application", CuraApplication.getInstance().getApplicationDisplayName()) - if "CreationDate" not in metadata_to_store: + if "CreationDate" not in scene_metadata: savitar_scene.setMetaDataEntry("CreationDate", current_time_string) savitar_scene.setMetaDataEntry("ModificationDate", current_time_string) @@ -233,6 +247,55 @@ class ThreeMFWriter(MeshWriter): return True + @staticmethod + def _storeMetadataJson(metadata: Dict[str, List[Dict[str, str]]], archive: zipfile.ZipFile, path: str) -> None: + """Stores metadata inside archive path as json file""" + metadata_file = zipfile.ZipInfo(path) + # We have to set the compress type of each file as well (it doesn't keep the type of the entire archive) + metadata_file.compress_type = zipfile.ZIP_DEFLATED + archive.writestr(metadata_file, json.dumps(metadata, separators=(", ", ": "), indent=4, skipkeys=True, ensure_ascii=False)) + + @staticmethod + def _getMaterialPackageMetadata() -> List[Dict[str, str]]: + """Get metadata for installed materials in active extruder stack, this does not include bundled materials. + + :return: List of material metadata dictionaries. + """ + metadata = {} + + package_manager = cast(CuraPackageManager, CuraApplication.getInstance().getPackageManager()) + + for extruder in CuraApplication.getInstance().getExtruderManager().getActiveExtruderStacks(): + if not extruder.isEnabled: + # Don't export materials not in use + continue + + if isinstance(extruder.material, type(ContainerRegistry.getInstance().getEmptyInstanceContainer())): + # This is an empty material container, no material to export + continue + + if package_manager.isMaterialBundled(extruder.material.getFileName(), extruder.material.getMetaDataEntry("GUID")): + # Don't export bundled materials + continue + + package_id = package_manager.getMaterialFilePackageId(extruder.material.getFileName(), extruder.material.getMetaDataEntry("GUID")) + package_data = package_manager.getInstalledPackageInfo(package_id) + + # We failed to find the package for this material + if not package_data: + Logger.info(f"Could not find package for material in extruder {extruder.id}, skipping.") + continue + + material_metadata = {"id": package_id, + "display_name": package_data.get("display_name") if package_data.get("display_name") else "", + "package_version": package_data.get("package_version") if package_data.get("package_version") else "", + "sdk_version_semver": package_data.get("sdk_version_semver") if package_data.get("sdk_version_semver") else ""} + + metadata[package_id] = material_metadata + + # Storing in a dict and fetching values to avoid duplicates + return list(metadata.values()) + @call_on_qt_thread # must be called from the main thread because of OpenGL def _createSnapshot(self): Logger.log("d", "Creating thumbnail image...") diff --git a/plugins/3MFWriter/__init__.py b/plugins/3MFWriter/__init__.py index eff1648489..eb8a596afe 100644 --- a/plugins/3MFWriter/__init__.py +++ b/plugins/3MFWriter/__init__.py @@ -5,21 +5,23 @@ import sys from UM.Logger import Logger try: from . import ThreeMFWriter + threemf_writer_was_imported = True except ImportError: Logger.log("w", "Could not import ThreeMFWriter; libSavitar may be missing") -from . import ThreeMFWorkspaceWriter + threemf_writer_was_imported = False +from . import ThreeMFWorkspaceWriter from UM.i18n import i18nCatalog -from UM.Platform import Platform i18n_catalog = i18nCatalog("cura") + def getMetaData(): workspace_extension = "3mf" metaData = {} - if "3MFWriter.ThreeMFWriter" in sys.modules: + if threemf_writer_was_imported: metaData["mesh_writer"] = { "output": [{ "extension": "3mf", @@ -39,6 +41,7 @@ def getMetaData(): return metaData + def register(app): if "3MFWriter.ThreeMFWriter" in sys.modules: return {"mesh_writer": ThreeMFWriter.ThreeMFWriter(), diff --git a/plugins/3MFWriter/plugin.json b/plugins/3MFWriter/plugin.json index 8e6a5785a7..b59d4ef8e1 100644 --- a/plugins/3MFWriter/plugin.json +++ b/plugins/3MFWriter/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Provides support for writing 3MF files.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/AMFReader/plugin.json b/plugins/AMFReader/plugin.json index 40b4917b97..2980c00007 100644 --- a/plugins/AMFReader/plugin.json +++ b/plugins/AMFReader/plugin.json @@ -3,5 +3,5 @@ "author": "fieldOfView", "version": "1.0.0", "description": "Provides support for reading AMF files.", - "api": 7 + "api": 8 } diff --git a/plugins/CuraDrive/plugin.json b/plugins/CuraDrive/plugin.json index 62a23e5882..23cbaec870 100644 --- a/plugins/CuraDrive/plugin.json +++ b/plugins/CuraDrive/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "description": "Backup and restore your configuration.", "version": "1.2.0", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/CuraDrive/src/qml/pages/BackupsPage.qml b/plugins/CuraDrive/src/qml/pages/BackupsPage.qml index bb17cea973..87d3127999 100644 --- a/plugins/CuraDrive/src/qml/pages/BackupsPage.qml +++ b/plugins/CuraDrive/src/qml/pages/BackupsPage.qml @@ -5,7 +5,7 @@ import QtQuick 2.7 import QtQuick.Controls 2.1 import QtQuick.Layouts 1.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.1 as Cura import "../components" @@ -22,28 +22,23 @@ Item width: parent.width anchors.fill: parent - Label + UM.Label { id: backupTitle text: catalog.i18nc("@title", "My Backups") font: UM.Theme.getFont("large") - color: UM.Theme.getColor("text") Layout.fillWidth: true - renderType: Text.NativeRendering } - Label + UM.Label { text: catalog.i18nc("@empty_state", "You don't have any backups currently. Use the 'Backup Now' button to create one.") width: parent.width - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") wrapMode: Label.WordWrap visible: backupList.model.length == 0 Layout.fillWidth: true Layout.fillHeight: true - renderType: Text.NativeRendering } BackupList @@ -54,16 +49,13 @@ Item Layout.fillHeight: true } - Label + UM.Label { text: catalog.i18nc("@backup_limit_info", "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones.") width: parent.width - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") wrapMode: Label.WordWrap visible: backupList.model.length > 4 - renderType: Text.NativeRendering } BackupListFooter diff --git a/plugins/CuraDrive/src/qml/pages/WelcomePage.qml b/plugins/CuraDrive/src/qml/pages/WelcomePage.qml index 01fbca2229..3e050b0482 100644 --- a/plugins/CuraDrive/src/qml/pages/WelcomePage.qml +++ b/plugins/CuraDrive/src/qml/pages/WelcomePage.qml @@ -23,7 +23,7 @@ Column { id: profileImage fillMode: Image.PreserveAspectFit - source: "../images/backup.svg" + source: Qt.resolvedUrl("../images/backup.svg") anchors.horizontalCenter: parent.horizontalCenter width: Math.round(parent.width / 4) } 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 d7ed5fac21..db27f8a6a3 100755 --- a/plugins/CuraEngineBackend/CuraEngineBackend.py +++ b/plugins/CuraEngineBackend/CuraEngineBackend.py @@ -60,7 +60,7 @@ class CuraEngineBackend(QObject, Backend): executable_name = "CuraEngine" if Platform.isWindows(): executable_name += ".exe" - default_engine_location = executable_name + self._default_engine_location = executable_name search_path = [ os.path.abspath(os.path.dirname(sys.executable)), @@ -74,29 +74,29 @@ class CuraEngineBackend(QObject, Backend): for path in search_path: engine_path = os.path.join(path, executable_name) if os.path.isfile(engine_path): - default_engine_location = engine_path + self._default_engine_location = engine_path break - if Platform.isLinux() and not default_engine_location: + if Platform.isLinux() and not self._default_engine_location: if not os.getenv("PATH"): raise OSError("There is something wrong with your Linux installation.") for pathdir in cast(str, os.getenv("PATH")).split(os.pathsep): execpath = os.path.join(pathdir, executable_name) if os.path.exists(execpath): - default_engine_location = execpath + self._default_engine_location = execpath break application = CuraApplication.getInstance() #type: CuraApplication self._multi_build_plate_model = None #type: Optional[MultiBuildPlateModel] self._machine_error_checker = None #type: Optional[MachineErrorChecker] - if not default_engine_location: + if not self._default_engine_location: raise EnvironmentError("Could not find CuraEngine") - Logger.log("i", "Found CuraEngine at: %s", default_engine_location) + Logger.log("i", "Found CuraEngine at: %s", self._default_engine_location) - default_engine_location = os.path.abspath(default_engine_location) - application.getPreferences().addPreference("backend/location", default_engine_location) + self._default_engine_location = os.path.abspath(self._default_engine_location) + application.getPreferences().addPreference("backend/location", self._default_engine_location) # Workaround to disable layer view processing if layer view is not active. self._layer_view_active = False #type: bool @@ -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 @@ -215,7 +216,12 @@ class CuraEngineBackend(QObject, Backend): This is useful for debugging and used to actually start the engine. :return: list of commands and args / parameters. """ - command = [CuraApplication.getInstance().getPreferences().getValue("backend/location"), "connect", "127.0.0.1:{0}".format(self._port), ""] + from cura import ApplicationMetadata + if ApplicationMetadata.IsEnterpriseVersion: + command = [self._default_engine_location] + else: + command = [CuraApplication.getInstance().getPreferences().getValue("backend/location")] + command += ["connect", "127.0.0.1:{0}".format(self._port), ""] parser = argparse.ArgumentParser(prog = "cura", add_help = False) parser.add_argument("--debug", action = "store_true", default = False, help = "Turn on the debug mode by setting this option.") @@ -807,6 +813,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 be30a9f81c..64216f373f 100644 --- a/plugins/CuraEngineBackend/StartSliceJob.py +++ b/plugins/CuraEngineBackend/StartSliceJob.py @@ -369,6 +369,9 @@ class StartSliceJob(Job): result["material_name"] = stack.material.getMetaDataEntry("name", "") result["material_brand"] = stack.material.getMetaDataEntry("brand", "") + result["quality_name"] = stack.quality.getMetaDataEntry("name", "") + result["quality_changes_name"] = stack.qualityChanges.getMetaDataEntry("name") + # Renamed settings. result["print_bed_temperature"] = result["material_bed_temperature"] result["print_temperature"] = result["material_print_temperature"] diff --git a/plugins/CuraEngineBackend/plugin.json b/plugins/CuraEngineBackend/plugin.json index e3e9324315..cddf73a067 100644 --- a/plugins/CuraEngineBackend/plugin.json +++ b/plugins/CuraEngineBackend/plugin.json @@ -2,7 +2,7 @@ "name": "CuraEngine Backend", "author": "Ultimaker B.V.", "description": "Provides the link to the CuraEngine slicing backend.", - "api": 7, + "api": 8, "version": "1.0.1", "i18n-catalog": "cura" } diff --git a/plugins/CuraProfileReader/plugin.json b/plugins/CuraProfileReader/plugin.json index e4f26532a5..4299ffc974 100644 --- a/plugins/CuraProfileReader/plugin.json +++ b/plugins/CuraProfileReader/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Provides support for importing Cura profiles.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/CuraProfileWriter/plugin.json b/plugins/CuraProfileWriter/plugin.json index 0dc4453329..6331ad9416 100644 --- a/plugins/CuraProfileWriter/plugin.json +++ b/plugins/CuraProfileWriter/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Provides support for exporting Cura profiles.", - "api": 7, + "api": 8, "i18n-catalog":"cura" } diff --git a/plugins/DigitalLibrary/plugin.json b/plugins/DigitalLibrary/plugin.json index 5ed846da6a..95e0eeb0e4 100644 --- a/plugins/DigitalLibrary/plugin.json +++ b/plugins/DigitalLibrary/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "description": "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library.", "version": "1.1.0", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/DigitalLibrary/resources/qml/CreateNewProjectPopup.qml b/plugins/DigitalLibrary/resources/qml/CreateNewProjectPopup.qml index 6846720dda..1aef93c251 100644 --- a/plugins/DigitalLibrary/resources/qml/CreateNewProjectPopup.qml +++ b/plugins/DigitalLibrary/resources/qml/CreateNewProjectPopup.qml @@ -5,7 +5,7 @@ import QtQuick 2.15 import QtQuick.Window 2.2 import QtQuick.Controls 2.3 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.6 as Cura import DigitalFactory 1.0 as DF @@ -64,12 +64,10 @@ Popup } } - Label + UM.Label { id: projectNameLabel text: "Project Name" - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") anchors { top: createNewLibraryProjectLabel.bottom @@ -107,13 +105,12 @@ Popup } } - Label + UM.Label { id: errorWhileCreatingProjectLabel text: manager.projectCreationErrorText width: parent.width wrapMode: Text.WordWrap - font: UM.Theme.getFont("default") color: UM.Theme.getColor("error") visible: manager.creatingNewProjectStatus == DF.RetrievalStatus.Failed anchors diff --git a/plugins/DigitalLibrary/resources/qml/LoadMoreProjectsCard.qml b/plugins/DigitalLibrary/resources/qml/LoadMoreProjectsCard.qml index 6a0706bd00..abc978be4a 100644 --- a/plugins/DigitalLibrary/resources/qml/LoadMoreProjectsCard.qml +++ b/plugins/DigitalLibrary/resources/qml/LoadMoreProjectsCard.qml @@ -37,7 +37,7 @@ Cura.RoundedRectangle width: UM.Theme.getSize("section").height height: width color: UM.Theme.getColor("text_link") - source: "../images/arrow_down.svg" + source: Qt.resolvedUrl("../images/arrow_down.svg") } Label @@ -65,7 +65,7 @@ Cura.RoundedRectangle { target: projectImage color: UM.Theme.getColor("text_link") - source: "../images/arrow_down.svg" + source: Qt.resolvedUrl("../images/arrow_down.svg") } PropertyChanges { @@ -88,7 +88,7 @@ Cura.RoundedRectangle { target: projectImage color: UM.Theme.getColor("text_link") - source: "../images/arrow_down.svg" + source: Qt.resolvedUrl("../images/arrow_down.svg") } PropertyChanges { @@ -111,7 +111,7 @@ Cura.RoundedRectangle { target: projectImage color: UM.Theme.getColor("action_button_disabled_text") - source: "../images/update.svg" + source: Qt.resolvedUrl("../images/update.svg") } PropertyChanges { diff --git a/plugins/DigitalLibrary/resources/qml/OpenProjectFilesPage.qml b/plugins/DigitalLibrary/resources/qml/OpenProjectFilesPage.qml index 3e483b4fef..3c36a5687a 100644 --- a/plugins/DigitalLibrary/resources/qml/OpenProjectFilesPage.qml +++ b/plugins/DigitalLibrary/resources/qml/OpenProjectFilesPage.qml @@ -83,13 +83,12 @@ Item } } - Label + UM.Label { id: emptyProjectLabel anchors.horizontalCenter: parent.horizontalCenter anchors.verticalCenter: parent.verticalCenter text: "Select a project to view its files." - font: UM.Theme.getFont("default") color: UM.Theme.getColor("setting_category_text") Connections @@ -102,14 +101,13 @@ Item } } - Label + UM.Label { id: noFilesInProjectLabel anchors.horizontalCenter: parent.horizontalCenter anchors.verticalCenter: parent.verticalCenter visible: (manager.digitalFactoryFileModel.count == 0 && !emptyProjectLabel.visible && !retrievingFilesBusyIndicator.visible) text: "No supported files in this project." - font: UM.Theme.getFont("default") color: UM.Theme.getColor("setting_category_text") } diff --git a/plugins/DigitalLibrary/resources/qml/ProjectSummaryCard.qml b/plugins/DigitalLibrary/resources/qml/ProjectSummaryCard.qml index ba2abf22a9..ca836ee21d 100644 --- a/plugins/DigitalLibrary/resources/qml/ProjectSummaryCard.qml +++ b/plugins/DigitalLibrary/resources/qml/ProjectSummaryCard.qml @@ -2,7 +2,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.6 as Cura Cura.RoundedRectangle @@ -58,34 +58,31 @@ Cura.RoundedRectangle width: parent.width - x - UM.Theme.getSize("default_margin").width anchors.verticalCenter: parent.verticalCenter - Label + UM.Label { id: displayNameLabel width: parent.width height: Math.round(parent.height / 3) elide: Text.ElideRight - color: UM.Theme.getColor("text") font: UM.Theme.getFont("default_bold") } - Label + UM.Label { id: usernameLabel width: parent.width height: Math.round(parent.height / 3) elide: Text.ElideRight color: UM.Theme.getColor("small_button_text") - font: UM.Theme.getFont("default") } - Label + UM.Label { id: lastUpdatedLabel width: parent.width height: Math.round(parent.height / 3) elide: Text.ElideRight color: UM.Theme.getColor("small_button_text") - font: UM.Theme.getFont("default") } } } diff --git a/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml b/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml index e7114e3312..0a94a4f48a 100644 --- a/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml +++ b/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml @@ -14,6 +14,9 @@ import DigitalFactory 1.0 as DF Item { id: base + + property variant catalog: UM.I18nCatalog { name: "cura" } + width: parent.width height: parent.height @@ -44,14 +47,13 @@ Item cardMouseAreaEnabled: false } - Label + UM.Label { id: fileNameLabel anchors.top: projectSummaryCard.bottom anchors.topMargin: UM.Theme.getSize("default_margin").height text: "Cura project name" font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") } @@ -110,13 +112,12 @@ Item } } - Label + UM.Label { id: emptyProjectLabel anchors.horizontalCenter: parent.horizontalCenter anchors.verticalCenter: parent.verticalCenter text: "Select a project to view its files." - font: UM.Theme.getFont("default") color: UM.Theme.getColor("setting_category_text") Connections @@ -129,14 +130,13 @@ Item } } - Label + UM.Label { id: noFilesInProjectLabel anchors.horizontalCenter: parent.horizontalCenter anchors.verticalCenter: parent.verticalCenter visible: (manager.digitalFactoryFileModel.count == 0 && !emptyProjectLabel.visible && !retrievingFilesBusyIndicator.visible) text: "No supported files in this project." - font: UM.Theme.getFont("default") color: UM.Theme.getColor("setting_category_text") } @@ -193,53 +193,29 @@ Item text: "Save" enabled: (asProjectCheckbox.checked || asSlicedCheckbox.checked) && dfFilenameTextfield.text.length >= 1 && dfFilenameTextfield.state !== 'invalid' - onClicked: - { - let saveAsFormats = []; - if (asProjectCheckbox.checked) - { - saveAsFormats.push("3mf"); - } - if (asSlicedCheckbox.checked) - { - saveAsFormats.push("ufp"); - } - manager.saveFileToSelectedProject(dfFilenameTextfield.text, saveAsFormats); - } + onClicked: manager.saveFileToSelectedProject(dfFilenameTextfield.text, asProjectComboBox.currentValue) busy: false } - Row + Cura.ComboBox { + id: asProjectComboBox - id: saveAsFormatRow + width: UM.Theme.getSize("combobox_wide").width + height: saveButton.height anchors.verticalCenter: saveButton.verticalCenter anchors.right: saveButton.left anchors.rightMargin: UM.Theme.getSize("thin_margin").height - width: childrenRect.width - spacing: UM.Theme.getSize("default_margin").width - UM.CheckBox - { - id: asProjectCheckbox - height: UM.Theme.getSize("checkbox").height - anchors.verticalCenter: parent.verticalCenter - checked: true - text: "Save Cura project" - font: UM.Theme.getFont("medium") - } + enabled: UM.Backend.state == UM.Backend.Done + currentIndex: UM.Backend.state == UM.Backend.Done ? 0 : 1 + textRole: "text" + valueRole: "value" - UM.CheckBox - { - id: asSlicedCheckbox - height: UM.Theme.getSize("checkbox").height - anchors.verticalCenter: parent.verticalCenter - - enabled: UM.Backend.state == UM.Backend.Done - checked: UM.Backend.state == UM.Backend.Done - text: "Save print file" - font: UM.Theme.getFont("medium") - } + model: [ + { text: catalog.i18nc("@option", "Save Cura project and print file"), key: "3mf_ufp", value: ["3mf", "ufp"] }, + { text: catalog.i18nc("@option", "Save Cura project"), key: "3mf", value: ["3mf"] }, + ] } Component.onCompleted: diff --git a/plugins/DigitalLibrary/resources/qml/SelectProjectPage.qml b/plugins/DigitalLibrary/resources/qml/SelectProjectPage.qml index ed632124e5..faceb4df23 100644 --- a/plugins/DigitalLibrary/resources/qml/SelectProjectPage.qml +++ b/plugins/DigitalLibrary/resources/qml/SelectProjectPage.qml @@ -6,7 +6,7 @@ import QtQuick.Window 2.2 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.1 -import UM 1.2 as UM +import UM 1.6 as UM import Cura 1.7 as Cura import DigitalFactory 1.0 as DF @@ -99,18 +99,17 @@ Item { id: digitalFactoryImage anchors.horizontalCenter: parent.horizontalCenter - source: searchBar.text === "" ? "../images/digital_factory.svg" : "../images/projects_not_found.svg" + source: Qt.resolvedUrl(searchBar.text === "" ? "../images/digital_factory.svg" : "../images/projects_not_found.svg") fillMode: Image.PreserveAspectFit width: parent.width - 2 * UM.Theme.getSize("thick_margin").width } - Label + UM.Label { id: noLibraryProjectsLabel anchors.horizontalCenter: parent.horizontalCenter text: searchBar.text === "" ? "It appears that you don't have any projects in the Library yet." : "No projects found that match the search query." font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") } Cura.TertiaryButton @@ -148,29 +147,7 @@ Item contentHeight: projectsListView.implicitHeight anchors.fill: parent - ScrollBar.vertical: ScrollBar - { - // Vertical ScrollBar, styled similarly to the scrollBar in the settings panel - id: verticalScrollBar - visible: flickableView.contentHeight > flickableView.height - - background: Rectangle - { - implicitWidth: UM.Theme.getSize("scrollbar").width - radius: Math.round(implicitWidth / 2) - color: UM.Theme.getColor("scrollbar_background") - } - - contentItem: Rectangle - { - id: scrollViewHandle - implicitWidth: UM.Theme.getSize("scrollbar").width - radius: Math.round(implicitWidth / 2) - - color: verticalScrollBar.pressed ? UM.Theme.getColor("scrollbar_handle_down") : verticalScrollBar.hovered ? UM.Theme.getColor("scrollbar_handle_hover") : UM.Theme.getColor("scrollbar_handle") - Behavior on color { ColorAnimation { duration: 50; } } - } - } + ScrollBar.vertical: UM.ScrollBar { id: verticalScrollBar } Column { diff --git a/plugins/DigitalLibrary/src/DFFileExportAndUploadManager.py b/plugins/DigitalLibrary/src/DFFileExportAndUploadManager.py index 940711f19c..4defd2f409 100644 --- a/plugins/DigitalLibrary/src/DFFileExportAndUploadManager.py +++ b/plugins/DigitalLibrary/src/DFFileExportAndUploadManager.py @@ -1,5 +1,6 @@ -# 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 import threading from json import JSONDecodeError @@ -37,17 +38,18 @@ class DFFileExportAndUploadManager: formats: List[str], on_upload_error: Callable[[], Any], on_upload_success: Callable[[], Any], - on_upload_finished: Callable[[], Any] , + on_upload_finished: Callable[[], Any], on_upload_progress: Callable[[int], Any]) -> None: - self._file_handlers = file_handlers # type: Dict[str, FileHandler] - self._nodes = nodes # type: List[SceneNode] - self._library_project_id = library_project_id # type: str - self._library_project_name = library_project_name # type: str - self._file_name = file_name # type: str - self._upload_jobs = [] # type: List[ExportFileJob] - self._formats = formats # type: List[str] + self._file_handlers: Dict[str, FileHandler] = file_handlers + self._nodes: List[SceneNode] = nodes + self._library_project_id: str = library_project_id + self._library_project_name: str = library_project_name + self._file_name: str = file_name + self._upload_jobs: List[ExportFileJob] = [] + self._formats: List[str] = formats self._api = DigitalFactoryApiClient(application = CuraApplication.getInstance(), on_error = lambda error: Logger.log("e", str(error))) + self._source_file_id: Optional[str] = None # Functions of the parent class that should be called based on the upload process output self._on_upload_error = on_upload_error @@ -59,7 +61,7 @@ class DFFileExportAndUploadManager: # show the success message (once both upload jobs are done) self._message_lock = threading.Lock() - self._file_upload_job_metadata = self.initializeFileUploadJobMetadata() # type: Dict[str, Dict[str, Any]] + self._file_upload_job_metadata: Dict[str, Dict[str, Any]] = self.initializeFileUploadJobMetadata() self.progress_message = Message( title = "Uploading...", @@ -113,7 +115,8 @@ class DFFileExportAndUploadManager: content_type = job.getMimeType(), job_name = job.getFileName(), file_size = len(job.getOutput()), - library_project_id = self._library_project_id + library_project_id = self._library_project_id, + source_file_id = self._source_file_id ) self._api.requestUploadUFP(request, on_finished = self._uploadFileData, on_error = self._onRequestUploadPrintFileFailed) @@ -125,11 +128,17 @@ class DFFileExportAndUploadManager: """ if isinstance(file_upload_response, DFLibraryFileUploadResponse): file_name = file_upload_response.file_name + + # store the `file_id` so it can be as `source_file_id` when uploading the print file + self._source_file_id = file_upload_response.file_id elif isinstance(file_upload_response, DFPrintJobUploadResponse): 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") 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.") + return with self._message_lock: self.progress_message.show() self._file_upload_job_metadata[file_name]["file_upload_response"] = file_upload_response @@ -145,6 +154,8 @@ class DFFileExportAndUploadManager: on_progress = self._onUploadProgress, on_error = self._onUploadError) + self._handleNextUploadJob() + def _onUploadProgress(self, filename: str, progress: int) -> None: """ Updates the progress message according to the total progress of the two files and displays it to the user. It is @@ -325,8 +336,14 @@ class DFFileExportAndUploadManager: message.hide() def start(self) -> None: - for job in self._upload_jobs: + self._handleNextUploadJob() + + def _handleNextUploadJob(self): + try: + job = self._upload_jobs.pop(0) job.start() + except IndexError: + pass # Empty list, do nothing. def initializeFileUploadJobMetadata(self) -> Dict[str, Any]: metadata = {} diff --git a/plugins/DigitalLibrary/src/DFFileUploader.py b/plugins/DigitalLibrary/src/DFFileUploader.py index 6cad7828e2..23a4620bcf 100644 --- a/plugins/DigitalLibrary/src/DFFileUploader.py +++ b/plugins/DigitalLibrary/src/DFFileUploader.py @@ -39,8 +39,8 @@ class DFFileUploader: :param on_error: The method to be called when an error occurs. """ - self._http = http # type: HttpRequestManager - self._df_file = df_file # type: Union[DFLibraryFileUploadResponse, DFPrintJobUploadResponse] + self._http: HttpRequestManager = http + self._df_file: Union[DFLibraryFileUploadResponse, DFPrintJobUploadResponse] = df_file self._file_name = "" if isinstance(self._df_file, DFLibraryFileUploadResponse): self._file_name = self._df_file.file_name @@ -51,7 +51,7 @@ class DFFileUploader: self._file_name = "" else: raise TypeError("Incorrect input type") - self._data = data # type: bytes + self._data: bytes = data self._on_finished = on_finished self._on_success = on_success diff --git a/plugins/DigitalLibrary/src/DFPrintJobUploadRequest.py b/plugins/DigitalLibrary/src/DFPrintJobUploadRequest.py index ab434e3f04..b49336a2f2 100644 --- a/plugins/DigitalLibrary/src/DFPrintJobUploadRequest.py +++ b/plugins/DigitalLibrary/src/DFPrintJobUploadRequest.py @@ -1,12 +1,14 @@ # Copyright (c) 2021 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. +from typing import Optional + from .BaseModel import BaseModel # Model that represents the request to upload a print job to the cloud class DFPrintJobUploadRequest(BaseModel): - def __init__(self, job_name: str, file_size: int, content_type: str, library_project_id: str, **kwargs) -> None: + def __init__(self, job_name: str, file_size: int, content_type: str, library_project_id: str, source_file_id: str, **kwargs) -> None: """Creates a new print job upload request. :param job_name: The name of the print job. @@ -18,4 +20,5 @@ class DFPrintJobUploadRequest(BaseModel): self.file_size = file_size self.content_type = content_type self.library_project_id = library_project_id + self.source_file_id = source_file_id super().__init__(**kwargs) diff --git a/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py b/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py index 3456638ba6..13c65f79c4 100644 --- a/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py +++ b/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py @@ -40,7 +40,7 @@ class DigitalFactoryApiClient: DEFAULT_REQUEST_TIMEOUT = 10 # seconds # In order to avoid garbage collection we keep the callbacks in this list. - _anti_gc_callbacks = [] # type: List[Callable[[Any], None]] + _anti_gc_callbacks: List[Callable[[Any], None]] = [] def __init__(self, application: CuraApplication, on_error: Callable[[List[CloudError]], None], projects_limit_per_page: Optional[int] = None) -> None: """Initializes a new digital factory API client. @@ -54,7 +54,7 @@ class DigitalFactoryApiClient: self._scope = JsonDecoratorScope(UltimakerCloudScope(application)) self._http = HttpRequestManager.getInstance() self._on_error = on_error - self._file_uploader = None # type: Optional[DFFileUploader] + self._file_uploader: Optional[DFFileUploader] = None self._library_max_private_projects: Optional[int] = None self._projects_pagination_mgr = PaginationManager(limit = projects_limit_per_page) if projects_limit_per_page else None # type: Optional[PaginationManager] @@ -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 fa6c63e1dc..cee367e188 100644 --- a/plugins/DigitalLibrary/src/DigitalFactoryController.py +++ b/plugins/DigitalLibrary/src/DigitalFactoryController.py @@ -10,7 +10,7 @@ from enum import IntEnum from pathlib import Path from typing import Optional, List, Dict, Any, cast -from PyQt6.QtCore import pyqtSignal, QObject, pyqtSlot, pyqtProperty, pyqtEnum, QTimer, QUrl +from PyQt6.QtCore import pyqtSignal, QObject, pyqtSlot, pyqtProperty, pyqtEnum, QTimer, QUrl, QMetaObject from PyQt6.QtNetwork import QNetworkReply from PyQt6.QtQml import qmlRegisterType, qmlRegisterUncreatableMetaObject @@ -32,26 +32,6 @@ from .DigitalFactoryProjectModel import DigitalFactoryProjectModel from .DigitalFactoryProjectResponse import DigitalFactoryProjectResponse -class RetrievalStatus(IntEnum): - """ - The status of an http get request. - - This is not an enum, because we want to use it in QML and QML doesn't recognize Python enums. - """ - Idle = 0 - InProgress = 1 - Success = 2 - Failed = 3 - - -class DFRetrievalStatus(QObject): - """ - Used as an intermediate QObject that registers the RetrievalStatus as a recognizable enum in QML, so that it can - be used within QML objects as DigitalFactory.RetrievalStatus. - """ - - pyqtEnum(RetrievalStatus) - class DigitalFactoryController(QObject): @@ -98,6 +78,19 @@ class DigitalFactoryController(QObject): """Signal to inform whether the user is allowed to create more Library projects.""" userCanCreateNewLibraryProjectChanged = pyqtSignal(bool) + class RetrievalStatus(IntEnum): + """ + The status of an http get request. + + This is not an enum, because we want to use it in QML and QML doesn't recognize Python enums. + """ + Idle = 0 + InProgress = 1 + Success = 2 + Failed = 3 + + pyqtEnum(RetrievalStatus) + def __init__(self, application: CuraApplication) -> None: super().__init__(parent = None) @@ -139,9 +132,9 @@ class DigitalFactoryController(QObject): self._erase_temp_files_lock = threading.Lock() # The statuses which indicate whether Cura is waiting for a response from the DigitalFactory API - self.retrieving_files_status = RetrievalStatus.Idle - self.retrieving_projects_status = RetrievalStatus.Idle - self.creating_new_project_status = RetrievalStatus.Idle + self.retrieving_files_status = self.RetrievalStatus.Idle + self.retrieving_projects_status = self.RetrievalStatus.Idle + self.creating_new_project_status = self.RetrievalStatus.Idle self._application.engineCreatedSignal.connect(self._onEngineCreated) self._application.initializationFinished.connect(self._applicationInitializationFinished) @@ -155,9 +148,9 @@ class DigitalFactoryController(QObject): self._has_preselected_project = False self.preselectedProjectChanged.emit() - self.setRetrievingFilesStatus(RetrievalStatus.Idle) - self.setRetrievingProjectsStatus(RetrievalStatus.Idle) - self.setCreatingNewProjectStatus(RetrievalStatus.Idle) + self.setRetrievingFilesStatus(self.RetrievalStatus.Idle) + self.setRetrievingProjectsStatus(self.RetrievalStatus.Idle) + self.setCreatingNewProjectStatus(self.RetrievalStatus.Idle) self.setSelectedProjectIndex(-1) @@ -182,7 +175,7 @@ class DigitalFactoryController(QObject): self.clear() if self._account.isLoggedIn and self.userAccountHasLibraryAccess(): - self.setRetrievingProjectsStatus(RetrievalStatus.InProgress) + self.setRetrievingProjectsStatus(self.RetrievalStatus.InProgress) if preselected_project_id: self._api.getProject(preselected_project_id, on_finished = self.setProjectAsPreselected, failed = self._onGetProjectFailed) else: @@ -199,8 +192,8 @@ class DigitalFactoryController(QObject): self._project_model.setProjects([df_project]) self.setSelectedProjectIndex(0) self.setHasPreselectedProject(True) - self.setRetrievingProjectsStatus(RetrievalStatus.Success) - self.setCreatingNewProjectStatus(RetrievalStatus.Success) + self.setRetrievingProjectsStatus(self.RetrievalStatus.Success) + self.setCreatingNewProjectStatus(self.RetrievalStatus.Success) def _onGetProjectFailed(self, reply: QNetworkReply, error: QNetworkReply.NetworkError) -> None: reply_string = bytes(reply.readAll()).decode() @@ -216,7 +209,7 @@ class DigitalFactoryController(QObject): """ self.setHasMoreProjectsToLoad(self._api.hasMoreProjectsToLoad()) self._project_model.setProjects(df_projects) - self.setRetrievingProjectsStatus(RetrievalStatus.Success) + self.setRetrievingProjectsStatus(self.RetrievalStatus.Success) @pyqtSlot() def loadMoreProjects(self) -> None: @@ -224,7 +217,7 @@ class DigitalFactoryController(QObject): Initiates the process of retrieving the next page of the projects list from the API. """ self._api.getMoreProjects(on_finished = self.loadMoreProjectsFinished, failed = self._onGetProjectsFailed) - self.setRetrievingProjectsStatus(RetrievalStatus.InProgress) + self.setRetrievingProjectsStatus(self.RetrievalStatus.InProgress) def loadMoreProjectsFinished(self, df_projects: List[DigitalFactoryProjectResponse]) -> None: """ @@ -235,13 +228,13 @@ class DigitalFactoryController(QObject): """ self.setHasMoreProjectsToLoad(self._api.hasMoreProjectsToLoad()) self._project_model.extendProjects(df_projects) - self.setRetrievingProjectsStatus(RetrievalStatus.Success) + self.setRetrievingProjectsStatus(self.RetrievalStatus.Success) def _onGetProjectsFailed(self, reply: QNetworkReply, error: QNetworkReply.NetworkError) -> None: """ Error function, called whenever the retrieval of projects fails. """ - self.setRetrievingProjectsStatus(RetrievalStatus.Failed) + self.setRetrievingProjectsStatus(self.RetrievalStatus.Failed) Logger.log("w", "Failed to retrieve the list of projects from the Digital Library. Error encountered: {}".format(error)) def getProjectFilesFinished(self, df_files_in_project: List[DigitalFactoryFileResponse]) -> None: @@ -255,7 +248,7 @@ class DigitalFactoryController(QObject): # Filter to show only the files that can be opened in Cura self._file_model.setFilters({"file_name": lambda x: Path(x).suffix[1:].lower() in self._supported_file_types}) # the suffix is in format '.xyz', so omit the dot at the start self._file_model.setFiles(df_files_in_project) - self.setRetrievingFilesStatus(RetrievalStatus.Success) + self.setRetrievingFilesStatus(self.RetrievalStatus.Success) def getProjectFilesFailed(self, reply: QNetworkReply, error: QNetworkReply.NetworkError) -> None: """ @@ -265,7 +258,7 @@ class DigitalFactoryController(QObject): Logger.warning(f"Failed to retrieve the list of files in project '{self._project_model._projects[self._selected_project_idx]}' from the Digital Library") except IndexError: Logger.warning(f"Failed to retrieve the list of files in a project from the Digital Library. And failed to get the project too.") - self.setRetrievingFilesStatus(RetrievalStatus.Failed) + self.setRetrievingFilesStatus(self.RetrievalStatus.Failed) @pyqtSlot() def clearProjectSelection(self) -> None: @@ -297,7 +290,7 @@ class DigitalFactoryController(QObject): self.selectedFileIndicesChanged.emit([]) if 0 <= project_idx < len(self._project_model.items): library_project_id = self._project_model.items[project_idx]["libraryProjectId"] - self.setRetrievingFilesStatus(RetrievalStatus.InProgress) + self.setRetrievingFilesStatus(self.RetrievalStatus.InProgress) self._api.getListOfFilesInProject(library_project_id, on_finished = self.getProjectFilesFinished, failed = self.getProjectFilesFailed) @pyqtProperty(int, fset = setSelectedProjectIndex, notify = selectedProjectIndexChanged) @@ -381,7 +374,7 @@ class DigitalFactoryController(QObject): """ if project_name: self._api.createNewProject(project_name, self.setProjectAsPreselected, self._createNewLibraryProjectFailed) - self.setCreatingNewProjectStatus(RetrievalStatus.InProgress) + self.setCreatingNewProjectStatus(self.RetrievalStatus.InProgress) else: Logger.log("w", "No project name provided while attempting to create a new project. Aborting the project creation.") @@ -395,7 +388,7 @@ class DigitalFactoryController(QObject): self._project_creation_error_text = "Error while creating the new project: {}".format(reply_dict["errors"][0]["title"]) self.projectCreationErrorTextChanged.emit() - self.setCreatingNewProjectStatus(RetrievalStatus.Failed) + self.setCreatingNewProjectStatus(self.RetrievalStatus.Failed) Logger.log("e", "Something went wrong while trying to create a new a project. Error: {}".format(reply_string)) def setRetrievingProjectsStatus(self, new_status: RetrievalStatus) -> None: @@ -565,7 +558,7 @@ class DigitalFactoryController(QObject): self.setSelectedProjectIndex(-1) self._api.getProjectsFirstPage(search_filter = self._project_filter, on_finished = self._onGetProjectsFirstPageFinished, failed = self._onGetProjectsFailed) self._api.checkUserCanCreateNewLibraryProject(callback = self.setCanCreateNewLibraryProject) - self.setRetrievingProjectsStatus(RetrievalStatus.InProgress) + self.setRetrievingProjectsStatus(self.RetrievalStatus.InProgress) self._has_preselected_project = new_has_preselected_project self.preselectedProjectChanged.emit() 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/FirmwareUpdateChecker/plugin.json b/plugins/FirmwareUpdateChecker/plugin.json index d979e7f3a5..d59ad032f4 100644 --- a/plugins/FirmwareUpdateChecker/plugin.json +++ b/plugins/FirmwareUpdateChecker/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Checks for firmware updates.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml b/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml index 5c410c274a..5078803603 100644 --- a/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml +++ b/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml @@ -5,7 +5,7 @@ import QtQuick 2.2 import QtQuick.Controls 2.1 import QtQuick.Layouts 1.1 import QtQuick.Window 2.1 -import QtQuick.Dialogs 6.0 // For filedialog +import QtQuick.Dialogs // For filedialog import UM 1.5 as UM import Cura 1.0 as Cura @@ -147,8 +147,6 @@ Cura.MachineAction return catalog.i18nc("@label","Firmware update failed due to missing firmware."); } } - - wrapMode: Text.Wrap } UM.ProgressBar diff --git a/plugins/FirmwareUpdater/plugin.json b/plugins/FirmwareUpdater/plugin.json index fc42e11973..c63eba18f5 100644 --- a/plugins/FirmwareUpdater/plugin.json +++ b/plugins/FirmwareUpdater/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Provides a machine actions for updating firmware.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/GCodeGzReader/plugin.json b/plugins/GCodeGzReader/plugin.json index d91b7278ec..879f79bb01 100644 --- a/plugins/GCodeGzReader/plugin.json +++ b/plugins/GCodeGzReader/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Reads g-code from a compressed archive.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/GCodeGzWriter/plugin.json b/plugins/GCodeGzWriter/plugin.json index 2cb72459a4..bc0757da40 100644 --- a/plugins/GCodeGzWriter/plugin.json +++ b/plugins/GCodeGzWriter/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Writes g-code to a compressed archive.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/GCodeProfileReader/plugin.json b/plugins/GCodeProfileReader/plugin.json index 4447650d36..2b887c6f90 100644 --- a/plugins/GCodeProfileReader/plugin.json +++ b/plugins/GCodeProfileReader/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Provides support for importing profiles from g-code files.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/GCodeReader/plugin.json b/plugins/GCodeReader/plugin.json index 0c5e3d6247..91370e1b35 100644 --- a/plugins/GCodeReader/plugin.json +++ b/plugins/GCodeReader/plugin.json @@ -3,6 +3,6 @@ "author": "Victor Larchenko, Ultimaker B.V.", "version": "1.0.1", "description": "Allows loading and displaying G-code files.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/GCodeWriter/plugin.json b/plugins/GCodeWriter/plugin.json index cf28e3a792..6e3ae535ad 100644 --- a/plugins/GCodeWriter/plugin.json +++ b/plugins/GCodeWriter/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Writes g-code to a file.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/ImageReader/ConfigUI.qml b/plugins/ImageReader/ConfigUI.qml index 44877fed6c..c53e631b5a 100644 --- a/plugins/ImageReader/ConfigUI.qml +++ b/plugins/ImageReader/ConfigUI.qml @@ -31,7 +31,7 @@ UM.Dialog Layout.fillWidth: true Layout.minimumWidth: UM.Theme.getSize("setting_control").width text: catalog.i18nc("@action:label", "Height (mm)") - Layout.alignment: Qt.AlignmentFlag.AlignVCenter + Layout.alignment: Qt.AlignVCenter MouseArea { id: peak_height_label @@ -64,7 +64,7 @@ UM.Dialog Layout.fillWidth: true Layout.minimumWidth: UM.Theme.getSize("setting_control").width text: catalog.i18nc("@action:label", "Base (mm)") - Layout.alignment: Qt.AlignmentFlag.AlignVCenter + Layout.alignment: Qt.AlignVCenter MouseArea { @@ -98,7 +98,7 @@ UM.Dialog Layout.fillWidth: true Layout.minimumWidth: UM.Theme.getSize("setting_control").width text: catalog.i18nc("@action:label", "Width (mm)") - Layout.alignment: Qt.AlignmentFlag.AlignVCenter + Layout.alignment: Qt.AlignVCenter MouseArea { id: width_label @@ -132,7 +132,7 @@ UM.Dialog Layout.fillWidth: true Layout.minimumWidth: UM.Theme.getSize("setting_control").width text: catalog.i18nc("@action:label", "Depth (mm)") - Layout.alignment: Qt.AlignmentFlag.AlignVCenter + Layout.alignment: Qt.AlignVCenter MouseArea { id: depth_label @@ -166,7 +166,7 @@ UM.Dialog Layout.fillWidth: true Layout.minimumWidth: UM.Theme.getSize("setting_control").width text: "" - Layout.alignment: Qt.AlignmentFlag.AlignVCenter + Layout.alignment: Qt.AlignVCenter MouseArea { id: lighter_is_higher_label @@ -203,7 +203,7 @@ UM.Dialog Layout.fillWidth: true Layout.minimumWidth: UM.Theme.getSize("setting_control").width text: catalog.i18nc("@action:label", "Color Model") - Layout.alignment: Qt.AlignmentFlag.AlignVCenter + Layout.alignment: Qt.AlignVCenter MouseArea { id: color_model_label @@ -240,7 +240,7 @@ UM.Dialog Layout.fillWidth: true Layout.minimumWidth: UM.Theme.getSize("setting_control").width text: catalog.i18nc("@action:label", "1mm Transmittance (%)") - Layout.alignment: Qt.AlignmentFlag.AlignVCenter + Layout.alignment: Qt.AlignVCenter MouseArea { id: transmittance_label @@ -272,7 +272,7 @@ UM.Dialog Layout.fillWidth: true Layout.minimumWidth: UM.Theme.getSize("setting_control").width text: catalog.i18nc("@action:label", "Smoothing") - Layout.alignment: Qt.AlignmentFlag.AlignVCenter + Layout.alignment: Qt.AlignVCenter MouseArea { diff --git a/plugins/ImageReader/plugin.json b/plugins/ImageReader/plugin.json index 90ead02b89..5fcaccfbdb 100644 --- a/plugins/ImageReader/plugin.json +++ b/plugins/ImageReader/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Enables ability to generate printable geometry from 2D image files.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/LegacyProfileReader/plugin.json b/plugins/LegacyProfileReader/plugin.json index 9611da5a4c..df7703b3f6 100644 --- a/plugins/LegacyProfileReader/plugin.json +++ b/plugins/LegacyProfileReader/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Provides support for importing profiles from legacy Cura versions.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml b/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml index 293e7386b2..dc1a479be9 100644 --- a/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml +++ b/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml @@ -4,7 +4,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.1 as Cura @@ -58,11 +58,10 @@ Item spacing: base.columnSpacing - Label // Title Label + UM.Label // Title Label { text: catalog.i18nc("@title:label", "Nozzle Settings") font: UM.Theme.getFont("medium_bold") - renderType: Text.NativeRendering } Cura.NumericTextFieldWithUnit // "Nozzle size" diff --git a/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml b/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml index 32c8f8df63..c1c54954f1 100644 --- a/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml +++ b/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml @@ -5,7 +5,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.1 as Cura @@ -47,16 +47,14 @@ Item Column { Layout.fillWidth: true - Layout.alignment: Qt.AlignmentFlag.AlignTop + Layout.alignment: Qt.AlignTop spacing: base.columnSpacing - Label // Title Label + UM.Label // Title Label { text: catalog.i18nc("@title:label", "Printer Settings") font: UM.Theme.getFont("medium_bold") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering width: parent.width elide: Text.ElideRight } @@ -178,16 +176,14 @@ Item Column { Layout.fillWidth: true - Layout.alignment: Qt.AlignmentFlag.AlignTop + Layout.alignment: Qt.AlignTop spacing: base.columnSpacing - Label // Title Label + UM.Label // Title Label { text: catalog.i18nc("@title:label", "Printhead Settings") font: UM.Theme.getFont("medium_bold") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering width: parent.width elide: Text.ElideRight } diff --git a/plugins/MachineSettingsAction/plugin.json b/plugins/MachineSettingsAction/plugin.json index 51d88020ae..255f6fb2c1 100644 --- a/plugins/MachineSettingsAction/plugin.json +++ b/plugins/MachineSettingsAction/plugin.json @@ -3,6 +3,6 @@ "author": "fieldOfView, Ultimaker B.V.", "version": "1.0.1", "description": "Provides a way to change machine settings (such as build volume, nozzle size, etc.).", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/Marketplace/CloudApiModel.py b/plugins/Marketplace/CloudApiModel.py new file mode 100644 index 0000000000..90173c5390 --- /dev/null +++ b/plugins/Marketplace/CloudApiModel.py @@ -0,0 +1,29 @@ +from typing import Union + +from cura import ApplicationMetadata +from cura.UltimakerCloud import UltimakerCloudConstants + + +class CloudApiModel: + sdk_version: Union[str, int] = ApplicationMetadata.CuraSDKVersion + cloud_api_version: str = UltimakerCloudConstants.CuraCloudAPIVersion + cloud_api_root: str = UltimakerCloudConstants.CuraCloudAPIRoot + api_url: str = "{cloud_api_root}/cura-packages/v{cloud_api_version}/cura/v{sdk_version}".format( + cloud_api_root = cloud_api_root, + cloud_api_version = cloud_api_version, + sdk_version = sdk_version + ) + + # https://api.ultimaker.com/cura-packages/v1/user/packages + api_url_user_packages = "{cloud_api_root}/cura-packages/v{cloud_api_version}/user/packages".format( + cloud_api_root = cloud_api_root, + cloud_api_version = cloud_api_version, + ) + + @classmethod + def userPackageUrl(cls, package_id: str) -> str: + """https://api.ultimaker.com/cura-packages/v1/user/packages/{package_id}""" + + return (CloudApiModel.api_url_user_packages + "/{package_id}").format( + package_id = package_id + ) diff --git a/plugins/Marketplace/CloudSync/CloudApiClient.py b/plugins/Marketplace/CloudSync/CloudApiClient.py new file mode 100644 index 0000000000..cf83567f17 --- /dev/null +++ b/plugins/Marketplace/CloudSync/CloudApiClient.py @@ -0,0 +1,55 @@ +# Copyright (c) 2022 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +from UM.Logger import Logger +from UM.TaskManagement.HttpRequestManager import HttpRequestManager +from UM.TaskManagement.HttpRequestScope import JsonDecoratorScope +from cura.CuraApplication import CuraApplication +from cura.UltimakerCloud.UltimakerCloudScope import UltimakerCloudScope +from ..CloudApiModel import CloudApiModel + + +class CloudApiClient: + """Manages Cloud subscriptions + + When a package is added to a user's account, the user is 'subscribed' to that package. + Whenever the user logs in on another instance of Cura, these subscriptions can be used to sync the user's plugins + + Singleton: use CloudApiClient.getInstance() instead of CloudApiClient() + """ + + __instance = None + + @classmethod + def getInstance(cls, app: CuraApplication): + if not cls.__instance: + cls.__instance = CloudApiClient(app) + return cls.__instance + + def __init__(self, app: CuraApplication) -> None: + if self.__instance is not None: + raise RuntimeError("This is a Singleton. use getInstance()") + + self._scope: JsonDecoratorScope = JsonDecoratorScope(UltimakerCloudScope(app)) + + app.getPackageManager().packageInstalled.connect(self._onPackageInstalled) + + def unsubscribe(self, package_id: str) -> None: + url = CloudApiModel.userPackageUrl(package_id) + HttpRequestManager.getInstance().delete(url = url, scope = self._scope) + + def _subscribe(self, package_id: str) -> None: + """You probably don't want to use this directly. All installed packages will be automatically subscribed.""" + + Logger.debug("Subscribing to {}", package_id) + data = "{\"data\": {\"package_id\": \"%s\", \"sdk_version\": \"%s\"}}" % (package_id, CloudApiModel.sdk_version) + HttpRequestManager.getInstance().put( + url = CloudApiModel.api_url_user_packages, + data = data.encode(), + scope = self._scope + ) + + def _onPackageInstalled(self, package_id: str): + if CuraApplication.getInstance().getCuraAPI().account.isLoggedIn: + # We might already be subscribed, but checking would take one extra request. Instead, simply subscribe + self._subscribe(package_id) diff --git a/plugins/Marketplace/CloudSync/CloudPackageChecker.py b/plugins/Marketplace/CloudSync/CloudPackageChecker.py new file mode 100644 index 0000000000..53087e0502 --- /dev/null +++ b/plugins/Marketplace/CloudSync/CloudPackageChecker.py @@ -0,0 +1,166 @@ +# Copyright (c) 2022 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +import json +from typing import List, Dict, Any, Set +from typing import Optional + +from PyQt6.QtCore import QObject +from PyQt6.QtNetwork import QNetworkReply + +from UM import i18nCatalog +from UM.Logger import Logger +from UM.Message import Message +from UM.Signal import Signal +from UM.TaskManagement.HttpRequestManager import HttpRequestManager +from UM.TaskManagement.HttpRequestScope import JsonDecoratorScope +from cura.API.Account import SyncState +from cura.CuraApplication import CuraApplication, ApplicationMetadata +from cura.UltimakerCloud.UltimakerCloudScope import UltimakerCloudScope +from .SubscribedPackagesModel import SubscribedPackagesModel +from ..CloudApiModel import CloudApiModel + + +class CloudPackageChecker(QObject): + + SYNC_SERVICE_NAME = "CloudPackageChecker" + + def __init__(self, application: CuraApplication) -> None: + super().__init__() + + self.discrepancies = Signal() # Emits SubscribedPackagesModel + self._application: CuraApplication = application + self._scope = JsonDecoratorScope(UltimakerCloudScope(application)) + self._model = SubscribedPackagesModel() + self._message: Optional[Message] = None + + self._application.initializationFinished.connect(self._onAppInitialized) + self._i18n_catalog = i18nCatalog("cura") + self._sdk_version = ApplicationMetadata.CuraSDKVersion + + self._last_notified_packages = set() # type: Set[str] + """Packages for which a notification has been shown. No need to bother the user twice for equal content""" + + # This is a plugin, so most of the components required are not ready when + # this is initialized. Therefore, we wait until the application is ready. + def _onAppInitialized(self) -> None: + self._package_manager = self._application.getPackageManager() + # initial check + self._getPackagesIfLoggedIn() + + self._application.getCuraAPI().account.loginStateChanged.connect(self._onLoginStateChanged) + self._application.getCuraAPI().account.syncRequested.connect(self._getPackagesIfLoggedIn) + + def _onLoginStateChanged(self) -> None: + # reset session + self._last_notified_packages = set() + self._getPackagesIfLoggedIn() + + def _getPackagesIfLoggedIn(self) -> None: + if self._application.getCuraAPI().account.isLoggedIn: + self._getUserSubscribedPackages() + else: + self._hideSyncMessage() + + def _getUserSubscribedPackages(self) -> None: + self._application.getCuraAPI().account.setSyncState(self.SYNC_SERVICE_NAME, SyncState.SYNCING) + url = CloudApiModel.api_url_user_packages + self._application.getHttpRequestManager().get(url, + callback = self._onUserPackagesRequestFinished, + error_callback = self._onUserPackagesRequestFinished, + timeout = 10, + scope = self._scope) + + def _onUserPackagesRequestFinished(self, reply: "QNetworkReply", error: Optional["QNetworkReply.NetworkError"] = None) -> None: + if error is not None or HttpRequestManager.safeHttpStatus(reply) != 200: + Logger.log("w", + "Requesting user packages failed, response code %s while trying to connect to %s", + HttpRequestManager.safeHttpStatus(reply), reply.url()) + self._application.getCuraAPI().account.setSyncState(self.SYNC_SERVICE_NAME, SyncState.ERROR) + return + + try: + json_data = json.loads(bytes(reply.readAll()).decode("utf-8")) + # Check for errors: + if "errors" in json_data: + for error in json_data["errors"]: + Logger.log("e", "%s", error["title"]) + self._application.getCuraAPI().account.setSyncState(self.SYNC_SERVICE_NAME, SyncState.ERROR) + return + self._handleCompatibilityData(json_data["data"]) + except json.decoder.JSONDecodeError: + Logger.log("w", "Received invalid JSON for user subscribed packages from the Web Marketplace") + + self._application.getCuraAPI().account.setSyncState(self.SYNC_SERVICE_NAME, SyncState.SUCCESS) + + def _handleCompatibilityData(self, subscribed_packages_payload: List[Dict[str, Any]]) -> None: + user_subscribed_packages = {plugin["package_id"] for plugin in subscribed_packages_payload} + user_installed_packages = self._package_manager.getAllInstalledPackageIDs() + + # We need to re-evaluate the dismissed packages + # (i.e. some package might got updated to the correct SDK version in the meantime, + # hence remove them from the Dismissed Incompatible list) + self._package_manager.reEvaluateDismissedPackages(subscribed_packages_payload, self._sdk_version) + user_dismissed_packages = self._package_manager.getDismissedPackages() + if user_dismissed_packages: + user_installed_packages.update(user_dismissed_packages) + + # We check if there are packages installed in Web Marketplace but not in Cura marketplace + package_discrepancy = list(user_subscribed_packages.difference(user_installed_packages)) + + if user_subscribed_packages != self._last_notified_packages: + # scenario: + # 1. user subscribes to a package + # 2. dismisses the license/unsubscribes + # 3. subscribes to the same package again + # in this scenario we want to notify the user again. To capture that there was a change during + # step 2, we clear the last_notified after step 2. This way, the user will be notified after + # step 3 even though the list of packages for step 1 and 3 are equal + self._last_notified_packages = set() + + if package_discrepancy: + account = self._application.getCuraAPI().account + account.setUpdatePackagesAction(lambda: self._onSyncButtonClicked(None, None)) + + if user_subscribed_packages == self._last_notified_packages: + # already notified user about these + return + + Logger.log("d", "Discrepancy found between Cloud subscribed packages and Cura installed packages") + self._model.addDiscrepancies(package_discrepancy) + self._model.initialize(self._package_manager, subscribed_packages_payload) + self._showSyncMessage() + self._last_notified_packages = user_subscribed_packages + + def _showSyncMessage(self) -> None: + """Show the message if it is not already shown""" + + if self._message is not None: + self._message.show() + return + + 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", )) + sync_message.addAction("sync", + name = self._i18n_catalog.i18nc("@action:button", "Sync"), + icon = "", + description = "Sync your plugins and print profiles to Ultimaker Cura.", + button_align = Message.ActionButtonAlignment.ALIGN_RIGHT) + sync_message.actionTriggered.connect(self._onSyncButtonClicked) + sync_message.show() + self._message = sync_message + + def _hideSyncMessage(self) -> None: + """Hide the message if it is showing""" + + if self._message is not None: + self._message.hide() + self._message = None + + def _onSyncButtonClicked(self, sync_message: Optional[Message], sync_message_action: Optional[str]) -> None: + if sync_message is not None: + sync_message.hide() + self._hideSyncMessage() # Should be the same message, but also sets _message to None + self.discrepancies.emit(self._model) diff --git a/plugins/Marketplace/CloudSync/DiscrepanciesPresenter.py b/plugins/Marketplace/CloudSync/DiscrepanciesPresenter.py new file mode 100644 index 0000000000..182cc75929 --- /dev/null +++ b/plugins/Marketplace/CloudSync/DiscrepanciesPresenter.py @@ -0,0 +1,44 @@ +# Copyright (c) 2022 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +import os +from typing import Optional + +from PyQt6.QtCore import QObject + +from UM.Qt.QtApplication import QtApplication +from UM.Signal import Signal +from .SubscribedPackagesModel import SubscribedPackagesModel + + +class DiscrepanciesPresenter(QObject): + """Shows a list of packages to be added or removed. The user can select which packages to (un)install. The user's + + choices are emitted on the `packageMutations` Signal. + """ + + def __init__(self, app: QtApplication) -> None: + super().__init__() + + self.packageMutations = Signal() # Emits SubscribedPackagesModel + + self._app = app + self._package_manager = app.getPackageManager() + self._dialog: Optional[QObject] = None + self._compatibility_dialog_path = "resources/qml/CompatibilityDialog.qml" + + def present(self, plugin_path: str, model: SubscribedPackagesModel) -> None: + path = os.path.join(plugin_path, self._compatibility_dialog_path) + self._dialog = self._app.createQmlComponent(path, {"subscribedPackagesModel": model, "handler": self}) + assert self._dialog + self._dialog.accepted.connect(lambda: self._onConfirmClicked(model)) + + def _onConfirmClicked(self, model: SubscribedPackagesModel) -> None: + # If there are incompatible packages - automatically dismiss them + if model.getIncompatiblePackages(): + self._package_manager.dismissAllIncompatiblePackages(model.getIncompatiblePackages()) + # For now, all compatible packages presented to the user should be installed. + # Later, we might remove items for which the user unselected the package + if model.getCompatiblePackages(): + model.setItems(model.getCompatiblePackages()) + self.packageMutations.emit(model) diff --git a/plugins/Marketplace/CloudSync/DownloadPresenter.py b/plugins/Marketplace/CloudSync/DownloadPresenter.py new file mode 100644 index 0000000000..8325c27eb7 --- /dev/null +++ b/plugins/Marketplace/CloudSync/DownloadPresenter.py @@ -0,0 +1,153 @@ +# Copyright (c) 2022 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +import tempfile +from typing import Dict, List, Any + +from PyQt6.QtNetwork import QNetworkReply + +from UM.i18n import i18nCatalog +from UM.Logger import Logger +from UM.Message import Message +from UM.Signal import Signal +from UM.TaskManagement.HttpRequestManager import HttpRequestManager +from cura.CuraApplication import CuraApplication +from cura.UltimakerCloud.UltimakerCloudScope import UltimakerCloudScope +from .SubscribedPackagesModel import SubscribedPackagesModel + +i18n_catalog = i18nCatalog("cura") + + +class DownloadPresenter: + """Downloads a set of packages from the Ultimaker Cloud Marketplace + + use download() exactly once: should not be used for multiple sets of downloads since this class contains state + """ + + DISK_WRITE_BUFFER_SIZE = 256 * 1024 # 256 KB + + def __init__(self, app: CuraApplication) -> None: + # Emits (Dict[str, str], List[str]) # (success_items, error_items) + # Dict{success_package_id, temp_file_path} + # List[errored_package_id] + self.done = Signal() + + self._app = app + self._scope = UltimakerCloudScope(app) + + self._started = False + self._progress_message = self._createProgressMessage() + self._progress: Dict[str, Dict[str, Any]] = {} + self._error: List[str] = [] + + def download(self, model: SubscribedPackagesModel) -> None: + if self._started: + Logger.error("Download already started. Create a new %s instead", self.__class__.__name__) + return + + manager = HttpRequestManager.getInstance() + for item in model.items: + package_id = item["package_id"] + + def finishedCallback(reply: QNetworkReply, pid = package_id) -> None: + self._onFinished(pid, reply) + + def progressCallback(rx: int, rt: int, pid = package_id) -> None: + self._onProgress(pid, rx, rt) + + def errorCallback(reply: QNetworkReply, error: QNetworkReply.NetworkError, pid = package_id) -> None: + self._onError(pid) + + request_data = manager.get( + item["download_url"], + callback = finishedCallback, + download_progress_callback = progressCallback, + error_callback = errorCallback, + scope = self._scope) + + self._progress[package_id] = { + "received": 0, + "total": 1, # make sure this is not considered done yet. Also divByZero-safe + "file_written": None, + "request_data": request_data, + "package_model": item + } + + self._started = True + self._progress_message.show() + + def abort(self) -> None: + manager = HttpRequestManager.getInstance() + for item in self._progress.values(): + manager.abortRequest(item["request_data"]) + + # Aborts all current operations and returns a copy with the same settings such as app and scope + def resetCopy(self) -> "DownloadPresenter": + self.abort() + self.done.disconnectAll() + return DownloadPresenter(self._app) + + def _createProgressMessage(self) -> Message: + return Message(i18n_catalog.i18nc("@info:generic", "Syncing..."), + lifetime = 0, + use_inactivity_timer = False, + progress = 0.0, + 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"] + + try: + with tempfile.NamedTemporaryFile(mode = "wb+", suffix = ".curapackage", delete = False) as temp_file: + bytes_read = reply.read(self.DISK_WRITE_BUFFER_SIZE) + while bytes_read: + temp_file.write(bytes_read) + bytes_read = reply.read(self.DISK_WRITE_BUFFER_SIZE) + self._app.processEvents() + self._progress[package_id]["file_written"] = temp_file.name + except IOError as e: + Logger.logException("e", "Failed to write downloaded package to temp file", e) + self._onError(package_id) + temp_file.close() + + self._checkDone() + + def _onProgress(self, package_id: str, rx: int, rt: int) -> None: + self._progress[package_id]["received"] = rx + self._progress[package_id]["total"] = rt + + received = 0 + total = 0 + for item in self._progress.values(): + received += item["received"] + total += item["total"] + + if total == 0: # Total download size is 0, or unknown, or there are no progress items at all. + self._progress_message.setProgress(100.0) + return + + self._progress_message.setProgress(100.0 * (received / total)) # [0 .. 100] % + + def _onError(self, package_id: str) -> None: + self._progress.pop(package_id) + self._error.append(package_id) + self._checkDone() + + def _checkDone(self) -> bool: + for item in self._progress.values(): + if not item["file_written"]: + return False + + success_items = { + package_id: + { + "package_path": value["file_written"], + "icon_url": value["package_model"]["icon_url"] + } + for package_id, value in self._progress.items() + } + error_items = [package_id for package_id in self._error] + + self._progress_message.hide() + self.done.emit(success_items, error_items) + return True diff --git a/plugins/Marketplace/CloudSync/LicenseModel.py b/plugins/Marketplace/CloudSync/LicenseModel.py new file mode 100644 index 0000000000..777ecca1e9 --- /dev/null +++ b/plugins/Marketplace/CloudSync/LicenseModel.py @@ -0,0 +1,80 @@ +# Copyright (c) 2022 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +from PyQt6.QtCore import QObject, pyqtProperty, pyqtSignal +from UM.i18n import i18nCatalog + +catalog = i18nCatalog("cura") + + +# Model for the ToolboxLicenseDialog +class LicenseModel(QObject): + DEFAULT_DECLINE_BUTTON_TEXT = catalog.i18nc("@button", "Decline") + ACCEPT_BUTTON_TEXT = catalog.i18nc("@button", "Agree") + + dialogTitleChanged = pyqtSignal() + packageNameChanged = pyqtSignal() + licenseTextChanged = pyqtSignal() + iconChanged = pyqtSignal() + + def __init__(self, decline_button_text: str = DEFAULT_DECLINE_BUTTON_TEXT, parent = None) -> None: + super().__init__(parent) + + self._current_page_idx = 0 + self._page_count = 1 + self._dialogTitle = "" + self._license_text = "" + self._package_name = "" + self._icon_url = "" + self._decline_button_text = decline_button_text + + @pyqtProperty(str, constant = True) + def acceptButtonText(self): + return self.ACCEPT_BUTTON_TEXT + + @pyqtProperty(str, constant = True) + def declineButtonText(self): + return self._decline_button_text + + @pyqtProperty(str, notify=dialogTitleChanged) + def dialogTitle(self) -> str: + return self._dialogTitle + + @pyqtProperty(str, notify=packageNameChanged) + def packageName(self) -> str: + return self._package_name + + def setPackageName(self, name: str) -> None: + self._package_name = name + self.packageNameChanged.emit() + + @pyqtProperty(str, notify=iconChanged) + def iconUrl(self) -> str: + return self._icon_url + + def setIconUrl(self, url: str): + self._icon_url = url + self.iconChanged.emit() + + @pyqtProperty(str, notify=licenseTextChanged) + def licenseText(self) -> str: + return self._license_text + + def setLicenseText(self, license_text: str) -> None: + if self._license_text != license_text: + self._license_text = license_text + self.licenseTextChanged.emit() + + def setCurrentPageIdx(self, idx: int) -> None: + self._current_page_idx = idx + self._updateDialogTitle() + + def setPageCount(self, count: int) -> None: + self._page_count = count + self._updateDialogTitle() + + def _updateDialogTitle(self): + self._dialogTitle = catalog.i18nc("@title:window", "Plugin License Agreement") + if self._page_count > 1: + self._dialogTitle = self._dialogTitle + " ({}/{})".format(self._current_page_idx + 1, self._page_count) + self.dialogTitleChanged.emit() diff --git a/plugins/Marketplace/CloudSync/LicensePresenter.py b/plugins/Marketplace/CloudSync/LicensePresenter.py new file mode 100644 index 0000000000..aecf70e061 --- /dev/null +++ b/plugins/Marketplace/CloudSync/LicensePresenter.py @@ -0,0 +1,139 @@ +# Copyright (c) 2022 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +import os +from typing import Dict, Optional, List, Any + +from PyQt6.QtCore import QObject, pyqtSlot + +from UM.Logger import Logger +from UM.PackageManager import PackageManager +from UM.Signal import Signal +from cura.CuraApplication import CuraApplication +from UM.i18n import i18nCatalog + +from .LicenseModel import LicenseModel + + +class LicensePresenter(QObject): + """Presents licenses for a set of packages for the user to accept or reject. + + Call present() exactly once to show a licenseDialog for a set of packages + Before presenting another set of licenses, create a new instance using resetCopy(). + + licenseAnswers emits a list of Dicts containing answers when the user has made a choice for all provided packages. + """ + + def __init__(self, app: CuraApplication) -> None: + super().__init__() + self._presented = False + """Whether present() has been called and state is expected to be initialized""" + + self._dialog: Optional[QObject] = None + self._package_manager: PackageManager = app.getPackageManager() + # Emits List[Dict[str, [Any]] containing for example + # [{ "package_id": "BarbarianPlugin", "package_path" : "/tmp/dg345as", "accepted" : True }] + self.licenseAnswers = Signal() + + self._current_package_idx = 0 + self._package_models: List[Dict] = [] + + self._catalog = i18nCatalog("cura") + decline_button_text = self._catalog.i18nc("@button", "Decline and remove from account") + self._license_model: LicenseModel = LicenseModel(decline_button_text=decline_button_text) + self._page_count = 0 + + self._app = app + + self._compatibility_dialog_path = "resources/qml/MultipleLicenseDialog.qml" + + def present(self, plugin_path: str, packages: Dict[str, Dict[str, str]]) -> None: + """Show a license dialog for multiple packages where users can read a license and accept or decline them + + :param plugin_path: Root directory of the Toolbox plugin + :param packages: Dict[package id, file path] + """ + if self._presented: + Logger.error("{clazz} is single-use. Create a new {clazz} instead", clazz=self.__class__.__name__) + return + + path = os.path.join(plugin_path, self._compatibility_dialog_path) + + self._initState(packages) + + if self._page_count == 0: + self.licenseAnswers.emit(self._package_models) + return + + if self._dialog is None: + context_properties = { + "licenseModel": self._license_model, + "handler": self + } + self._dialog = self._app.createQmlComponent(path, context_properties) + self._presentCurrentPackage() + self._presented = True + + def resetCopy(self) -> "LicensePresenter": + """Clean up and return a new copy with the same settings such as app""" + if self._dialog: + self._dialog.close() + self.licenseAnswers.disconnectAll() + return LicensePresenter(self._app) + + @pyqtSlot() + def onLicenseAccepted(self) -> None: + self._package_models[self._current_package_idx]["accepted"] = True + self._checkNextPage() + + @pyqtSlot() + def onLicenseDeclined(self) -> None: + self._package_models[self._current_package_idx]["accepted"] = False + self._checkNextPage() + + def _initState(self, packages: Dict[str, Dict[str, Any]]) -> None: + implicitly_accepted_count = 0 + + for package_id, item in packages.items(): + item["package_id"] = package_id + try: + item["licence_content"] = self._package_manager.getPackageLicense(item["package_path"]) + except EnvironmentError as e: + Logger.error(f"Could not open downloaded package {package_id} to read license file! {type(e)} - {e}") + continue # Skip this package. + if item["licence_content"] is None: + # Implicitly accept when there is no license + item["accepted"] = True + implicitly_accepted_count = implicitly_accepted_count + 1 + self._package_models.append(item) + else: + item["accepted"] = None #: None: no answer yet + # When presenting the packages, we want to show packages which have a license first. + # In fact, we don't want to show the others at all because they are implicitly accepted + self._package_models.insert(0, item) + CuraApplication.getInstance().processEvents() + self._page_count = len(self._package_models) - implicitly_accepted_count + self._license_model.setPageCount(self._page_count) + + def _presentCurrentPackage(self) -> None: + package_model = self._package_models[self._current_package_idx] + package_info = self._package_manager.getPackageInfo(package_model["package_path"]) + + self._license_model.setCurrentPageIdx(self._current_package_idx) + self._license_model.setPackageName(package_info["display_name"]) + self._license_model.setIconUrl(package_model["icon_url"]) + self._license_model.setLicenseText(package_model["licence_content"]) + if self._dialog: + self._dialog.open() # Does nothing if already open + + def _checkNextPage(self) -> None: + if self._current_package_idx + 1 < self._page_count: + self._current_package_idx += 1 + self._presentCurrentPackage() + else: + if self._dialog: + self._dialog.close() + self.licenseAnswers.emit(self._package_models) + + + diff --git a/plugins/Marketplace/CloudSync/RestartApplicationPresenter.py b/plugins/Marketplace/CloudSync/RestartApplicationPresenter.py new file mode 100644 index 0000000000..1e1ebc33dc --- /dev/null +++ b/plugins/Marketplace/CloudSync/RestartApplicationPresenter.py @@ -0,0 +1,35 @@ +# 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 RestartApplicationPresenter: + """Presents a dialog telling the user that a restart is required to apply changes + + Since we cannot restart Cura, the app is closed instead when the button is clicked + """ + def __init__(self, app: CuraApplication) -> None: + self._app = app + self._i18n_catalog = i18nCatalog("cura") + + def present(self) -> None: + app_name = self._app.getApplicationDisplayName() + + message = Message(self._i18n_catalog.i18nc("@info:generic", + "You need to quit and restart {} before changes have effect.", + app_name)) + + message.addAction("quit", + name="Quit " + app_name, + icon = "", + description="Close the application", + button_align=Message.ActionButtonAlignment.ALIGN_RIGHT) + + message.actionTriggered.connect(self._quitClicked) + message.show() + + def _quitClicked(self, *_): + self._app.windowClosed() diff --git a/plugins/Marketplace/CloudSync/SubscribedPackagesModel.py b/plugins/Marketplace/CloudSync/SubscribedPackagesModel.py new file mode 100644 index 0000000000..96b1d58bbf --- /dev/null +++ b/plugins/Marketplace/CloudSync/SubscribedPackagesModel.py @@ -0,0 +1,74 @@ +# Copyright (c) 2022 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +from PyQt6.QtCore import Qt, pyqtProperty + +from UM.PackageManager import PackageManager +from UM.Qt.ListModel import ListModel +from UM.Version import Version + +from cura import ApplicationMetadata +from typing import List, Dict, Any + + +class SubscribedPackagesModel(ListModel): + def __init__(self, parent = None): + super().__init__(parent) + + self._items = [] + self._metadata = None + self._discrepancies = None + self._sdk_version = ApplicationMetadata.CuraSDKVersion + + self.addRoleName(Qt.ItemDataRole.UserRole + 1, "package_id") + self.addRoleName(Qt.ItemDataRole.UserRole + 2, "display_name") + self.addRoleName(Qt.ItemDataRole.UserRole + 3, "icon_url") + self.addRoleName(Qt.ItemDataRole.UserRole + 4, "is_compatible") + self.addRoleName(Qt.ItemDataRole.UserRole + 5, "is_dismissed") + + @pyqtProperty(bool, constant=True) + def hasCompatiblePackages(self) -> bool: + for item in self._items: + if item['is_compatible']: + return True + return False + + @pyqtProperty(bool, constant=True) + def hasIncompatiblePackages(self) -> bool: + for item in self._items: + if not item['is_compatible']: + return True + return False + + def addDiscrepancies(self, discrepancy: List[str]) -> None: + self._discrepancies = discrepancy + + def getCompatiblePackages(self) -> List[Dict[str, Any]]: + return [package for package in self._items if package["is_compatible"]] + + def getIncompatiblePackages(self) -> List[str]: + return [package["package_id"] for package in self._items if not package["is_compatible"]] + + def initialize(self, package_manager: PackageManager, subscribed_packages_payload: List[Dict[str, Any]]) -> None: + self._items.clear() + for item in subscribed_packages_payload: + if item["package_id"] not in self._discrepancies: + continue + package = { + "package_id": item["package_id"], + "display_name": item["display_name"], + "sdk_versions": item["sdk_versions"], + "download_url": item["download_url"], + "md5_hash": item["md5_hash"], + "is_dismissed": False, + } + + compatible = any(package_manager.isPackageCompatible(Version(version)) for version in item["sdk_versions"]) + package.update({"is_compatible": compatible}) + + try: + package.update({"icon_url": item["icon_url"]}) + except KeyError: # There is no 'icon_url" in the response payload for this package + package.update({"icon_url": ""}) + self._items.append(package) + self.setItems(self._items) diff --git a/plugins/Marketplace/CloudSync/SyncOrchestrator.py b/plugins/Marketplace/CloudSync/SyncOrchestrator.py new file mode 100644 index 0000000000..a68d3c8fa2 --- /dev/null +++ b/plugins/Marketplace/CloudSync/SyncOrchestrator.py @@ -0,0 +1,114 @@ +# Copyright (c) 2022 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +import os +from typing import List, Dict, Any, cast + +from UM import i18n_catalog +from UM.Extension import Extension +from UM.Logger import Logger +from UM.Message import Message +from UM.PluginRegistry import PluginRegistry +from cura.CuraApplication import CuraApplication +from .CloudPackageChecker import CloudPackageChecker +from .CloudApiClient import CloudApiClient +from .DiscrepanciesPresenter import DiscrepanciesPresenter +from .DownloadPresenter import DownloadPresenter +from .LicensePresenter import LicensePresenter +from .RestartApplicationPresenter import RestartApplicationPresenter +from .SubscribedPackagesModel import SubscribedPackagesModel + + +class SyncOrchestrator(Extension): + """Orchestrates the synchronizing of packages from the user account to the installed packages + + Example flow: + + - CloudPackageChecker compares a list of packages the user `subscribed` to in their account + If there are `discrepancies` between the account and locally installed packages, they are emitted + - DiscrepanciesPresenter shows a list of packages to be added or removed to the user. It emits the `packageMutations` + the user selected to be performed + - The SyncOrchestrator uses PackageManager to remove local packages the users wants to see removed + - The DownloadPresenter shows a download progress dialog. It emits A tuple of succeeded and failed downloads + - The LicensePresenter extracts licenses from the downloaded packages and presents a license for each package to + be installed. It emits the `licenseAnswers` signal for accept or declines + - The CloudApiClient removes the declined packages from the account + - The SyncOrchestrator uses PackageManager to install the downloaded packages and delete temp files. + - The RestartApplicationPresenter notifies the user that a restart is required for changes to take effect + """ + + def __init__(self, app: CuraApplication) -> None: + super().__init__() + # Differentiate This PluginObject from the Marketplace. self.getId() includes _name. + # getPluginId() will return the same value for The Marketplace extension and this one + self._name = "SyncOrchestrator" + + self._package_manager = app.getPackageManager() + # Keep a reference to the CloudApiClient. it watches for installed packages and subscribes to them + self._cloud_api: CloudApiClient = CloudApiClient.getInstance(app) + + self._checker: CloudPackageChecker = CloudPackageChecker(app) + self._checker.discrepancies.connect(self._onDiscrepancies) + + self._discrepancies_presenter: DiscrepanciesPresenter = DiscrepanciesPresenter(app) + self._discrepancies_presenter.packageMutations.connect(self._onPackageMutations) + + self._download_presenter: DownloadPresenter = DownloadPresenter(app) + + self._license_presenter: LicensePresenter = LicensePresenter(app) + self._license_presenter.licenseAnswers.connect(self._onLicenseAnswers) + + self._restart_presenter = RestartApplicationPresenter(app) + + def _onDiscrepancies(self, model: SubscribedPackagesModel) -> None: + plugin_path = cast(str, PluginRegistry.getInstance().getPluginPath(self.getPluginId())) + self._discrepancies_presenter.present(plugin_path, model) + + def _onPackageMutations(self, mutations: SubscribedPackagesModel) -> None: + self._download_presenter = self._download_presenter.resetCopy() + self._download_presenter.done.connect(self._onDownloadFinished) + self._download_presenter.download(mutations) + + def _onDownloadFinished(self, success_items: Dict[str, Dict[str, str]], error_items: List[str]) -> None: + """Called when a set of packages have finished downloading + + :param success_items:: Dict[package_id, Dict[str, str]] + :param error_items:: List[package_id] + """ + if error_items: + message = i18n_catalog.i18nc("@info:generic", "{} plugins failed to download".format(len(error_items))) + self._showErrorMessage(message) + + plugin_path = cast(str, PluginRegistry.getInstance().getPluginPath(self.getPluginId())) + self._license_presenter = self._license_presenter.resetCopy() + self._license_presenter.licenseAnswers.connect(self._onLicenseAnswers) + self._license_presenter.present(plugin_path, success_items) + + # Called when user has accepted / declined all licenses for the downloaded packages + def _onLicenseAnswers(self, answers: List[Dict[str, Any]]) -> None: + has_changes = False # True when at least one package is installed + + for item in answers: + if item["accepted"]: + # install and subscribe packages + if not self._package_manager.installPackage(item["package_path"]): + message = "Could not install {}".format(item["package_id"]) + self._showErrorMessage(message) + continue + has_changes = True + else: + self._cloud_api.unsubscribe(item["package_id"]) + # delete temp file + try: + os.remove(item["package_path"]) + except EnvironmentError as e: # File was already removed, no access rights, etc. + Logger.error("Can't delete temporary package file: {err}".format(err = str(e))) + + if has_changes: + self._restart_presenter.present() + + def _showErrorMessage(self, text: str): + """Logs an error and shows it to the user""" + + Logger.error(text) + Message(text, lifetime = 0, message_type = Message.MessageType.ERROR).show() diff --git a/plugins/Marketplace/CloudSync/__init__.py b/plugins/Marketplace/CloudSync/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/plugins/Marketplace/InstallMissingPackagesDialog.py b/plugins/Marketplace/InstallMissingPackagesDialog.py new file mode 100644 index 0000000000..bd7c08d9b9 --- /dev/null +++ b/plugins/Marketplace/InstallMissingPackagesDialog.py @@ -0,0 +1,67 @@ +# Copyright (c) 2022 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +import os + +from PyQt6.QtCore import QObject, pyqtSignal, pyqtProperty +from typing import Optional, List, Dict, cast, Callable +from cura.CuraApplication import CuraApplication +from UM.PluginRegistry import PluginRegistry +from cura.CuraPackageManager import CuraPackageManager +from UM.i18n import i18nCatalog + +from UM.FlameProfiler import pyqtSlot +from .MissingPackageList import MissingPackageList + +i18n_catalog = i18nCatalog("cura") + +class InstallMissingPackageDialog(QObject): + """Dialog used to display packages that need to be installed to load 3mf file materials""" + def __init__(self, packages_metadata: List[Dict[str, str]], show_missing_materials_warning: Callable[[], None]) -> None: + """Initialize + + :param packages_metadata: List of dictionaries containing information about missing packages. + """ + super().__init__() + + self._plugin_registry: PluginRegistry = CuraApplication.getInstance().getPluginRegistry() + self._package_manager: CuraPackageManager = cast(CuraPackageManager, CuraApplication.getInstance().getPackageManager()) + self._package_manager.installedPackagesChanged.connect(self.checkIfRestartNeeded) + + self._dialog: Optional[QObject] = None + self._restart_needed = False + self._package_metadata: List[Dict[str, str]] = packages_metadata + + self._package_model: MissingPackageList = MissingPackageList(packages_metadata) + self._show_missing_materials_warning = show_missing_materials_warning + + def show(self) -> None: + plugin_path = self._plugin_registry.getPluginPath("Marketplace") + if plugin_path is None: + plugin_path = os.path.dirname(__file__) + + # create a QML component for the license dialog + license_dialog_component_path = os.path.join(plugin_path, "resources", "qml", "InstallMissingPackagesDialog.qml") + self._dialog = CuraApplication.getInstance().createQmlComponent(license_dialog_component_path, {"manager": self}) + self._dialog.show() + + def checkIfRestartNeeded(self) -> None: + if self._dialog is None: + return + + self._restart_needed = self._package_manager.hasPackagesToRemoveOrInstall + self.showRestartChanged.emit() + + showRestartChanged = pyqtSignal() + + @pyqtProperty(bool, notify=showRestartChanged) + def showRestartNotification(self) -> bool: + return self._restart_needed + + @pyqtProperty(QObject) + def model(self) -> MissingPackageList: + return self._package_model + + @pyqtSlot() + def showMissingMaterialsWarning(self) -> None: + self._show_missing_materials_warning() diff --git a/plugins/Marketplace/LocalPackageList.py b/plugins/Marketplace/LocalPackageList.py index ae719b2699..85f835980b 100644 --- a/plugins/Marketplace/LocalPackageList.py +++ b/plugins/Marketplace/LocalPackageList.py @@ -108,7 +108,7 @@ class LocalPackageList(PackageList): :param reply: A reply containing information about a number of packages. """ response_data = HttpRequestManager.readJSON(reply) - if "data" not in response_data: + if response_data is None or "data" not in response_data: Logger.error( f"Could not interpret the server's response. Missing 'data' from response data. Keys in response: {response_data.keys()}") return diff --git a/plugins/Marketplace/Marketplace.py b/plugins/Marketplace/Marketplace.py index 171e3f915b..86910f8f4a 100644 --- a/plugins/Marketplace/Marketplace.py +++ b/plugins/Marketplace/Marketplace.py @@ -3,15 +3,15 @@ import os.path from PyQt6.QtCore import pyqtProperty, pyqtSignal, pyqtSlot, QObject -from typing import Optional, cast +from typing import Callable, cast, Dict, List, Optional from cura.CuraApplication import CuraApplication # Creating QML objects and managing packages. - from UM.Extension import Extension # We are implementing the main object of an extension here. from UM.PluginRegistry import PluginRegistry # To find out where we are stored (the proper way). -from .RemotePackageList import RemotePackageList # To register this type with QML. +from .InstallMissingPackagesDialog import InstallMissingPackageDialog # To allow creating this dialogue from outside of the plug-in. from .LocalPackageList import LocalPackageList # To register this type with QML. +from .RemotePackageList import RemotePackageList # To register this type with QML. class Marketplace(Extension, QObject): @@ -22,7 +22,6 @@ class Marketplace(Extension, QObject): QObject.__init__(self, parent) Extension.__init__(self) self._window: Optional["QObject"] = None # If the window has been loaded yet, it'll be cached in here. - self._plugin_registry: Optional[PluginRegistry] = None self._package_manager = CuraApplication.getInstance().getPackageManager() self._material_package_list: Optional[RemotePackageList] = None @@ -41,6 +40,7 @@ class Marketplace(Extension, QObject): self._tab_shown: int = 0 self._restart_needed = False + self.missingPackageDialog = None def getTabShown(self) -> int: return self._tab_shown @@ -80,9 +80,9 @@ class Marketplace(Extension, QObject): If the window hadn't been loaded yet into Qt, it will be created lazily. """ if self._window is None: - self._plugin_registry = PluginRegistry.getInstance() - self._plugin_registry.pluginsEnabledOrDisabledChanged.connect(self.checkIfRestartNeeded) - plugin_path = PluginRegistry.getInstance().getPluginPath(self.getPluginId()) + plugin_registry = PluginRegistry.getInstance() + plugin_registry.pluginsEnabledOrDisabledChanged.connect(self.checkIfRestartNeeded) + plugin_path = plugin_registry.getPluginPath(self.getPluginId()) if plugin_path is None: plugin_path = os.path.dirname(__file__) path = os.path.join(plugin_path, "resources", "qml", "Marketplace.qml") @@ -103,8 +103,11 @@ class Marketplace(Extension, QObject): self.setTabShown(1) def checkIfRestartNeeded(self) -> None: + if self._window is None: + return + if self._package_manager.hasPackagesToRemoveOrInstall or \ - cast(PluginRegistry, self._plugin_registry).getCurrentSessionActivationChangedPlugins(): + PluginRegistry.getInstance().getCurrentSessionActivationChangedPlugins(): self._restart_needed = True else: self._restart_needed = False @@ -112,6 +115,18 @@ class Marketplace(Extension, QObject): showRestartNotificationChanged = pyqtSignal() - @pyqtProperty(bool, notify=showRestartNotificationChanged) + @pyqtProperty(bool, notify = showRestartNotificationChanged) def showRestartNotification(self) -> bool: return self._restart_needed + + def showInstallMissingPackageDialog(self, packages_metadata: List[Dict[str, str]], ignore_warning_callback: Callable[[], None]) -> None: + """ + Show a dialog that prompts the user to install certain packages. + + The dialog is worded for packages that are missing and required for a certain operation. + :param packages_metadata: The metadata of the packages that are missing. + :param ignore_warning_callback: A callback that gets executed when the user ignores the pop-up, to show them a + warning. + """ + self.missingPackageDialog = InstallMissingPackageDialog(packages_metadata, ignore_warning_callback) + self.missingPackageDialog.show() diff --git a/plugins/Marketplace/MissingPackageList.py b/plugins/Marketplace/MissingPackageList.py new file mode 100644 index 0000000000..385e78b95f --- /dev/null +++ b/plugins/Marketplace/MissingPackageList.py @@ -0,0 +1,46 @@ +# Copyright (c) 2022 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +from typing import Optional, TYPE_CHECKING, Dict, List + +from .Constants import PACKAGES_URL +from .PackageModel import PackageModel +from .RemotePackageList import RemotePackageList +from PyQt6.QtCore import pyqtSignal, QObject, pyqtProperty, QCoreApplication + +from UM.TaskManagement.HttpRequestManager import HttpRequestManager # To request the package list from the API. +from UM.i18n import i18nCatalog + +if TYPE_CHECKING: + from PyQt6.QtCore import QObject, pyqtProperty, pyqtSignal + +catalog = i18nCatalog("cura") + +class MissingPackageList(RemotePackageList): + def __init__(self, packages_metadata: List[Dict[str, str]], parent: Optional["QObject"] = None) -> None: + super().__init__(parent) + self._packages_metadata: List[Dict[str, str]] = packages_metadata + self._package_type_filter = "material" + self._search_type = "package_ids" + self._requested_search_string = ",".join(map(lambda package: package["id"], packages_metadata)) + + def _parseResponse(self, reply: "QNetworkReply") -> None: + super()._parseResponse(reply) + + # At the end of the list we want to show some information about packages the user is missing that can't be found + # This will add cards with some information about the missing packages + if not self.hasMore: + self._addPackagesMissingFromRequest() + + def _addPackagesMissingFromRequest(self) -> None: + """Create cards for packages the user needs to install that could not be found""" + returned_packages_ids = [item["package"].packageId for item in self._items] + + for package_metadata in self._packages_metadata: + if package_metadata["id"] not in returned_packages_ids: + package = PackageModel.fromIncompletePackageInformation(package_metadata["display_name"], package_metadata["package_version"], self._package_type_filter) + self.appendItem({"package": package}) + + self.itemsChanged.emit() + + diff --git a/plugins/Marketplace/PackageList.py b/plugins/Marketplace/PackageList.py index 30162afe6c..3306e10740 100644 --- a/plugins/Marketplace/PackageList.py +++ b/plugins/Marketplace/PackageList.py @@ -244,7 +244,10 @@ class PackageList(ListModel): def _downloadError(self, package_id: str, update: bool = False, reply: Optional["QNetworkReply"] = None, error: Optional["QNetworkReply.NetworkError"] = None) -> None: if reply: - reply_string = bytes(reply.readAll()).decode() + try: + reply_string = bytes(reply.readAll()).decode() + except UnicodeDecodeError: + reply_string = "" Logger.error(f"Failed to download package: {package_id} due to {reply_string}") self._package_manager.packageInstallingFailed.emit(package_id) diff --git a/plugins/Marketplace/PackageModel.py b/plugins/Marketplace/PackageModel.py index bd1b0681fc..078bfc879e 100644 --- a/plugins/Marketplace/PackageModel.py +++ b/plugins/Marketplace/PackageModel.py @@ -84,6 +84,20 @@ class PackageModel(QObject): self._is_busy = False + self._is_missing_package_information = False + + @classmethod + def fromIncompletePackageInformation(cls, display_name: str, package_version: str, package_type: str) -> "PackageModel": + package_data = { + "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." + } + package_model = cls(package_data) + package_model.setIsMissingPackageInformation(True) + return package_model + @pyqtSlot() def _processUpdatedPackages(self): self.setCanUpdate(self._package_manager.checkIfPackageCanUpdate(self._package_id)) @@ -385,3 +399,14 @@ class PackageModel(QObject): def canUpdate(self) -> bool: """Flag indicating if the package can be updated""" return self._can_update + + isMissingPackageInformationChanged = pyqtSignal() + + def setIsMissingPackageInformation(self, isMissingPackageInformation: bool) -> None: + self._is_missing_package_information = isMissingPackageInformation + self.isMissingPackageInformationChanged.emit() + + @pyqtProperty(bool, notify=isMissingPackageInformationChanged) + def isMissingPackageInformation(self) -> bool: + """Flag indicating if the package can be updated""" + return self._is_missing_package_information diff --git a/plugins/Marketplace/RemotePackageList.py b/plugins/Marketplace/RemotePackageList.py index 67ba8c75da..d06d2c64c5 100644 --- a/plugins/Marketplace/RemotePackageList.py +++ b/plugins/Marketplace/RemotePackageList.py @@ -28,6 +28,7 @@ class RemotePackageList(PackageList): self._package_type_filter = "" self._requested_search_string = "" self._current_search_string = "" + self._search_type = "search" self._request_url = self._initialRequestUrl() self._ongoing_requests["get_packages"] = None self.isLoadingChanged.connect(self._onLoadingChanged) @@ -100,7 +101,7 @@ class RemotePackageList(PackageList): if self._package_type_filter != "": request_url += f"&package_type={self._package_type_filter}" if self._current_search_string != "": - request_url += f"&search={self._current_search_string}" + request_url += f"&{self._search_type}={self._current_search_string}" return request_url def _parseResponse(self, reply: "QNetworkReply") -> None: @@ -138,9 +139,10 @@ class RemotePackageList(PackageList): :param reply: The reply with packages. This will most likely be incomplete and should be ignored. :param error: The error status of the request. """ - if error == QNetworkReply.NetworkError.OperationCanceledError: + if error == QNetworkReply.NetworkError.OperationCanceledError or error == QNetworkReply.NetworkError.ProtocolUnknownError: Logger.debug("Cancelled request for packages.") self._ongoing_requests["get_packages"] = None + self.setIsLoading(False) return # Don't show an error about this to the user. Logger.error("Could not reach Marketplace server.") self.setErrorMessage(catalog.i18nc("@info:error", "Could not reach Marketplace.")) diff --git a/plugins/Marketplace/__init__.py b/plugins/Marketplace/__init__.py index bd65062ba6..655cf6bf84 100644 --- a/plugins/Marketplace/__init__.py +++ b/plugins/Marketplace/__init__.py @@ -1,6 +1,6 @@ # Copyright (c) 2021 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. - +from .CloudSync.SyncOrchestrator import SyncOrchestrator from .Marketplace import Marketplace def getMetaData(): @@ -14,4 +14,4 @@ def register(app): """ Register the plug-in object with Uranium. """ - return { "extension": Marketplace() } + return { "extension": [SyncOrchestrator(app), Marketplace()] } diff --git a/plugins/Marketplace/plugin.json b/plugins/Marketplace/plugin.json index 7eeeb5c986..9cb81461a1 100644 --- a/plugins/Marketplace/plugin.json +++ b/plugins/Marketplace/plugin.json @@ -2,7 +2,7 @@ "name": "Marketplace", "author": "Ultimaker B.V.", "version": "1.0.0", - "api": 7, + "api": 8, "description": "Manages extensions to the application and allows browsing extensions from the Ultimaker website.", "i18n-catalog": "cura" } diff --git a/plugins/Marketplace/resources/qml/CompatibilityDialog.qml b/plugins/Marketplace/resources/qml/CompatibilityDialog.qml new file mode 100644 index 0000000000..331502a7a7 --- /dev/null +++ b/plugins/Marketplace/resources/qml/CompatibilityDialog.qml @@ -0,0 +1,146 @@ +// Copyright (c) 2022 Ultimaker B.V. +// Marketplace is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.10 +import QtQuick.Window 2.2 +import QtQuick.Controls 2.3 + +import UM 1.5 as UM +import Cura 1.6 as Cura + + +UM.Dialog +{ + visible: true + title: catalog.i18nc("@title", "Changes from your account") + width: UM.Theme.getSize("popup_dialog").width + height: UM.Theme.getSize("popup_dialog").height + minimumWidth: width + maximumWidth: minimumWidth + minimumHeight: height + maximumHeight: minimumHeight + margin: 0 + + property string actionButtonText: subscribedPackagesModel.hasIncompatiblePackages && !subscribedPackagesModel.hasCompatiblePackages ? catalog.i18nc("@button", "Dismiss") : catalog.i18nc("@button", "Next") + + Rectangle + { + id: root + anchors.fill: parent + color: UM.Theme.getColor("main_background") + + UM.I18nCatalog + { + id: catalog + name: "cura" + } + + ScrollView + { + width: parent.width + height: parent.height - nextButton.height - nextButton.anchors.margins * 2 // We want some leftover space for the button at the bottom + clip: true + + Column + { + anchors.fill: parent + anchors.margins: UM.Theme.getSize("default_margin").width + + // Compatible packages + UM.Label + { + text: catalog.i18nc("@label", "The following packages will be added:") + visible: subscribedPackagesModel.hasCompatiblePackages + height: contentHeight + UM.Theme.getSize("default_margin").height + } + Repeater + { + model: subscribedPackagesModel + Component + { + Item + { + width: parent.width + property int lineHeight: 60 + visible: model.is_compatible + height: visible ? (lineHeight + UM.Theme.getSize("default_margin").height) : 0 // We only show the compatible packages here + Image + { + id: packageIcon + source: model.icon_url || Qt.resolvedUrl("../images/placeholder.svg") + height: lineHeight + width: height + sourceSize.height: height + sourceSize.width: width + mipmap: true + fillMode: Image.PreserveAspectFit + } + UM.Label + { + text: model.display_name + font: UM.Theme.getFont("medium_bold") + anchors.left: packageIcon.right + anchors.leftMargin: UM.Theme.getSize("default_margin").width + anchors.verticalCenter: packageIcon.verticalCenter + elide: Text.ElideRight + } + } + } + } + + // Incompatible packages + UM.Label + { + text: catalog.i18nc("@label", "The following packages can not be installed because of an incompatible Cura version:") + visible: subscribedPackagesModel.hasIncompatiblePackages + height: contentHeight + UM.Theme.getSize("default_margin").height + } + Repeater + { + model: subscribedPackagesModel + Component + { + Item + { + width: parent.width + property int lineHeight: 60 + visible: !model.is_compatible && !model.is_dismissed + height: visible ? (lineHeight + UM.Theme.getSize("default_margin").height) : 0 // We only show the incompatible packages here + Image + { + id: packageIcon + source: model.icon_url || Qt.resolvedUrl("../images/placeholder.svg") + height: lineHeight + width: height + sourceSize.height: height + sourceSize.width: width + mipmap: true + fillMode: Image.PreserveAspectFit + } + UM.Label + { + text: model.display_name + font: UM.Theme.getFont("medium_bold") + anchors.left: packageIcon.right + anchors.leftMargin: UM.Theme.getSize("default_margin").width + anchors.verticalCenter: packageIcon.verticalCenter + elide: Text.ElideRight + } + } + } + } + } + + } // End of ScrollView + + Cura.PrimaryButton + { + id: nextButton + anchors.bottom: parent.bottom + anchors.right: parent.right + anchors.margins: UM.Theme.getSize("default_margin").height + text: actionButtonText + onClicked: accept() + } + } +} diff --git a/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml b/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml new file mode 100644 index 0000000000..edad18f1a8 --- /dev/null +++ b/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml @@ -0,0 +1,21 @@ +// Copyright (c) 2021 Ultimaker B.V. +// 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 +import QtQuick.Window 2.2 + +import UM 1.5 as UM +import Cura 1.6 as Cura + +Marketplace +{ + modality: Qt.ApplicationModal + title: catalog.i18nc("@title", "Install missing Materials") + pageContentsSource: "MissingPackages.qml" + showSearchHeader: false + showOnboadBanner: false + + onClosing: manager.showMissingMaterialsWarning() +} diff --git a/plugins/Marketplace/resources/qml/LicenseDialog.qml b/plugins/Marketplace/resources/qml/LicenseDialog.qml index 2f3f4ffc12..5dd8ac6fc4 100644 --- a/plugins/Marketplace/resources/qml/LicenseDialog.qml +++ b/plugins/Marketplace/resources/qml/LicenseDialog.qml @@ -42,16 +42,13 @@ UM.Dialog source: UM.Theme.getIcon("Certificate", "high") } - Label + UM.Label { text: catalog.i18nc("@text", "Please read and agree with the plugin licence.") - color: UM.Theme.getColor("text") font: UM.Theme.getFont("large") anchors.verticalCenter: icon.verticalCenter height: UM.Theme.getSize("marketplace_large_icon").height - verticalAlignment: Qt.AlignmentFlag.AlignVCenter - wrapMode: Text.Wrap - renderType: Text.NativeRendering + verticalAlignment: Qt.AlignVCenter } } diff --git a/plugins/Marketplace/resources/qml/Marketplace.qml b/plugins/Marketplace/resources/qml/Marketplace.qml index 887886fd22..2a3c5f69ce 100644 --- a/plugins/Marketplace/resources/qml/Marketplace.qml +++ b/plugins/Marketplace/resources/qml/Marketplace.qml @@ -6,7 +6,7 @@ import QtQuick.Controls 2.15 import QtQuick.Layouts 1.15 import QtQuick.Window 2.2 -import UM 1.2 as UM +import UM 1.5 as UM import Cura 1.6 as Cura Window @@ -16,6 +16,10 @@ Window signal searchStringChanged(string new_search) + property alias showOnboadBanner: onBoardBanner.visible + property alias showSearchHeader: searchHeader.visible + property alias pageContentsSource: content.source + minimumWidth: UM.Theme.getSize("modal_window_minimum").width minimumHeight: UM.Theme.getSize("modal_window_minimum").height width: minimumWidth @@ -67,7 +71,7 @@ Window Layout.preferredWidth: parent.width Layout.preferredHeight: childrenRect.height + UM.Theme.getSize("default_margin").height - Label + UM.Label { id: pageTitle anchors @@ -80,13 +84,13 @@ Window } font: UM.Theme.getFont("large") - color: UM.Theme.getColor("text") text: content.item ? content.item.pageTitle: catalog.i18nc("@title", "Loading...") } } OnboardBanner { + id: onBoardBanner visible: content.item && content.item.bannerVisible text: content.item && content.item.bannerText icon: content.item && content.item.bannerIcon @@ -101,6 +105,7 @@ Window // Search & Top-Level Tabs Item { + id: searchHeader implicitHeight: childrenRect.height implicitWidth: parent.width - 2 * UM.Theme.getSize("default_margin").width Layout.alignment: Qt.AlignHCenter @@ -187,7 +192,7 @@ Window { text: catalog.i18nc("@info", "Search in the browser") iconSource: UM.Theme.getIcon("LinkExternal") - visible: pageSelectionTabBar.currentItem.hasSearch + visible: pageSelectionTabBar.currentItem.hasSearch && searchHeader.visible isIconOnRightSide: true height: fontMetrics.height textFont: fontMetrics.font diff --git a/plugins/Marketplace/resources/qml/MissingPackages.qml b/plugins/Marketplace/resources/qml/MissingPackages.qml new file mode 100644 index 0000000000..316d048317 --- /dev/null +++ b/plugins/Marketplace/resources/qml/MissingPackages.qml @@ -0,0 +1,15 @@ +// Copyright (c) 2021 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import UM 1.4 as UM + +Packages +{ + pageTitle: catalog.i18nc("@header", "Install Materials") + + bannerVisible: false + showUpdateButton: false + showInstallButton: true + + model: manager.model +} diff --git a/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml b/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml new file mode 100644 index 0000000000..a3d4b60221 --- /dev/null +++ b/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml @@ -0,0 +1,98 @@ +// Copyright (c) 2021 Ultimaker B.V. +// Marketplace is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.10 +import QtQuick.Window 2.2 +import QtQuick.Controls 2.3 +import QtQuick.Layouts 1.3 + +import UM 1.5 as UM +import Cura 1.6 as Cura + +UM.Dialog +{ + id: licenseDialog + title: licenseModel.dialogTitle + + minimumWidth: UM.Theme.getSize("modal_window_minimum").width + minimumHeight: UM.Theme.getSize("modal_window_minimum").height + width: minimumWidth + height: minimumHeight + backgroundColor: UM.Theme.getColor("main_background") + margin: UM.Theme.getSize("default_margin").width + + ColumnLayout + { + anchors.fill: parent + spacing: UM.Theme.getSize("thick_margin").height + + UM.I18nCatalog { id: catalog; name: "cura" } + + UM.Label + { + id: licenseHeader + Layout.fillWidth: true + text: catalog.i18nc("@label", "You need to accept the license to install the package") + } + + Row { + id: packageRow + + Layout.fillWidth: true + height: childrenRect.height + spacing: UM.Theme.getSize("default_margin").width + leftPadding: UM.Theme.getSize("narrow_margin").width + + Image + { + id: icon + width: UM.Theme.getSize("card_icon").width + height: width + sourceSize.width: width + sourceSize.height: height + fillMode: Image.PreserveAspectFit + source: licenseModel.iconUrl || Qt.resolvedUrl("../images/placeholder.svg") + mipmap: true + } + + UM.Label + { + id: packageName + text: licenseModel.packageName + + font.bold: true + anchors.verticalCenter: icon.verticalCenter + height: contentHeight + } + } + + Cura.ScrollableTextArea + { + Layout.fillWidth: true + Layout.fillHeight: true + anchors.topMargin: UM.Theme.getSize("default_margin").height + + textArea.text: licenseModel.licenseText + textArea.readOnly: true + } + } + + rightButtons: + [ + Cura.PrimaryButton + { + text: licenseModel.acceptButtonText + onClicked: handler.onLicenseAccepted() + } + ] + + leftButtons: + [ + Cura.SecondaryButton + { + id: declineButton + text: licenseModel.declineButtonText + onClicked: handler.onLicenseDeclined() + } + ] +} diff --git a/plugins/Marketplace/resources/qml/OnboardBanner.qml b/plugins/Marketplace/resources/qml/OnboardBanner.qml index 278c50ab57..5ae0d6e0d9 100644 --- a/plugins/Marketplace/resources/qml/OnboardBanner.qml +++ b/plugins/Marketplace/resources/qml/OnboardBanner.qml @@ -19,7 +19,6 @@ Rectangle implicitHeight: childrenRect.height + 2 * UM.Theme.getSize("default_margin").height color: UM.Theme.getColor("action_panel_secondary") - // Icon UM.ColorImage { id: onboardingIcon @@ -31,9 +30,10 @@ Rectangle } width: UM.Theme.getSize("banner_icon_size").width height: UM.Theme.getSize("banner_icon_size").height + + color: UM.Theme.getColor("primary_text") } - // Close button UM.SimpleButton { id: onboardingClose @@ -52,8 +52,8 @@ Rectangle onClicked: onRemove() } - // Body - Label { + UM.Label + { id: infoText anchors { @@ -63,11 +63,7 @@ Rectangle margins: UM.Theme.getSize("default_margin").width } - font: UM.Theme.getFont("default") - - renderType: Text.NativeRendering color: UM.Theme.getColor("primary_text") - wrapMode: Text.Wrap elide: Text.ElideRight onLineLaidOut: (line) => @@ -102,7 +98,7 @@ Rectangle id: readMoreButton anchors.left: infoText.left anchors.bottom: infoText.bottom - text: "Learn More" + text: catalog.i18nc("@button:label", "Learn More") textFont: UM.Theme.getFont("default") textColor: infoText.color leftPadding: 0 diff --git a/plugins/Marketplace/resources/qml/PackageCard.qml b/plugins/Marketplace/resources/qml/PackageCard.qml index 7442c63aa6..b74dad0712 100644 --- a/plugins/Marketplace/resources/qml/PackageCard.qml +++ b/plugins/Marketplace/resources/qml/PackageCard.qml @@ -18,6 +18,8 @@ Rectangle height: childrenRect.height color: UM.Theme.getColor("main_background") radius: UM.Theme.getSize("default_radius").width + border.color: packageData.isMissingPackageInformation ? UM.Theme.getColor("warning") : "transparent" + border.width: packageData.isMissingPackageInformation ? UM.Theme.getSize("default_lining").width : 0 PackageCardHeader { @@ -29,16 +31,13 @@ Rectangle anchors.fill: parent - Label + UM.Label { id: descriptionLabel width: parent.width text: packageData.description - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") maximumLineCount: 2 - wrapMode: Text.Wrap elide: Text.ElideRight visible: text !== "" } diff --git a/plugins/Marketplace/resources/qml/PackageCardHeader.qml b/plugins/Marketplace/resources/qml/PackageCardHeader.qml index 8e25e5c64c..58dfba84e1 100644 --- a/plugins/Marketplace/resources/qml/PackageCardHeader.qml +++ b/plugins/Marketplace/resources/qml/PackageCardHeader.qml @@ -19,6 +19,8 @@ Item property bool showInstallButton: false property bool showUpdateButton: false + property string missingPackageReadMoreUrl: "https://support.ultimaker.com/hc/en-us/articles/360011968360-Using-the-Ultimaker-Marketplace?utm_source=cura&utm_medium=software&utm_campaign=load-file-material-missing" + width: parent.width height: UM.Theme.getSize("card").height @@ -87,11 +89,18 @@ Item Layout.preferredWidth: parent.width Layout.preferredHeight: childrenRect.height - Label + UM.StatusIcon + { + width: UM.Theme.getSize("section_icon").width + UM.Theme.getSize("narrow_margin").width + height: UM.Theme.getSize("section_icon").height + status: UM.StatusIcon.Status.WARNING + visible: packageData.isMissingPackageInformation + } + + UM.Label { text: packageData.displayName font: UM.Theme.getFont("medium_bold") - color: UM.Theme.getColor("text") verticalAlignment: Text.AlignTop } VerifiedIcon @@ -100,18 +109,17 @@ Item visible: packageData.isCheckedByUltimaker } - Label + UM.Label { id: packageVersionLabel text: packageData.packageVersion - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") Layout.fillWidth: true } Button { id: externalLinkButton + visible: !packageData.isMissingPackageInformation // For some reason if i set padding, they don't match up. If i set all of them explicitly, it does work? leftPadding: UM.Theme.getSize("narrow_margin").width @@ -119,8 +127,8 @@ Item topPadding: UM.Theme.getSize("narrow_margin").width bottomPadding: UM.Theme.getSize("narrow_margin").width - Layout.preferredWidth: UM.Theme.getSize("card_tiny_icon").width + 2 * padding - Layout.preferredHeight: UM.Theme.getSize("card_tiny_icon").width + 2 * padding + width: UM.Theme.getSize("card_tiny_icon").width + 2 * padding + height: UM.Theme.getSize("card_tiny_icon").width + 2 * padding contentItem: UM.ColorImage { source: UM.Theme.getIcon("LinkExternal") @@ -155,12 +163,13 @@ Item spacing: UM.Theme.getSize("narrow_margin").width // label "By" - Label + UM.Label { id: authorBy + visible: !packageData.isMissingPackageInformation Layout.alignment: Qt.AlignCenter - text: catalog.i18nc("@label", "By") + text: catalog.i18nc("@label Is followed by the name of an author", "By") font: UM.Theme.getFont("default") color: UM.Theme.getColor("text") } @@ -168,6 +177,7 @@ Item // clickable author name Item { + visible: !packageData.isMissingPackageInformation Layout.fillWidth: true implicitHeight: authorBy.height Layout.alignment: Qt.AlignTop @@ -185,10 +195,29 @@ Item } } + Item + { + visible: packageData.isMissingPackageInformation + Layout.fillWidth: true + implicitHeight: readMoreButton.height + Layout.alignment: Qt.AlignTop + Cura.TertiaryButton + { + id: readMoreButton + text: catalog.i18nc("@button:label", "Learn More") + leftPadding: 0 + rightPadding: 0 + iconSource: UM.Theme.getIcon("LinkExternal") + isIconOnRightSide: true + + onClicked: Qt.openUrlExternally(missingPackageReadMoreUrl) + } + } + ManageButton { id: enableManageButton - visible: showDisableButton && packageData.isInstalled && !packageData.isToBeInstalled && packageData.packageType != "material" + visible: showDisableButton && packageData.isInstalled && !packageData.isToBeInstalled && packageData.packageType != "material" && !packageData.isMissingPackageInformation enabled: !packageData.busy button_style: !packageData.isActive @@ -202,7 +231,7 @@ Item ManageButton { id: installManageButton - visible: showInstallButton && (packageData.canDowngrade || !packageData.isBundled) + visible: showInstallButton && (packageData.canDowngrade || !packageData.isBundled) && !packageData.isMissingPackageInformation enabled: !packageData.busy busy: packageData.busy button_style: !(packageData.isInstalled || packageData.isToBeInstalled) @@ -232,7 +261,7 @@ Item ManageButton { id: updateManageButton - visible: showUpdateButton && packageData.canUpdate + visible: showUpdateButton && packageData.canUpdate && !packageData.isMissingPackageInformation enabled: !packageData.busy busy: packageData.busy Layout.alignment: Qt.AlignTop diff --git a/plugins/Marketplace/resources/qml/PackageDetails.qml b/plugins/Marketplace/resources/qml/PackageDetails.qml index 218669d81e..a116746f63 100644 --- a/plugins/Marketplace/resources/qml/PackageDetails.qml +++ b/plugins/Marketplace/resources/qml/PackageDetails.qml @@ -31,7 +31,7 @@ Item Cura.SecondaryButton { - Layout.alignment: Qt.AlignmentFlag.AlignVCenter + Layout.alignment: Qt.AlignVCenter Layout.preferredHeight: UM.Theme.getSize("action_button").height Layout.preferredWidth: height @@ -45,14 +45,13 @@ Item iconSize: height - leftPadding * 2 } - Label + UM.Label { - Layout.alignment: Qt.AlignmentFlag.AlignVCenter + Layout.alignment: Qt.AlignVCenter Layout.fillWidth: true text: detailPage.title font: UM.Theme.getFont("large") - color: UM.Theme.getColor("text") } } diff --git a/plugins/Marketplace/resources/qml/PackagePage.qml b/plugins/Marketplace/resources/qml/PackagePage.qml index 455b2b8d5d..a8ddf2348c 100644 --- a/plugins/Marketplace/resources/qml/PackagePage.qml +++ b/plugins/Marketplace/resources/qml/PackagePage.qml @@ -56,13 +56,9 @@ Rectangle color: UM.Theme.getColor("text") } - Label + UM.Label { - anchors.verticalCenter: downloadsIcon.verticalCenter - - color: UM.Theme.getColor("text") - font: UM.Theme.getFont("default") text: packageData.downloadCount } } @@ -78,25 +74,22 @@ Rectangle topPadding: 0 spacing: UM.Theme.getSize("default_margin").height - Label + UM.Label { width: parent.width - parent.padding * 2 text: catalog.i18nc("@header", "Description") font: UM.Theme.getFont("medium_bold") - color: UM.Theme.getColor("text") elide: Text.ElideRight } - Label + UM.Label { width: parent.width - parent.padding * 2 text: packageData.formattedDescription font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") linkColor: UM.Theme.getColor("text_link") - wrapMode: Text.Wrap textFormat: Text.RichText onLinkActivated: UM.UrlUtil.openUrl(link, ["http", "https"]) @@ -110,13 +103,12 @@ Rectangle visible: packageData.packageType === "material" spacing: 0 - Label + UM.Label { width: parent.width text: catalog.i18nc("@header", "Compatible printers") font: UM.Theme.getFont("medium_bold") - color: UM.Theme.getColor("text") elide: Text.ElideRight } @@ -124,25 +116,23 @@ Rectangle { model: packageData.compatiblePrinters - Label + UM.Label { width: compatiblePrinterColumn.width text: modelData font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") elide: Text.ElideRight } } - Label + UM.Label { width: parent.width visible: packageData.compatiblePrinters.length == 0 text: "(" + catalog.i18nc("@info", "No compatibility information") + ")" font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") elide: Text.ElideRight } } @@ -155,13 +145,12 @@ Rectangle visible: packageData.packageType === "material" spacing: 0 - Label + UM.Label { width: parent.width text: catalog.i18nc("@header", "Compatible support materials") font: UM.Theme.getFont("medium_bold") - color: UM.Theme.getColor("text") elide: Text.ElideRight } @@ -169,25 +158,23 @@ Rectangle { model: packageData.compatibleSupportMaterials - Label + UM.Label { width: compatibleSupportMaterialColumn.width text: modelData font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") elide: Text.ElideRight } } - Label + UM.Label { width: parent.width visible: packageData.compatibleSupportMaterials.length == 0 text: "(" + catalog.i18nc("@info No materials", "None") + ")" font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") elide: Text.ElideRight } } @@ -199,23 +186,21 @@ Rectangle visible: packageData.packageType === "material" spacing: 0 - Label + UM.Label { width: parent.width text: catalog.i18nc("@header", "Compatible with Material Station") font: UM.Theme.getFont("medium_bold") - color: UM.Theme.getColor("text") elide: Text.ElideRight } - Label + UM.Label { width: parent.width text: packageData.isCompatibleMaterialStation ? catalog.i18nc("@info", "Yes") : catalog.i18nc("@info", "No") font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") elide: Text.ElideRight } } @@ -227,23 +212,21 @@ Rectangle visible: packageData.packageType === "material" spacing: 0 - Label + UM.Label { width: parent.width text: catalog.i18nc("@header", "Optimized for Air Manager") font: UM.Theme.getFont("medium_bold") - color: UM.Theme.getColor("text") elide: Text.ElideRight } - Label + UM.Label { width: parent.width text: packageData.isCompatibleAirManager ? catalog.i18nc("@info", "Yes") : catalog.i18nc("@info", "No") font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") elide: Text.ElideRight } } diff --git a/plugins/Marketplace/resources/qml/PackageTypeTab.qml b/plugins/Marketplace/resources/qml/PackageTypeTab.qml index 79eaa9a16c..09dd7f56c3 100644 --- a/plugins/Marketplace/resources/qml/PackageTypeTab.qml +++ b/plugins/Marketplace/resources/qml/PackageTypeTab.qml @@ -3,7 +3,7 @@ import QtQuick 2.15 import QtQuick.Controls 2.15 -import UM 1.0 as UM +import UM 1.5 as UM TabButton { @@ -22,11 +22,10 @@ TabButton border.width: UM.Theme.getSize("thick_lining").width } - contentItem: Label + contentItem: UM.Label { text: parent.text font: UM.Theme.getFont("medium_bold") - color: UM.Theme.getColor("text") width: contentWidth anchors.centerIn: parent } diff --git a/plugins/Marketplace/resources/qml/Packages.qml b/plugins/Marketplace/resources/qml/Packages.qml index d86536639c..6e83f1e33b 100644 --- a/plugins/Marketplace/resources/qml/Packages.qml +++ b/plugins/Marketplace/resources/qml/Packages.qml @@ -1,9 +1,10 @@ -// Copyright (c) 2021 Ultimaker B.V. +// Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.15 import QtQuick.Controls 2.15 -import UM 1.4 as UM + +import UM 1.6 as UM ListView @@ -39,7 +40,7 @@ ListView color: UM.Theme.getColor("detail_background") - Label + UM.Label { id: sectionHeaderText anchors.verticalCenter: parent.verticalCenter @@ -47,27 +48,10 @@ ListView text: section font: UM.Theme.getFont("large") - color: UM.Theme.getColor("text") } } - ScrollBar.vertical: ScrollBar - { - // Vertical ScrollBar, styled similarly to the scrollBar in the settings panel - id: verticalScrollBar - visible: packages.contentHeight > packages.height - anchors.right: parent.right - background: Item {} - - contentItem: Rectangle - { - id: scrollViewHandle - implicitWidth: UM.Theme.getSize("scrollbar").width - radius: Math.round(implicitWidth / 2) - color: verticalScrollBar.pressed ? UM.Theme.getColor("scrollbar_handle_down") : verticalScrollBar.hovered ? UM.Theme.getColor("scrollbar_handle_hover") : UM.Theme.getColor("scrollbar_handle") - Behavior on color { ColorAnimation { duration: 50; } } - } - } + ScrollBar.vertical: UM.ScrollBar { id: verticalScrollBar } delegate: MouseArea { @@ -78,8 +62,11 @@ ListView hoverEnabled: true onClicked: { - packages.selectedPackage = model.package; - contextStack.push(packageDetailsComponent); + if (!model.package.isMissingPackageInformation) + { + packages.selectedPackage = model.package; + contextStack.push(packageDetailsComponent); + } } PackageCard diff --git a/plugins/ModelChecker/ModelChecker.qml b/plugins/ModelChecker/ModelChecker.qml index 85ee774a8b..f734aff2b1 100644 --- a/plugins/ModelChecker/ModelChecker.qml +++ b/plugins/ModelChecker/ModelChecker.qml @@ -14,7 +14,7 @@ UM.SimpleButton width: UM.Theme.getSize("save_button_specs_icons").width height: UM.Theme.getSize("save_button_specs_icons").height - iconSource: "model_checker.svg" + iconSource: Qt.resolvedUrl("model_checker.svg") anchors.verticalCenter: parent ? parent.verticalCenter : undefined color: UM.Theme.getColor("text_scene") hoverColor: UM.Theme.getColor("text_scene_hover") 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/ModelChecker/plugin.json b/plugins/ModelChecker/plugin.json index bf546879c7..39d71e30e0 100644 --- a/plugins/ModelChecker/plugin.json +++ b/plugins/ModelChecker/plugin.json @@ -2,7 +2,7 @@ "name": "Model Checker", "author": "Ultimaker B.V.", "version": "1.0.1", - "api": 7, + "api": 8, "description": "Checks models and print configuration for possible printing issues and give suggestions.", "i18n-catalog": "cura" } diff --git a/plugins/MonitorStage/MonitorMain.qml b/plugins/MonitorStage/MonitorMain.qml index 8992606d90..5d63ac5b83 100644 --- a/plugins/MonitorStage/MonitorMain.qml +++ b/plugins/MonitorStage/MonitorMain.qml @@ -122,6 +122,7 @@ Rectangle } visible: !isNetworkConfigured && isNetworkConfigurable width: childrenRect.width + height: childrenRect.height UM.ColorImage { @@ -132,7 +133,7 @@ Rectangle width: UM.Theme.getSize("icon_indicator").width height: UM.Theme.getSize("icon_indicator").height } - Label + UM.Label { id: manageQueueText anchors @@ -144,7 +145,6 @@ Rectangle color: UM.Theme.getColor("text_link") font: UM.Theme.getFont("medium") text: catalog.i18nc("@label link to technical assistance", "View user manuals online") - renderType: Text.NativeRendering } MouseArea { @@ -155,14 +155,13 @@ Rectangle onExited: manageQueueText.font.underline = false } } - Label + UM.Label { id: noConnectionLabel anchors.horizontalCenter: parent.horizontalCenter visible: !isNetworkConfigurable text: catalog.i18nc("@info", "In order to monitor your print from Cura, please connect the printer.") font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") wrapMode: Text.WordWrap width: contentWidth } diff --git a/plugins/MonitorStage/plugin.json b/plugins/MonitorStage/plugin.json index bcf42763dc..b69ac3469d 100644 --- a/plugins/MonitorStage/plugin.json +++ b/plugins/MonitorStage/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Provides a monitor stage in Cura.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } \ No newline at end of file diff --git a/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml b/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml index 397710114e..2d4b3e01e5 100644 --- a/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml +++ b/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml @@ -196,7 +196,7 @@ Item height: parent.height width: UM.Theme.getSize("setting").width + UM.Theme.getSize("default_margin").width - ScrollBar.vertical: UM.ScrollBar {} + ScrollBar.vertical: UM.ScrollBar { id: scrollBar } clip: true spacing: UM.Theme.getSize("default_lining").height @@ -244,7 +244,7 @@ Item Loader { id: settingLoader - width: UM.Theme.getSize("setting").width - removeButton.width + width: UM.Theme.getSize("setting").width - removeButton.width - scrollBar.width height: UM.Theme.getSize("section").height + UM.Theme.getSize("narrow_margin").height enabled: provider.properties.enabled === "True" property var definition: model @@ -299,7 +299,7 @@ Item { id: removeButton width: UM.Theme.getSize("setting").height - height: UM.Theme.getSize("setting").height + height: UM.Theme.getSize("setting").height + UM.Theme.getSize("narrow_margin").height onClicked: addedSettingsModel.setVisible(model.key, false) diff --git a/plugins/PerObjectSettingsTool/plugin.json b/plugins/PerObjectSettingsTool/plugin.json index 2a44d6840e..d6aacfc341 100644 --- a/plugins/PerObjectSettingsTool/plugin.json +++ b/plugins/PerObjectSettingsTool/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Provides the Per Model Settings.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/PostProcessingPlugin/PostProcessingPlugin.qml b/plugins/PostProcessingPlugin/PostProcessingPlugin.qml index d4cba61496..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. @@ -232,7 +232,7 @@ UM.Dialog } onObjectAdded: function(index, object) { scriptsMenu.insertItem(index, object)} - onObjectRemoved: function(object) { scriptsMenu.removeItem(object) } + onObjectRemoved: function(index, object) { scriptsMenu.removeItem(object) } } } @@ -245,7 +245,7 @@ UM.Dialog height: parent.height id: settingsPanel - Label + UM.Label { id: scriptSpecsHeader text: manager.selectedScriptIndex == -1 ? catalog.i18nc("@label", "Settings") : base.activeScriptName @@ -262,7 +262,6 @@ UM.Dialog elide: Text.ElideRight height: 20 * screenScaleFactor font: UM.Theme.getFont("large_bold") - color: UM.Theme.getColor("text") } ListView @@ -287,6 +286,7 @@ UM.Dialog { id: definitionsModel containerId: manager.selectedScriptDefinitionId + onContainerIdChanged: definitionsModel.setAllVisible(true) showAll: true } @@ -475,7 +475,7 @@ UM.Dialog } toolTipContentAlignment: UM.Enums.ContentAlignment.AlignLeft onClicked: dialog.show() -// iconSource: "Script.svg" + iconSource: Qt.resolvedUrl("Script.svg") fixedWidthMode: false } diff --git a/plugins/PostProcessingPlugin/plugin.json b/plugins/PostProcessingPlugin/plugin.json index d5b6727962..9671b2e91d 100644 --- a/plugins/PostProcessingPlugin/plugin.json +++ b/plugins/PostProcessingPlugin/plugin.json @@ -2,7 +2,7 @@ "name": "Post Processing", "author": "Ultimaker", "version": "2.2.1", - "api": 7, + "api": 8, "description": "Extension that allows for user created scripts for post processing", "catalog": "cura" } \ No newline at end of file diff --git a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py index b31b8efa7c..5923a53adf 100644 --- a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py +++ b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py @@ -330,7 +330,7 @@ class PauseAtHeight(Script): current_height = current_z - layer_0_z if current_height < pause_height: - continue # Scan the enitre layer, z-changes are not always on the same/first line. + continue # Scan the entire layer, z-changes are not always on the same/first line. # Pause at layer else: diff --git a/plugins/PrepareStage/PrepareMenu.qml b/plugins/PrepareStage/PrepareMenu.qml index d6bff1792e..42c3c8dde6 100644 --- a/plugins/PrepareStage/PrepareMenu.qml +++ b/plugins/PrepareStage/PrepareMenu.qml @@ -106,26 +106,34 @@ Item { id: openProviderColumn - //The column doesn't automatically listen to its children rect if the children change internally, so we need to explicitly update the size. - onChildrenRectChanged: + // Automatically set the width to fit the widest MenuItem + // Based on https://martin.rpdev.net/2018/03/13/qt-quick-controls-2-automatically-set-the-width-of-menus.html + function setWidth() { - popup.implicitHeight = childrenRect.height - popup.implicitWidth = childrenRect.width - } - onPositioningComplete: - { - popup.implicitHeight = childrenRect.height - popup.implicitWidth = childrenRect.width + var result = 0; + var padding = 0; + for (var i = 0; i < fileProviderRepeater.count; ++i) { + var item = fileProviderRepeater.itemAt(i); + if (item.hasOwnProperty("implicitWidth")) + { + var itemWidth = item.implicitWidth; + result = Math.max(itemWidth, result); + padding = Math.max(item.padding, padding); + } + } + return result + padding * 2; } + width: setWidth() Repeater { + id: fileProviderRepeater model: prepareMenu.fileProviderModel delegate: Button { leftPadding: UM.Theme.getSize("default_margin").width rightPadding: UM.Theme.getSize("default_margin").width - width: contentItem.width + leftPadding + rightPadding + width: openProviderColumn.width height: UM.Theme.getSize("action_button").height hoverEnabled: true diff --git a/plugins/PrepareStage/plugin.json b/plugins/PrepareStage/plugin.json index 603ed49359..39842c32f2 100644 --- a/plugins/PrepareStage/plugin.json +++ b/plugins/PrepareStage/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Provides a prepare stage in Cura.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } \ No newline at end of file diff --git a/plugins/PreviewStage/plugin.json b/plugins/PreviewStage/plugin.json index f0341d20ea..7e91ec96c5 100644 --- a/plugins/PreviewStage/plugin.json +++ b/plugins/PreviewStage/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Provides a preview stage in Cura.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } \ No newline at end of file diff --git a/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py b/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py index 067773d988..e93473c25f 100644 --- a/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py +++ b/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py @@ -80,6 +80,18 @@ class RemovableDriveOutputDevice(OutputDevice): if extension: # Not empty string. extension = "." + extension file_name = os.path.join(self.getId(), file_name + extension) + self._performWrite(file_name, preferred_format, writer, nodes) + + def _performWrite(self, file_name, preferred_format, writer, nodes): + """Writes the specified nodes to the removable drive. This is split from + requestWrite to allow interception in other plugins. See Ultimaker/Cura#10917. + + :param file_name: File path to write to. + :param preferred_format: Preferred file format to write to. + :param writer: Writer for writing to the file. + :param nodes: A collection of scene nodes that should be written to the + file. + """ try: Logger.log("d", "Writing to %s", file_name) diff --git a/plugins/RemovableDriveOutputDevice/RemovableDrivePlugin.py b/plugins/RemovableDriveOutputDevice/RemovableDrivePlugin.py index 873076ea71..bb3f5e0019 100644 --- a/plugins/RemovableDriveOutputDevice/RemovableDrivePlugin.py +++ b/plugins/RemovableDriveOutputDevice/RemovableDrivePlugin.py @@ -21,7 +21,7 @@ class RemovableDrivePlugin(OutputDevicePlugin): super().__init__() self._update_thread = threading.Thread(target = self._updateThread) - self._update_thread.deamon = True + self._update_thread.daemon = True self._check_updates = True diff --git a/plugins/RemovableDriveOutputDevice/plugin.json b/plugins/RemovableDriveOutputDevice/plugin.json index b1dae2d182..76dd485dfd 100644 --- a/plugins/RemovableDriveOutputDevice/plugin.json +++ b/plugins/RemovableDriveOutputDevice/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "description": "Provides removable drive hotplugging and writing support.", "version": "1.0.1", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/SentryLogger/plugin.json b/plugins/SentryLogger/plugin.json index e765e45e0f..2a55de2963 100644 --- a/plugins/SentryLogger/plugin.json +++ b/plugins/SentryLogger/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Logs certain events so that they can be used by the crash reporter", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/SimulationView/SimulationViewMenuComponent.qml b/plugins/SimulationView/SimulationViewMenuComponent.qml index a811fea5db..d434d883eb 100644 --- a/plugins/SimulationView/SimulationViewMenuComponent.qml +++ b/plugins/SimulationView/SimulationViewMenuComponent.qml @@ -286,9 +286,7 @@ Cura.ExpandableComponent UM.Label { text: label - font: UM.Theme.getFont("default") elide: Text.ElideRight - renderType: Text.NativeRendering color: UM.Theme.getColor("setting_control_text") anchors.verticalCenter: parent.verticalCenter anchors.left: legendModelCheckBox.left diff --git a/plugins/SimulationView/plugin.json b/plugins/SimulationView/plugin.json index 39c528f89d..7e7561e5c0 100644 --- a/plugins/SimulationView/plugin.json +++ b/plugins/SimulationView/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Provides the preview of sliced layerdata.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/SliceInfoPlugin/MoreInfoWindow.qml b/plugins/SliceInfoPlugin/MoreInfoWindow.qml index 2f60089343..310fa29c17 100644 --- a/plugins/SliceInfoPlugin/MoreInfoWindow.qml +++ b/plugins/SliceInfoPlugin/MoreInfoWindow.qml @@ -61,7 +61,7 @@ Window right: parent.right } - Label + UM.Label { id: headerText anchors @@ -71,9 +71,7 @@ Window 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:") - color: UM.Theme.getColor("text") wrapMode: Text.WordWrap - renderType: Text.NativeRendering } Cura.ScrollableTextArea diff --git a/plugins/SliceInfoPlugin/SliceInfo.py b/plugins/SliceInfoPlugin/SliceInfo.py index 0bf76f8423..0c9a2e35f4 100755 --- a/plugins/SliceInfoPlugin/SliceInfo.py +++ b/plugins/SliceInfoPlugin/SliceInfo.py @@ -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: diff --git a/plugins/SliceInfoPlugin/example_data.html b/plugins/SliceInfoPlugin/example_data.html index 85a9f554ff..75cc48b55c 100644 --- a/plugins/SliceInfoPlugin/example_data.html +++ b/plugins/SliceInfoPlugin/example_data.html @@ -9,6 +9,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
    • diff --git a/plugins/SliceInfoPlugin/plugin.json b/plugins/SliceInfoPlugin/plugin.json index eba604c47f..cc3429d6a1 100644 --- a/plugins/SliceInfoPlugin/plugin.json +++ b/plugins/SliceInfoPlugin/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Submits anonymous slice info. Can be disabled through preferences.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/SolidView/plugin.json b/plugins/SolidView/plugin.json index fa4180ff61..48ac75377f 100644 --- a/plugins/SolidView/plugin.json +++ b/plugins/SolidView/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Provides a normal solid mesh view.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } \ No newline at end of file diff --git a/plugins/SupportEraser/plugin.json b/plugins/SupportEraser/plugin.json index f6259ad70e..dc05ebc908 100644 --- a/plugins/SupportEraser/plugin.json +++ b/plugins/SupportEraser/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Creates an eraser mesh to block the printing of support in certain places", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/TrimeshReader/plugin.json b/plugins/TrimeshReader/plugin.json index 7bf60eefc6..67d5a1c3e7 100644 --- a/plugins/TrimeshReader/plugin.json +++ b/plugins/TrimeshReader/plugin.json @@ -3,5 +3,5 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Provides support for reading model files.", - "api": 7 + "api": 8 } diff --git a/plugins/UFPReader/plugin.json b/plugins/UFPReader/plugin.json index cac7e86236..70b057f06f 100644 --- a/plugins/UFPReader/plugin.json +++ b/plugins/UFPReader/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Provides support for reading Ultimaker Format Packages.", - "supported_sdk_versions": ["7.9.0"], + "api": 8, "i18n-catalog": "cura" } \ No newline at end of file diff --git a/plugins/UFPWriter/plugin.json b/plugins/UFPWriter/plugin.json index 6d27d250cf..0f2d3bc847 100644 --- a/plugins/UFPWriter/plugin.json +++ b/plugins/UFPWriter/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Provides support for writing Ultimaker Format Packages.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } \ No newline at end of file diff --git a/plugins/UM3NetworkPrinting/plugin.json b/plugins/UM3NetworkPrinting/plugin.json index 8a7a0e5b43..46f0b8bace 100644 --- a/plugins/UM3NetworkPrinting/plugin.json +++ b/plugins/UM3NetworkPrinting/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "description": "Manages network connections to Ultimaker networked printers.", "version": "2.0.0", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml b/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml index 7d34a182b3..877c85bb24 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml @@ -295,7 +295,6 @@ Cura.MachineAction UM.Label { text: catalog.i18nc("@label", "Enter the IP address of your printer on the network.") - renderType: Text.NativeRendering } Cura.TextField diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml index 03e9477d08..33fdb0eb38 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 in ("queued", "error") && !isAssigned(printJob)) { + 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 } } } diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorExtruderConfiguration.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorExtruderConfiguration.qml index 2720e6896a..1b2be71e55 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorExtruderConfiguration.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorExtruderConfiguration.qml @@ -3,7 +3,7 @@ import QtQuick 2.2 import QtQuick.Controls 2.0 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.6 as Cura @@ -57,32 +57,25 @@ Item width: Math.max(materialLabel.contentWidth, 60 * screenScaleFactor) // TODO: Theme! radius: 2 * screenScaleFactor // TODO: Theme! - Label + UM.Label { id: materialLabel anchors.top: parent.top - color: UM.Theme.getColor("text") elide: Text.ElideRight - font: UM.Theme.getFont("default") // 12pt, regular text: "" visible: text !== "" - - renderType: Text.NativeRendering } - Label + UM.Label { id: printCoreLabel anchors.top: materialLabel.bottom - color: UM.Theme.getColor("text") elide: Text.ElideRight font: UM.Theme.getFont("default_bold") // 12pt, bold text: "" visible: text !== "" - - renderType: Text.NativeRendering } } } diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorIconExtruder.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorIconExtruder.qml index 4b1a7df607..0467e2b753 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorIconExtruder.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorIconExtruder.qml @@ -22,7 +22,7 @@ Item property int size: 32 * screenScaleFactor // TODO: Theme! // THe extruder icon source; NOTE: This shouldn't need to be changed - property string iconSource: "../svg/icons/Extruder.svg" + property string iconSource: Qt.resolvedUrl("../svg/icons/Extruder.svg") height: size width: size diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorInfoBlurb.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorInfoBlurb.qml index 5c32c2435a..1ec7eba036 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorInfoBlurb.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorInfoBlurb.qml @@ -3,7 +3,7 @@ import QtQuick 2.3 import QtQuick.Controls 2.0 -import UM 1.3 as UM +import UM 1.5 as UM /** * A MonitorInfoBlurb is an extension of the GenericPopUp used to show static information (vs. interactive context @@ -31,7 +31,7 @@ Item id: contentWrapper implicitWidth: childrenRect.width implicitHeight: innerLabel.contentHeight + 2 * innerLabel.padding - Label + UM.Label { id: innerLabel padding: 12 * screenScaleFactor // TODO: Theme! @@ -39,7 +39,6 @@ Item wrapMode: Text.WordWrap width: 240 * screenScaleFactor // TODO: Theme! color: UM.Theme.getColor("monitor_tooltip_text") - font: UM.Theme.getFont("default") } } } diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml index 2974e5ce6b..64aa4e7a9c 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml @@ -206,7 +206,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/MonitorPrintJobPreview.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobPreview.qml index 4b4b7a2a3a..18d3a44ef1 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobPreview.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobPreview.qml @@ -45,7 +45,7 @@ Item anchors.centerIn: printJobPreview color: UM.Theme.getColor("monitor_placeholder_image") height: printJobPreview.height - source: "../svg/ultibot.svg" + source: Qt.resolvedUrl("../svg/ultibot.svg") /* Since print jobs ALWAYS have an image url, we have to check if that image URL errors or not in order to determine if we show the placeholder (ultibot) image instead. */ visible: printJob && previewImage.status == Image.Error diff --git a/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml b/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml index 2bc20ae462..67f308a64e 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml @@ -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 @@ -252,7 +257,7 @@ Item bottom: parent.bottom bottomMargin: 20 * screenScaleFactor // TODO: Theme! } - iconSource: "../svg/icons/CameraPhoto.svg" + iconSource: Qt.resolvedUrl("../svg/icons/CameraPhoto.svg") enabled: !cloudConnection visible: printer } 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..6e8f6b4ebd 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml @@ -69,7 +69,7 @@ Component top: printers.bottom topMargin: 48 * screenScaleFactor // TODO: Theme! } - visible: OutputDevice.supportsPrintJobQueue + visible: OutputDevice.supportsPrintJobQueue && OutputDevice.canReadPrintJobs } PrinterVideoStream diff --git a/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml b/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml index 441766a8e7..d1c561ccae 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml @@ -4,7 +4,7 @@ import QtQuick 2.2 import QtQuick.Window 2.2 import QtQuick.Controls 2.15 -import UM 1.1 as UM +import UM 1.5 as UM UM.Dialog { @@ -70,7 +70,7 @@ UM.Dialog { name: "cura"; } - Label { + UM.Label { id: manualPrinterSelectionLabel; anchors { left: parent.left; @@ -79,8 +79,6 @@ UM.Dialog { } height: 20 * screenScaleFactor; text: catalog.i18nc("@label", "Printer selection"); - wrapMode: Text.Wrap; - renderType: Text.NativeRendering; } ComboBox { diff --git a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py index 8c45ce537f..6431d09b7b 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.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. from time import time @@ -96,6 +96,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]] @@ -340,6 +342,37 @@ class CloudOutputDevice(UltimakerNetworkedPrinterOutputDevice): def openPrinterControlPanel(self) -> None: QDesktopServices.openUrl(QUrl(self.clusterCloudUrl + "?utm_source=cura&utm_medium=software&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 themself. + """ + 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: """Gets the cluster response from which this device was created.""" diff --git a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py index 004c9bc656..f7f659124c 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py @@ -236,6 +236,8 @@ class CloudOutputDeviceManager: ) 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) @@ -246,21 +248,25 @@ class CloudOutputDeviceManager: # If there is no active machine, activate the first available cloud printer activate = not CuraApplication.getInstance().getMachineManager().activeMachine - self._createMachineFromDiscoveredDevice(device.getId(), activate = activate) + + if self._createMachineFromDiscoveredDevice(device.getId(), activate = activate): + new_devices_added.append(device) message.setProgress(None) max_disp_devices = 3 - if len(new_devices) > max_disp_devices: - num_hidden = len(new_devices) - max_disp_devices + 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]) - - message_text = self.i18n_catalog.i18nc("info:status", "Printers added from Digital Factory:") + "
        " + device_names + "
      " - message.setText(message_text) + 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: """ @@ -385,23 +391,25 @@ class CloudOutputDeviceManager: if device.key in output_device_manager.getOutputDeviceIds(): output_device_manager.removeOutputDevice(device.key) - def _createMachineFromDiscoveredDevice(self, key: str, activate: bool = True) -> None: + def _createMachineFromDiscoveredDevice(self, key: str, activate: bool = True) -> bool: device = self._remote_clusters[key] if not device: - return + 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. - new_machine = CuraStackBuilder.createMachine(device.name, device.printerType) + new_machine = CuraStackBuilder.createMachine(device.name, device.printerType, show_warning_message=False) if not new_machine: Logger.log("e", "Failed creating a new machine") - return + return False self._setOutputDeviceMetadata(device, new_machine) if activate: CuraApplication.getInstance().getMachineManager().setActiveMachine(new_machine.getId()) + return True + def _connectToActiveMachine(self) -> None: """Callback for when the active machine was changed by the user""" @@ -480,7 +488,7 @@ class CloudOutputDeviceManager: 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?") result = QMessageBox.question(None, question_title, question_content) - if result == QMessageBox.ButtonRole.NoRole: + if result == QMessageBox.StandardButton.No: return for machine_cloud_id in self.reported_device_ids: diff --git a/plugins/UM3NetworkPrinting/src/Network/ClusterApiClient.py b/plugins/UM3NetworkPrinting/src/Network/ClusterApiClient.py index e0b156dc08..fd8118306b 100644 --- a/plugins/UM3NetworkPrinting/src/Network/ClusterApiClient.py +++ b/plugins/UM3NetworkPrinting/src/Network/ClusterApiClient.py @@ -169,7 +169,10 @@ class ClusterApiClient: """ def parse() -> None: - self._anti_gc_callbacks.remove(parse) + try: + self._anti_gc_callbacks.remove(parse) + except ValueError: # Already removed asynchronously. + return # Then the rest of the function is also already executed. # Don't try to parse the reply if we didn't get one if reply.attribute(QNetworkRequest.Attribute.HttpStatusCodeAttribute) is None: diff --git a/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py b/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py index 2d27b7c3be..f5afb0b14e 100644 --- a/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py +++ b/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py @@ -1,4 +1,4 @@ -# 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 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/plugin.json b/plugins/USBPrinting/plugin.json index 21e5fd4160..fd4b600c95 100644 --- a/plugins/USBPrinting/plugin.json +++ b/plugins/USBPrinting/plugin.json @@ -2,7 +2,7 @@ "name": "USB printing", "author": "Ultimaker B.V.", "version": "1.0.2", - "api": 7, + "api": 8, "description": "Accepts G-Code and sends them to a printer. Plugin can also update firmware.", "i18n-catalog": "cura" } diff --git a/plugins/UltimakerMachineActions/BedLevelMachineAction.qml b/plugins/UltimakerMachineActions/BedLevelMachineAction.qml index a9f7e93d44..ccc1fb75b0 100644 --- a/plugins/UltimakerMachineActions/BedLevelMachineAction.qml +++ b/plugins/UltimakerMachineActions/BedLevelMachineAction.qml @@ -5,7 +5,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.1 as Cura @@ -23,18 +23,16 @@ Cura.MachineAction anchors.horizontalCenter: parent.horizontalCenter width: parent.width * 3 / 4 - Label + UM.Label { id: pageTitle width: parent.width text: catalog.i18nc("@title", "Build Plate Leveling") wrapMode: Text.WordWrap font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering } - Label + UM.Label { id: pageDescription anchors.top: pageTitle.bottom @@ -42,12 +40,9 @@ Cura.MachineAction width: parent.width wrapMode: Text.WordWrap text: catalog.i18nc("@label", "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.") - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering } - Label + UM.Label { id: bedlevelingText anchors.top: pageDescription.bottom @@ -55,9 +50,6 @@ Cura.MachineAction width: parent.width wrapMode: Text.WordWrap text: catalog.i18nc("@label", "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.") - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering } Row diff --git a/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml b/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml index 3d7b4a054f..8136e63a47 100644 --- a/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml +++ b/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml @@ -20,7 +20,7 @@ Cura.MachineAction anchors.topMargin: UM.Theme.getSize("default_margin").width * 5 anchors.leftMargin: UM.Theme.getSize("default_margin").width * 4 - Label + UM.Label { id: pageDescription anchors.top: parent.top @@ -29,8 +29,6 @@ Cura.MachineAction wrapMode: Text.WordWrap text: catalog.i18nc("@label","Please select any upgrades made to this Ultimaker Original") font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering } UM.CheckBox diff --git a/plugins/UltimakerMachineActions/plugin.json b/plugins/UltimakerMachineActions/plugin.json index c216c74f8f..82e4a21408 100644 --- a/plugins/UltimakerMachineActions/plugin.json +++ b/plugins/UltimakerMachineActions/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.).", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json b/plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json index 7f9b57c6e5..57c5c1c734 100644 --- a/plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Upgrades configurations from Cura 2.1 to Cura 2.2.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json b/plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json index e179fdc051..8a51bff7d5 100644 --- a/plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Upgrades configurations from Cura 2.2 to Cura 2.4.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json b/plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json index efee6fb666..e5383be218 100644 --- a/plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Upgrades configurations from Cura 2.5 to Cura 2.6.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json b/plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json index 03e19bb61e..18cbf2432e 100644 --- a/plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Upgrades configurations from Cura 2.6 to Cura 2.7.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json b/plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json index f2984809ac..65f1451118 100644 --- a/plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Upgrades configurations from Cura 2.7 to Cura 3.0.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json b/plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json index 2404b3e474..a006e731aa 100644 --- a/plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Upgrades configurations from Cura 3.0 to Cura 3.1.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json b/plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json index 6326ea2657..7703c5550b 100644 --- a/plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Upgrades configurations from Cura 3.2 to Cura 3.3.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json b/plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json index a25bd36f5a..822f36e8a6 100644 --- a/plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Upgrades configurations from Cura 3.3 to Cura 3.4.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json b/plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json index 345578ff11..9dcdbc90de 100644 --- a/plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Upgrades configurations from Cura 3.4 to Cura 3.5.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json b/plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json index 4ac9de08c5..a0dea89942 100644 --- a/plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Upgrades configurations from Cura 3.5 to Cura 4.0.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json b/plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json index 1b0ee2b162..0b18d3da1c 100644 --- a/plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Upgrades configurations from Cura 4.0 to Cura 4.1.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json b/plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json index 4ac4f264c8..e9abe62fe5 100644 --- a/plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Upgrades configurations from Cura 4.11 to Cura 4.12.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json b/plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json index df3c53b5df..a95bbd1c3e 100644 --- a/plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Upgrades configurations from Cura 4.13 to Cura 5.0.", - "api": "7.9.0", + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json b/plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json index e8b3e3c846..6b48b3277d 100644 --- a/plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Upgrades configurations from Cura 4.1 to Cura 4.2.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json b/plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json index ce0a7aee60..2183444f76 100644 --- a/plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Upgrades configurations from Cura 4.2 to Cura 4.3.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json b/plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json index bd6658ff3c..e9c29631c5 100644 --- a/plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Upgrades configurations from Cura 4.3 to Cura 4.4.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json b/plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json index a0ea2b1f1e..d571b3f7dc 100644 --- a/plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Upgrades configurations from Cura 4.4 to Cura 4.5.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json b/plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json index 8a82a74487..32ce86ab8d 100644 --- a/plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Upgrades configurations from Cura 4.5 to Cura 4.6.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json b/plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json index 39947ee226..46b159ffde 100644 --- a/plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json b/plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json index 5168912651..822be1fd2b 100644 --- a/plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Upgrades configurations from Cura 4.6.2 to Cura 4.7.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json b/plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json index 908db388b9..94135ec600 100644 --- a/plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Upgrades configurations from Cura 4.7 to Cura 4.8.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json b/plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json index 19de9f1e03..50f50b65eb 100644 --- a/plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Upgrades configurations from Cura 4.8 to Cura 4.9.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json b/plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json index 9a36c5989c..9304ae7e18 100644 --- a/plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +++ b/plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.0", "description": "Upgrades configurations from Cura 4.9 to Cura 4.10.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/X3DReader/plugin.json b/plugins/X3DReader/plugin.json index 0ceaf4327c..6e56adfe75 100644 --- a/plugins/X3DReader/plugin.json +++ b/plugins/X3DReader/plugin.json @@ -3,6 +3,6 @@ "author": "Seva Alekseyev, Ultimaker B.V.", "version": "1.0.1", "description": "Provides support for reading X3D files.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/XRayView/plugin.json b/plugins/XRayView/plugin.json index 11a2556339..80ea1f388d 100644 --- a/plugins/XRayView/plugin.json +++ b/plugins/XRayView/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Provides the X-Ray view.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/plugins/XmlMaterialProfile/XmlMaterialProfile.py b/plugins/XmlMaterialProfile/XmlMaterialProfile.py index 1b88272d49..527fa4ec13 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 @@ -343,6 +369,9 @@ class XmlMaterialProfile(InstanceContainer): return stream.getvalue().decode("utf-8") + def getFileName(self) -> str: + return (self.getMetaDataEntry("base_file") + ".xml.fdm_material").replace(" ", "+") + # Recursively resolve loading inherited files def _resolveInheritance(self, file_name): xml = self._loadFile(file_name) @@ -477,6 +506,15 @@ class XmlMaterialProfile(InstanceContainer): return version * 1000000 + setting_version + @classmethod + def getMetadataFromSerialized(cls, serialized: str, property_name: str) -> str: + data = ET.fromstring(serialized) + metadata = data.find("./um:metadata", cls.__namespaces) + property = metadata.find("./um:" + property_name, cls.__namespaces) + + # This is a necessary property != None check, xml library overrides __bool__ to return False in cases when Element is not None. + return property.text if property != None else "" + def deserialize(self, serialized, file_name = None): """Overridden from InstanceContainer""" @@ -500,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 = {} @@ -586,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) @@ -612,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: @@ -628,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) @@ -682,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) @@ -697,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 @@ -720,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) @@ -741,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) @@ -769,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) @@ -786,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]]: @@ -976,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", @@ -993,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) @@ -1133,6 +1185,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/plugin.json b/plugins/XmlMaterialProfile/plugin.json index 75a42b8edc..9609387946 100644 --- a/plugins/XmlMaterialProfile/plugin.json +++ b/plugins/XmlMaterialProfile/plugin.json @@ -3,6 +3,6 @@ "author": "Ultimaker B.V.", "version": "1.0.1", "description": "Provides capabilities to read and write XML-based material profiles.", - "api": 7, + "api": 8, "i18n-catalog": "cura" } diff --git a/requirements-dev.txt b/requirements-dev.txt new file mode 100644 index 0000000000..819943e8b7 --- /dev/null +++ b/requirements-dev.txt @@ -0,0 +1,5 @@ +pytest +pyinstaller +pyinstaller-hooks-contrib +sip==6.5.1 +jinja2 diff --git a/requirements-ultimaker.txt b/requirements-ultimaker.txt new file mode 100644 index 0000000000..ae158516f2 --- /dev/null +++ b/requirements-ultimaker.txt @@ -0,0 +1 @@ +git+https://github.com/ultimaker/libcharon@master#egg=charon diff --git a/requirements.txt b/requirements.txt index dc14e2e041..c8bb861814 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,36 +1,240 @@ -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.2.1 \ + --hash=sha256:b7bce59900b2e0a04f70246de2ccf79ee7933036b6b9183cf039b62eeae2b858 \ + --hash=sha256:8b52d42e42e6e9f934ac7528cd154ac0210a532bb33fa1edfb4a8bbfb73ff88b \ + --hash=sha256:0314d011633bc697e99f3f9897b484720e81a5f4ba0eaa5f05c5811e2e74ea53 \ + --hash=sha256:226e9e349aa16dc1132f106ca01fa99cf7cb8e59daee29304c2fea5fa33212ec +PyQt6==6.2.3 \ + --hash=sha256:a9bfcac198fe4b703706f809bb686c7cef5f60a7c802fc145c6b57929c7a6a34 \ + --hash=sha256:11c039b07962b29246de2da0912f4f663786185fd74d48daac7a270a43c8d92a \ + --hash=sha256:8a2f357b86fec8598f52f16d5f93416931017ca1986d5f68679c9565bfc21fff \ + --hash=sha256:577334c9d4518022a4cb6f9799dfbd1b996167eb31404b5a63d6c43d603e6418 +PyQt6-Qt6==6.2.4 \ + --hash=sha256:42c37475a50ec7e06e0445ac9ce39465f69a86af407ad9b28b183da178d401ee \ + --hash=sha256:b68543e5d5a4f5d24c26b517569da3cd30b0fbe75390b841e142c160399b3c0a \ + --hash=sha256:0aa93581b92e01deaf2dcaad88ed6718996a6d84de59ee88316bcba143f008c9 \ + --hash=sha256:48bc5b7400d6bca13d8c0a145f82295a6da317952ee1a3f107f1cd7d078c8140 +PyQt6-NetworkAuth==6.2.0 \ + --hash=sha256:23e730cc0d6b828bec2f92d9fac3607871e6033a8af4620e5d4e3afc13bd6c3c \ + --hash=sha256:b85ee25b01d6cb38d6141df0052b96de2df7f6e69066eaddb22ae238f56be40b \ + --hash=sha256:e637781a00dd2032d0fd2025af09274898335033763e1dc765a5a99348f60c3b \ + --hash=sha256:542e9d9a8a5bb78e1f26fa3d35ee01f45209bcf5a35b0cc367aaa85932c29750 +PyQt6-NetworkAuth-Qt6==6.2.4 \ + --hash=sha256:c7996a9d8c4ce024529ec37981fbfd525ab1a2d497af1281f81f2b6054452d2e \ + --hash=sha256:1ae9e08e03bd9d5ebdb42dfaccf484a9cc62eeea7504621fe42c005ff1745e66 \ + --hash=sha256:8ed4e5e0eaaa42a6f91aba6745eea23fb3ffcbddc6b162016936530ed28dd0ad +PyQt6-sip==13.2.1 \ + --hash=sha256:b7bce59900b2e0a04f70246de2ccf79ee7933036b6b9183cf039b62eeae2b858 \ + --hash=sha256:8b52d42e42e6e9f934ac7528cd154ac0210a532bb33fa1edfb4a8bbfb73ff88b \ + --hash=sha256:0314d011633bc697e99f3f9897b484720e81a5f4ba0eaa5f05c5811e2e74ea53 \ + --hash=sha256:226e9e349aa16dc1132f106ca01fa99cf7cb8e59daee29304c2fea5fa33212ec +certifi==2021.10.8 \ + --hash=sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872 \ + --hash=sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569 +cryptography==3.4.8; \ + --hash=sha256:a00cf305f07b26c351d8d4e1af84ad7501eca8a342dedf24a7acb0e7b7406e14 \ + --hash=sha256:3520667fda779eb788ea00080124875be18f2d8f0848ec00733c0ec3bb8219fc \ + --hash=sha256:1eb7bb0df6f6f583dd8e054689def236255161ebbcf62b226454ab9ec663746b +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:301e408a052fdcda5cdcf03021ebafc3c6ea093021bf9d1aa47c54d48bdad166 \ + --hash=sha256:a7e8f6216f180f3fd4efb73de5d1eaefb5f5a1ee5b645c67333033e39440e63a \ + --hash=sha256:fc7a7d7b0ed72589fd8b8486b9b42a564f10b8762be8bd4d9df94b807af4a089 \ + --hash=sha256:58ca1d7c8aef6e996112d0ce873ac9dfa1eaf4a1196b4ff7ff73880a09923ba7 \ + --hash=sha256:dc4b2fb01f1b4ddbe2453468ea0719f4dbb1f5caa712c8b21bb3dd1480cd30d9 \ + --hash=sha256:6a5928bc6241264dce5ed509e66f33676fc97f464e7a919edc672fb5532221ee +pyclipper==1.3.0.post2; \ + --hash=sha256:c096703dc32f2e4700a1f7054e8b58c29fe86212fa7a2c2adecb0102cb639fb2 \ + --hash=sha256:a1525051ced1ab74e8d32282299c24c68f3e31cd4b64e0b368720b5da65aad67 \ + --hash=sha256:5960aaa012cb925ef44ecabe69528809564a3c95ceac874d95c6600f207138d3 \ + --hash=sha256:d3954330c02a19f7566651a909ec4bc5733ba6c62a228ab26db4a90305748430 \ + --hash=sha256:5175ee50772a7dcc0feaab19ccf5b979b6066f4753edb330700231cf70d0c918 \ + --hash=sha256:19a6809d9cbd535d0fe922e9315babb8d70b5c7dcd43e0f89740d09c406b40f8 \ + --hash=sha256:5c5d50498e335d7f969ca5ad5886e77c40088521dcabab4feb2f93727140251e +scipy==1.8.1; \ + --hash=sha256:9e3fb1b0e896f14a85aa9a28d5f755daaeeb54c897b746df7a55ccb02b340f33 \ + --hash=sha256:4e53a55f6a4f22de01ffe1d2f016e30adedb67a699a310cdcac312806807ca81 \ + --hash=sha256:a0aa8220b89b2e3748a2836fbfa116194378910f1a6e78e4675a095bcd2c762d \ + --hash=sha256:02b567e722d62bddd4ac253dafb01ce7ed8742cf8031aea030a41414b86c1125 \ + --hash=sha256:65b77f20202599c51eb2771d11a6b899b97989159b7975e9b5259594f1d35ef4 \ + --hash=sha256:9dd4012ac599a1e7eb63c114d1eee1bcfc6dc75a29b589ff0ad0bb3d9412034f \ + --hash=sha256:70de2f11bf64ca9921fda018864c78af7147025e467ce9f4a11bc877266900a6 \ + --hash=sha256:83606129247e7610b58d0e1e93d2c5133959e9cf93555d3c27e536892f1ba1f2 \ + --hash=sha256:f3e7a8867f307e3359cc0ed2c63b61a1e33a19080f92fe377bc7d49f646f2ec1 +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:7582ad22678f0fcd81102833f60ef8d0e57288b6b5fb00323d101be910e35705 +zipp==3.5.0 \ + --hash=sha256:957cfda87797e389580cb8b9e3870841ca991e2125350677b2ca83a0e99390a3 \ + --hash=sha256:f5812b1e007e48cff63449a5e9f4e7ebea716b4111f9c4f9a645f91d579bf0c4 +cffi==1.15.0 \ + --hash=sha256:920f0d66a896c2d99f0adbb391f990a84091179542c205fa53ce5787aff87954 \ + --hash=sha256:5e069f72d497312b24fcc02073d70cb989045d1c91cbd53979366077959933e0 \ + --hash=sha256:00c878c90cb53ccfaae6b8bc18ad05d2036553e6d9d1d9dbcf323bbe83854ca3 \ + --hash=sha256:0104fb5ae2391d46a4cb082abdd5c69ea4eab79d8d44eaaf79f1b1fd806ee4c2 +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 +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 501445f9d8..df89a0e2d1 100644 --- a/resources/bundled_packages/cura.json +++ b/resources/bundled_packages/cura.json @@ -6,7 +6,7 @@ "display_name": "3MF Reader", "description": "Provides support for reading 3MF files.", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -23,7 +23,7 @@ "display_name": "3MF Writer", "description": "Provides support for writing 3MF files.", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -40,7 +40,7 @@ "display_name": "AMF Reader", "description": "Provides support for reading AMF files.", "package_version": "1.0.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "fieldOfView", @@ -57,7 +57,7 @@ "display_name": "Cura Backups", "description": "Backup and restore your configuration.", "package_version": "1.2.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -74,7 +74,7 @@ "display_name": "CuraEngine Backend", "description": "Provides the link to the CuraEngine slicing backend.", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -91,7 +91,7 @@ "display_name": "Cura Profile Reader", "description": "Provides support for importing Cura profiles.", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -108,7 +108,7 @@ "display_name": "Cura Profile Writer", "description": "Provides support for exporting Cura profiles.", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -125,7 +125,7 @@ "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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -142,7 +142,7 @@ "display_name": "Firmware Update Checker", "description": "Checks for firmware updates.", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -159,7 +159,7 @@ "display_name": "Firmware Updater", "description": "Provides a machine actions for updating firmware.", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -176,7 +176,7 @@ "display_name": "Compressed G-code Reader", "description": "Reads g-code from a compressed archive.", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -193,7 +193,7 @@ "display_name": "Compressed G-code Writer", "description": "Writes g-code to a compressed archive.", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -210,7 +210,7 @@ "display_name": "G-Code Profile Reader", "description": "Provides support for importing profiles from g-code files.", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -227,7 +227,7 @@ "display_name": "G-Code Reader", "description": "Allows loading and displaying G-code files.", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "VictorLarchenko", @@ -244,7 +244,7 @@ "display_name": "G-Code Writer", "description": "Writes g-code to a file.", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -261,7 +261,7 @@ "display_name": "Image Reader", "description": "Enables ability to generate printable geometry from 2D image files.", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -278,7 +278,7 @@ "display_name": "Legacy Cura Profile Reader", "description": "Provides support for importing profiles from legacy Cura versions.", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "fieldOfView", @@ -312,7 +312,7 @@ "display_name": "Model Checker", "description": "Checks models and print configuration for possible printing issues and give suggestions.", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -329,7 +329,7 @@ "display_name": "Monitor Stage", "description": "Provides a monitor stage in Cura.", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -346,7 +346,7 @@ "display_name": "Per-Object Settings Tool", "description": "Provides the per-model settings.", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -363,7 +363,7 @@ "display_name": "Post Processing", "description": "Extension that allows for user created scripts for post processing.", "package_version": "2.2.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -380,7 +380,7 @@ "display_name": "Prepare Stage", "description": "Provides a prepare stage in Cura.", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -397,7 +397,7 @@ "display_name": "Preview Stage", "description": "Provides a preview stage in Cura.", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -414,7 +414,7 @@ "display_name": "Removable Drive Output Device", "description": "Provides removable drive hotplugging and writing support.", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -431,7 +431,7 @@ "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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -448,7 +448,7 @@ "display_name": "Simulation View", "description": "Provides the Simulation view.", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -465,7 +465,7 @@ "display_name": "Slice Info", "description": "Submits anonymous slice info. Can be disabled through preferences.", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -482,7 +482,7 @@ "display_name": "Solid View", "description": "Provides a normal solid mesh view.", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -499,7 +499,7 @@ "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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -516,7 +516,7 @@ "display_name": "Trimesh Reader", "description": "Provides support for reading model files.", "package_version": "1.0.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -533,7 +533,7 @@ "display_name": "Marketplace", "description": "Find, manage and install new Cura packages.", "package_version": "1.0.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -550,7 +550,7 @@ "display_name": "UFP Reader", "description": "Provides support for reading Ultimaker Format Packages.", "package_version": "1.0.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -567,7 +567,7 @@ "display_name": "UFP Writer", "description": "Provides support for writing Ultimaker Format Packages.", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -584,7 +584,7 @@ "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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -601,7 +601,7 @@ "display_name": "UM3 Network Printing", "description": "Manages network connections to Ultimaker 3 printers.", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -618,7 +618,7 @@ "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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -635,7 +635,7 @@ "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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -652,7 +652,7 @@ "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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -669,7 +669,7 @@ "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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -686,7 +686,7 @@ "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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -703,7 +703,7 @@ "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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -720,7 +720,7 @@ "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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -737,7 +737,7 @@ "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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -754,7 +754,7 @@ "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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -771,7 +771,7 @@ "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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -788,7 +788,7 @@ "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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -805,7 +805,7 @@ "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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -822,7 +822,7 @@ "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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -839,7 +839,7 @@ "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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -856,7 +856,7 @@ "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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -873,7 +873,7 @@ "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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -890,7 +890,7 @@ "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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -907,7 +907,7 @@ "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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -924,7 +924,7 @@ "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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -941,7 +941,7 @@ "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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -958,7 +958,7 @@ "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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -975,8 +975,7 @@ "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": 7, - "sdk_version_semver": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -1011,7 +1010,7 @@ "display_name": "X3D Reader", "description": "Provides support for reading X3D files.", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "SevaAlekseyev", @@ -1028,7 +1027,7 @@ "display_name": "XML Material Profiles", "description": "Provides capabilities to read and write XML-based material profiles.", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -1045,7 +1044,7 @@ "display_name": "X-Ray View", "description": "Provides the X-Ray view.", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com", "author": { "author_id": "UltimakerPackages", @@ -1062,7 +1061,7 @@ "display_name": "Generic ABS", "description": "The generic ABS profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1080,7 +1079,7 @@ "display_name": "Generic BAM", "description": "The generic BAM profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1098,7 +1097,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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1116,7 +1115,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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1134,7 +1133,7 @@ "display_name": "Generic CPE", "description": "The generic CPE profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1152,7 +1151,7 @@ "display_name": "Generic CPE+", "description": "The generic CPE+ profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1170,7 +1169,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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1188,7 +1187,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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1206,7 +1205,7 @@ "display_name": "Generic HIPS", "description": "The generic HIPS profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1224,7 +1223,7 @@ "display_name": "Generic Nylon", "description": "The generic Nylon profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1242,7 +1241,7 @@ "display_name": "Generic PC", "description": "The generic PC profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1260,7 +1259,7 @@ "display_name": "Generic PETG", "description": "The generic PETG profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1278,7 +1277,7 @@ "display_name": "Generic PLA", "description": "The generic PLA profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1296,7 +1295,7 @@ "display_name": "Generic PP", "description": "The generic PP profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1314,7 +1313,7 @@ "display_name": "Generic PVA", "description": "The generic PVA profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1332,7 +1331,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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1350,7 +1349,7 @@ "display_name": "Generic TPU", "description": "The generic TPU profile which other profiles can be based upon.", "package_version": "1.4.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://github.com/Ultimaker/fdm_materials", "author": { "author_id": "Generic", @@ -1368,7 +1367,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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://dagoma.fr/boutique/filaments.html", "author": { "author_id": "Dagoma", @@ -1385,7 +1384,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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=40", "author": { "author_id": "FABtotum", @@ -1402,7 +1401,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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=53", "author": { "author_id": "FABtotum", @@ -1419,7 +1418,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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=39", "author": { "author_id": "FABtotum", @@ -1436,7 +1435,7 @@ "display_name": "FABtotum TPU Shore 98A", "description": "", "package_version": "1.4.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=66", "author": { "author_id": "FABtotum", @@ -1453,7 +1452,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": "7.9.0", + "sdk_version": "8.1.0", "website": "http://fiberlogy.com/en/fiberlogy-filaments/filament-hd-pla/", "author": { "author_id": "Fiberlogy", @@ -1470,7 +1469,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": "7.9.0", + "sdk_version": "8.1.0", "website": "https://dagoma.fr", "author": { "author_id": "Dagoma", @@ -1487,7 +1486,7 @@ "display_name": "IMADE3D JellyBOX PETG", "description": "", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "http://shop.imade3d.com/filament.html", "author": { "author_id": "IMADE3D", @@ -1504,7 +1503,7 @@ "display_name": "IMADE3D JellyBOX PLA", "description": "", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "http://shop.imade3d.com/filament.html", "author": { "author_id": "IMADE3D", @@ -1521,7 +1520,7 @@ "display_name": "Octofiber PLA", "description": "PLA material from Octofiber.", "package_version": "1.0.1", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://nl.octofiber.com/3d-printing-filament/pla.html", "author": { "author_id": "Octofiber", @@ -1538,7 +1537,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": "7.9.0", + "sdk_version": "8.1.0", "website": "http://www.polymaker.com/shop/polyflex/", "author": { "author_id": "Polymaker", @@ -1555,7 +1554,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": "7.9.0", + "sdk_version": "8.1.0", "website": "http://www.polymaker.com/shop/polymax/", "author": { "author_id": "Polymaker", @@ -1572,7 +1571,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": "7.9.0", + "sdk_version": "8.1.0", "website": "http://www.polymaker.com/shop/polyplus-true-colour/", "author": { "author_id": "Polymaker", @@ -1589,7 +1588,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": "7.9.0", + "sdk_version": "8.1.0", "website": "http://www.polymaker.com/shop/polywood/", "author": { "author_id": "Polymaker", @@ -1606,7 +1605,7 @@ "display_name": "Ultimaker ABS", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com/products/materials/abs", "author": { "author_id": "UltimakerPackages", @@ -1625,7 +1624,7 @@ "display_name": "Ultimaker Breakaway", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com/products/materials/breakaway", "author": { "author_id": "UltimakerPackages", @@ -1644,7 +1643,7 @@ "display_name": "Ultimaker CPE", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com/products/materials/abs", "author": { "author_id": "UltimakerPackages", @@ -1663,7 +1662,7 @@ "display_name": "Ultimaker CPE+", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com/products/materials/cpe", "author": { "author_id": "UltimakerPackages", @@ -1682,7 +1681,7 @@ "display_name": "Ultimaker Nylon", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com/products/materials/abs", "author": { "author_id": "UltimakerPackages", @@ -1701,7 +1700,7 @@ "display_name": "Ultimaker PC", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com/products/materials/pc", "author": { "author_id": "UltimakerPackages", @@ -1720,7 +1719,7 @@ "display_name": "Ultimaker PLA", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com/products/materials/abs", "author": { "author_id": "UltimakerPackages", @@ -1739,7 +1738,7 @@ "display_name": "Ultimaker PP", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com/products/materials/pp", "author": { "author_id": "UltimakerPackages", @@ -1758,7 +1757,7 @@ "display_name": "Ultimaker PVA", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com/products/materials/abs", "author": { "author_id": "UltimakerPackages", @@ -1777,7 +1776,7 @@ "display_name": "Ultimaker TPU 95A", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com/products/materials/tpu-95a", "author": { "author_id": "UltimakerPackages", @@ -1796,7 +1795,7 @@ "display_name": "Ultimaker Tough PLA", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "1.4.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://ultimaker.com/products/materials/tough-pla", "author": { "author_id": "UltimakerPackages", @@ -1815,7 +1814,7 @@ "display_name": "Vertex Delta ABS", "description": "ABS material and quality files for the Delta Vertex K8800.", "package_version": "1.4.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://vertex3dprinter.eu", "author": { "author_id": "Velleman", @@ -1832,7 +1831,7 @@ "display_name": "Vertex Delta PET", "description": "ABS material and quality files for the Delta Vertex K8800.", "package_version": "1.4.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://vertex3dprinter.eu", "author": { "author_id": "Velleman", @@ -1849,7 +1848,7 @@ "display_name": "Vertex Delta PLA", "description": "ABS material and quality files for the Delta Vertex K8800.", "package_version": "1.4.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://vertex3dprinter.eu", "author": { "author_id": "Velleman", @@ -1866,7 +1865,7 @@ "display_name": "Vertex Delta TPU", "description": "ABS material and quality files for the Delta Vertex K8800.", "package_version": "1.4.0", - "sdk_version": "7.9.0", + "sdk_version": "8.1.0", "website": "https://vertex3dprinter.eu", "author": { "author_id": "Velleman", diff --git a/resources/definitions/Mark2_for_Ultimaker2.def.json b/resources/definitions/Mark2_for_Ultimaker2.def.json index 55f2f1611e..68498db423 100644 --- a/resources/definitions/Mark2_for_Ultimaker2.def.json +++ b/resources/definitions/Mark2_for_Ultimaker2.def.json @@ -162,10 +162,6 @@ { "default_value": true }, - "jerk_print": - { - "default_value": 12 - }, "jerk_travel": { "value": "jerk_print if magic_spiralize else 20" diff --git a/resources/definitions/SV02.def.json b/resources/definitions/SV02.def.json index 067422354e..352cd23394 100644 --- a/resources/definitions/SV02.def.json +++ b/resources/definitions/SV02.def.json @@ -44,7 +44,6 @@ "machine_max_jerk_xy": { "value": 8 }, "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 }, "infill_overlap": { "default_value": 15 }, "acceleration_print": { "value": 500 }, diff --git a/resources/definitions/alfawise_u30.def.json b/resources/definitions/alfawise_u30.def.json index 3bfc1aaa4e..b76a1773c5 100644 --- a/resources/definitions/alfawise_u30.def.json +++ b/resources/definitions/alfawise_u30.def.json @@ -40,6 +40,7 @@ "machine_max_feedrate_y": { "default_value": 200 }, "machine_max_feedrate_z": { "default_value": 5 }, "machine_max_feedrate_e": { "default_value": 100 }, + "speed_z_hop": { "value": "machine_max_feedrate_z" }, "machine_max_acceleration_x": { "default_value": 500 }, "machine_max_acceleration_y": { "default_value": 500 }, "machine_max_acceleration_z": { "default_value": 10 }, diff --git a/resources/definitions/anet3d.def.json b/resources/definitions/anet3d.def.json index 54092bcf25..59ad93416c 100644 --- a/resources/definitions/anet3d.def.json +++ b/resources/definitions/anet3d.def.json @@ -87,7 +87,6 @@ "wall_0_wipe_dist": { "value": 0.2 }, "fill_outline_gaps": { "value": false }, - "filter_out_tiny_gaps": { "value": true }, "retraction_speed": { "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", diff --git a/resources/definitions/anycubic_i3_mega_s.def.json b/resources/definitions/anycubic_i3_mega_s.def.json index bf14aed04c..2e972c78b6 100644 --- a/resources/definitions/anycubic_i3_mega_s.def.json +++ b/resources/definitions/anycubic_i3_mega_s.def.json @@ -29,7 +29,7 @@ "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_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 \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_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 }, @@ -47,10 +47,17 @@ "machine_max_jerk_e": { "value": 5 }, "material_diameter": { "default_value": 1.75 }, - "material_print_temperature_layer_0": { "value": "material_print_temperature + 5"}, + "material_print_temperature": { "maximum_value_warning": 260 }, + "material_print_temperature_layer_0": { "value": "material_print_temperature + 5", "maximum_value_warning": 260 }, "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_bed_temperature": { "maximum_value_warning": 110 }, + "material_bed_temperature_layer_0": { "maximum_value_warning": 110 }, + "material_flow": { "value": 100 }, + "top_bottom_thickness": { "value": "layer_height_0 + layer_height * math.floor(1.2 / layer_height)" }, + "wall_thickness": { "value": "line_width * 3 if line_width < 0.6 else line_width * 2" }, + "acceleration_print": { "value": 1500 }, "acceleration_enabled": { "value": false }, "acceleration_travel": { "value": 3000 }, @@ -71,8 +78,8 @@ "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_print_layer_0": { "value": "speed_layer_0" }, + "speed_travel_layer_0": { "value": "speed_travel" }, "speed_prime_tower": { "value": "speed_topbottom" }, "speed_support": { "value": "speed_wall_0" }, "speed_support_interface": { "value": "speed_topbottom" }, @@ -104,7 +111,7 @@ "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": { "value": 100 }, "cool_fan_speed_0": { "value": 30 }, "cool_fan_enabled": { "value": true }, @@ -137,8 +144,6 @@ "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" } + "minimum_interface_area": { "value": 10 } } } diff --git a/resources/definitions/anycubic_kobra.def.json b/resources/definitions/anycubic_kobra.def.json new file mode 100644 index 0000000000..cb80d0e248 --- /dev/null +++ b/resources/definitions/anycubic_kobra.def.json @@ -0,0 +1,54 @@ +{ + "version": 2, + "name": "Anycubic Kobra", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Jason Chen", + "manufacturer": "Anycubic", + "file_formats": "text/x-gcode", + "has_materials": true, + "preferred_material": "generic_pla", + "has_machine_quality": true, + "quality_definition": "anycubic_kobra", + "preferred_quality_type": "pla", + "machine_extruder_trains": + { + "0": "anycubic_kobra_extruder_0" + }, + "firmware_file": "MarlinChiron.hex" + }, + + "overrides": + { + "machine_name": + { + "default_value": "Anycubic Kobra" + }, + "machine_heated_bed": + { + "default_value": true + }, + "machine_width": + { + "default_value": 222 + }, + "machine_height": + { + "default_value": 252 + }, + "machine_depth": + { + "default_value": 222 + }, + "machine_gcode_flavor": + { + "default_value": "RepRap (Marlin/Sprinter)" + }, + "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" + } + } +} diff --git a/resources/definitions/anycubic_kobra_max.def.json b/resources/definitions/anycubic_kobra_max.def.json new file mode 100644 index 0000000000..034fc3db2b --- /dev/null +++ b/resources/definitions/anycubic_kobra_max.def.json @@ -0,0 +1,54 @@ +{ + "version": 2, + "name": "Anycubic Kobra Max", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Jason Chen", + "manufacturer": "Anycubic", + "file_formats": "text/x-gcode", + "has_materials": true, + "preferred_material": "generic_pla", + "has_machine_quality": true, + "quality_definition": "anycubic_kobra_max", + "preferred_quality_type": "pla", + "machine_extruder_trains": + { + "0": "anycubic_kobra_max_extruder_0" + }, + "firmware_file": "MarlinChiron.hex" + }, + + "overrides": + { + "machine_name": + { + "default_value": "Anycubic Kobra Max" + }, + "machine_heated_bed": + { + "default_value": true + }, + "machine_width": + { + "default_value": 402 + }, + "machine_height": + { + "default_value": 452 + }, + "machine_depth": + { + "default_value": 402 + }, + "machine_gcode_flavor": + { + "default_value": "RepRap (Marlin/Sprinter)" + }, + "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" + } + } +} diff --git a/resources/definitions/artillery_base.def.json b/resources/definitions/artillery_base.def.json index 76e2cb3fef..eabe97ba03 100644 --- a/resources/definitions/artillery_base.def.json +++ b/resources/definitions/artillery_base.def.json @@ -192,7 +192,6 @@ "wall_0_wipe_dist": { "value": 0.0 }, "fill_outline_gaps": { "value": false }, - "filter_out_tiny_gaps": { "value": false }, "retraction_speed": { "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", diff --git a/resources/definitions/biqu_base.def.json b/resources/definitions/biqu_base.def.json index 748660742d..82ee71dd7a 100755 --- a/resources/definitions/biqu_base.def.json +++ b/resources/definitions/biqu_base.def.json @@ -97,7 +97,6 @@ "wall_0_wipe_dist": { "value": 0.0 }, "fill_outline_gaps": { "value": false }, - "filter_out_tiny_gaps": { "value": false }, "retraction_speed": { "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", diff --git a/resources/definitions/biqu_bx_abl.def.json b/resources/definitions/biqu_bx_abl.def.json index 3b6b60c2e4..4877e669b6 100755 --- a/resources/definitions/biqu_bx_abl.def.json +++ b/resources/definitions/biqu_bx_abl.def.json @@ -27,7 +27,6 @@ "infill_overlap": { "value": 15.0 }, "skin_overlap": { "value": 20.0 }, "fill_outline_gaps": { "value": true }, - "filter_out_tiny_gaps": { "value": true }, "roofing_layer_count": { "value": 2 }, "xy_offset_layer_0": { "value": -0.1 }, "speed_print": { "value": 50 }, diff --git a/resources/definitions/creality_base.def.json b/resources/definitions/creality_base.def.json index 6aebd0db4e..4d2391f959 100644 --- a/resources/definitions/creality_base.def.json +++ b/resources/definitions/creality_base.def.json @@ -196,7 +196,6 @@ "wall_0_wipe_dist": { "value": 0.0 }, "fill_outline_gaps": { "value": false }, - "filter_out_tiny_gaps": { "value": false }, "retraction_speed": { "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", diff --git a/resources/definitions/creality_ender3.def.json b/resources/definitions/creality_ender3.def.json index c10c74c52f..6b13efcb1e 100644 --- a/resources/definitions/creality_ender3.def.json +++ b/resources/definitions/creality_ender3.def.json @@ -1,5 +1,5 @@ { - "name": "Creality Ender-3", + "name": "Creality Ender-3 / Ender-3 v2", "version": 2, "inherits": "creality_base", "metadata": { diff --git a/resources/definitions/creality_ender3pro.def.json b/resources/definitions/creality_ender3pro.def.json index e8d7548fcf..f8aa6d433a 100644 --- a/resources/definitions/creality_ender3pro.def.json +++ b/resources/definitions/creality_ender3pro.def.json @@ -20,7 +20,7 @@ ] }, "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" + "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 } diff --git a/resources/definitions/creality_ender3s1.def.json b/resources/definitions/creality_ender3s1.def.json new file mode 100644 index 0000000000..a9a052e973 --- /dev/null +++ b/resources/definitions/creality_ender3s1.def.json @@ -0,0 +1,38 @@ +{ + "name": "Creality Ender-3 S1", + "version": 2, + "inherits": "creality_base", + "metadata": { + "quality_definition": "creality_base", + "visible": true + }, + "overrides": { + "machine_name": { "default_value": "Creality Ender-3 S1" }, + "machine_width": { "default_value": 220 }, + "machine_depth": { "default_value": 220 }, + "machine_height": { "default_value": 270 }, + "machine_head_with_fans_polygon": { "default_value": [ + [-26, 34], + [-26, -32], + [32, -32], + [32, 34] + ] + }, + + "gantry_height": { "value": 25 }, + + "speed_print": {"value": 50}, + "speed_layer_0": {"value": 25}, + "speed_travel": { "value": 150 }, + "retraction_amount": {"value": 0.8}, + "retraction_speed": { "default_value": 40}, + + "acceleration_enabled": {"value": true}, + "acceleration_travel": {"value": 2000}, + "retraction_extrusion_window": {"value": 1.5}, + + "machine_start_gcode": { + "default_value": "; Ender 3 S1 Start G-code\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nG1 Z10.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0 Y0\n\nM104 S{material_print_temperature_layer_0}\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" + } + } +} diff --git a/resources/definitions/elegoo_neptune_2.def.json b/resources/definitions/elegoo_neptune_2.def.json new file mode 100644 index 0000000000..8e564289f5 --- /dev/null +++ b/resources/definitions/elegoo_neptune_2.def.json @@ -0,0 +1,45 @@ +{ + "name": "Neptune 2", + "version": 2, + "inherits": "fdmprinter", + "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" + } + }, + + "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}, + "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"} + } +} diff --git a/resources/definitions/elegoo_neptune_2D.def.json b/resources/definitions/elegoo_neptune_2D.def.json new file mode 100644 index 0000000000..78e87d6f40 --- /dev/null +++ b/resources/definitions/elegoo_neptune_2D.def.json @@ -0,0 +1,54 @@ +{ + "name": "Neptune 2D", + "version": 2, + "inherits": "fdmprinter", + "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_neptune2D_extruder_0", + "1": "elegoo_neptune2D_extruder_1" + } + }, + + "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}, + "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}, + "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"} + } +} diff --git a/resources/definitions/eryone_thinker.def.json b/resources/definitions/eryone_thinker.def.json index 34e333f9cc..33c96f45ca 100644 --- a/resources/definitions/eryone_thinker.def.json +++ b/resources/definitions/eryone_thinker.def.json @@ -27,21 +27,33 @@ "machine_name": { "default_value": "Eryone Thinker Series" }, - "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 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_depth": { - "default_value": 300 + "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": { "default_value": [ [-20, 30], @@ -51,16 +63,7 @@ ] }, "gantry_height": { - "value": 30 - }, - "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 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" + "value": 30 }, "layer_height": { "value": 0.2 diff --git a/resources/definitions/eryone_thinker_direct.def.json b/resources/definitions/eryone_thinker_direct.def.json new file mode 100644 index 0000000000..c27645235b --- /dev/null +++ b/resources/definitions/eryone_thinker_direct.def.json @@ -0,0 +1,18 @@ +{ + "name": "Eryone Thinker DirectDrive", + "version": 2, + "inherits": "eryone_thinker", + "overrides": { + "machine_name": { "default_value": "Eryone Thinker DirectDrive" } + }, + "metadata": { + "quality_definition": "eryone_thinker", + "speed_print": { + "maximum_value_warning": 130 + }, + "retraction_speed": { + "default_value": 35, + "maximum_value_warning": 40 + } + } +} \ No newline at end of file diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 9e12d7f7e1..0c939e03f2 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -1190,7 +1190,7 @@ "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": @@ -1243,7 +1243,7 @@ "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)", @@ -2256,7 +2256,7 @@ "maximum_value": "machine_height", "maximum_value_warning": "resolveOrValue('infill_sparse_thickness') * 10", "type": "float", - "value": "0 if infill_sparse_density > 0 else 0", + "value": "0", "limit_to_extruder": "infill_extruder_nr", "enabled": "infill_sparse_density > 0", "settable_per_mesh": true, @@ -3322,6 +3322,17 @@ "settable_per_mesh": false, "settable_per_extruder": false }, + "acceleration_travel_enabled": + { + "label": "Enable Travel Acceleration", + "description": "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination.", + "type": "bool", + "default_value": true, + "resolve": "any(extruderValues('acceleration_travel_enabled'))", + "enabled": "acceleration_enabled", + "settable_per_mesh": false, + "settable_per_extruder": false + }, "acceleration_print": { "label": "Print Acceleration", @@ -3541,7 +3552,7 @@ "minimum_value_warning": "100", "maximum_value_warning": "10000", "value": "acceleration_print if magic_spiralize else 5000", - "enabled": "resolveOrValue('acceleration_enabled')", + "enabled": "resolveOrValue('acceleration_enabled') and resolveOrValue('acceleration_travel_enabled')", "settable_per_mesh": false }, "acceleration_layer_0": @@ -3584,7 +3595,7 @@ "minimum_value": "0.1", "minimum_value_warning": "100", "maximum_value_warning": "10000", - "enabled": "resolveOrValue('acceleration_enabled')", + "enabled": "resolveOrValue('acceleration_enabled') and resolveOrValue('acceleration_travel_enabled')", "settable_per_extruder": true, "settable_per_mesh": false } @@ -3615,6 +3626,17 @@ "settable_per_mesh": false, "settable_per_extruder": false }, + "jerk_travel_enabled": + { + "label": "Enable Travel Jerk", + "description": "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination.", + "type": "bool", + "default_value": true, + "resolve": "any(extruderValues('jerk_travel_enabled'))", + "enabled": "jerk_enabled", + "settable_per_mesh": false, + "settable_per_extruder": false + }, "jerk_print": { "label": "Print Jerk", @@ -3820,7 +3842,7 @@ "minimum_value": "0", "maximum_value_warning": "50", "value": "jerk_print if magic_spiralize else 30", - "enabled": "resolveOrValue('jerk_enabled')", + "enabled": "resolveOrValue('jerk_enabled') and resolveOrValue('jerk_travel_enabled')", "settable_per_mesh": false }, "jerk_layer_0": @@ -3860,7 +3882,7 @@ "value": "jerk_layer_0 * jerk_travel / jerk_print", "minimum_value": "0", "maximum_value_warning": "50", - "enabled": "resolveOrValue('jerk_enabled')", + "enabled": "resolveOrValue('jerk_enabled') and resolveOrValue('jerk_travel_enabled')", "settable_per_extruder": true, "settable_per_mesh": false } @@ -4888,7 +4910,7 @@ "default_value": 0, "type": "int", "minimum_value": "0", - "maximum_value_warning": "1 if (support_pattern == 'cross' or support_pattern == 'lines' or support_pattern == 'zigzag' or support_pattern == 'concentric') else 5", + "maximum_value_warning": "1 if (support_pattern == 'cross' or support_pattern == 'lines' or support_pattern == 'concentric') else 5", "maximum_value": "999999 if support_line_distance == 0 else (20 - math.log(support_line_distance) / math.log(2))", "enabled": "(support_enable or support_meshes_present) and support_infill_rate > 0", "limit_to_extruder": "support_infill_extruder_nr", @@ -4917,7 +4939,7 @@ "type": "float", "default_value": 0.0, "minimum_value": "0", - "maximum_value_warning": "5", + "maximum_value_warning": "10", "enabled": "(support_enable or support_meshes_present) and support_structure == 'normal'", "limit_to_extruder": "support_infill_extruder_nr", "settable_per_mesh": true @@ -5169,7 +5191,6 @@ "type": "float", "default_value": 1.0, "minimum_value": "0", - "minimum_value_warning": "minimum_support_area", "limit_to_extruder": "support_interface_extruder_nr", "enabled": "support_interface_enable and (support_enable or support_meshes_present)", "settable_per_mesh": true, @@ -5184,7 +5205,6 @@ "default_value": 1.0, "value": "extruderValue(support_roof_extruder_nr, 'minimum_interface_area')", "minimum_value": "0", - "minimum_value_warning": "minimum_support_area", "limit_to_extruder": "support_roof_extruder_nr", "enabled": "support_roof_enable and (support_enable or support_meshes_present)", "settable_per_mesh": true @@ -5198,7 +5218,6 @@ "default_value": 1.0, "value": "extruderValue(support_bottom_extruder_nr, 'minimum_interface_area')", "minimum_value": "0", - "minimum_value_warning": "minimum_support_area", "limit_to_extruder": "support_bottom_extruder_nr", "enabled": "support_bottom_enable and (support_enable or support_meshes_present)", "settable_per_mesh": true @@ -7632,7 +7651,6 @@ "default_value": 100, "type": "float", "minimum_value": "5", - "maximum_value": "100", "minimum_value_warning": "20", "maximum_value_warning": "100", "enabled": "bridge_settings_enabled", @@ -8022,7 +8040,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 }, @@ -8032,6 +8050,7 @@ "description": "Remove inside corners from the raft, causing the raft to become convex.", "type": "bool", "default_value": false, + "resolve": "any(extruderValues('raft_remove_inside_corners'))", "enabled": "resolveOrValue('adhesion_type') == 'raft'", "settable_per_mesh": false, "settable_per_extruder": false @@ -8043,6 +8062,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 } diff --git a/resources/definitions/flyingbear_base.def.json b/resources/definitions/flyingbear_base.def.json index b0c839ea89..89da5ecf70 100644 --- a/resources/definitions/flyingbear_base.def.json +++ b/resources/definitions/flyingbear_base.def.json @@ -175,7 +175,6 @@ "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 }, - "filter_out_tiny_gaps": { "value": false }, "fill_outline_gaps": { "value": false }, "z_seam_type": { "value": "'sharpest_corner'" }, "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, diff --git a/resources/definitions/goofoo_base.def.json b/resources/definitions/goofoo_base.def.json index 67a5a4f4cc..05f34bf8fe 100644 --- a/resources/definitions/goofoo_base.def.json +++ b/resources/definitions/goofoo_base.def.json @@ -97,7 +97,6 @@ "wall_0_wipe_dist": { "value": 0.0 }, "fill_outline_gaps": { "value": false }, - "filter_out_tiny_gaps": { "value": false }, "retraction_speed": { "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", 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..188ed3e7e7 --- /dev/null +++ b/resources/definitions/hctech_hc300-m1&m1h.def.json @@ -0,0 +1,57 @@ +{ + "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": { + "machine_head_with_fans_polygon": { "default_value": [ + [-61, 86], + [-61, -31], + [21, -31], + [21, 86] + ] }, + "machine_name": { "default_value": "HCTECH HC300-M1&M1H" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_heated_bed": { "default_value": true }, + "machine_width": { "default_value": 300 }, + "machine_depth": { "default_value": 300 }, + "machine_height": { "default_value": 300 }, + "machine_center_is_zero": { "default_value": false }, + "retraction_amount": { + "default_value": 0.3, + "maximum_value_warning": 2.0 + }, + "adhesion_type": { "default_value": "skirt" }, + "retraction_speed": { "default_value": 35}, + "travel_avoid_supports": { "value": true }, + "travel_retract_before_outer_wall": { "value": true }, + "retraction_enable": { "value": true }, + + "gantry_height": { "value": "55" }, + "speed_print": { "default_value": 60.0 } , + + "material_diameter": { "default_value": 1.75 }, + + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "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_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" }, + + "cool_fan_speed": { "value": 75 }, + "cool_fan_enabled": { "value": true }, + + "line_width": { "value": 0.38 }, + "travel_avoid_distance": { "value": 1 }, + "infill_before_walls": { "value": false } + } +} diff --git a/resources/definitions/hctech_hc300-m2h.def.json b/resources/definitions/hctech_hc300-m2h.def.json new file mode 100644 index 0000000000..d08258c7c6 --- /dev/null +++ b/resources/definitions/hctech_hc300-m2h.def.json @@ -0,0 +1,58 @@ +{ + "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": { + "machine_head_with_fans_polygon": { "default_value": [ + [-61, 86], + [-61, -37], + [85, -37], + [85, 86] + ] }, + "machine_name": { "default_value": "HCTECH HC300-M2H" }, + "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": 300 }, + "machine_center_is_zero": { "default_value": false }, + "retraction_amount": { + "default_value": 0.3, + "maximum_value_warning": 2.0 + }, + "adhesion_type": { "default_value": "skirt" }, + "retraction_speed": { "default_value": 35}, + "travel_avoid_supports": { "value": true }, + "travel_retract_before_outer_wall": { "value": true }, + "retraction_enable": { "value": true }, + + "gantry_height": { "value": "55" }, + "speed_print": { "default_value": 60.0 } , + + "material_diameter": { "default_value": 1.75 }, + + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "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_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" }, + + "cool_fan_speed": { "value": 75 }, + "cool_fan_enabled": { "value": true }, + + "line_width": { "value": 0.38 }, + "travel_avoid_distance": { "value": 1 }, + "infill_before_walls": { "value": false } + } +} diff --git a/resources/definitions/hctech_hc300-m3.def.json b/resources/definitions/hctech_hc300-m3.def.json new file mode 100644 index 0000000000..cbbae35cfa --- /dev/null +++ b/resources/definitions/hctech_hc300-m3.def.json @@ -0,0 +1,58 @@ +{ + "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": { + "machine_head_with_fans_polygon": + { "default_value": [ + [-49, 36], + [-36, -29], + [36, -29], + [36, 49] + ] + }, + "machine_name": { "default_value": "HCTECH HC300-M3" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_heated_bed": { "default_value": true }, + "machine_width": { "default_value": 300 }, + "machine_depth": { "default_value": 300 }, + "machine_height": { "default_value": 300 }, + "machine_center_is_zero": { "default_value": false }, + "retraction_amount": { + "default_value": 3, + "maximum_value_warning": 8 + }, + "adhesion_type": { "default_value": "skirt" }, + "retraction_speed": { "default_value": 35}, + "travel_avoid_supports": { "value": true }, + "travel_retract_before_outer_wall": { "value": true }, + "retraction_enable": { "value": true }, + + "gantry_height": { "value": "55" }, + "speed_print": { "default_value": 60.0 } , + + "material_diameter": { "default_value": 1.75 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "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_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" }, + + "cool_fan_speed": { "value": 75 }, + "cool_fan_enabled": { "value": true }, + + "line_width": { "value": 0.38 }, + "travel_avoid_distance": { "value": 1 }, + "infill_before_walls": { "value": false } + } +} diff --git a/resources/definitions/hms434.def.json b/resources/definitions/hms434.def.json index 20acb6e3cf..80466d45bd 100644 --- a/resources/definitions/hms434.def.json +++ b/resources/definitions/hms434.def.json @@ -91,7 +91,6 @@ "wall_0_inset": {"value": "0" }, "inset_direction": {"value": "'outside_in'" }, "alternate_extra_perimeter": {"value": false }, - "filter_out_tiny_gaps": {"value": true }, "fill_outline_gaps": {"value": true }, "z_seam_type": {"value": "'shortest'"}, "z_seam_x": {"value": "300"}, diff --git a/resources/definitions/kingroon_base.def.json b/resources/definitions/kingroon_base.def.json index 83c8da9f0f..a8dd8725e2 100644 --- a/resources/definitions/kingroon_base.def.json +++ b/resources/definitions/kingroon_base.def.json @@ -207,7 +207,6 @@ "wall_0_wipe_dist": { "value": 0.0 }, "fill_outline_gaps": { "value": false }, - "filter_out_tiny_gaps": { "value": false }, "retraction_speed": { "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", diff --git a/resources/definitions/koonovo_base.def.json b/resources/definitions/koonovo_base.def.json index b0791dd251..bb984d6650 100644 --- a/resources/definitions/koonovo_base.def.json +++ b/resources/definitions/koonovo_base.def.json @@ -113,7 +113,6 @@ "minimum_interface_area": { "value": 10 }, "fill_outline_gaps": { "value": false }, - "filter_out_tiny_gaps": { "value": false }, "adhesion_type": { "value": "'skirt'" }, "brim_replaces_support": { "value": false }, diff --git a/resources/definitions/koonovo_kn3.def.json b/resources/definitions/koonovo_kn3.def.json index 0750eec47a..dc0c40837d 100644 --- a/resources/definitions/koonovo_kn3.def.json +++ b/resources/definitions/koonovo_kn3.def.json @@ -130,7 +130,6 @@ "minimum_interface_area": { "value": 10 }, "fill_outline_gaps": { "value": false }, - "filter_out_tiny_gaps": { "value": false }, "adhesion_type": { "value": "'skirt'" }, "brim_replaces_support": { "value": false }, diff --git a/resources/definitions/koonovo_kn5.def.json b/resources/definitions/koonovo_kn5.def.json index 16d34caf15..9870c85eb6 100644 --- a/resources/definitions/koonovo_kn5.def.json +++ b/resources/definitions/koonovo_kn5.def.json @@ -131,7 +131,6 @@ "minimum_interface_area": { "value": 10 }, "fill_outline_gaps": { "value": false }, - "filter_out_tiny_gaps": { "value": false }, "adhesion_type": { "value": "'skirt'" }, "brim_replaces_support": { "value": false }, diff --git a/resources/definitions/longer_base.def.json b/resources/definitions/longer_base.def.json index 09ac8c3692..2a2e6f5867 100644 --- a/resources/definitions/longer_base.def.json +++ b/resources/definitions/longer_base.def.json @@ -97,7 +97,6 @@ "wall_0_wipe_dist": { "value": 0.0 }, "fill_outline_gaps": { "value": false }, - "filter_out_tiny_gaps": { "value": false }, "retraction_amount": { "default_value": 5 }, "retraction_speed": { diff --git a/resources/definitions/maker_made_300x.def.json b/resources/definitions/maker_made_300x.def.json index efe5b18ec8..70479856e3 100644 --- a/resources/definitions/maker_made_300x.def.json +++ b/resources/definitions/maker_made_300x.def.json @@ -51,7 +51,6 @@ "optimize_wall_printing_order": {"value": false }, "inset_direction": {"value": "'inside_out'" }, "alternate_extra_perimeter": {"value": false }, - "filter_out_tiny_gaps": {"value": true }, "fill_outline_gaps": {"value": true }, "xy_offset": {"value": 0}, "skin_no_small_gaps_heuristic": {"value": true }, diff --git a/resources/definitions/makergear_m2.def.json b/resources/definitions/makergear_m2.def.json new file mode 100644 index 0000000000..50115a6787 --- /dev/null +++ b/resources/definitions/makergear_m2.def.json @@ -0,0 +1,49 @@ +{ + "name": "MakerGear M2", + "version": 2, + "inherits": "fdmprinter", + "metadata": { + "visible": true, + "author": "William Anderson", + "manufacturer": "MakerGear", + "platform": "makergear_m2_platform.3mf", + "file_formats": "text/x-gcode", + "has_materials": true, + "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 }, + "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_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" + } + } +} diff --git a/resources/definitions/mingda_base.def.json b/resources/definitions/mingda_base.def.json index 699942c813..f59a26fc1a 100644 --- a/resources/definitions/mingda_base.def.json +++ b/resources/definitions/mingda_base.def.json @@ -194,7 +194,6 @@ "wall_0_wipe_dist": { "value": 0.0 }, "fill_outline_gaps": { "value": false }, - "filter_out_tiny_gaps": { "value": false }, "retraction_speed": { "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", diff --git a/resources/definitions/mixware_hyper_s.def.json b/resources/definitions/mixware_hyper_s.def.json index 0e82f1d4a3..12e55444cf 100644 --- a/resources/definitions/mixware_hyper_s.def.json +++ b/resources/definitions/mixware_hyper_s.def.json @@ -150,9 +150,6 @@ "fill_outline_gaps": { "default_value": false }, - "filter_out_tiny_gaps": { - "default_value": false - }, "retraction_hop": { "default_value": 0.2 }, diff --git a/resources/definitions/trimaker_nebula.def.json b/resources/definitions/trimaker_nebula.def.json index 46e57f96e5..dd8e3a565c 100644 --- a/resources/definitions/trimaker_nebula.def.json +++ b/resources/definitions/trimaker_nebula.def.json @@ -188,7 +188,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 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_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}, diff --git a/resources/definitions/trimaker_nebula_plus.def.json b/resources/definitions/trimaker_nebula_plus.def.json new file mode 100644 index 0000000000..71fb729c0f --- /dev/null +++ b/resources/definitions/trimaker_nebula_plus.def.json @@ -0,0 +1,114 @@ +{ + "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} + } +} diff --git a/resources/definitions/tronxy_x.def.json b/resources/definitions/tronxy_x.def.json index 98832a636c..9665ca0f4f 100644 --- a/resources/definitions/tronxy_x.def.json +++ b/resources/definitions/tronxy_x.def.json @@ -84,7 +84,6 @@ "wall_0_wipe_dist": { "value": 0.0 }, "fill_outline_gaps": { "value": true }, - "filter_out_tiny_gaps": { "value": true }, "retraction_speed": { "maximum_value_warning": "machine_max_feedrate_e", @@ -99,8 +98,7 @@ "maximum_value_warning": "machine_max_feedrate_e", "maximum_value": 200 }, - - "retraction_hop_enabled": { "value": "True" }, + "retraction_hop": { "value": 0.2 }, "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, "retraction_combing_max_distance": { "value": 30 }, diff --git a/resources/definitions/two_trees_base.def.json b/resources/definitions/two_trees_base.def.json index 2da670cdf6..b672a2f4cd 100644 --- a/resources/definitions/two_trees_base.def.json +++ b/resources/definitions/two_trees_base.def.json @@ -64,7 +64,6 @@ "wall_0_wipe_dist": { "value": 0.0 }, "fill_outline_gaps": { "value": false }, - "filter_out_tiny_gaps": { "value": false }, "retraction_hop_enabled": { "value": "False" }, "retraction_hop": { "value": 0.2 }, diff --git a/resources/definitions/ultimaker.def.json b/resources/definitions/ultimaker.def.json index 5818c11a6f..f9f686c69b 100644 --- a/resources/definitions/ultimaker.def.json +++ b/resources/definitions/ultimaker.def.json @@ -50,23 +50,32 @@ "wall_thickness": { "value": "wall_line_width_0 + wall_line_width_x" }, - "infill_before_walls": { - "value": "False" - }, "infill_material_flow": { "value": "(1.95-infill_sparse_density / 100 if infill_sparse_density > 95 else 1) * material_flow" }, + "inset_direction": { + "value": "'outside_in'" + }, "retraction_combing": { "value": "'no_outer_surfaces'" }, + "retraction_count_max": { + "value": 25 + }, + "retraction_extrusion_window": { + "value": 1 + }, "roofing_layer_count": { - "value": "0" + "value": "1" }, "roofing_material_flow": { "value": "material_flow" }, "skin_material_flow": { - "value": "0.97 * material_flow" + "value": "0.95 * material_flow" + }, + "support_interface_material_flow": { + "value": "skin_material_flow" }, "skin_monotonic" : { "value": true @@ -89,11 +98,175 @@ "meshfix_maximum_deviation": { "value": "machine_nozzle_size / 10" }, - "jerk_travel": { - "value": "jerk_print" + "jerk_travel_enabled": { + "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": "0 if support_structure == 'tree' else 80 if gradual_support_infill_steps != 0 else 15" + }, + "support_line_distance": { + "minimum_value_warning": "0 if support_structure == 'tree' else support_line_width" + }, + "support_initial_layer_line_distance": { + "minimum_value_warning": "0 if support_structure == 'tree' else support_line_width" + }, + "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" } } } diff --git a/resources/definitions/ultimaker2.def.json b/resources/definitions/ultimaker2.def.json index c028363239..5399abc02b 100644 --- a/resources/definitions/ultimaker2.def.json +++ b/resources/definitions/ultimaker2.def.json @@ -86,6 +86,9 @@ }, "machine_acceleration": { "default_value": 3000 + }, + "support_z_distance": { + "value": "0.1" } } } diff --git a/resources/definitions/ultimaker2_plus_connect.def.json b/resources/definitions/ultimaker2_plus_connect.def.json index 1effa1616f..8ccbd7f380 100644 --- a/resources/definitions/ultimaker2_plus_connect.def.json +++ b/resources/definitions/ultimaker2_plus_connect.def.json @@ -81,7 +81,7 @@ "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" }, - "meshfix_maximum_deviation": { "value": "layer_height / 4" }, + "meshfix_maximum_deviation": { "value": "(layer_height / 3) if magic_spiralize else (layer_height / 4)" }, "meshfix_maximum_travel_resolution": { "value": 0.5 }, "prime_blob_enable": { "enabled": true, "default_value": true, "value": "resolveOrValue('print_sequence') != 'one_at_a_time'" }, "retraction_prime_speed": { "value": "15" }, diff --git a/resources/definitions/ultimaker3.def.json b/resources/definitions/ultimaker3.def.json index fd21ab5271..38428b89ca 100644 --- a/resources/definitions/ultimaker3.def.json +++ b/resources/definitions/ultimaker3.def.json @@ -101,20 +101,6 @@ "infill_wipe_dist": { "value": "0" }, "initial_layer_line_width_factor": { "value": "120" }, "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_prime_tower": { "value": "jerk_print", "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 }, "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'))" }, @@ -136,8 +122,6 @@ "raft_margin": { "value": "10" }, "raft_surface_layers": { "value": "1" }, "retraction_amount": { "value": "6.5" }, - "retraction_count_max": { "value": "10" }, - "retraction_extrusion_window": { "value": "1" }, "retraction_hop": { "value": "2" }, "retraction_hop_enabled": { "value": "extruders_enabled_count > 1" }, "retraction_hop_only_when_collides": { "value": "True" }, @@ -155,11 +139,6 @@ "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" }, "switch_extruder_prime_speed": { "value": "15" }, "switch_extruder_retraction_amount": { "value": "8" }, "top_bottom_thickness": { "value": "1" }, diff --git a/resources/definitions/ultimaker_s3.def.json b/resources/definitions/ultimaker_s3.def.json index 640a062c6d..743ab7f478 100644 --- a/resources/definitions/ultimaker_s3.def.json +++ b/resources/definitions/ultimaker_s3.def.json @@ -93,20 +93,6 @@ "infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'triangles'" }, "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_prime_tower": { "value": "jerk_print", "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 }, "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'))" }, @@ -128,8 +114,6 @@ "raft_speed": { "value": "25" }, "raft_surface_layers": { "value": "1" }, "retraction_amount": { "value": "6.5" }, - "retraction_count_max": { "value": "10" }, - "retraction_extrusion_window": { "value": "1" }, "retraction_hop": { "value": "2" }, "retraction_hop_enabled": { "value": "extruders_enabled_count > 1" }, "retraction_hop_only_when_collides": { "value": "True" }, @@ -147,11 +131,6 @@ "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" }, "switch_extruder_prime_speed": { "value": "15" }, "switch_extruder_retraction_amount": { "value": "8" }, "top_bottom_thickness": { "value": "1" }, diff --git a/resources/definitions/ultimaker_s5.def.json b/resources/definitions/ultimaker_s5.def.json index 0d5d7499cc..da0367f571 100644 --- a/resources/definitions/ultimaker_s5.def.json +++ b/resources/definitions/ultimaker_s5.def.json @@ -95,20 +95,6 @@ "infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'triangles'" }, "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_prime_tower": { "value": "jerk_print", "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 }, "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'))" }, @@ -130,8 +116,6 @@ "raft_surface_layers": { "value": "1" }, "retraction_amount": { "value": "6.5" }, "retraction_combing": { "value": "'no_outer_surfaces'"}, - "retraction_count_max": { "value": "10" }, - "retraction_extrusion_window": { "value": "1" }, "retraction_hop": { "value": "2" }, "retraction_hop_enabled": { "value": "extruders_enabled_count > 1" }, "retraction_hop_only_when_collides": { "value": "True" }, @@ -149,11 +133,6 @@ "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" }, "switch_extruder_prime_speed": { "value": "15" }, "switch_extruder_retraction_amount": { "value": "8" }, "top_bottom_thickness": { "value": "1" }, diff --git a/resources/definitions/uni_base.def.json b/resources/definitions/uni_base.def.json index 06ba86de2d..82b05f3366 100644 --- a/resources/definitions/uni_base.def.json +++ b/resources/definitions/uni_base.def.json @@ -138,7 +138,6 @@ "machine_height": {"default_value": 250}, "machine_extruder_count": {"value": 2}, "machine_buildplate_type": {"value": "glass"}, - "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": {"default_value": [ diff --git a/resources/definitions/voron2_base.def.json b/resources/definitions/voron2_base.def.json index ec069b24fb..850a75ef28 100644 --- a/resources/definitions/voron2_base.def.json +++ b/resources/definitions/voron2_base.def.json @@ -98,8 +98,9 @@ "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": 80, "maximum_value_warning": 130 }, + "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 }, @@ -107,7 +108,7 @@ "retraction_combing": { "value": "'noskin'" }, "retraction_combing_max_distance": { "default_value": 10 }, "travel_avoid_other_parts": { "default_value": false }, - "speed_travel": { "maximum_value": 300, "value": 300, "maximum_value_warning": 501 }, + "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)" }, @@ -151,4 +152,4 @@ "jerk_wall_0": { "value": 10 }, "jerk_roofing": { "value": 10 } } -} \ No newline at end of file +} diff --git a/resources/definitions/weedo_x40.def.json b/resources/definitions/weedo_x40.def.json index 6dc45612b1..9fb5cad2d8 100644 --- a/resources/definitions/weedo_x40.def.json +++ b/resources/definitions/weedo_x40.def.json @@ -211,7 +211,6 @@ "cool_fan_speed_max": { "value": "100" }, "cool_min_speed": { "value": "7" }, "fill_outline_gaps": { "value": false }, - "filter_out_tiny_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'" }, 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..f00ab8b0c2 --- /dev/null +++ b/resources/definitions/xyzprinting_da_vinci_pro_evo.def.json @@ -0,0 +1,86 @@ +{ + "version": 2, + "name": "XYZprinting da Vinci Pro EVO", + "inherits": "xyzprinting_base", + "metadata": { + "author": "XYZprinting Software", + "manufacturer": "XYZprinting", + "visible": true, + "file_formats": "text/x-gcode", + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "supports_usb_connection": true, + "preferred_quality_type": "normal", + "quality_definition": "xyzprinting_da_vinci_pro_evo", + "preferred_variant_name": "Hardened Steel 0.4mm Nozzle", + "variants_name": "Nozzle Type", + "machine_extruder_trains": { + "0": "xyzprinting_da_vinci_pro_evo_extruder_0" + } + }, + + "overrides": { + "machine_name": { "default_value": "XYZprinting da Vinci Pro EVO" }, + "machine_shape": { "default_value": "rectangular"}, + "machine_heated_bed": { "default_value": true }, + "machine_width": { "default_value": 220.00 }, + "machine_depth": { "default_value": 200.00 }, + "machine_height": { "default_value":200.00 }, + "machine_center_is_zero": { "default_value": false }, + "machine_head_with_fans_polygon": { + "default_value": [ + [ -20, -10 ], + [ -20, 10 ], + [ 10, 10 ], + [ 10, -10 ] + ] + }, + "retraction_extrusion_window": { "value": "1" }, + "retraction_count_max": { "value": "25" }, + "speed_layer_0" : {"value" : 10 }, + "speed_wall_x" : { "value": "speed_print" }, + "speed_wall_0": { "value": "math.ceil(speed_wall * 20 / 30)" }, + "skin_overlap": { "value": "15" }, + "skin_monotonic" : { "value": true }, + "skin_material_flow": { "value": "97" }, + "brim_width": { "value": "10" }, + "line_width" : { "value": "0.35" }, + "wall_line_width_x" : { "value": "0.35" }, + "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" }, + "infill_wipe_dist": { "value": "0" }, + "wall_thickness" : { "value": "1" }, + "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_travel": { "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_wall": { "value": "math.ceil(acceleration_print * 1000 / 3000)" }, + "acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 500 / 1000)" }, + "jerk_enabled" : {"value" : true}, + "material_flow_layer_0": {"value": 120}, + "cool_fan_enabled": { "default_value": true }, + "cool_fan_speed_0": { "value": 100 }, + "cool_min_speed" : {"value" : 5 }, + "brim_line_count": { "value" : 5 }, + "infill_before_walls": { "value": false }, + "optimize_wall_printing_order": { "value": "True" }, + "skirt_line_count": { "default_value" : 5 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_start_gcode": { + "default_value": "M191\nG28 ; home all axes\nG1 Z15 F5000 ; lift nozzle\nG92 E0\nG1 F200 E3\n" + }, + "machine_end_gcode": { + "default_value": "M106 P1 S255 ; turn on fan\nG92 E0\nG28; home X,Y,Z axis\nM84 ; disable motors\n" + }, + "multiple_mesh_overlap": { "value": "0" }, + "wall_0_inset": { "value": "0" } + } +} diff --git a/resources/definitions/zav_base.def.json b/resources/definitions/zav_base.def.json index 1ef9398987..9f73419d46 100644 --- a/resources/definitions/zav_base.def.json +++ b/resources/definitions/zav_base.def.json @@ -147,7 +147,6 @@ "machine_height": {"default_value": 270}, "machine_extruder_count": {"value": 1}, "machine_buildplate_type": {"value": "glass"}, - "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": {"default_value": [ diff --git a/resources/extruders/anycubic_kobra_extruder_0.def.json b/resources/extruders/anycubic_kobra_extruder_0.def.json new file mode 100644 index 0000000000..c9053ffa2e --- /dev/null +++ b/resources/extruders/anycubic_kobra_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "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 } + } +} 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..69cdddf370 --- /dev/null +++ b/resources/extruders/anycubic_kobra_max_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "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 } + } +} diff --git a/resources/extruders/elegoo_neptune2D_extruder_0.def.json b/resources/extruders/elegoo_neptune2D_extruder_0.def.json new file mode 100644 index 0000000000..ad8dee15e8 --- /dev/null +++ b/resources/extruders/elegoo_neptune2D_extruder_0.def.json @@ -0,0 +1,17 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "elegoo_neptune_2D", + "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": "G1 F1200 E80\nG92 E0"}, + "machine_extruder_end_code": {"default_value": "G1 F1600 E-80\nG92 E0"} + } +} \ 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 new file mode 100644 index 0000000000..f4ec5194c4 --- /dev/null +++ b/resources/extruders/elegoo_neptune2D_extruder_1.def.json @@ -0,0 +1,17 @@ +{ + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": { + "machine": "elegoo_neptune_2D", + "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": "G1 F1200 E80\nG92 E0"}, + "machine_extruder_end_code": {"default_value": "G1 F1600 E-80\nG92 E0"} + } +} \ 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 new file mode 100644 index 0000000000..c182885b1f --- /dev/null +++ b/resources/extruders/elegoo_neptune2_extruder_0.def.json @@ -0,0 +1,17 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "elegoo_neptune_2", + "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": ""}, + "machine_extruder_end_code": {"default_value": ""} + } +} 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..c950db18ec --- /dev/null +++ b/resources/extruders/hctech_hc300-m1&m1h_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "hctech_hc300-m1&m1h", + "position": "0" + }, + + "overrides": { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 }, + "machine_nozzle_size": { "default_value": 0.4 } + } +} 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..1a718401cb --- /dev/null +++ b/resources/extruders/hctech_hc300-m2h_extruder_0.def.json @@ -0,0 +1,27 @@ +{ + "version": 2, + "name": "Left Extruder", + "inherits": "fdmextruder", + "metadata": { + "machine": "hctech_hc300-m2h", + "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": "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_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_cooling_fan_number": { "default_value": 0 } + } +} 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..616f2c2d27 --- /dev/null +++ b/resources/extruders/hctech_hc300-m2h_extruder_1.def.json @@ -0,0 +1,27 @@ +{ + "version": 2, + "name": "Right Extruder", + "inherits": "fdmextruder", + "metadata": { + "machine": "hctech_hc300-m2h", + "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": "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_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_cooling_fan_number": { "default_value": 0 } + } +} 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..b7923672a5 --- /dev/null +++ b/resources/extruders/hctech_hc300-m3_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "hctech_hc300-m3", + "position": "0" + }, + + "overrides": { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 }, + "machine_nozzle_size": { "default_value": 0.4 } + } +} diff --git a/resources/extruders/makergear_m2_v3b.def.json b/resources/extruders/makergear_m2_v3b.def.json new file mode 100644 index 0000000000..c9ccebdb27 --- /dev/null +++ b/resources/extruders/makergear_m2_v3b.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "MakerGear M2 V3B", + "inherits": "fdmextruder", + "metadata": { + "machine": "makergear_m2", + "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_pro_evo_extruder_0.def.json b/resources/extruders/xyzprinting_da_vinci_pro_evo_extruder_0.def.json new file mode 100644 index 0000000000..268a911af2 --- /dev/null +++ b/resources/extruders/xyzprinting_da_vinci_pro_evo_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "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 } + } +} diff --git a/resources/i18n/cs_CZ/cura.po b/resources/i18n/cs_CZ/cura.po index d96d13234a..eae87bcdaf 100644 --- a/resources/i18n/cs_CZ/cura.po +++ b/resources/i18n/cs_CZ/cura.po @@ -1,14 +1,14 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. -# Ultimaker , 2020. +# Ultimaker , 2022. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0100\n" -"PO-Revision-Date: 2021-12-17 21:07+0100\n" +"POT-Creation-Date: 2022-06-21 12:50+0200\n" +"PO-Revision-Date: 2022-07-07 19:34+0200\n" "Last-Translator: Miroslav Šustek \n" "Language-Team: DenyCZ \n" "Language: cs_CZ\n" @@ -16,451 +16,198 @@ 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\n" +"X-Generator: Poedit 3.1\n" -#: /home/clamboo/Desktop/Cura/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/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "Neznámý" -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 -msgctxt "@info:title" -msgid "Backup" -msgstr "Záloha" +#: /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/clamboo/Desktop/Cura/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/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Dostupné síťové tiskárny" -#: /home/clamboo/Desktop/Cura/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/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Nepřepsáno" -#: /home/clamboo/Desktop/Cura/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/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/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 -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/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/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 -msgctxt "@action:button" -msgid "New materials installed" -msgstr "Byly nainstalovány nové materiály" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 -msgctxt "@action:button" -msgid "Sync materials with printers" -msgstr "Synchronizovat materiály s tiskárnami" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 -msgctxt "@action:button" -msgid "Learn more" -msgstr "Zjistit více" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 -msgctxt "@text" -msgid "Unknown error." -msgstr "Neznámá chyba." - -#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 -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/clamboo/Desktop/Cura/cura/BuildVolume.py:102 -msgctxt "@info:title" -msgid "Build Volume" -msgstr "Podložka" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Nepřepsáno" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "Neznámý" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Dostupné síťové tiskárny" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Všechny soubory (*)" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Vizuální" +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Vypočítáno" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Technika" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Návrh" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 -msgctxt "@label" -msgid "Custom Material" -msgstr "Vlastní materiál" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 -msgctxt "@label" -msgid "Custom" -msgstr "Vlastní" - -#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 +#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "Přihlášení selhalo" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Hledám nové umístění pro objekt" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 msgctxt "@info:title" msgid "Finding Location" msgstr "Hledám umístění" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Nemohu najít umístění" -#: /home/clamboo/Desktop/Cura/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/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/CuraApplication.py:530 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "Načítám zařízení..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "Nastavuji preference..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "Inicializuji aktivní zařízení..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "Inicializuji správce zařízení..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "Inicializuji prostor podložky..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "Připravuji scénu..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "Načítám rozhraní..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "Inicializuji engine..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 +#: /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 msgctxt "@info:title" -msgid "Warning" -msgstr "Varování" +msgid "Backup" +msgstr "Záloha" -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 -#, python-brace-format +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 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}" +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/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 msgctxt "@info:title" -msgid "Error" -msgstr "Chyba" +msgid "Build Volume" +msgstr "Podložka" -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 -msgctxt "@action:button" -msgid "Skip" -msgstr "Přeskočit" - -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "Zavřít" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 -msgctxt "@action:button" -msgid "Next" -msgstr "Další" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 -msgctxt "@action:button" -msgid "Finish" -msgstr "Dokončit" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "Přidat" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Zrušit" - -#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 -#, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "Skupina #{group_nr}" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Vnější stěna" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "Vnitřní stěna" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Skin" -msgstr "Skin" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Infill" -msgstr "Výplň" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Výplň podpor" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Rozhraní podpor" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Support" -msgstr "Podpora" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Límec" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "Hlavní věž" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 -msgctxt "@tooltip" -msgid "Travel" -msgstr "Pohyb" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Retrakce" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 -msgctxt "@tooltip" -msgid "Other" -msgstr "Jiné" - -#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 -#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 -msgctxt "@text:window" -msgid "The release notes could not be opened." -msgstr "Poznámky k vydání nelze otevřít." - -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura nelze spustit" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

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

      \n" @@ -475,32 +222,32 @@ msgstr "" "                    

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

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

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

      \n" " " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Systémové informace" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Neznámý" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Verze Cura" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Jazyk Cura" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "Jazyk operačního systému" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Platforma" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Verze Qt" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "Verze PyQt" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 msgctxt "@label" -msgid "Not yet initialized
      " -msgstr "Neinicializováno
      " +msgid "Not yet initialized" +msgstr "Neinicializováno" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
    • OpenGL Version: {version}
    • " msgstr "
    • Verze OpenGL: {version}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
    • OpenGL Vendor: {vendor}
    • " msgstr "
    • OpenGL Vendor: {vendor}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
    • OpenGL Renderer: {renderer}
    • " msgstr "
    • OpenGL Renderer: {renderer}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Stopování chyby" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "Protokoly" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "Odeslat záznam" -#: /home/clamboo/Desktop/Cura/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/CuraApplication.py:531 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "Načítám zařízení..." -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 -msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." -msgstr "Nelze se dostat na server účtu Ultimaker." +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "Nastavuji preference..." -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "Inicializuji aktivní zařízení..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "Inicializuji správce zařízení..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "Inicializuji prostor podložky..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "Připravuji scénu..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "Načítám rozhraní..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "Inicializuji engine..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#, 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 +#, 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 msgctxt "@info:title" -msgid "Log-in failed" -msgstr "Přihlášení selhalo" +msgid "Warning" +msgstr "Varování" -#: /home/clamboo/Desktop/Cura/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/CuraApplication.py:1810 +#, 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/clamboo/Desktop/Cura/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/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 +msgctxt "@info:title" +msgid "Error" +msgstr "Chyba" -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 -msgctxt "@message" -msgid "Could not read response." -msgstr "Nelze přečíst odpověď." - -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "Násobím a rozmisťuji objekty" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "Umisťuji objekty" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Umisťuji objekt" -#: /home/clamboo/Desktop/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/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "Nelze přečíst odpověď." -#: /home/clamboo/Desktop/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/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "Poskytnutý stav není správný." -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 -msgctxt "@label" -msgid "Nozzle" -msgstr "Tryska" +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 -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/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/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info" +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 msgctxt "@info:title" -msgid "Settings updated" -msgstr "Nastavení aktualizováno" +msgid "Log-in failed" +msgstr "Přihlášení selhalo" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "Extruder(y) zakázány" +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 msgctxt "@title:window" msgid "File Already Exists" msgstr "Soubor již existuje" -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "Špatná cesta k souboru:" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Export úspěšný" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Úspěšně importován profil {0}." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Vlastní profil" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "V profilu chybí typ kvality." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "Zatím neexistuje aktivní tiskárna." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Nepovedlo se přidat profil." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: /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 msgctxt "@label" -msgid "Per Model Settings" -msgstr "Nastavení pro každý model" +msgid "Nozzle" +msgstr "Tryska" -#: /home/clamboo/Desktop/Cura/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/cura/Settings/MachineManager.py:857 +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/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Cura profil" - -#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "Soubor X3D" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 msgctxt "@info:title" -msgid "Backups" -msgstr "Zálohy" +msgid "Settings updated" +msgstr "Nastavení aktualizováno" -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Vytvářím zálohu..." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Nahrávám vaši zálohu..." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Spravovat zálohy" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Nastavení zařízení" - -#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "Blokovač podpor" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Vyměnitelná jednotka" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 msgctxt "@info:title" -msgid "Saving" -msgstr "Ukládám" +msgid "Extruder(s) Disabled" +msgstr "Extruder(y) zakázány" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 -msgctxt "@info:title" -msgid "File Saved" -msgstr "Soubor uložen" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" -msgid "Eject" -msgstr "Vysunout" +msgid "Add" +msgstr "Přidat" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Zrušit" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 #, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "Vysunout vyměnitelnou jednotku {0}" +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "Skupina #{group_nr}" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 -#, 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/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Vnější stěna" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "Vnitřní stěna" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "Skin" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "Výplň" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Výplň podpor" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Rozhraní podpor" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "Podpora" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Límec" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "Hlavní věž" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "Pohyb" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Retrakce" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Close" +msgstr "Zavřít" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "Byly nainstalovány nové materiály" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Learn more" +msgstr "Zjistit více" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@text" +msgid "Unknown error." +msgstr "Neznámá chyba." + +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Bezpečně vysunout hardware" +msgid "3D Model Assistant" +msgstr "Asistent 3D modelu" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 #, 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." +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 "" +"

      Jeden nebo více 3D modelů se nemusí tisknout optimálně kvůli velikosti modelu a konfiguraci materiálu:

      \n" +"

      {model_names}

      \n" +"

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

      \n" +"

      Zobrazit průvodce kvalitou tisku

      " -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Aktualizovat firmware" - -#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Profily Cura 15.04" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Doporučeno" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Vlastní" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 +#: /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." -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 msgctxt "@info:title" msgid "Open Project File" msgstr "Otevřít soubor s projektem" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 +#: /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 "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." + +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:392 +msgctxt "@info:title" +msgid "Material profiles not installed" +msgstr "Materiálové profily nejsou nainstalovány" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:405 +msgctxt "@action:button" +msgid "Install Materials" +msgstr "Instalovat materiály" + +#: /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/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "Nemohu zapsat do UFP souboru:" +#: /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/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 -#: /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Balíček ve formátu Ultimaker" +#: /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/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "Soubor G-kódu" +#: /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/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "Náhled" +#: /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/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Rentgenový pohled" +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Zpracovávám vrstvy" +#: /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 "Nepodařilo se uložit informace o balíčku materiálů v souboru projektu: {material}. Tento projekt se nemusí otevřít správně na jiných systémech." -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:283 msgctxt "@info:title" -msgid "Information" -msgstr "Informace" +msgid "Failed to save material package information" +msgstr "Nepodařilo se uložit informace o balíčku materiálů" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 msgctxt "@message:title" msgid "Slicing failed" msgstr "Slicování selhalo" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 msgctxt "@message:button" msgid "Report a bug" msgstr "Nahlásit chybu" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 msgctxt "@info:status" msgid "" "Please review settings and check if your models:\n" @@ -1158,423 +1073,503 @@ msgstr "" "- Jsou přiřazeny k povolenému extruderu\n" "- Nejsou nastavené jako modifikační sítě" -#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "Soubor AMF" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "Kompresovaný soubor G kódu" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "Post Processing" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "Modifikovat G kód" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "USB tisk" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Tisk přes USB" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Tisk přes USB" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Připojeno přes USB" +msgid "Processing Layers" +msgstr "Zpracovávám vrstvy" -#: /home/clamboo/Desktop/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 "Probíhá tisk přes USB, uzavření Cura tento tisk zastaví. Jsi si jistá?" - -#: /home/clamboo/Desktop/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 "Tisk stále probíhá. Cura nemůže spustit další tisk přes USB, dokud není předchozí tisk dokončen." - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 -msgctxt "@message" -msgid "Print in Progress" -msgstr "Probíhá tisk" - -#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "Příprava" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "Zpracovávám G kód" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 msgctxt "@info:title" -msgid "G-code Details" -msgstr "Podrobnosti G kódu" +msgid "Information" +msgstr "Informace" -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 -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/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 msgctxt "@item:inlistbox" -msgid "G File" -msgstr "G soubor" +msgid "Cura Profile" +msgstr "Cura profil" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "Obrázek JPG" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "Obrázek JPEG" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "Obrázek PNG" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "Obrázek BMP" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "Obrázek GIF" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "Vyrovnat podložku" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "Vybrat vylepšení" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "GCodeGzWriter nepodporuje textový mód." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 msgctxt "@info" msgid "Could not access update information." msgstr "Nemohu načíst informace o aktualizaci." -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#: /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}." -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#: /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" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 msgctxt "@action:button" msgid "How to update" msgstr "Jak aktualizovat" -#: /home/clamboo/Desktop/Cura/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/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Aktualizovat firmware" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 -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/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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Synchronizuji..." +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +#: /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 "Changes detected from your Ultimaker account" -msgstr "Zjištěny změny z vašeho účtu Ultimaker" +msgid "G-code Details" +msgstr "Podrobnosti G kódu" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "Chcete synchronizovat materiál a softwarové balíčky s vaším účtem?" +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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 -msgctxt "@action:button" -msgid "Sync" -msgstr "Synchronizovat" +#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "G soubor" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Odmítnout a odstranit z účtu" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "Nepovedlo se stáhnout {} zásuvných modulů" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "Odmítnout" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "Přijmout" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Licenční ujednání zásuvného modulu" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +#: /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/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +#: /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 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "Monitorování" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@item:inmenu" +msgid "Post Processing" +msgstr "Post Processing" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@item:inmenu" +msgid "Prepare" +msgstr "Příprava" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 +msgctxt "@item:inmenu" +msgid "Preview" +msgstr "Náhled" + +#: /home/trin/Gedeeld/Projects/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 +#, 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 +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 +#, 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 +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 +#, 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 +#, 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 +#, 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 +#, 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 +msgctxt "@info:title" +msgid "File Saved" +msgstr "Soubor uložen" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +msgctxt "@action:button" +msgid "Eject" +msgstr "Vysunout" + +#: /home/trin/Gedeeld/Projects/Cura/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 +#, 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 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "Bezpečně vysunout hardware" + +#: /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 "Nepodařilo se vysunout {0}. Jednotku může používat jiný program." + +#: /home/trin/Gedeeld/Projects/Cura/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." -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 msgctxt "@info:title" msgid "Simulation View" msgstr "Pohled simulace" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:133 msgctxt "@info:status" msgid "Nothing is shown because you need to slice first." msgstr "Nic není zobrazeno, nejdříve musíte slicovat." -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 msgctxt "@info:title" msgid "No layers to show" msgstr "Žádné vrstvy k zobrazení" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +#: /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 "Znovu nezobrazovat tuto zprávu" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Pohled vrstev" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "Tisk přes síť" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "Nelze načíst ukázkový datový soubor." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Tisk přes síť" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Připojeno přes síť" +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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "zítra" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 +msgctxt "@info:title" +msgid "Model Errors" +msgstr "Chyby modelu" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "dnes" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Solid view" +msgstr "Pevný pohled" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 +msgctxt "@label" +msgid "Support Blocker" +msgstr "Blokovač podpor" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 "gITF binární soubor" + +#: /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 Triangle Format" + +#: /home/trin/Gedeeld/Projects/Cura/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" + +#: /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 "Nemohu zapsat do UFP souboru:" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" -msgid "Connect via Network" -msgstr "Připojit přes síť" +msgid "Level build plate" +msgstr "Vyrovnat podložku" -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "Chyba tisku" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Data poslána" - -#: /home/clamboo/Desktop/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 "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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 -msgctxt "@info:title" -msgid "Update your printer" -msgstr "Aktualizujte vaší tiskárnu" - -#: /home/clamboo/Desktop/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 "Fronta tiskových úloh je plná. Tiskárna nemůže přijmout další úlohu." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "Fronta je plná" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "Odesílám tiskovou úlohu" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/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 zjistil materiálové profily, které ještě nebyly nainstalovány na hostitelské tiskárně skupiny {0}." - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "Chyba sítě" - -#: /home/clamboo/Desktop/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 "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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "Není hostem skupiny" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 msgctxt "@action" -msgid "Configure group" -msgstr "Konfigurovat skupinu" +msgid "Select upgrades" +msgstr "Vybrat vylepšení" -#: /home/clamboo/Desktop/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 "" -"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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 -msgctxt "@action" -msgid "Get started" -msgstr "Začínáme" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 -msgctxt "@action" -msgid "Learn more" -msgstr "Zjistit více" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 msgctxt "@action:button" msgid "Print via cloud" msgstr "Tisknout přes cloud" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Tisknout přes cloud" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Připojen přes cloud" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 msgctxt "@action:button" msgid "Monitor print" msgstr "Sledovat tisk" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 msgctxt "@action:tooltip" msgid "Track the print in Ultimaker Digital Factory" msgstr "Sledujte tisk v Ultimaker Digital Factory" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#: /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 "Při nahrávání tiskové úlohy došlo k chybě s neznámým kódem: {0}" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 +#: /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" @@ -1582,13 +1577,13 @@ 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 +#: /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" @@ -1597,12 +1592,12 @@ msgstr[0] "... a {0} další" msgstr[1] "... a {0} další" msgstr[2] "... a {0} dalších" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 +#: /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" @@ -1610,7 +1605,7 @@ 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +#: /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:" @@ -1618,52 +1613,52 @@ 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:361 msgctxt "@action:button" msgid "Remove printers" msgstr "Odstranit tiskárnu" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 +#: /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 "Tiskárna {printer_name} bude odebrána až do další synchronizace účtu." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 +#: /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 "Chcete-li tiskárnu {printer_name} trvale odebrat, navštivte {digital_factory_link}" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 +#: /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 "Opravdu chcete tiskárnu {printer_name} dočasně odebrat?" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 msgctxt "@title:window" msgid "Remove printers?" msgstr "Odstranit tiskárny?" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 #, python-brace-format msgctxt "@label" msgid "" @@ -1682,7 +1677,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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +#: /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" @@ -1691,579 +1686,270 @@ msgstr "" "Chystáte se odebrat všechny tiskárny z Cury. Tuto akci nelze vrátit zpět.\n" "Doopravdy chcete pokračovat?" -#: /home/clamboo/Desktop/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 "Open Compressed Triangle Mesh" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA Digital Asset Exchange" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "gITF binární soubor" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF Embedded JSON" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Stanford Triangle Format" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Kompresovaný COLLADA Digital Asset Exchenge" - -#: /home/clamboo/Desktop/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 "Zvýrazněné oblasti označují chybějící nebo vedlejší povrchy. Opravte váš model a otevřete jej znovu." - -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "Chyby modelu" - -#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Pevný pohled" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Chyba při zápisu 3mf file." - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "Plugin 3MF Writer je poškozen." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "Soubor 3MF" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Soubor Cura Project 3MF" - -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "Monitorování" - -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 -msgctxt "@info:title" -msgid "3D Model Assistant" -msgstr "Asistent 3D modelu" - -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 #, 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

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

      Jeden nebo více 3D modelů se nemusí tisknout optimálně kvůli velikosti modelu a konfiguraci materiálu:

      \n" -"

      {model_names}

      \n" -"

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

      \n" -"

      Zobrazit průvodce kvalitou tisku

      " +"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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action" +msgid "Get started" +msgstr "Začínáme" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +msgctxt "@action" +msgid "Learn more" +msgstr "Zjistit více" + +#: /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 "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 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "Aktualizujte vaší tiskárnu" + +#: /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 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 +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 +#, 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 +msgctxt "@info:title" +msgid "Not a group host" +msgstr "Není hostem skupiny" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info:title" +msgid "Print error" +msgstr "Chyba tisku" + +#: /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 "Nemohu nahrát data do tiskárny." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "Fronta je plná" + +#: /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 "Tisková úloha byla úspěšně odeslána do tiskárny." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "Tisk přes síť" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +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 +msgctxt "@action" +msgid "Connect via Network" +msgstr "Připojit přes síť" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:status" +msgid "today" +msgstr "dnes" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "USB tisk" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "Tisk přes USB" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" -msgid "Mesh Type" -msgstr "Typ síťového modelu" +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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "Normální model" +#: /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 "Tisk stále probíhá. Cura nemůže spustit další tisk přes USB, dokud není předchozí tisk dokončen." -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "Tisknout jako podporu" +#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "Probíhá tisk" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Upravte nastavení překrývání" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Nepodporovat překrývání" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 +#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Pouze síť výplně" +msgid "X3D File" +msgstr "Soubor X3D" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 +#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Síť řezu" +msgid "X-Ray view" +msgstr "Rentgenový pohled" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Vybrat nastavení" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Vybrat nastavení k přizpůsobení pro tento model" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtrovat..." - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Zobrazit vše" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cura zálohy" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Cura verze" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Zařízení" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Materiály" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Profily" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Zásuvné moduly" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Chcete více?" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Zálohovat nyní" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Automatické zálohy" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "Obnovit" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Odstranit zálohu" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Obnovit zálohu" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 -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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 -msgctxt "@button" -msgid "Sign in" -msgstr "Přihlásit se" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Moje zálohy" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -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/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Nastavení tiskárny" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (Šířka)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Hloubka)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Výška)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 -msgctxt "@label" -msgid "Build plate shape" -msgstr "Tvar tiskové podložky" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 -msgctxt "@label" -msgid "Origin at center" -msgstr "Počátek ve středu" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 -msgctxt "@label" -msgid "Heated bed" -msgstr "Topná podložka" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 -msgctxt "@label" -msgid "Heated build volume" -msgstr "Vyhřívaný objem sestavení" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 -msgctxt "@label" -msgid "G-code flavor" -msgstr "Varianta G kódu" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Nastavení tiskové hlavy" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -msgctxt "@label" -msgid "X min" -msgstr "X min" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -msgctxt "@label" -msgid "Y min" -msgstr "Y min" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -msgctxt "@label" -msgid "X max" -msgstr "X max" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -msgctxt "@label" -msgid "Y max" -msgstr "Y max" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "Gantry Height" -msgstr "Výška rámu tiskárny" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Počet extrůderů" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Aplikovat offsety extruderu do G kódu" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "Počáteční G kód" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "Ukončující G kód" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Nastavení trysky" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 -msgctxt "@label" -msgid "Nozzle size" -msgstr "Velikost trysky" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Kompatibilní průměr materiálu" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "X offset trysky" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Y offset trysky" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Číslo chladícího větráku" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "Počáteční G-kód extuderu" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "Ukončující G-kód extuderu" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "Tiskárna" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Aktualizovat firmware" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Automaticky aktualizovat firmware" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Nahrát vlastní firmware" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Vybrat vlastní firmware" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Aktualizace firmwaru" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Updating firmware." -msgstr "Aktualizuji firmware." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Aktualizace firmwaru kompletní." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "Aktualizace firmwaru selhala kvůli neznámému problému." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "Aktualizace firmwaru selhala kvůli chybě v komunikaci." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "Aktualizace firmwaru selhala kvůli chybě vstupu / výstupu." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "Aktualizace firmwaru selhala kvůli chybějícímu firmwaru." - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 msgctxt "@title:window" msgid "Open Project" msgstr "Otevřit projekt" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Nastavení tiskárny" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Nastavení profilu" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 +#: /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" @@ -2271,12 +1957,12 @@ msgstr[0] "%1 přepsání" msgstr[1] "%1 přepsání" msgstr[2] "%1 přepsání" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 msgctxt "@action:label" msgid "Derivative from" msgstr "Derivát z" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:311 msgctxt "@action:label" msgid "%1, %2 override" msgid_plural "%1, %2 overrides" @@ -2284,1049 +1970,811 @@ msgstr[0] "%1, %2 override" msgstr[1] "%1, %2 overrides" msgstr[2] "%1, %2 overrides" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 -msgctxt "@action:label" -msgid "Material settings" -msgstr "Nastavení materiálu" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 msgctxt "@action:label" msgid "Mode" msgstr "Mód" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 msgctxt "@action:label" msgid "Visible settings:" msgstr "Viditelná zařízení:" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 z %2" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 msgctxt "@action:button" msgid "Open" msgstr "Otevřít" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "Přesto otevřít projekt" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:529 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "Nainstalovat chybějící materiál" + +#: /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 "Post Processing Plugin" -msgstr "Zásuvný balíček Post Processing" +msgid "Cura Backups" +msgstr "Cura zálohy" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 +#: /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 "Uložit projekt Cura a tiskový soubor UFP" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "Uložit projekt Cura" + +#: /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 "Post Processing Scripts" -msgstr "Skripty Post Processingu" +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/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "Přidat skript" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 msgctxt "@label" -msgid "Settings" -msgstr "Nastavení" +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/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Změnít aktivní post-processing skripty." +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Automaticky aktualizovat firmware" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 -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/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Nahrát vlastní firmware" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /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 "Convert Image..." -msgstr "Konvertovat obrázek.." +msgid "Select custom firmware" +msgstr "Vybrat vlastní firmware" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 -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/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Aktualizace firmwaru" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "Výška základny od podložky v milimetrech." +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "Maximální vzdálenost každého pixelu od „základny“." -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 msgctxt "@action:label" msgid "Base (mm)" msgstr "Základna (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate." -msgstr "Šířka podložky v milimetrech." +msgid "The base height from the build plate in millimeters." +msgstr "Výška základny od podložky v milimetrech." -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 msgctxt "@action:label" msgid "Width (mm)" msgstr "Šířka (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "Hloubka podložky v milimetrech" +msgid "The width in millimeters on the build plate" +msgstr "Šířka na podložce v milimetrech" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 msgctxt "@action:label" msgid "Depth (mm)" msgstr "Hloubka (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 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." +msgid "The depth in millimeters on the build plate" +msgstr "Hloubka podložky v milimetrech" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "Tmavější je vyšší" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "Světlejší je vyšší" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 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." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "Průsvitnost" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 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." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "1mm propustnost (%)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "Množství vyhlazení, které se použije na obrázek." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 msgctxt "@action:label" msgid "Smoothing" msgstr "Vyhlazování" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /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/clamboo/Desktop/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" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "Vyhřívaná podložka (Oficiální kit, nebo vytvořená)" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Vyrovnávání podložky" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Spustit vyrovnání položky" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Přesunout na další pozici" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Další informace o anonymním shromažďování údajů" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -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/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Nechci posílat anonymní data" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Povolit zasílání anonymních dat" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" -msgid "Marketplace" -msgstr "Obchod" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -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." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "Ukončit %1" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "Nainstalovat" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -msgctxt "@action:button" -msgid "Installed" -msgstr "Nainstalováno" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "Premium" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 -msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "Přejít na webový obchod" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 -msgctxt "@label" -msgid "Search materials" -msgstr "Hledat materiály" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "Kompatibilita" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "Zařízení" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "Podložka" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "Podpora" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "Kvalita" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "Technický datasheet" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "Datasheet bezpečnosti" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "Zásady tisku" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "Webová stránka" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -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í" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "Koupit cívky materiálu" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "Aktualizace" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "Aktualizuji" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "Aktualizování" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "Zpět" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 msgctxt "@title:tab" -msgid "Plugins" -msgstr "Zásuvné moduly" +msgid "Printer" +msgstr "Tiskárna" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materiály" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Nastavení trysky" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "Nainstalování" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 msgctxt "@label" -msgid "Will install upon restarting" -msgstr "Nainstaluje se po restartu" +msgid "Nozzle size" +msgstr "Velikost trysky" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -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" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Downgrade" -msgstr "Downgrade" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "Odinstalace" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /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 "Community Contributions" -msgstr "Soubory od komunity" +msgid "mm" +msgstr "mm" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 msgctxt "@label" -msgid "Community Plugins" -msgstr "Komunitní zásuvné moduly" +msgid "Compatible material diameter" +msgstr "Kompatibilní průměr materiálu" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 msgctxt "@label" -msgid "Generic Materials" -msgstr "Obecné materiály" +msgid "Nozzle offset X" +msgstr "X offset trysky" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "Načítám balíčky..." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 msgctxt "@label" -msgid "Website" -msgstr "Webová stránka" +msgid "Nozzle offset Y" +msgstr "Y offset trysky" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 msgctxt "@label" -msgid "Email" -msgstr "Email" +msgid "Cooling Fan Number" +msgstr "Číslo chladícího větráku" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -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" +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 +#: /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 "Version" -msgstr "Verze" +msgid "X (Width)" +msgstr "X (Šířka)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 msgctxt "@label" -msgid "Last updated" -msgstr "Naposledy aktualizování" +msgid "Y (Depth)" +msgstr "Y (Hloubka)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 msgctxt "@label" -msgid "Brand" -msgstr "Značka" +msgid "Z (Height)" +msgstr "Z (Výška)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 msgctxt "@label" -msgid "Downloads" -msgstr "Ke stažení" +msgid "Build plate shape" +msgstr "Tvar tiskové podložky" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "Nainstalovaná rozšíření" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "Žádné rozšíření nebylo nainstalováno." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "Nainstalované materiály" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 -msgctxt "@info" -msgid "No material has been installed." -msgstr "Žádný materiál nebyl nainstalován." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "Zabalená rozšíření" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "Zabalené materiály" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -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í." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 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í" +msgid "Origin at center" +msgstr "Počátek ve středu" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 msgctxt "@button" msgid "Dismiss" msgstr "Schovat" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "Potvrdit odinstalaci" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "Nainstalovat chybějící materiály" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -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." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "Licenční smlouva modulu" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "Materiály" +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "Profily" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "Příjmout" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "Potvrdit" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 +msgctxt "@header" +msgid "Manage packages" +msgstr "Spravovat balíčky" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "Barevné schéma" +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Barva materiálu" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "Spravovat balíčky" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Typ úsečky" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Rychlost" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Tloušťka vrstvy" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Šířka čáry" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Průtok" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Mód kompatibility" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "Cesty" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "Pomocníci" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "Shell" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "Výplň" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "Začátky" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Zobrazit jen vrchní vrstvy" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "Zobrazit 5 podrobných vrstev nahoře" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Nahoře / Dole" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Vnitřní stěna" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "min" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "max" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Spravovat tiskárnu" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -msgctxt "@label" -msgid "Glass" -msgstr "Sklo" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" msgid "Loading..." msgstr "Načítám..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Nedostupný" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "Zásuvné moduly" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Nedostupný" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "Materiály" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "Čekám" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Připravuji..." +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "Tisknu" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 +#: /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 "Untitled" -msgstr "Bez názvu" +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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anonymní" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Jsou nutné změny v nastavení" +#: /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 "Od" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "Podrobnosti" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Enable" +msgstr "Zapnout" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Nedostupná tiskárna" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Disable" +msgstr "Vypnout" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "První dostupný" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 +msgctxt "@button" +msgid "Downgrading..." +msgstr "Snižuji verzi..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "Zařazeno do fronty" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 +msgctxt "@button" +msgid "Downgrade" +msgstr "Snížit verzi" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Spravovat v prohlížeči" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 +msgctxt "@button" +msgid "Installing..." +msgstr "Instaluji..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -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/Marketplace/resources/qml/PackageCardHeader.qml:250 +msgctxt "@button" +msgid "Install" +msgstr "Instalovat" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "Tiskové úlohy" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254 +msgctxt "@button" +msgid "Uninstall" +msgstr "Odinstalovat" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "Celkový čas tisknutí" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Updating..." +msgstr "Aktualizuji..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "Čekám na" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Tisk přes síť" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 -msgctxt "@action:button" -msgid "Print" -msgstr "Tisk" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 -msgctxt "@label" -msgid "Printer selection" -msgstr "Výběr tiskárny" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Změny konfigurace" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "Override" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Změnit materiál %1 z %2 na %3." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Změnit jádro tisku %1 z %2 na %3." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "Hliník" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Finished" -msgstr "Dokončeno" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Ruším..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Zrušeno" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Failed" -msgstr "Selhání" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Pozastavuji..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Paused" -msgstr "Pozastaveno" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Obnovuji..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 -msgctxt "@label:status" -msgid "Action required" -msgstr "Akce vyžadována" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Dokončuji %1 z %2" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Připojte se k síťové tiskárně" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Vyberte svou tiskárnu z nabídky níže:" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "Upravit" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 -msgctxt "@action:button" -msgid "Remove" -msgstr "Odstranit" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Update" msgstr "Aktualizovat" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -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/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "Detaily balíčku" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "Typ" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "Zpět" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "Verze firmwaru" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "Popis" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "Adresa" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:110 +msgctxt "@header" +msgid "Compatible printers" +msgstr "Kompatibilní tiskárny" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -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/Marketplace/resources/qml/PackagePage.qml:134 +msgctxt "@info" +msgid "No compatibility information" +msgstr "Žádné informace o kompatibilitě" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -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/Marketplace/resources/qml/PackagePage.qml:152 +msgctxt "@header" +msgid "Compatible support materials" +msgstr "Kompatibilní materiály podpor" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -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/Marketplace/resources/qml/PackagePage.qml:176 +msgctxt "@info No materials" +msgid "None" +msgstr "Žádné" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "Připojit" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Špatná IP adresa" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +#: /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 "Please enter a valid IP address." -msgstr "Prosím zadejte validní IP adresu." +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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Adresa tiskárny" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 -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/Marketplace/resources/qml/VerifiedIcon.qml:22 +msgctxt "@info" +msgid "Ultimaker Certified Material" +msgstr "Materiál certifikovaný společností Ultimaker" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "Přesunout nahoru" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Odstranit" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "Obnovit" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Pozastavuji..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Obnovuji..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "Pozastavit" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Ruším..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Zrušit" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Přesunout tiskovou úlohu nahoru" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Odstranit tiskovou úlohu" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Zrušit tisk" - -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" msgid "" "Please make sure your printer has a connection:\n" @@ -3339,2172 +2787,683 @@ msgstr "" "- 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/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /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/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /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/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /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/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "3D Pohled" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "Přední pohled" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "Pohled seshora" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "Pohled zleva" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "Pohled zprava" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 msgctxt "@label" -msgid "Object list" -msgstr "Seznam objektů" +msgid "Mesh Type" +msgstr "Typ síťového modelu" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 +#: /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 "Marketplace" -msgstr "Obchod" +msgid "Select settings" +msgstr "Vybrat nastavení" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "&Soubor" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "Upr&avit" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "Po&hled" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "Nasta&vení" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "D&oplňky" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "P&reference" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "Po&moc" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 msgctxt "@title:window" -msgid "New project" -msgstr "Nový projekt" +msgid "Select Settings to Customize for this model" +msgstr "Vybrat nastavení k přizpůsobení pro tento model" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 -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." +#: /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/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 -msgctxt "@label:PrintjobStatus" -msgid "Slicing..." -msgstr "Slicuji..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Zobrazit vše" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 -msgctxt "@label:PrintjobStatus" -msgid "Unable to slice" -msgstr "Nelze slicovat" +#: /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/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Processing" -msgstr "Zpracovává se" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Slice" -msgstr "Slicovat" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 msgctxt "@label" -msgid "Start the slicing process" -msgstr "Začít proces slicování" +msgid "Post Processing Scripts" +msgstr "Skripty Post Processingu" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 -msgctxt "@button" -msgid "Cancel" -msgstr "Zrušit" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +msgctxt "@action" +msgid "Add a script" +msgstr "Přidat skript" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 msgctxt "@label" -msgid "Time estimation" -msgstr "Odhad času" +msgid "Settings" +msgstr "Nastavení" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +#: /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 "Material estimation" -msgstr "Odhad materiálu" +msgid "Color scheme" +msgstr "Barevné schéma" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Barva materiálu" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Typ úsečky" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: /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 "No time estimation available" -msgstr "Žádný odhad času není dostupný" +msgid "Compatibility Mode" +msgstr "Mód kompatibility" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 msgctxt "@label" -msgid "No cost estimation available" -msgstr "Žádná cena není dostupná" +msgid "Travels" +msgstr "Cesty" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "Náhled" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 msgctxt "@label" -msgid "Add a printer" -msgstr "Přidat tiskárnu" +msgid "Helpers" +msgstr "Pomocníci" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 msgctxt "@label" -msgid "Add a networked printer" -msgstr "Přidat síťovou tiskárnu" +msgid "Shell" +msgstr "Shell" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +#: /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 "Add a non-networked printer" -msgstr "Přidat ne-síťovou tiskárnu" +msgid "Infill" +msgstr "Výplň" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "Přidat Cloudovou tiskárnu" +msgid "Starts" +msgstr "Začátky" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "Čekám na odpověď od Cloudu" +msgid "Only Show Top Layers" +msgstr "Zobrazit jen vrchní vrstvy" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 msgctxt "@label" -msgid "No printers found in your account?" -msgstr "Žádné tiskárny nenalezeny ve vašem účtě?" +msgid "Show 5 Detailed Layers On Top" +msgstr "Zobrazit 5 podrobných vrstev nahoře" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 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:" +msgid "Top / Bottom" +msgstr "Nahoře / Dole" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "Přidat tiskárnu manuálně" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 msgctxt "@label" -msgid "Add printer by IP address" -msgstr "Přidat tiskárnu podle IP adresy" +msgid "Inner Wall" +msgstr "Vnitřní stěna" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "Zadejte IP adresu vaší tiskárny." - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "Přidat" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 msgctxt "@label" -msgid "Could not connect to device." -msgstr "Nelze se připojit k zařízení." +msgid "min" +msgstr "min" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Nemůžete se připojit k Vaší tiskárně Ultimaker?" +msgid "max" +msgstr "max" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +#: /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 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "Vyrovnávání podložky" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 msgctxt "@label" -msgid "The printer at this address has not responded yet." +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 +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 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "Spustit vyrovnání položky" + +#: /home/trin/Gedeeld/Projects/Cura/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" + +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 -msgctxt "@button" -msgid "Back" -msgstr "Zpět" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +msgctxt "@action:button" msgid "Connect" msgstr "Připojit" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "Uživatelská dohoda" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Špatná IP adresa" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "Odmítnout a zavřít" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Vítejte v Ultimaker Cura" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +#: /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 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ů." +msgid "Please enter a valid IP address." +msgstr "Prosím zadejte validní IP adresu." -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "Začínáme" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Adresa tiskárny" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +#: /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 +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 msgctxt "@label" msgid "Sign in to the Ultimaker platform" msgstr "Přihlásit se do platformy Ultimaker" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "Přidat nastavení materiálů a moduly z Obchodu" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "Zálohovat a synchronizovat nastavení materiálů a moduly" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -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ě" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 -msgctxt "@button" -msgid "Skip" -msgstr "Přeskočit" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Vytvořit účet Ultimaker zdarma" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 -msgctxt "@label" -msgid "Manufacturer" -msgstr "Výrobce" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 -msgctxt "@label" -msgid "Profile author" -msgstr "Autor profilu" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 -msgctxt "@label" -msgid "Printer name" -msgstr "Název tiskárny" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 -msgctxt "@text" -msgid "Please name your printer" -msgstr "Pojmenujte prosím svou tiskárnu" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "Obnovit" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "Přidat tiskárnu podle IP" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "Přidat cloudovou tiskárnu" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "Podpora při problémech" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "Typy zařízení" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "Použití materiálu" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "Počet sliců" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "Nastavení tisku" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "Více informací" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 -msgctxt "@label" -msgid "What's New" -msgstr "Co je nového" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "Prázdné" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "Poznámky k vydání" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 -msgctxt "@title:window The argument is the application name." -msgid "About %1" -msgstr "O %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 -msgctxt "@label" -msgid "version: %1" -msgstr "verze: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 -msgctxt "@label" -msgid "End-to-end solution for fused filament 3D printing." -msgstr "Komplexní řešení pro 3D tisk z taveného filamentu." - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 -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 "" -"Cura vyvíjí Ultimaker B.V. ve spolupráci s komunitou.\n" -"Cura hrdě používá následující open source projekty:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 -msgctxt "@label" -msgid "Graphical user interface" -msgstr "Grafické uživatelské prostředí" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" -msgid "Application framework" -msgstr "Aplikační framework" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" -msgid "G-code generator" -msgstr "Generátor G kódu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" -msgid "Interprocess communication library" -msgstr "Meziprocesní komunikační knihovna" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" -msgid "Programming language" -msgstr "Programovací jazyk" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" -msgid "GUI framework" -msgstr "GUI framework" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" -msgid "GUI framework bindings" -msgstr "Propojení GUI frameworku" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" -msgid "C/C++ Binding library" -msgstr "Binding knihovna C/C++" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 -msgctxt "@label" -msgid "Data interchange format" -msgstr "Formát výměny dat" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 -msgctxt "@label" -msgid "Support library for scientific computing" -msgstr "Podpůrná knihovna pro vědecké výpočty" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" -msgid "Support library for faster math" -msgstr "Podpůrný knihovna pro rychlejší matematické výpočty" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" -msgid "Support library for handling STL files" -msgstr "Podpůrná knihovna pro práci se soubory STL" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" -msgid "Support library for handling planar objects" -msgstr "Podpůrná knihovna pro manipulaci s planárními objekty" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" -msgid "Support library for handling triangular meshes" -msgstr "Podpůrná knihovna pro manipulaci s trojúhelníkovými sítěmi" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" -msgid "Support library for handling 3MF files" -msgstr "Podpůrná knihovna pro manipulaci s 3MF soubory" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 -msgctxt "@label" -msgid "Support library for file metadata and streaming" -msgstr "Podpůrná knihovna pro metadata souborů a streaming" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 -msgctxt "@label" -msgid "Serial communication library" -msgstr "Knihovna pro sériovou komunikaci" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 -msgctxt "@label" -msgid "ZeroConf discovery library" -msgstr "Knihovna ZeroConf discovery" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" -msgid "Polygon clipping library" -msgstr "Knihovna pro výstřižky z mnohoúhelníků" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@Label" -msgid "Static type checker for Python" -msgstr "Kontrola statických typů pro Python" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@Label" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "Základní certifikáty pro validaci důvěryhodnosti SSL" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 -msgctxt "@Label" -msgid "Python Error tracking library" -msgstr "Chyba v Python trackovací knihovně" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 -msgctxt "@label" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "Knihovna pro plošnou optimalizaci vyvinutá Prusa Research" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -msgctxt "@label" -msgid "Python bindings for libnest2d" -msgstr "Propojení libnest2d s jazykem Python" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" -msgid "Support library for system keyring access" -msgstr "Podpůrná knihovna pro přístup k systémové klíčence" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" -msgid "Python extensions for Microsoft Windows" -msgstr "Python rozšíření pro Microsoft Windows" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" -msgid "Font" -msgstr "Font" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" -msgid "SVG icons" -msgstr "Ikony SVG" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" -msgid "Linux cross-distribution application deployment" -msgstr "Linux cross-distribution application deployment" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Otevřít soubor(y)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 -msgctxt "@action:button" -msgid "Import all as models" -msgstr "Importovat vše jako modely" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 -msgctxt "@title:window" -msgid "Save Project" -msgstr "Uložit projekt" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Extruder %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & materiál" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 -msgctxt "@action:label" -msgid "Material" -msgstr "Materiál" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "Nezobrazovat souhrn projektu při uložení znovu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 -msgctxt "@action:button" -msgid "Save" -msgstr "Uložit" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 -msgctxt "@title:window" -msgid "Discard or Keep changes" -msgstr "Smazat nebo nechat změny" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 -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'." - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 -msgctxt "@title:column" -msgid "Profile settings" -msgstr "Nastavení profilu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 -msgctxt "@title:column" -msgid "Current changes" -msgstr "Aktuální změny" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 -msgctxt "@option:discardOrKeep" -msgid "Always ask me this" -msgstr "Vždy se zeptat" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 -msgctxt "@option:discardOrKeep" -msgid "Discard and never ask again" -msgstr "Smazat a už se nikdy neptat" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 -msgctxt "@option:discardOrKeep" -msgid "Keep and never ask again" -msgstr "Nechat a už se nikdy neptat" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 -msgctxt "@action:button" -msgid "Discard changes" -msgstr "Smazat změny" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 -msgctxt "@action:button" -msgid "Keep changes" -msgstr "Zanechat změny" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 -msgctxt "@title:window" -msgid "Open project file" -msgstr "Otevřít soubor s projektem" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "Pamatuj si moji volbu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 -msgctxt "@action:button" -msgid "Open as project" -msgstr "Otevřít jako projekt" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 -msgctxt "@action:button" -msgid "Import models" -msgstr "Importovat modely" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 -msgctxt "@label" -msgid "Active print" -msgstr "Aktivní tisk" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 -msgctxt "@label" -msgid "Job Name" -msgstr "Název úlohy" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 -msgctxt "@label" -msgid "Printing Time" -msgstr "Čas tisku" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 -msgctxt "@label" -msgid "Estimated time left" -msgstr "Předpokládaný zbývající čas" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Add printer" -msgstr "Přidat tiskárnu" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 -msgctxt "@button" -msgid "Manage printers" -msgstr "Spravovat tiskárny" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "Připojené tiskárny" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "Přednastavené tiskárny" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 -msgctxt "@label" -msgid "Print settings" -msgstr "Nastavení tisku" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -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/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 -msgctxt "@label" -msgid "Profile" -msgstr "Profil" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 -msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "" -"Některé hodnoty nastavení / přepsání se liší od hodnot uložených v profilu.\n" -"\n" -"Klepnutím otevřete správce profilů." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 -msgctxt "@label:header" -msgid "Custom profiles" -msgstr "Vlastní profily" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "Zrušit aktuální změny" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "Doporučeno" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "Vlastní" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "Zap" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "Vyp" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" -msgstr "Experimentální" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 -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" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 -msgctxt "@label" -msgid "Profiles" -msgstr "Profily" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 -msgctxt "@label" -msgid "Support" -msgstr "Podpora" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 -msgctxt "@label" -msgid "Gradual infill" -msgstr "Postupná výplň" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "Adheze" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 -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/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "Uložit projekt..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "Tiskárny s povolenou sítí" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "Lokální tiskárny" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "Materiál" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "Oblíbené" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "Obecné" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 -msgctxt "@label" -msgid "Print Selected Model With:" -msgid_plural "Print Selected Models With:" -msgstr[0] "Tisknout vybraný model pomocí:" -msgstr[1] "Tisknout vybrané modely pomocí:" -msgstr[2] "Tisknout vybrané modely pomocí:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "Násobit vybraný model" -msgstr[1] "Násobit vybrané modele" -msgstr[2] "Násobit vybrané modele" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "Počet kopií" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "&Uložit projekt..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "&Exportovat..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "Výběr exportu..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "Konfigurace" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "Vlastní" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "Tiskárna" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "Povoleno" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "Materiál" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 -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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 -msgctxt "@tooltip" -msgid "There are no profiles matching the configuration of this extruder." -msgstr "Neexistují žádné profily odpovídající nastavení tohoto extruderu." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 -msgctxt "@label" -msgid "Select configuration" -msgstr "Vybrat konfiguraci" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 -msgctxt "@label" -msgid "Configurations" -msgstr "Konfigurace" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "Obchod" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "Otevřít soubor(y)..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "&Tiskárna" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Materiál" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Nastavit jako aktivní extruder" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Povolit extuder" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Zakázat Extruder" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "Otevřít &Poslední" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "Viditelná nastavení" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "Sbalit všechny kategorie" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "Spravovat nastavení viditelnosti ..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "Pozice &kamery" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "Pohled kamery" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "Perspektiva" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "Ortografický" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "Pod&ložka" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 -msgctxt "@label" -msgid "View type" -msgstr "Typ pohledu" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 -msgctxt "@label" -msgid "Is printed as support." -msgstr "Je tisknuto jako podpora." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 -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/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 -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/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "Přesahy na tomto modelu nejsou podporovány." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "Přepíše %1 nastavení." -msgstr[1] "Přepíše %1 nastavení." -msgstr[2] "Přepíše %1 nastavení." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Profily" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 -msgctxt "@action:button" -msgid "Activate" -msgstr "Aktivovat" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "Vytvořit" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "Duplikovat" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 -msgctxt "@action:button" -msgid "Rename" -msgstr "Přejmenovat" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -msgctxt "@action:button" -msgid "Import" -msgstr "Import" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -msgctxt "@action:button" -msgid "Export" -msgstr "Export" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Vytvořit profil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "Prosím uveďte jméno pro tento profil." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Duplikovat profil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Potvrdit odstranění" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Přejmenovat profil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Importovat profil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Exportovat profil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "Tiskárna: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "Aktualizovat profil s aktuálním nastavení/přepsánímy" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "Vaše aktuální nastavení odpovídá vybranému profilu." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Globální nastavení" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 -msgctxt "@title:tab" -msgid "General" -msgstr "Obecné" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 -msgctxt "@label" -msgid "Interface" -msgstr "Rozhranní" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 -msgctxt "@label" -msgid "Currency:" -msgstr "Měna:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 -msgctxt "@label" -msgid "Theme:" -msgstr "Styl:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Slicovat automaticky při změně nastavení." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Slicovat automaticky" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "Chování výřezu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Zobrazit převis" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "Zobrazovat chyby modelu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Vycentrovat kameru pokud je vybrána položka" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Obrátit směr přibližování kamery." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "Přiblížit směrem k směru myši" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "Zajistěte, aby modely byly odděleny" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "Automaticky přetáhnout modely na podložku" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "Zobrazte v čtečce g-kódu varovnou zprávu." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "Upozornění ve čtečce G-kódu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "Měla by být vrstva vynucena do režimu kompatibility?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "Vynutit režim kompatibility zobrazení vrstev (vyžaduje restart)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "Při zapnutí obnovit pozici okna" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "Jaký typ kamery by se měl použít?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "Vykreslování kamery:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 -msgid "Perspective" -msgstr "Perspektiva" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 -msgid "Orthographic" -msgstr "Ortografický" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Otevírám a ukládám soubory" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Používat pouze jednu instanci programu Cura" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Škálovat velké modely" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Škálovat extrémně malé modely" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "Vybrat modely po načtení" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "Přidat předponu zařízení před název úlohy" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "Zobrazit souhrnný dialog při ukládání projektu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "Výchozí chování při otevírání souboru" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "Výchozí chování při otevření souboru s projektem: " - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "Vždy se zeptat" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Vždy otevírat jako projekt" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Vždy importovat modely" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "Vždy smazat změněné nastavení" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "Vždy přesunout nastavení do nového profilu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 -msgctxt "@label" -msgid "Privacy" -msgstr "Soukromí" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "Posílat (anonymní) informace o tisku" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 -msgctxt "@action:button" -msgid "More information" -msgstr "Více informací" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 -msgctxt "@label" -msgid "Updates" -msgstr "Aktualizace" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Zkontrolovat aktualizace při zapnutí" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 -msgctxt "@info:tooltip" -msgid "When checking for updates, only check for stable releases." -msgstr "Při kontrole aktualizací kontrolovat pouze stabilní vydání." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 -msgctxt "@option:radio" -msgid "Stable releases only" -msgstr "Pouze stabilní vydání" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 -msgctxt "@option:radio" -msgid "Stable and Beta releases" -msgstr "Stabilní a beta vydání" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 -msgctxt "@option:check" -msgid "Get notifications for plugin updates" -msgstr "Získávat oznámení o aktualizacích modulů" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "Informace" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "Potvrdit změnu průměru" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "Jméno" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "Typ materiálu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "Barva" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "Vlastnosti" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "Husttoa" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "Průměr" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "Cena filamentu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "Váha filamentu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "Délka filamentu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Cena za metr" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "Zrušit propojení s materiálem" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "Popis" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Informace o adhezi" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "Vytvořit" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Duplikovat" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "Synchronizovat s tiskárnami" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "Tiskárna" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Importovat materiál" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Úspěšně importován materiál %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Exportovat materiál" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 -msgctxt "@title:window" -msgid "Sync materials with printers" -msgstr "Synchronizovat materiály s tiskárnami" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 -msgctxt "@title:header" -msgid "Sync materials with printers" -msgstr "Synchronizovat materiály s tiskárnami" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 -msgctxt "@button" -msgid "Start" -msgstr "Začít" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 -msgctxt "@button" -msgid "Why do I need to sync material profiles?" -msgstr "K čemu je dobrá synchronizace materiálových profilů?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 -msgctxt "@title:header" -msgid "Sign in" -msgstr "Přihlásit se" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 -msgctxt "@button" -msgid "Sync materials with USB" -msgstr "Synchronizovat materiály pomocí USB" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 -msgctxt "@button" -msgid "Troubleshooting" -msgstr "Podpora při problémech" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 -msgctxt "@text Asking the user whether printers are missing in a list." -msgid "Printers missing?" -msgstr "Chybí tiskárny?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 -msgctxt "@button" -msgid "Refresh List" -msgstr "Obnovit seznam" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 -msgctxt "@button" -msgid "Try again" -msgstr "Zkusit znovu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Done" -msgstr "Hotovo" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 -msgctxt "@button" -msgid "Sync" -msgstr "Synchronizovat" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 -msgctxt "@button" -msgid "Syncing" -msgstr "Synchronizuji" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 -msgctxt "@title:header" -msgid "No printers found" -msgstr "Nenalezeny žádné tiskárny" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 -msgctxt "@button" -msgid "Refresh" -msgstr "Obnovit" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 -msgctxt "@title:header" -msgid "Sync material profiles via USB" -msgstr "Synchronizovat materiálové profily přes USB" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 -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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Export material archive" -msgstr "Exportovat archiv s materiálem" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "Exportovat všechny materiály" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Nastavení zobrazení" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Zkontrolovat vše" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 -msgctxt "@title:tab" -msgid "Printers" -msgstr "Tiskárny" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Vypočítáno" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "Nastavení" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "Profil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "Aktuální" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "Jednotka" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "Nepřipojen k tiskárně" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "Tiskárna nepřijímá příkazy" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "V údržbě. Prosím zkontrolujte tiskíárnu" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "Ztráta spojení s tiskárnou" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "Tisknu..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "Pozastaveno" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "Připravuji..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Prosím odstraňte výtisk" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "Zrušit tisk" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "Jste si jist, že chcete zrušit tisknutí?" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 -msgctxt "@label:button" -msgid "My printers" -msgstr "Moje tiskárny" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 -msgctxt "@label:button" -msgid "Print jobs" -msgstr "Tiskové úlohy" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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ů." - -#: /home/clamboo/Desktop/Cura/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." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 -msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "Ultimaker podpora" - -#: /home/clamboo/Desktop/Cura/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." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 -msgctxt "@label:button" -msgid "Ask a question" -msgstr "Položit otázku" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 -msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "Poraďte se s Ultimaker komunitou." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 -msgctxt "@label:button" -msgid "Report a bug" -msgstr "Nahlásit chybu" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 -msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "Navštivte web Ultimaker." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "Ovládání tiskárny" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "Pozice hlavy" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Vzdálenost hlavy" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "Poslat G kód" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "Extuder" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "Aktuální teplota tohoto hotendu." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "Teplota pro předehřátí hotendu." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Zrušit" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Předehřání" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Barva materiálu v tomto extruderu." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Materiál v tomto extruderu." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "Vložená trysky v tomto extruderu." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "Tiskárna není připojena." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "Podložka" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -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/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "Teplota pro předehřátí podložky." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -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/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "Přihlásit se" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 msgctxt "@text" msgid "" "- Add material profiles and plug-ins from the Marketplace\n" @@ -5515,375 +3474,2291 @@ msgstr "" "- 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ě" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" msgid "Create a free Ultimaker account" msgstr "Vytvořit účet Ultimaker zdarma" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "Poslední aktualizace: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Ultimaker Account" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 -msgctxt "@button" -msgid "Sign Out" -msgstr "Odhlásit se" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "Kontroluji..." -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "Účet byl synchronizován" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "Nastala chyba..." -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "Nainstalujte čekající aktualizace" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "Zkontrolovat aktualizace pro účet" -#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "Bez názvu" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "Poslední aktualizace: %1" -#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "Ultimaker Account" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" -msgid "No items to select from" -msgstr "Není z čeho vybírat" +msgid "No time estimation available" +msgstr "Žádný odhad času není dostupný" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Preview" +msgstr "Náhled" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Material estimation" +msgstr "Odhad materiálu" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +msgctxt "@label:PrintjobStatus" +msgid "Slicing..." +msgstr "Slicuji..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Processing" +msgstr "Zpracovává se" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +msgctxt "@button" +msgid "Slice" +msgstr "Slicovat" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Cancel" +msgstr "Zrušit" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "Zobrazit online průvodce řešením problémů" +msgid "Show Online Troubleshooting" +msgstr "Zobrazit online řešení problémů" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "Přepnout zobrazení na celou obrazovku" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "Ukončit zobrazení na celou obrazovku" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "&Vrátit" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "&Znovu" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "&Ukončit" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "3D Pohled" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Přední pohled" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "Pohled seshora" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "Pohled zezdola" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "Pohled z pravé strany" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "Pohled z pravé strany" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "Konfigurovat Cura..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "Přidat t&iskárnu..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "Spravovat &tiskárny..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Spravovat materiály..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu" +#: /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." msgid "Add more materials from Marketplace" -msgstr "Přidat více materiálů z obchodu" +msgstr "Přidat více materiálů z Obchodu" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 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/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "Smazat aktuální &změny" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 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/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "Spravovat profily..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Zobrazit online &dokumentaci" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "Nahlásit &chybu" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "Co je nového" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "Více..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "Smazat vybrané" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "Centrovat vybrané" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "Násobit vybrané" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Odstranit model" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "&Centerovat model na podložce" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "Sesk&upit modely" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Rozdělit modely" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "Spo&jit modely" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "Náso&bení modelu..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "Vybrat všechny modely" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "Vyčistit podložku" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "Znovu načíst všechny modely" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "Uspořádejte všechny modely do všechpodložek" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Uspořádat všechny modely" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Uspořádat selekci" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Resetovat všechny pozice modelů" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "Resetovat všechny transformace modelů" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "&Otevřít soubor(y)..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&Nový projekt..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Zobrazit složku s konfigurací" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Konfigurovat viditelnost nastavení..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "Mark&et" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "Moje tiskárny" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "Tiskové úlohy" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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ů." + +#: /home/trin/Gedeeld/Projects/Cura/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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "Ultimaker podpora" + +#: /home/trin/Gedeeld/Projects/Cura/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." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "Poraďte se s Ultimaker komunitou." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "Navštivte web Ultimaker." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 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." +msgid "Hex" +msgstr "Hexadecimální" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 -msgctxt "@label Header for list of settings." -msgid "Affects" -msgstr "Ovlivňuje" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 -msgctxt "@label Header for list of settings." -msgid "Affected By" -msgstr "Ovlivněno" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 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ů." +msgid "This package will be installed after restarting." +msgstr "Tento balíček bude nainstalován po restartování." -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 -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/Cura.qml:463 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +msgctxt "@title:tab" +msgid "General" +msgstr "Obecné" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +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 +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 +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 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Profily" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +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 +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 +msgctxt "@title:window" +msgid "Open file(s)" +msgstr "Otevřít soubor(y)" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +msgctxt "@window:title" +msgid "Install Package" +msgstr "Nainstalovat balíček" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Otevřít Soubor(y)" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +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 +msgctxt "@title:window" +msgid "Add Printer" +msgstr "Přidat tiskárnu" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +msgctxt "@title:window" +msgid "What's New" +msgstr "Co je nového" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" +msgid "version: %1" +msgstr "verze: %1" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +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 +msgctxt "@info:credit" msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." +"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura proudly uses the following open source projects:" msgstr "" -"Toto nastavení má jinou hodnotu než profil.\n" -"\n" -"Klepnutím obnovíte hodnotu profilu." +"Cura vyvíjí Ultimaker B.V. ve spolupráci s komunitou.\n" +"Cura hrdě používá následující open source projekty:" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"Toto nastavení se obvykle počítá, ale v současné době je nastavena absolutní hodnota.\n" -"\n" -"Klepnutím obnovíte vypočítanou hodnotu." +msgid "Graphical user interface" +msgstr "Grafické uživatelské prostředí" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +msgctxt "@label" +msgid "Application framework" +msgstr "Aplikační framework" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label" +msgid "G-code generator" +msgstr "Generátor G kódu" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label" +msgid "Interprocess communication library" +msgstr "Meziprocesní komunikační knihovna" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label" +msgid "Python bindings for libnest2d" +msgstr "Propojení libnest2d s jazykem Python" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 +msgctxt "@label" +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" +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" +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" +msgid "Programming language" +msgstr "Programovací jazyk" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +msgctxt "@label" +msgid "GUI framework" +msgstr "GUI framework" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label" +msgid "GUI framework bindings" +msgstr "Propojení GUI frameworku" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label" +msgid "C/C++ Binding library" +msgstr "Binding knihovna C/C++" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label" +msgid "Data interchange format" +msgstr "Formát výměny dat" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label" +msgid "Font" +msgstr "Font" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +msgctxt "@label" +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" +msgid "JSON parser" +msgstr "JSON parser" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label" +msgid "Utility functions, including an image loader" +msgstr "Pomocné funkce zahrnující načítání obrázků" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label" +msgid "Utility library, including Voronoi generation" +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" +msgid "Root Certificates for validating SSL trustworthiness" +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" +msgid "Compatibility between Python 2 and 3" +msgstr "Kompatibilita mezi Python 2 a 3" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label" +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" +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" +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" +msgid "Python bindings for Clipper" +msgstr "Propojení Clipper s jazykem Python" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label" +msgid "Serial communication library" +msgstr "Knihovna pro sériovou komunikaci" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label" +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" +msgid "Python Error tracking library" +msgstr "Chyba v Python trackovací knihovně" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label" +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" +msgid "ZeroConf discovery library" +msgstr "Knihovna ZeroConf discovery" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 +msgctxt "@label" +msgid "Universal build system configuration" +msgstr "Univerzální konfigurace překladu programů" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 +msgctxt "@label" +msgid "Dependency and package manager" +msgstr "Správce závislostí a balíčků" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label" +msgid "Packaging Python-applications" +msgstr "Vytváření balíčků Python aplikací" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label" +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 "Generování instalátorů pro Windows" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "Pamatuj si moji volbu" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +msgctxt "@action:button" +msgid "Open as project" +msgstr "Otevřít jako projekt" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +msgctxt "@action:button" +msgid "Import models" +msgstr "Importovat modely" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:column" +msgid "Profile settings" +msgstr "Nastavení profilu" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +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 +msgctxt "@option:discardOrKeep" +msgid "Always ask me this" +msgstr "Vždy se zeptat" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +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 +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 +msgctxt "@action:button" +msgid "Discard changes" +msgstr "Smazat změny" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +msgctxt "@action:button" +msgid "Keep changes" +msgstr "Zanechat změny" + +#: /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?" +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 +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 +msgctxt "@title:window" +msgid "Save Project" +msgstr "Uložit projekt" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:175 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Extruder %1" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & materiál" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +msgctxt "@action:label" +msgid "Material" +msgstr "Materiál" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +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 +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 +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 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "Nasta&vení" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@header" +msgid "Configurations" +msgstr "Konfigurace" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Marketplace" +msgstr "Obchod" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@label" +msgid "Select configuration" +msgstr "Vybrat konfiguraci" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Enabled" +msgstr "Povoleno" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +msgctxt "@label" +msgid "Material" +msgstr "Materiál" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +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 +msgctxt "@label" +msgid "Print Selected Model With:" +msgid_plural "Print Selected Models With:" +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 +msgctxt "@title:window" +msgid "Multiply Selected Model" +msgid_plural "Multiply Selected Models" +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 +msgctxt "@label" +msgid "Number of Copies" +msgstr "Počet kopií" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "D&oplňky" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "&Uložit projekt..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "Výběr exportu..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "Materiál" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "Obecné" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "P&reference" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label:category menu label" +msgid "Local printers" +msgstr "Lokální tiskárny" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "Viditelná nastavení" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "Spravovat nastavení viditelnosti ..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "Pozice &kamery" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "Perspektiva" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "Tisknu..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "Pozastaveno" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "Připravuji..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Abort Print" +msgstr "Zrušit tisk" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Is printed as support." +msgstr "Je tisknuto jako podpora." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@label %1 is the number of settings it overrides." +msgid "Overrides %1 setting." +msgid_plural "Overrides %1 settings." +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 +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 +msgctxt "@action:button" +msgid "Defaults" +msgstr "Výchozí" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +msgctxt "@label" +msgid "Interface" +msgstr "Rozhranní" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +msgctxt "@heading" +msgid "-- incomplete --" +msgstr "-- nekompletní --" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +msgctxt "@label" +msgid "Currency:" +msgstr "Měna:" + +#: /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." +msgid "Theme*:" +msgstr "Styl*:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +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 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "Slicovat automaticky" + +#: /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." +msgstr "*Aby se tyto změny projevily, budete muset aplikaci restartovat." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "Chování výřezu" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +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 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "Zobrazit převis" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +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 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "Zobrazovat chyby modelu" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "Vykreslování kamery:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +msgid "Perspective" +msgstr "Perspektiva" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +msgid "Orthographic" +msgstr "Ortografický" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +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 +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 +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 +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 +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 +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 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "Škálovat velké modely" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "Vždy se zeptat" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +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 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "Vždy importovat modely" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +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 +msgctxt "@label" +msgid "Profiles" +msgstr "Profily" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +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 +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 +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 +msgctxt "@label" +msgid "Privacy" +msgstr "Soukromí" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +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 +msgctxt "@label" +msgid "Updates" +msgstr "Aktualizace" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +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 +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 +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 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "Pouze stabilní vydání" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +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 +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 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Rename" +msgstr "Přejmenovat" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Import" +msgstr "Import" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Importovat materiál" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Exportovat materiál" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +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 +msgctxt "@button" +msgid "Start" +msgstr "Začít" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +msgctxt "@title:header" +msgid "Sign in" +msgstr "Přihlásit se" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +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 +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 +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 +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 +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 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "Podpora při problémech" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +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 +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 +msgctxt "@button" +msgid "Refresh List" +msgstr "Obnovit seznam" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +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 +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 +msgctxt "@button" +msgid "Sync" +msgstr "Synchronizovat" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +msgctxt "@button" +msgid "Syncing" +msgstr "Synchronizuji" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +msgctxt "@title:header" +msgid "No printers found" +msgstr "Nenalezeny žádné tiskárny" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +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 +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 +msgctxt "@button" +msgid "Refresh" +msgstr "Obnovit" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +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 +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 +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 +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 +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 +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 +msgctxt "@button" +msgid "Back" +msgstr "Zpět" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +msgctxt "@button" +msgid "Export material archive" +msgstr "Exportovat archiv s materiálem" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +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 +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 +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 +msgctxt "@label" +msgid "Display Name" +msgstr "Jméno" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Material Type" +msgstr "Typ materiálu" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title" +msgid "Material color picker" +msgstr "Volba barvy materiálu" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Density" +msgstr "Husttoa" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Filament Cost" +msgstr "Cena filamentu" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Filament length" +msgstr "Délka filamentu" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Unlink Material" +msgstr "Zrušit propojení s materiálem" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Adhesion Information" +msgstr "Informace o adhezi" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Print settings" +msgstr "Nastavení tisku" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@action:button" +msgid "Update profile." +msgstr "Aktualizovat profil." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Globální nastavení" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Exportovat profil" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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] "Toto nastavení bylo skryto hodnotou nastavení %1. Změňte hodnotu toho nastavení, aby bylo toto znovu viditelné." +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 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "Nastavení zobrazení" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" -msgid "Search settings" -msgstr "Prohledat nastavení" +msgid "Check all" +msgstr "Zkontrolovat vše" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 -msgctxt "@action:menu" -msgid "Copy value to all extruders" -msgstr "Kopírovat hodnotu na všechny extrudery" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "Extuder" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 -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/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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 -msgctxt "@action:menu" -msgid "Hide this setting" -msgstr "Schovat toto nastavení" +#: /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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 -msgctxt "@action:menu" -msgid "Don't show this setting" -msgstr "Neukazovat toto nastavení" +#: /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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 -msgctxt "@action:menu" -msgid "Keep this setting visible" -msgstr "Nechat toto nastavení viditelné" +#: /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/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 +#: /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 +msgctxt "@label" +msgid "Active print" +msgstr "Aktivní tisk" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +msgctxt "@label" +msgid "Job Name" +msgstr "Název úlohy" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +msgctxt "@label" +msgid "Printing Time" +msgstr "Čas tisku" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Profile" +msgstr "Profil" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 +msgctxt "@tooltip" +msgid "" +"Some setting/override values are different from the values stored in the profile.\n" +"\n" +"Click to open the profile manager." +msgstr "" +"Některé hodnoty nastavení / přepsání se liší od hodnot uložených v profilu.\n" +"\n" +"Klepnutím otevřete správce profilů." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@label:Should be short" +msgid "On" +msgstr "Zap" + +#: /home/trin/Gedeeld/Projects/Cura/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í" + +#: /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 "– vlastní profil je aktivní a přepsali jste některá nastavení." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +msgctxt "@info" +msgid "custom profile is overriding some settings." +msgstr "– vlastní profil přepisuje některá nastavení." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 +msgctxt "@info" +msgid "Some settings were changed." +msgstr "Některá nastavení byly změněna." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +msgctxt "@label" +msgid "Adhesion" +msgstr "Adheze" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +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 +msgctxt "@label" +msgid "Gradual infill" +msgstr "Postupná výplň" + +#: /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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:26 +msgctxt "@label" +msgid "Resolution" +msgstr "Rozlišení" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +msgctxt "@label" +msgid "Support" +msgstr "Podpora" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +msgctxt "@error" +msgid "Configuration not supported" +msgstr "Konfigurace není podporována" + +#: /home/trin/Gedeeld/Projects/Cura/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 "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 +msgctxt "@button:label" +msgid "Learn more" +msgstr "Zjistit více" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +msgctxt "@title:column" +msgid "Setting" +msgstr "Nastavení" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +msgctxt "@title:column" +msgid "Profile" +msgstr "Profil" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +msgctxt "@title:column" +msgid "Current" +msgstr "Aktuální" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@placeholder" +msgid "Search" +msgstr "Hledat" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5894,141 +5769,358 @@ msgstr "" "\n" "Klepnutím toto nastavení zviditelníte." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "Tento balíček bude nainstalován po restartování." +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/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 -msgctxt "@title:tab" -msgid "Settings" -msgstr "Nastavení" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +msgctxt "@label Header for list of settings." +msgid "Affects" +msgstr "Ovlivňuje" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "Zavírám %1" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +msgctxt "@label Header for list of settings." +msgid "Affected By" +msgstr "Ovlivněno" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 -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/Settings/SettingItem.qml:190 +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/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 -msgctxt "@window:title" -msgid "Install Package" -msgstr "Nainstalovat balíček" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +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/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Otevřít Soubor(y)" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +msgctxt "@label" +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"Toto nastavení má jinou hodnotu než profil.\n" +"\n" +"Klepnutím obnovíte hodnotu profilu." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 -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/Settings/SettingItem.qml:334 +msgctxt "@label" +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"Toto nastavení se obvykle počítá, ale v současné době je nastavena absolutní hodnota.\n" +"\n" +"Klepnutím obnovíte vypočítanou hodnotu." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 -msgctxt "@title:window" -msgid "Add Printer" +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@action:menu" +msgid "Hide this setting" +msgstr "Schovat toto nastavení" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:menu" +msgid "Keep this setting visible" +msgstr "Nechat toto nastavení viditelné" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:25 +msgctxt "@info:tooltip" +msgid "3D View" +msgstr "3D Pohled" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "Pohled seshora" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "Pohled zleva" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "Pohled zprava" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "Typ pohledu" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@button" +msgid "Add printer manually" +msgstr "Přidat tiskárnu manuálně" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +msgctxt "@label" +msgid "Manufacturer" +msgstr "Výrobce" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Printer name" +msgstr "Název tiskárny" + +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 -msgctxt "@title:window" +#: /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 +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 +msgctxt "@label" +msgid "Refresh" +msgstr "Obnovit" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "Podpora při problémech" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Add" +msgstr "Přidat" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +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 +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 +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 +msgctxt "@button" +msgid "Connect" +msgstr "Připojit" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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ě" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@text" +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 +msgctxt "@label" +msgid "Empty" +msgstr "Prázdné" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" msgid "What's New" msgstr "Co je nového" -#: PerObjectSettingsTool/plugin.json +#: /home/trin/Gedeeld/Projects/Cura/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 "Provides the Per Model Settings." -msgstr "Umožňuje nastavení pro každý model." +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." -#: PerObjectSettingsTool/plugin.json +#: ModelChecker/plugin.json msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Nástroj pro nastavení pro každý model" - -#: 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" - -#: 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" - -#: 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" - -#: 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í" - -#: 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" - -#: 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í" - -#: 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" - -#: 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" +msgid "Model Checker" +msgstr "Kontroler modelu" #: 3MFReader/plugin.json msgctxt "description" @@ -6040,65 +6132,15 @@ msgctxt "name" msgid "3MF Reader" msgstr "Čtečka 3MF" -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Poskytuje podporu pro psaní balíčků formátu Ultimaker." +msgid "Provides support for writing 3MF files." +msgstr "Poskytuje podporu pro psaní souborů 3MF." -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "name" -msgid "UFP Writer" -msgstr "Zapisovač UFP" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" +msgid "3MF Writer" +msgstr "Zapisovač 3MF" #: AMFReader/plugin.json msgctxt "description" @@ -6110,25 +6152,35 @@ msgctxt "name" msgid "AMF Reader" msgstr "Čtečka AMF" -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Čte g-kód z komprimovaného archivu." +msgid "Backup and restore your configuration." +msgstr "Zálohujte a obnovte konfiguraci." -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Čtečka kompresovaného G kódu" +msgid "Cura Backups" +msgstr "Cura zálohy" -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/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í" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Poskytuje odkaz na backend krájení CuraEngine." -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "Post Processing" +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" @@ -6140,65 +6192,15 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Zapisovač Cura profilu" -#: USBPrinting/plugin.json +#: DigitalLibrary/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." +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." -#: USBPrinting/plugin.json +#: DigitalLibrary/plugin.json msgctxt "name" -msgid "USB printing" -msgstr "USB tisk" - -#: 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" - -#: 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" - -#: 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ů" - -#: 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" - -#: 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" +msgid "Ultimaker Digital Library" +msgstr "Digitální knihovna Ultimaker" #: FirmwareUpdateChecker/plugin.json msgctxt "description" @@ -6210,45 +6212,55 @@ msgctxt "name" msgid "Firmware Update Checker" msgstr "Kontroler aktualizace firmwaru" -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/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í." +msgid "Provides a machine actions for updating firmware." +msgstr "Poskytuje akce počítače pro aktualizaci firmwaru." -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Slice info" -msgstr "Informace o slicování" +msgid "Firmware Updater" +msgstr "Firmware Updater" -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/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." +msgid "Reads g-code from a compressed archive." +msgstr "Čte g-kód z komprimovaného archivu." -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "Materiálové profily" +msgid "Compressed G-code Reader" +msgstr "Čtečka kompresovaného G kódu" -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/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." +msgid "Writes g-code to a compressed archive." +msgstr "Zapíše g-kód do komprimovaného archivu." -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/plugin.json msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Digitální knihovna Ultimaker" +msgid "Compressed G-code Writer" +msgstr "Zapisova kompresovaného G kódu" -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "Najděte, spravujte a nainstalujte nové balíčky Cura." +msgid "Provides support for importing profiles from g-code files." +msgstr "Poskytuje podporu pro import profilů ze souborů g-kódu." -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "Nástroje" +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" @@ -6260,245 +6272,155 @@ 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 Simulation view." -msgstr "Poskytuje zobrazení simulace." +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" -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/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." +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Odešle anonymní informace o slicování. Lze deaktivovat pomocí preferencí." -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/plugin.json msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Aktualizace verze 4.5 na 4.6" +msgid "Slice info" +msgstr "Informace o slicování" -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/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." +msgid "Provides a normal solid mesh view." +msgstr "Poskytuje normální zobrazení pevné sítě." -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/plugin.json msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Aktualizace verze 2.5 na 2.6" +msgid "Solid View" +msgstr "Solid View" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/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." +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" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/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/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/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/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/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/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/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/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/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" - -#: 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/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/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/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/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/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/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/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/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/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" - -#: 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" +msgid "Support Eraser" +msgstr "Mazač podpor" #: TrimeshReader/plugin.json msgctxt "description" @@ -6520,45 +6442,646 @@ msgctxt "name" msgid "UFP Reader" msgstr "Čtečka UFP" -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Poskytuje normální zobrazení pevné sítě." +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Poskytuje podporu pro psaní balíčků formátu Ultimaker." -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "name" -msgid "Solid View" -msgstr "Solid View" +msgid "UFP Writer" +msgstr "Zapisovač UFP" -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Poskytuje podporu pro psaní souborů 3MF." +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.)." -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "name" -msgid "3MF Writer" -msgstr "Zapisovač 3MF" +msgid "Ultimaker machine actions" +msgstr "Akce zařízení Ultimaker" -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Poskytuje monitorovací scénu v Cuře." +msgid "Manages network connections to Ultimaker networked printers." +msgstr "Spravuje síťová připojení k síťovým tiskárnám Ultimaker." -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "name" -msgid "Monitor Stage" -msgstr "Fáze monitoringu" +msgid "Ultimaker Network Connection" +msgstr "Síťové připojení Ultimaker" -#: ModelChecker/plugin.json +#: USBPrinting/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." +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." -#: ModelChecker/plugin.json +#: USBPrinting/plugin.json msgctxt "name" -msgid "Model Checker" -msgstr "Kontroler modelu" +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." @@ -6872,22 +7395,6 @@ msgstr "Kontroler modelu" #~ msgid "Create an account" #~ msgstr "Vytvořit účet" -#~ msgctxt "@info:generic" -#~ msgid "" -#~ "\n" -#~ "Do you want to sync material and software packages with your account?" -#~ msgstr "" -#~ "\n" -#~ "Chcete synchronizovat materiálové a softwarové balíčky s vaším účtem?" - -#~ msgctxt "@info:generic" -#~ msgid "" -#~ "\n" -#~ "Syncing..." -#~ msgstr "" -#~ "\n" -#~ "Synchronizuji..." - #~ 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." diff --git a/resources/i18n/cs_CZ/fdmextruder.def.json.po b/resources/i18n/cs_CZ/fdmextruder.def.json.po index 3dbaac522c..c1a650093e 100644 --- a/resources/i18n/cs_CZ/fdmextruder.def.json.po +++ b/resources/i18n/cs_CZ/fdmextruder.def.json.po @@ -1,13 +1,13 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. -# Ultimaker , 2020. +# Ultimaker , 2022. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0000\n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" "PO-Revision-Date: 2020-02-20 17:30+0100\n" "Last-Translator: DenyCZ \n" "Language-Team: DenyCZ \n" diff --git a/resources/i18n/cs_CZ/fdmprinter.def.json.po b/resources/i18n/cs_CZ/fdmprinter.def.json.po index c25f85b6cb..d82228811b 100644 --- a/resources/i18n/cs_CZ/fdmprinter.def.json.po +++ b/resources/i18n/cs_CZ/fdmprinter.def.json.po @@ -1,21 +1,21 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. -# Ultimaker , 2020. +# Ultimaker , 2022. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 11:59+0000\n" -"PO-Revision-Date: 2021-12-17 21:11+0100\n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"PO-Revision-Date: 2022-07-07 21:04+0200\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\n" +"X-Generator: Poedit 3.1\n" #: fdmprinter.def.json msgctxt "machine_settings label" @@ -465,8 +465,8 @@ msgstr "Polygon hlavy a větráku zařízení" #: fdmprinter.def.json 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)." +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" @@ -738,6 +738,16 @@ 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" @@ -791,17 +801,17 @@ msgstr "Šířka jedné stěny." #: fdmprinter.def.json msgctxt "wall_line_width_0 label" msgid "Outer Wall Line Width" -msgstr "Vnější šířka čáry stěny" +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 vnější stěny. Snížením této hodnoty lze vytisknout vyšší úrovně detailů." +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 "Vnitřní šířka čáry stěn(y)" +msgstr "Šířka čáry vnitřních stěn" #: fdmprinter.def.json msgctxt "wall_line_width_x description" @@ -916,7 +926,7 @@ 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í stroj používaný pro tisk stěn. To se používá při vícenásobném vytlačování." +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" @@ -926,7 +936,7 @@ 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. To se používá při vícenásobném vytlačování." +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" @@ -936,7 +946,7 @@ 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. To se používá při vícenásobném vytlačování." +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" @@ -958,6 +968,56 @@ 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" @@ -989,14 +1049,24 @@ msgid "Optimize the order in which walls are printed so as to reduce the number 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 "outer_inset_first label" -msgid "Outer Before Inner Walls" -msgstr "Vnější stěny před vnitřními" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Pořadí tisku zdí" #: fdmprinter.def.json -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 "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" @@ -1009,84 +1079,54 @@ msgid "Prints an extra wall at every other layer. This way infill gets caught be 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 "travel_compensate_overlapping_walls_enabled label" -msgid "Compensate Wall Overlaps" -msgstr "Kompenzujte překrytí stěn" +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Minimální šířka čáry zdi" #: fdmprinter.def.json -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 "Vykompenzujte tok částí tisku, které se tisknou tam, kde je již zeď na místě." +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 "travel_compensate_overlapping_walls_0_enabled label" -msgid "Compensate Outer Wall Overlaps" -msgstr "Kompenzujte překrytí vnější stěny" +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 "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 "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 "travel_compensate_overlapping_walls_x_enabled label" -msgid "Compensate Inner Wall Overlaps" -msgstr "Kompenzujte překrytí vnitřní stěny" +msgctxt "wall_split_middle_threshold label" +msgid "Split Middle Line Threshold" +msgstr "Mez pro rozdělení prostřední čáry" #: fdmprinter.def.json -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 "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 "wall_min_flow label" -msgid "Minimum Wall Flow" -msgstr "Minimální průtok zdi" +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 "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 "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_min_flow_retract label" -msgid "Prefer Retract" -msgstr "Preferovat retrakci" +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_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í." - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps label" -msgid "Fill Gaps Between Walls" -msgstr "Vyplnit mezery mezi stěnami" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps description" -msgid "Fills the gaps between walls where no walls fit." -msgstr "Vyplní mezery mezi stěnami, kde se žádné stěny nehodí." - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option nowhere" -msgid "Nowhere" -msgstr "Nikde" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option everywhere" -msgid "Everywhere" -msgstr "Všude" - -#: fdmprinter.def.json -msgctxt "filter_out_tiny_gaps label" -msgid "Filter Out Tiny Gaps" -msgstr "Vyfiltrujte drobné mezery" - -#: fdmprinter.def.json -msgctxt "filter_out_tiny_gaps description" -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 "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" @@ -1098,6 +1138,26 @@ 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" @@ -1291,7 +1351,7 @@ 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í stroj používaný pro tisk nejvyššího povrchu. To se používá při vícenásobném vytlačování." +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" @@ -1311,7 +1371,7 @@ 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. To se používá při vícenásobném vytlačování." +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" @@ -1701,7 +1761,7 @@ 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ě. To se používá při vícenásobném vytlačování." +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" @@ -2197,6 +2257,26 @@ 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" @@ -2708,24 +2788,14 @@ msgid "The first few layers are printed slower than the rest of the model, to ge 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_enabled label" -msgid "Equalize Filament Flow" -msgstr "Vyrovnat tok vlákna" +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_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." - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_max label" -msgid "Maximum Speed for Flow Equalization" -msgstr "Maximální rychlost pro vyrovnávání průtoku" - -#: fdmprinter.def.json -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 "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" @@ -2737,6 +2807,16 @@ 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 "Změnit akceleraci cestování" + +#: 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 "acceleration_print label" msgid "Print Acceleration" @@ -2927,6 +3007,16 @@ 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 "Změnit okamžitou rychlost cestování" + +#: 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 "jerk_print label" msgid "Print Jerk" @@ -3530,7 +3620,7 @@ 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í stroj se používá pro tisk nosiče. To se používá při vícenásobném vytlačování." +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" @@ -3540,7 +3630,7 @@ 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í stroj se používá pro tisk výplně nosiče. To se používá při vícenásobném vytlačování." +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" @@ -3550,7 +3640,7 @@ 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í stroj se používá pro tisk první vrstvy výplně podpěry. To se používá při vícenásobném vytlačování." +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" @@ -3560,7 +3650,7 @@ 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í stroj se používá pro tisk střech a podlah podpěry. To se používá při vícenásobném vytlačování." +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" @@ -3570,7 +3660,7 @@ 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í stroj se používá pro tisk střech nosiče. To se používá při vícenásobném vytlačování." +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" @@ -3580,7 +3670,7 @@ 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í stroj se používá pro tisk podlah podpěry. To se používá při vícenásobném vytlačování." +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" @@ -4460,7 +4550,47 @@ 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í stroj se používá pro tisk límce / okraje / raftu. To se používá při vícenásobném vytlačování." +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" @@ -4626,6 +4756,16 @@ 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" @@ -5126,6 +5266,16 @@ 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" @@ -6393,32 +6543,62 @@ msgstr "Otvory a obrysy součástí s průměrem menším, než je tento, budou #: fdmprinter.def.json msgctxt "small_feature_max_length label" msgid "Small Feature Max Length" -msgstr "Maximální délka malých funkcí" +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 funkcí, které jsou kratší než tato délka, budou vytištěny pomocí funkce Rychlost malých funkcí." +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 funkcí" +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é funkce budou vytištěny v procentech jejich normální rychlosti tisku. Pomalejší tisk může pomoci s přilnavostí a přesností." +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 "Počáteční rychlost vrstev malých funkcí" +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é funkce 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í." +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 "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "Střídat směr zdí" + +#: 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 "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" + +#: 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 "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Počet zdí raftu" + +#: 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 "command_line_settings label" @@ -6480,6 +6660,98 @@ 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." +#~ 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 "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 "travel_compensate_overlapping_walls_enabled label" +#~ msgid "Compensate Wall Overlaps" +#~ msgstr "Kompenzujte překrytí stěn" + +#~ 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 "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_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 "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 "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 "wall_min_flow_retract label" +#~ msgid "Prefer Retract" +#~ msgstr "Preferovat retrakci" + +#~ 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 "fill_perimeter_gaps label" +#~ msgid "Fill Gaps Between Walls" +#~ msgstr "Vyplnit mezery mezi stěnami" + +#~ msgctxt "fill_perimeter_gaps description" +#~ 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" + +#~ msgctxt "filter_out_tiny_gaps description" +#~ 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 "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 "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" diff --git a/resources/i18n/cura.pot b/resources/i18n/cura.pot index 629b2c3a6a..d99f32edcc 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: 2021-12-10 12:00+0100\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" @@ -18,464 +18,205 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:115 -msgctxt "@info:backup_failed" -msgid "Could not create archive from user data directory: {}" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 -msgctxt "@info:title" -msgid "Backup" -msgstr "" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/Backups/Backup.py:158 -msgctxt "@info:backup_failed" -msgid "The following error occurred while trying to restore a Cura backup:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 -msgctxt "@action:button" -msgid "" -"Please sync the material profiles with your printers before starting to " -"print." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 -msgctxt "@action:button" -msgid "New materials installed" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 -msgctxt "@action:button" -msgid "Sync materials with printers" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 -msgctxt "@action:button" -msgid "Learn more" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 -msgctxt "@message:text" -msgid "Could not save material archive to {}:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 -msgctxt "@message:title" -msgid "Failed to save material archive" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 -msgctxt "@text" -msgid "Unknown error." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 -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/clamboo/Desktop/Cura/cura/BuildVolume.py:102 -msgctxt "@info:title" -msgid "Build Volume" -msgstr "" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 msgctxt "@label" msgid "Unknown" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 msgctxt "@label" msgid "Available networked printers" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 -msgctxt "@label" -msgid "Custom profiles" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:15 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:19 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:23 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:232 msgctxt "@label" msgid "Custom Material" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 +#: /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/clamboo/Desktop/Cura/cura/API/Account.py:190 +#: /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 msgctxt "@info:title" msgid "Login failed" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 msgctxt "@info:title" msgid "Finding Location" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 msgctxt "@info:title" msgid "Can't Find Location" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 -msgctxt "@text:error" -msgid "Failed to create archive of materials to sync with printers." +#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:115 +msgctxt "@info:backup_failed" +msgid "Could not create archive from user data directory: {}" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 -msgctxt "@text:error" -msgid "Failed to load the archive of materials to sync it with printers." +#: /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 +msgctxt "@info:title" +msgid "Backup" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 -msgctxt "@text:error" -msgid "The response from Digital Factory appears to be corrupted." +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 -msgctxt "@text:error" -msgid "The response from Digital Factory is missing important information." +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 -msgctxt "@text:error" +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:status" msgid "" -"Failed to connect to Digital Factory to sync materials with some of the " -"printers." +"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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 -msgctxt "@text:error" -msgid "Failed to connect to Digital Factory." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 -#, 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 "" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 -#, python-brace-format -msgctxt "@info:status" -msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 +#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 msgctxt "@info:title" -msgid "Warning" +msgid "Build Volume" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 -#, python-brace-format -msgctxt "@info:status" -msgid "Can't open any other file if G-code is loading. Skipped importing {0}" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 -msgctxt "@info:title" -msgid "Error" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 -msgctxt "@action:button" -msgid "Skip" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 -msgctxt "@action:button" -msgid "Next" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 -msgctxt "@action:button" -msgid "Finish" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 -msgctxt "@action:button" -msgid "Cancel" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 -#, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Skin" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Infill" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Support" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 -msgctxt "@tooltip" -msgid "Travel" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 -msgctxt "@tooltip" -msgid "Other" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 -#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 -msgctxt "@text:window" -msgid "The release notes could not be opened." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

      Oops, Ultimaker Cura has encountered something that doesn't seem right." @@ -490,32 +231,32 @@ msgid "" " " msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 msgctxt "@action:button" msgid "Send crash report to Ultimaker" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190 msgctxt "@label crash message" msgid "" "

      A fatal error has occurred in Cura. Please send us this Crash Report " @@ -525,186 +266,265 @@ msgid "" " " msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 msgctxt "@label" -msgid "Not yet initialized
      " +msgid "Not yet initialized" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "

    • OpenGL Version: {version}
    • " msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
    • OpenGL Vendor: {vendor}
    • " msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
    • OpenGL Renderer: {renderer}
    • " msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:216 +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:531 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#, 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 "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1798 +#, 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 +msgctxt "@info:title" +msgid "Warning" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 +#, 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 +msgctxt "@info:title" +msgid "Error" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 +msgctxt "@info:status" +msgid "Multiplying and placing objects" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 +msgctxt "@info:title" +msgid "Placing Objects" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 +msgctxt "@info:title" +msgid "Placing Object" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 msgctxt "@info" msgid "" "Unable to start a new sign in process. Check if another sign in attempt is " "still active." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 +#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:277 msgctxt "@info" msgid "Unable to reach the Ultimaker account server." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:278 msgctxt "@info:title" msgid "Log-in failed" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 -msgctxt "@message" -msgid "The provided state is not correct." +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 -msgctxt "@message" -msgid "Timeout when authenticating with the account server." +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 +msgctxt "@text:error" +msgid "Failed to load the archive of materials to sync it with printers." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 -msgctxt "@message" -msgid "Please give the required permissions when authorizing this application." +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 +msgctxt "@text:error" +msgid "The response from Digital Factory appears to be corrupted." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 -msgctxt "@message" -msgid "Something unexpected happened when trying to log in, please try again." +#: /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 +msgctxt "@text:error" +msgid "The response from Digital Factory is missing important information." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 -msgctxt "@message" -msgid "Could not read response." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 -msgctxt "@info:status" -msgid "Multiplying and placing objects" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 -msgctxt "@info:title" -msgid "Placing Objects" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 -msgctxt "@info:title" -msgid "Placing Object" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 -msgctxt "@label" -msgid "Nozzle" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 -msgctxt "@info:message Followed by a list of settings." +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218 +msgctxt "@text:error" msgid "" -"Settings have been changed to match the current availability of extruders:" +"Failed to connect to Digital Factory to sync materials with some of the " +"printers." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 -msgctxt "@info:title" -msgid "Settings updated" +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:207 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140 msgctxt "@title:window" msgid "File Already Exists" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:141 #, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "" @@ -712,20 +532,20 @@ msgid "" "overwrite it?" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: /home/trin/Gedeeld/Projects/Cura/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 "" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:163 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "" @@ -733,44 +553,44 @@ msgid "" "failure." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:171 #, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:262 #, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "" @@ -778,51 +598,51 @@ msgid "" "import it." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:369 #, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:483 #, python-brace-format msgctxt "@info:status" msgid "" @@ -830,7 +650,7 @@ msgid "" "definition '{1}'." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:488 #, python-brace-format msgctxt "@info:status" msgid "" @@ -839,201 +659,215 @@ msgid "" "combination that can use this quality type." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: /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 msgctxt "@label" -msgid "Per Model Settings" +msgid "Nozzle" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +msgctxt "@info:message Followed by a list of settings." +msgid "" +"Settings have been changed to match the current availability of extruders:" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 msgctxt "@info:title" -msgid "Backups" +msgid "Settings updated" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:13 -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 -msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 msgctxt "@info:title" -msgid "Saving" +msgid "Extruder(s) Disabled" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 -msgctxt "@info:title" -msgid "File Saved" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" -msgid "Eject" +msgid "Add" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Cancel" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 #, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" +msgctxt "@label" +msgid "Group #{group_nr}" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Close" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Learn more" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 "Safely Remove Hardware" +msgid "3D Model Assistant" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." +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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "" @@ -1042,12 +876,12 @@ msgid "" "instead." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 msgctxt "@info:title" msgid "Open Project File" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "" @@ -1055,20 +889,20 @@ msgid "" "." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:711 #, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "" @@ -1076,95 +910,182 @@ msgid "" "unknown to this version of Ultimaker Cura." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 +#: /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 "" -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 -#: /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" +#: /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/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" +#: /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/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" +#: /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/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:238 +msgctxt "@error:zip" +msgid "Error writing 3mf file." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:283 msgctxt "@info:title" -msgid "Information" +msgid "Failed to save material package information" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:28 +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "" + +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 msgctxt "@message:title" msgid "Slicing failed" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 msgctxt "@message:button" msgid "Report a bug" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:433 #, python-brace-format msgctxt "@info:status" msgid "" @@ -1172,7 +1093,7 @@ msgid "" "errors: {0}" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:460 #, python-brace-format msgctxt "@info:status" msgid "" @@ -1180,13 +1101,13 @@ msgid "" "errors on one or more models: {error_labels}" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:484 #, python-format msgctxt "@info:status" msgid "" @@ -1194,7 +1115,7 @@ msgid "" "%s." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 msgctxt "@info:status" msgid "" "Please review settings and check if your models:\n" @@ -1203,139 +1124,29 @@ msgid "" "- Are not all set as modifier meshes" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 msgctxt "@info:status" -msgid "Connected via USB" +msgid "Processing Layers" msgstr "" -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 -msgctxt "@message" -msgid "Print in Progress" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 msgctxt "@info:title" -msgid "G-code Details" +msgid "Information" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 -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/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 msgctxt "@item:inlistbox" -msgid "G File" +msgid "Cura Profile" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 msgctxt "@info" msgid "Could not access update information." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#: /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 " @@ -1346,308 +1157,492 @@ msgid "" "printer to version {latest_version}." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#: /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/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 msgctxt "@action:button" msgid "How to update" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 -msgctxt "@text" -msgid "Unable to read example data file." +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +#: /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 "Changes detected from your Ultimaker account" +msgid "G-code Details" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" +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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 -msgctxt "@action:button" -msgid "Sync" +#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 msgctxt "@error:not supported" msgid "GCodeWriter does not support non-text mode." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 msgctxt "@info:title" msgid "Simulation View" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 msgctxt "@info:title" msgid "No layers to show" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 msgctxt "@item:inlistbox" msgid "Layer view" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 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." +"The highlighted areas indicate either missing or extraneous surfaces. Fix " +"your model and open it again into Cura." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 msgctxt "@info:title" -msgid "Update your printer" +msgid "Model Errors" msgstr "" -#: /home/clamboo/Desktop/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." +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Solid view" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 +msgctxt "@label" +msgid "Support Blocker" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." +#: /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/clamboo/Desktop/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}." +#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19 +msgctxt "@item:inlistbox" +msgid "COLLADA Digital Asset Exchange" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" +#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23 +msgctxt "@item:inlistbox" +msgid "glTF Binary" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." +#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27 +msgctxt "@item:inlistbox" +msgid "glTF Embedded JSON" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" +#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36 +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" msgstr "" -#: /home/clamboo/Desktop/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." +#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40 +msgctxt "@item:inlistbox" +msgid "Compressed COLLADA Digital Asset Exchange" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +#: /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 "Configure group" +msgid "Level build plate" msgstr "" -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 -msgctxt "@info:title" -msgid "Are you ready for cloud printing?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 msgctxt "@action" -msgid "Get started" +msgid "Select upgrades" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 -msgctxt "@action" -msgid "Learn more" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 msgctxt "@action:button" msgid "Print via cloud" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 msgctxt "@info:status" msgid "Connected via cloud" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 msgctxt "@action:button" msgid "Monitor print" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 +#: /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" @@ -1655,71 +1650,71 @@ msgid_plural "... and {0} others" msgstr[0] "" msgstr[1] "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:266 msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:356 msgctxt "@action:button" msgid "Keep printer configurations" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:361 msgctxt "@action:button" msgid "Remove printers" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 msgctxt "@title:window" msgid "Remove printers?" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 #, python-brace-format msgctxt "@label" msgid "" @@ -1733,7 +1728,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +#: /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 " @@ -1741,442 +1736,471 @@ msgid "" "Are you sure you want to continue?" msgstr "" -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 -msgctxt "@info:title" -msgid "3D Model Assistant" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 #, 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

      " +"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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 +#: /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 "Mesh Type" +msgid "" +"A USB print is in progress, closing Cura will stop this print. Are you sure?" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" +#: /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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" +#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 +#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 msgctxt "@item:inlistbox" -msgid "Infill mesh only" +msgid "X3D File" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 +#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 msgctxt "@item:inlistbox" -msgid "Cutting mesh" +msgid "X-Ray view" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 +#: /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 "Select settings" +msgid "Open" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 +msgctxt "@action:button" +msgid "Open project anyway" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:529 +msgctxt "@action:button" +msgid "Install missing material" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 msgctxt "@button" msgid "Want more?" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 msgctxt "@button" msgid "Backup Now" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 msgctxt "@checkbox:description" msgid "Auto Backup" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44 +#: /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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:64 msgctxt "@button" msgid "Restore" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:93 msgctxt "@dialog:title" msgid "Delete Backup" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 +#: /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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:102 msgctxt "@dialog:title" msgid "Restore Backup" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 +#: /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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 +msgctxt "@backuplist:label" +msgid "Cura Version" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 -msgctxt "@button" -msgid "Sign in" +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 +msgctxt "@backuplist:label" +msgid "Machines" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 +#: /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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 +#: /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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 +#: /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/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 -msgctxt "@label" -msgid "X (Width)" +#: /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/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -msgctxt "@label" -msgid "mm" +#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216 +msgctxt "@option" +msgid "Save Cura project and print file" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 -msgctxt "@label" -msgid "Y (Depth)" +#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 -msgctxt "@label" -msgid "Z (Height)" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 -msgctxt "@label" -msgid "Build plate shape" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 -msgctxt "@label" -msgid "Origin at center" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 -msgctxt "@label" -msgid "Heated bed" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 -msgctxt "@label" -msgid "Heated build volume" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 -msgctxt "@label" -msgid "G-code flavor" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -msgctxt "@label" -msgid "X min" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -msgctxt "@label" -msgid "Y min" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -msgctxt "@label" -msgid "X max" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -msgctxt "@label" -msgid "Y max" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "Gantry Height" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 -msgctxt "@label" -msgid "Nozzle size" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 msgctxt "@title" msgid "Update Firmware" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 +#: /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 " @@ -2184,289 +2208,132 @@ msgid "" "makes your printer work." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 +#: /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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 msgctxt "@action:button" msgid "Automatically upgrade Firmware" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 +#: /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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 +#: /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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93 msgctxt "@title:window" msgid "Select custom firmware" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 msgctxt "@title:window" msgid "Firmware Update" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137 msgctxt "@label" msgid "Updating firmware." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139 msgctxt "@label" msgid "Firmware update completed." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141 msgctxt "@label" msgid "Firmware update failed due to an unknown error." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 msgctxt "@label" msgid "Firmware update failed due to an communication error." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 msgctxt "@label" msgid "Firmware update failed due to an input/output error." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 msgctxt "@label" msgid "Firmware update failed due to missing firmware." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:14 msgctxt "@title:window" -msgid "Open Project" +msgid "Convert Image" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 -msgctxt "@action:ComboBox Update/override existing profile" -msgid "Update existing" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 -msgctxt "@action:ComboBox Save settings in a new profile" -msgid "Create new" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 -msgctxt "@action:title" -msgid "Summary - Cura Project" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 -msgctxt "@info:tooltip" -msgid "How should the conflict in the machine be resolved?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 -msgctxt "@action:label" -msgid "Type" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 -msgctxt "@action:label" -msgid "Printer Group" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 -msgctxt "@info:tooltip" -msgid "How should the conflict in the profile be resolved?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 -msgctxt "@action:label" -msgid "Name" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 -msgctxt "@action:label" -msgid "Intent" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 -msgctxt "@action:label" -msgid "Not in profile" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 -msgctxt "@action:label" -msgid "%1 override" -msgid_plural "%1 overrides" -msgstr[0] "" -msgstr[1] "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 -msgctxt "@action:label" -msgid "Derivative from" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 -msgctxt "@action:label" -msgid "%1, %2 override" -msgid_plural "%1, %2 overrides" -msgstr[0] "" -msgstr[1] "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 -msgctxt "@action:label" -msgid "Material settings" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 -msgctxt "@info:tooltip" -msgid "How should the conflict in the material be resolved?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 -msgctxt "@action:label" -msgid "Setting visibility" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 -msgctxt "@action:label" -msgid "Mode" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 -msgctxt "@action:label" -msgid "Visible settings:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 -msgctxt "@action:label" -msgid "%1 out of %2" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 -msgctxt "@action:warning" -msgid "Loading a project will clear all models on the build plate." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 -msgctxt "@action:button" -msgid "Open" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 -msgctxt "@label" -msgid "Settings" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 -msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "" -msgstr[1] "" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 -msgctxt "@title:window" -msgid "Convert Image..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 -msgctxt "@info:tooltip" -msgid "The maximum distance of each pixel from \"Base.\"" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33 msgctxt "@action:label" msgid "Height (mm)" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." +msgid "The maximum distance of each pixel from \"Base.\"" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 msgctxt "@action:label" msgid "Base (mm)" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate." +msgid "The base height from the build plate in millimeters." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 msgctxt "@action:label" msgid "Width (mm)" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" +msgid "The width in millimeters on the build plate" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 msgctxt "@action:label" msgid "Depth (mm)" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /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 " @@ -2475,35 +2342,34 @@ msgid "" "the generated 3D model." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 -msgctxt "@item:inlistbox" -msgid "Darker is higher" +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:205 +msgctxt "@action:label" +msgid "Color Model" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:224 msgctxt "@item:inlistbox" -msgid "Lighter is higher" +msgid "Linear" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 -msgctxt "@item:inlistbox" -msgid "Linear" +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 +msgctxt "@action:label" +msgid "1mm Transmittance (%)" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 -msgctxt "@item:inlistbox" -msgid "Translucency" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /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 " @@ -2511,44 +2377,727 @@ msgid "" "decreases the contrast in light regions of the image." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 -msgctxt "@action:label" -msgid "1mm Transmittance (%)" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 -msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 msgctxt "@action:label" msgid "Smoothing" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +#: /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 "" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "" + +#: /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 "" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 +msgctxt "@label" +msgid "Y (Depth)" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 +msgctxt "@label" +msgid "Z (Height)" +msgstr "" + +#: /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 "" + +#: /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 "" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217 +msgctxt "@label" +msgid "Y min" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237 +msgctxt "@label" +msgid "X max" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257 +msgctxt "@label" +msgid "Y max" +msgstr "" + +#: /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 "" + +#: /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 "" + +#: /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 +msgctxt "@action" +msgid "Add a script" +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] "" + +#: /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 "" + +#: /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 "" + +#: /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 msgctxt "@title" msgid "Build Plate Leveling" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 msgctxt "@label" msgid "" "To make sure your prints will come out great, you can now adjust your " @@ -2556,7 +3105,7 @@ msgid "" "the different positions that can be adjusted." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 +#: /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 " @@ -2564,696 +3113,32 @@ msgid "" "paper is slightly gripped by the tip of the nozzle." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 msgctxt "@action:button" msgid "Start Build Plate Leveling" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79 msgctxt "@action:button" msgid "Move to Next Position" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -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/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" -msgid "Marketplace" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -msgctxt "@info" -msgid "You will need to restart Cura before changes in packages have effect." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -msgctxt "@action:button" -msgid "Installed" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 msgctxt "@label" -msgid "Premium" +msgid "Please select any upgrades made to this Ultimaker Original" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 -msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 msgctxt "@label" -msgid "Search materials" +msgid "Heated Build Plate (official kit or self-built)" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to install or update" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 -msgctxt "@title:tab" -msgid "Plugins" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 -msgctxt "@title:tab" -msgid "Materials" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 -msgctxt "@label" -msgid "Will install upon restarting" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Downgrade" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Contributions" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 -msgctxt "@label" -msgid "Community Plugins" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 -msgctxt "@label" -msgid "Generic Materials" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 -msgctxt "@label" -msgid "Website" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 -msgctxt "@label" -msgid "Email" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -msgctxt "@description" -msgid "" -"Please sign in to get verified plugins and materials for Ultimaker Cura " -"Enterprise" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 -msgctxt "@label" -msgid "Version" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 -msgctxt "@label" -msgid "Last updated" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 -msgctxt "@label" -msgid "Brand" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 -msgctxt "@label" -msgid "Downloads" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 -msgctxt "@info" -msgid "No material has been installed." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -msgctxt "@info" -msgid "" -"Could not connect to the Cura Package database. Please check your connection." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 -msgctxt "@title" -msgid "Changes from your account" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -msgctxt "@button" -msgid "Dismiss" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 -msgctxt "@button" -msgid "Next" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 -msgctxt "@label" -msgid "" -"The following packages can not be installed because of an incompatible Cura " -"version:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -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 "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -msgctxt "@label" -msgid "Glass" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" -msgid "Loading..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 -msgctxt "@label" -msgid "Untitled" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 -msgctxt "@title:window" -msgid "Print over network" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 -msgctxt "@action:button" -msgid "Print" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 -msgctxt "@label" -msgid "Printer selection" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -msgctxt "@label" -msgid "" -"The printer %1 is assigned, but the job contains an unknown material " -"configuration." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -msgctxt "@label" -msgid "" -"Override will use the specified settings with the existing printer " -"configuration. This may result in a failed print." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Finished" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Aborted" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Failed" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Paused" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 -msgctxt "@label:status" -msgid "Action required" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44 msgctxt "@title:window" msgid "Connect to Networked Printer" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +#: /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 " @@ -3263,776 +3148,1194 @@ msgid "" "printer." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 msgctxt "@label" msgid "Select your printer from the list below:" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71 msgctxt "@action:button" msgid "Edit" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 msgctxt "@action:button" msgid "Refresh" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 msgctxt "@action:button" msgid "Connect" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 msgctxt "@title:window" msgid "Invalid IP address" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 msgctxt "@title:window" msgid "Printer Address" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 msgctxt "@label" msgid "Delete" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 msgctxt "@label" msgid "Pausing..." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 msgctxt "@label" msgid "Resuming..." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 msgctxt "@label" msgid "Aborting..." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 msgctxt "@label" msgid "Abort" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 msgctxt "@window:title" msgid "Move print job to top" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:152 msgctxt "@window:title" msgid "Delete print job" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 +#: /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/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /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 "" -"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." +"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/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 -msgctxt "@info" -msgid "Please connect your printer to the network." +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:335 +msgctxt "@label:status" +msgid "Loading..." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 -msgctxt "@label link to technical assistance" -msgid "View user manuals online" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:339 +msgctxt "@label:status" +msgid "Unavailable" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 -msgctxt "@info" -msgid "In order to monitor your print from Cura, please connect the printer." +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:343 +msgctxt "@label:status" +msgid "Unreachable" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 -msgctxt "@info:tooltip" -msgid "" -"Some things could be problematic in this print. Click to see tips for " -"adjustment." +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:347 +msgctxt "@label:status" +msgid "Idle" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" +#: /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/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 +msgctxt "@label:status" +msgid "Printing" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:397 msgctxt "@label" -msgid "Object list" +msgid "Untitled" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 +#: /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 "Marketplace" +msgid "Details" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126 +msgctxt "@label" +msgid "Unavailable printer" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128 +msgctxt "@label" +msgid "First available" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" +#: /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/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" +#: /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/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 +msgctxt "@label:status" +msgid "Aborting..." msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" +#: /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/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 +msgctxt "@label:status" +msgid "Pausing..." msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 +#: /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 "" + +#: /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 "New project" +msgid "Print over network" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 -msgctxt "@info:question" -msgid "" -"Are you sure you want to start a new project? This will clear the build " -"plate and any unsaved settings." +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53 +msgctxt "@action:button" +msgid "Print" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 -msgctxt "@label:PrintjobStatus" -msgid "Slicing..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 -msgctxt "@label:PrintjobStatus" -msgid "Unable to slice" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Processing" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Slice" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81 msgctxt "@label" -msgid "Start the slicing process" +msgid "Printer selection" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 -msgctxt "@button" -msgid "Cancel" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24 +msgctxt "@action:button" +msgid "Sign in" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 -msgctxt "@label" -msgid "Time estimation" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 -msgctxt "@label" -msgid "Material estimation" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 -msgctxt "@label" -msgid "No time estimation available" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 -msgctxt "@label" -msgid "No cost estimation available" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 -msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 -msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 -msgctxt "@label" -msgid "No printers found in your account?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 -msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 -msgctxt "@label" -msgid "Add printer by IP address" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 -msgctxt "@label" -msgid "Could not connect to device." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 -msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 -msgctxt "@label" -msgid "The printer at this address has not responded yet." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 -msgctxt "@button" -msgid "Back" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" -msgid "Connect" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 -msgctxt "@text" -msgid "" -"Please follow these steps to set up Ultimaker Cura. This will only take a " -"few moments." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:19 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 msgctxt "@label" msgid "Sign in to the Ultimaker platform" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" +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 "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" -msgid "Skip" +msgid "Create a free Ultimaker account" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 msgctxt "@label" -msgid "Manufacturer" +msgid "Checking..." msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 msgctxt "@label" -msgid "Profile author" +msgid "Account synced" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 msgctxt "@label" -msgid "Printer name" +msgid "Something went wrong..." msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 -msgctxt "@text" -msgid "Please name your printer" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 +msgctxt "@button" +msgid "Install pending updates" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" -msgid "There is no printer found over your network." +msgid "No time estimation available" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 msgctxt "@label" -msgid "Refresh" +msgid "No cost estimation available" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +msgctxt "@button" +msgid "Preview" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" -msgid "Add printer by IP" +msgid "Time estimation" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107 msgctxt "@label" -msgid "Add cloud printer" +msgid "Material estimation" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +msgctxt "@label:PrintjobStatus" +msgid "Slicing..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Processing" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +msgctxt "@button" +msgid "Slice" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:115 msgctxt "@label" -msgid "Troubleshooting" +msgid "Start the slicing process" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:132 +msgctxt "@button" +msgid "Cancel" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -msgctxt "@text" -msgid "" -"Ultimaker Cura collects anonymous data to improve print quality and user " -"experience, including:" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 +msgctxt "@action:inmenu" +msgid "Toggle Full Screen" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 +msgctxt "@action:inmenu" +msgid "Exit Full Screen" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 +msgctxt "@action:inmenu menubar:edit" +msgid "&Undo" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 +msgctxt "@action:inmenu menubar:edit" +msgid "&Redo" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -msgctxt "@text" -msgid "" -"Data collected by Ultimaker Cura will not contain any personal information." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 +msgctxt "@action:inmenu menubar:file" +msgid "&Quit" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 +msgctxt "@action:inmenu menubar:view" +msgid "3D View" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 -msgctxt "@label" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 +msgctxt "@action:inmenu menubar:view" +msgid "Front View" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 +msgctxt "@action:inmenu menubar:view" +msgid "Top View" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 +msgctxt "@action:inmenu menubar:view" +msgid "Bottom View" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "Right Side View" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 +msgctxt "@action:inmenu" +msgid "Configure Cura..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 +msgctxt "@action:inmenu menubar:printer" +msgid "&Add Printer..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 +msgctxt "@action:inmenu menubar:printer" +msgid "Manage Pr&inters..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 +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." +msgid "Add more materials from Marketplace" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 +msgctxt "@action:inmenu menubar:profile" +msgid "&Update profile with current settings/overrides" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 +msgctxt "@action:inmenu menubar:profile" +msgid "&Discard current changes" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 +msgctxt "@action:inmenu menubar:profile" +msgid "&Create profile from current settings/overrides..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 +msgctxt "@action:inmenu menubar:profile" +msgid "Manage Profiles..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 +msgctxt "@action:inmenu menubar:help" +msgid "Show Online &Documentation" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 +msgctxt "@action:inmenu menubar:help" +msgid "Report a &Bug" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 +msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 +msgctxt "@action:inmenu menubar:help" +msgid "About..." msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 +msgctxt "@action:inmenu menubar:edit" +msgid "Delete Selected" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 +msgctxt "@action:inmenu menubar:edit" +msgid "Center Selected" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 +msgctxt "@action:inmenu menubar:edit" +msgid "Multiply Selected" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 +msgctxt "@action:inmenu" +msgid "Delete Model" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 +msgctxt "@action:inmenu" +msgid "Ce&nter Model on Platform" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 +msgctxt "@action:inmenu menubar:edit" +msgid "&Group Models" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 +msgctxt "@action:inmenu menubar:edit" +msgid "Ungroup Models" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 +msgctxt "@action:inmenu menubar:edit" +msgid "&Merge Models" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 +msgctxt "@action:inmenu" +msgid "&Multiply Model..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 +msgctxt "@action:inmenu menubar:edit" +msgid "Clear Build Plate" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 +msgctxt "@action:inmenu menubar:file" +msgid "Reload All Models" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Positions" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Transformations" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 +msgctxt "@action:inmenu menubar:file" +msgid "&Open File(s)..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 +msgctxt "@action:inmenu menubar:file" +msgid "&New Project..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 +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 +msgctxt "@action:menu" +msgid "Configure setting visibility..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Extend Ultimaker Cura with plugins and material profiles." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +msgctxt "@tooltip:button" +msgid "Become a 3D printing expert with Ultimaker e-learning." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +msgctxt "@tooltip:button" +msgid "Learn how to get started with Ultimaker Cura." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 +msgctxt "@label" +msgid "Hex" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 +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 +msgctxt "@title:tab" +msgid "General" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +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 +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 +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 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +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 +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 +msgctxt "@title:window" +msgid "Open file(s)" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +msgctxt "@window:title" +msgid "Install Package" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +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 "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:831 +msgctxt "@title:window" +msgid "Add Printer" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +msgctxt "@title:window" +msgid "What's New" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 msgctxt "@label" msgid "version: %1" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 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 "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" msgid "Graphical user interface" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 msgctxt "@label" msgid "Application framework" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 msgctxt "@label" msgid "G-code generator" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 msgctxt "@label" msgid "Interprocess communication library" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" -msgid "Programming language" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" -msgid "GUI framework" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" -msgid "GUI framework bindings" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" -msgid "C/C++ Binding library" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 -msgctxt "@label" -msgid "Data interchange format" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 -msgctxt "@label" -msgid "Support library for scientific computing" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" -msgid "Support library for faster math" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" -msgid "Support library for handling STL files" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" -msgid "Support library for handling planar objects" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" -msgid "Support library for handling triangular meshes" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" -msgid "Support library for handling 3MF files" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 -msgctxt "@label" -msgid "Support library for file metadata and streaming" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 -msgctxt "@label" -msgid "Serial communication library" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 -msgctxt "@label" -msgid "ZeroConf discovery library" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" -msgid "Polygon clipping library" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@Label" -msgid "Static type checker for Python" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@Label" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 -msgctxt "@Label" -msgid "Python Error tracking library" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 -msgctxt "@label" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 msgctxt "@label" msgid "Python bindings for libnest2d" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 msgctxt "@label" -msgid "Support library for system keyring access" +msgid "Polygon packing library, developed by Prusa Research" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 msgctxt "@label" -msgid "Python extensions for Microsoft Windows" +msgid "Support library for handling 3MF files" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 +msgctxt "@label" +msgid "Support library for file metadata and streaming" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 +msgctxt "@label" +msgid "Programming language" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +msgctxt "@label" +msgid "GUI framework" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label" +msgid "GUI framework bindings" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label" +msgid "C/C++ Binding library" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label" +msgid "Data interchange format" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 msgctxt "@label" msgid "Font" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 msgctxt "@label" -msgid "SVG icons" +msgid "Polygon clipping library" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +msgctxt "@label" +msgid "JSON parser" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label" +msgid "Utility functions, including an image loader" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label" +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" +msgid "Root Certificates for validating SSL trustworthiness" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +msgctxt "@label" +msgid "Compatibility between Python 2 and 3" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label" +msgid "Support library for system keyring access" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +msgctxt "@label" +msgid "Support library for faster math" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +msgctxt "@label" +msgid "Support library for handling STL files" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:166 +msgctxt "@label" +msgid "Python bindings for Clipper" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label" +msgid "Serial communication library" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label" +msgid "Support library for scientific computing" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:169 +msgctxt "@Label" +msgid "Python Error tracking library" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label" +msgid "Support library for handling triangular meshes" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:171 +msgctxt "@label" +msgid "ZeroConf discovery library" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 +msgctxt "@label" +msgid "Universal build system configuration" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 +msgctxt "@label" +msgid "Dependency and package manager" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label" +msgid "Packaging Python-applications" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 msgctxt "@label" msgid "Linux cross-distribution application deployment" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 -msgctxt "@title:window" -msgid "Open file(s)" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:178 +msgctxt "@label" +msgid "Generating Windows installers" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:90 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +msgctxt "@action:button" +msgid "Open as project" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +msgctxt "@action:button" +msgid "Import models" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:column" +msgid "Profile settings" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +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 +msgctxt "@option:discardOrKeep" +msgid "Always ask me this" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +msgctxt "@option:discardOrKeep" +msgid "Discard and never ask again" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:106 +msgctxt "@option:discardOrKeep" +msgid "Keep and never ask again" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:136 +msgctxt "@action:button" +msgid "Discard changes" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +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 " @@ -4040,202 +4343,1469 @@ msgid "" "import models from those files. Would you like to proceed?" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64 msgctxt "@action:button" msgid "Import all as models" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 msgctxt "@title:window" msgid "Save Project" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:175 msgctxt "@action:label" msgid "Extruder %1" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 msgctxt "@action:label" msgid "%1 & material" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 msgctxt "@action:label" msgid "Material" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 msgctxt "@action:label" msgid "Don't show project summary on save again" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:296 msgctxt "@action:button" msgid "Save" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 +#: /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 +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 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87 msgctxt "@title:window" -msgid "Discard or Keep changes" +msgid "New project" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 -msgctxt "@text:window, %1 is a profile name" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:88 +msgctxt "@info:question" 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'." +"Are you sure you want to start a new project? This will clear the build " +"plate and any unsaved settings." msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 -msgctxt "@title:column" -msgid "Profile settings" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:135 +msgctxt "@action:button" +msgid "Marketplace" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 -msgctxt "@title:column" -msgid "Current changes" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +msgctxt "@header" +msgid "Configurations" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 -msgctxt "@option:discardOrKeep" +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Marketplace" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@label" +msgid "Select configuration" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 +msgctxt "@label" +msgid "Configurations" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Enabled" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +msgctxt "@label" +msgid "Material" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Number of Copies" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59 +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:MonitorStatus" +msgid "Lost connection with the printer" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:142 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:150 +msgctxt "@label:MonitorStatus" +msgid "Please remove the print" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:318 +msgctxt "@label" +msgid "Abort Print" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Is printed as support." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@action:button" +msgid "Defaults" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +msgctxt "@label" +msgid "Interface" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +msgctxt "@heading" +msgid "-- incomplete --" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +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." +msgid "Theme*:" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +msgctxt "@info:tooltip" +msgid "Slice automatically when changing settings." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:328 +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." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +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 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +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 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +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 +msgctxt "@action:button" +msgid "Center camera when item is selected" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:411 +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 +msgctxt "@action:button" +msgid "Invert the direction of camera zoom." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +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 +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 +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:463 +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 +msgctxt "@option:check" +msgid "Ensure models are kept apart" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:477 +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 +msgctxt "@option:check" +msgid "Automatically drop models to the build plate" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:494 +msgctxt "@info:tooltip" +msgid "Show caution message in g-code reader." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:503 +msgctxt "@option:check" +msgid "Caution message in g-code reader" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:511 +msgctxt "@info:tooltip" +msgid "Should layer be forced into compatibility mode?" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:516 +msgctxt "@option:check" +msgid "Force layer view compatibility mode (restart required)" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:526 +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 +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:541 +msgctxt "@info:tooltip" +msgid "What type of camera rendering should be used?" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +msgid "Perspective" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +msgid "Orthographic" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +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 +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619 +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 +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 +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 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +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 +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:665 +msgctxt "@info:tooltip" +msgid "Should models be selected after they are loaded?" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:680 +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 +msgctxt "@option:check" +msgid "Add machine prefix to job name" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:695 +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 +msgctxt "@option:check" +msgid "Show summary dialog when saving project" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:709 +msgctxt "@info:tooltip" +msgid "Default behavior when opening a project file" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:717 +msgctxt "@window:text" +msgid "Default behavior when opening a project file: " +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:732 +msgctxt "@option:openProject" msgid "Always ask me this" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 -msgctxt "@option:discardOrKeep" -msgid "Discard and never ask again" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +msgctxt "@option:openProject" +msgid "Always open as a project" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 -msgctxt "@option:discardOrKeep" -msgid "Keep and never ask again" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 +msgctxt "@option:openProject" +msgid "Always import models" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 -msgctxt "@action:button" -msgid "Discard changes" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 -msgctxt "@action:button" -msgid "Keep changes" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 -msgctxt "@title:window" -msgid "Open project file" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 -msgctxt "@text:window" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +msgctxt "@info:tooltip" msgid "" -"This is a Cura project file. Would you like to open it as a project or " -"import the models from it?" +"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/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:780 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:36 +msgctxt "@label" +msgid "Profiles" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +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 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:801 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:835 +msgctxt "@label" +msgid "Privacy" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +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 "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:876 +msgctxt "@label" +msgid "Updates" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +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 +msgctxt "@option:check" +msgid "Check for updates on start" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:904 +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 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +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 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +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 +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:50 msgctxt "@action:button" -msgid "Open as project" +msgid "Add New" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 +#: /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 msgctxt "@action:button" -msgid "Import models" +msgid "Activate" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:146 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:331 +msgctxt "@action:button" +msgid "Rename" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:72 msgctxt "@label" -msgid "Active print" +msgid "Materials compatible with active printer:" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:78 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Import" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@title:window" +msgid "Import Material" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Material" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Why do I need to sync material profiles?" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 +msgctxt "@button" +msgid "Start" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +msgctxt "@title:header" +msgid "Sign in" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +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 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +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 +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 +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 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +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 +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 +msgctxt "@button" +msgid "Refresh List" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +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 +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 +msgctxt "@button" +msgid "Sync" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +msgctxt "@button" +msgid "Syncing" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +msgctxt "@title:header" +msgid "No printers found" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +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 +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 +msgctxt "@button" +msgid "Refresh" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +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." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:663 +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:664 +msgctxt "@text" +msgid "Save the .umm file on a USB stick." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:665 +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 +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 +msgctxt "@button" +msgid "Back" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +msgctxt "@button" +msgid "Export material archive" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 msgctxt "@label" -msgid "Job Name" +msgid "Display Name" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171 msgctxt "@label" -msgid "Printing Time" +msgid "Brand" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:190 msgctxt "@label" -msgid "Estimated time left" +msgid "Material Type" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 +msgctxt "@label" +msgid "Color" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Properties" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:286 +msgctxt "@label" +msgid "Density" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:319 +msgctxt "@label" +msgid "Diameter" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Filament weight" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Cost per Meter" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Unlink Material" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:485 +msgctxt "@label" +msgid "Description" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Print settings" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:tooltip" +msgid "Create new profile from current settings/overrides" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Update profile." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:label" +msgid "Your current settings match the selected profile." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:175 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +msgctxt "@title:window" +msgid "Create Profile" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:382 +msgctxt "@title:window" +msgid "Duplicate Profile" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51 +#: /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/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56 +#: /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/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 +#: /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/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:235 msgctxt "@button" msgid "Add printer" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 msgctxt "@button" msgid "Manage printers" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156 msgctxt "@label" -msgid "Connected printers" +msgid "Active print" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 msgctxt "@label" -msgid "Preset printers" +msgid "Job Name" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 msgctxt "@label" -msgid "Print settings" +msgid "Printing Time" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -msgctxt "@label shown when we load a Gcode file" -msgid "Print setup disabled. G-code file can not be modified." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:180 +msgctxt "@label" +msgid "Estimated time left" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 msgctxt "@label" msgid "Profile" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the " @@ -4244,1825 +5814,139 @@ msgid "" "Click to open the profile manager." msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 msgctxt "@label:header" msgid "Custom profiles" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -msgctxt "@action:button" -msgid "Discard current changes" +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:142 msgctxt "@button" msgid "Recommended" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:156 msgctxt "@button" msgid "Custom" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 msgctxt "@label:Should be short" msgid "On" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 msgctxt "@label:Should be short" msgid "Off" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 msgctxt "@label" msgid "Experimental" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 -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] "" -msgstr[1] "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 -msgctxt "@label" -msgid "Profiles" +#: /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/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 -msgctxt "@tooltip" -msgid "" -"You have modified some profile settings. If you want to change these go to " -"custom mode." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +msgctxt "@info" +msgid "custom profile is overriding some settings." msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 -msgctxt "@label" -msgid "Support" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 +msgctxt "@info" +msgid "Some settings were changed." msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 -msgctxt "@label" -msgid "" -"Generate structures to support parts of the model which have overhangs. " -"Without these structures, such parts would collapse during printing." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 -msgctxt "@label" -msgid "Gradual infill" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 -msgctxt "@label" -msgid "" -"Gradual infill will gradually increase the amount of infill towards the top." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 msgctxt "@label" msgid "Adhesion" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 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/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:198 msgctxt "@label" -msgid "Print Selected Model With:" -msgid_plural "Print Selected Models With:" -msgstr[0] "" -msgstr[1] "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "" -msgstr[1] "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" +msgid "Gradual infill" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 -msgctxt "@tooltip" -msgid "" -"The configuration of this extruder is not allowed, and prohibits slicing." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 -msgctxt "@tooltip" -msgid "There are no profiles matching the configuration of this extruder." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 -msgctxt "@label" -msgid "Select configuration" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 -msgctxt "@label" -msgid "Configurations" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:236 msgctxt "@label" msgid "" -"The configurations are not available because the printer is disconnected." +"Gradual infill will gradually increase the amount of infill towards the top." msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:26 +msgctxt "@label" +msgid "Resolution" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +msgctxt "@label" +msgid "Support" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 msgctxt "@label" msgid "" -"This configuration is not available because %1 is not recognized. Please " -"visit %2 to download the correct material profile." +"Generate structures to support parts of the model which have overhangs. " +"Without these structures, such parts would collapse during printing." msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +msgctxt "@error" +msgid "Configuration not supported" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 -msgctxt "@label" -msgid "View type" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 -msgctxt "@label" -msgid "Is printed as support." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "" -msgstr[1] "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 -msgctxt "@action:button" -msgid "Activate" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 -msgctxt "@action:button" -msgid "Rename" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -msgctxt "@action:button" -msgid "Import" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -msgctxt "@action:button" -msgid "Export" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -msgctxt "@action:label" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39 +msgctxt "@message:text %1 is the name the printer uses for 'nozzle'." msgid "" -"This profile uses the defaults specified by the printer, so it has no " -"settings/overrides in the list below." +"No profiles are available for the selected material/%1 configuration. Please " +"change your configuration." msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 +msgctxt "@button:label" +msgid "Learn more" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 -msgctxt "@title:tab" -msgid "General" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 -msgctxt "@label" -msgid "Interface" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 -msgctxt "@label" -msgid "Currency:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 -msgctxt "@label" -msgid "Theme:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 -msgctxt "@label" -msgid "" -"You will need to restart the application for these changes to have effect." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 -msgctxt "@info:tooltip" -msgid "" -"Highlight unsupported areas of the model in red. Without support these areas " -"will not print properly." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 -msgctxt "@info:tooltip" -msgid "" -"Moves the camera so the model is in the center of the view when a model is " -"selected" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -msgctxt "@info:tooltip" -msgid "" -"Zooming towards the mouse is not supported in the orthographic perspective." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 -msgctxt "@info:tooltip" -msgid "" -"Should models on the platform be moved so that they no longer intersect?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved down to touch the build plate?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 -msgid "Perspective" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 -msgid "Orthographic" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 -msgctxt "@info:tooltip" -msgid "" -"Should opening files from the desktop or external applications open in the " -"same instance of Cura?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 -msgctxt "@info:tooltip" -msgid "" -"Should the build plate be cleared before loading a new model in the single " -"instance of Cura?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 -msgctxt "@option:check" -msgid "Clear buildplate before loading model into the single instance" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 -msgctxt "@info:tooltip" -msgid "Should models be scaled to the build volume if they are too large?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 -msgctxt "@info:tooltip" -msgid "" -"Should a prefix based on the printer name be added to the print job name " -"automatically?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 -msgctxt "@window:text" -msgid "" -"Default behavior for changed setting values when switching to a different " -"profile: " -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 -msgctxt "@label" -msgid "Privacy" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 -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 "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 -msgctxt "@action:button" -msgid "More information" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 -msgctxt "@label" -msgid "Updates" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 -msgctxt "@info:tooltip" -msgid "Should Cura check for updates when the program is started?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 -msgctxt "@info:tooltip" -msgid "When checking for updates, only check for stable releases." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 -msgctxt "@option:radio" -msgid "Stable releases only" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 -msgctxt "@info:tooltip" -msgid "When checking for updates, check for both stable and for beta releases." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 -msgctxt "@option:radio" -msgid "Stable and Beta releases" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 -msgctxt "@option:check" -msgid "Get notifications for plugin updates" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -msgctxt "@label" -msgid "This material is linked to %1 and shares some of its properties." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "" -"Could not import material %1: %2" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "" -"Failed to export material to %1: %2" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 -msgctxt "@title:window" -msgid "Sync materials with printers" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 -msgctxt "@title:header" -msgid "Sync materials with printers" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 -msgctxt "@text" -msgid "" -"Following a few simple steps, you will be able to synchronize all your " -"material profiles with your printers." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 -msgctxt "@button" -msgid "Start" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 -msgctxt "@button" -msgid "Why do I need to sync material profiles?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 -msgctxt "@title:header" -msgid "Sign in" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 -msgctxt "@button" -msgid "Sync materials with USB" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 -msgctxt "@title:header" -msgid "The following printers will receive the new material profiles:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 -msgctxt "@title:header" -msgid "Something went wrong when sending the materials to the printers." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 -msgctxt "@title:header" -msgid "Material profiles successfully synced with the following printers:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 -msgctxt "@button" -msgid "Troubleshooting" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 -msgctxt "@text Asking the user whether printers are missing in a list." -msgid "Printers missing?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 -msgctxt "@text" -msgid "" -"Make sure all your printers are turned ON and connected to Digital Factory." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 -msgctxt "@button" -msgid "Refresh List" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 -msgctxt "@button" -msgid "Try again" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Done" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 -msgctxt "@button" -msgid "Sync" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 -msgctxt "@button" -msgid "Syncing" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 -msgctxt "@title:header" -msgid "No printers found" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 -msgctxt "@button" -msgid "Learn how to connect your printer to Digital Factory" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 -msgctxt "@button" -msgid "Refresh" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 -msgctxt "@title:header" -msgid "Sync material profiles via USB" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 -msgctxt "@text" -msgid "Click the export material archive button." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 -msgctxt "@text" -msgid "Save the .umm file on a USB stick." -msgstr "" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 -msgctxt "@button" -msgid "How to load new material profiles to my printer" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Export material archive" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 -msgctxt "@title:tab" -msgid "Printers" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 msgctxt "@title:column" msgid "Setting" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 msgctxt "@title:column" msgid "Profile" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 msgctxt "@title:column" msgid "Current" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:39 +msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/SearchBar.qml:17 +msgctxt "@placeholder" +msgid "Search" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 -msgctxt "@label:button" -msgid "My printers" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 -msgctxt "@tooltip:button" -msgid "Monitor printers in Ultimaker Digital Factory." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 -msgctxt "@tooltip:button" -msgid "Create print projects in Digital Library." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 -msgctxt "@label:button" -msgid "Print jobs" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 -msgctxt "@tooltip:button" -msgid "Monitor print jobs and reprint from your print history." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 -msgctxt "@tooltip:button" -msgid "Extend Ultimaker Cura with plugins and material profiles." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 -msgctxt "@tooltip:button" -msgid "Become a 3D printing expert with Ultimaker e-learning." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 -msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 -msgctxt "@tooltip:button" -msgid "Learn how to get started with Ultimaker Cura." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 -msgctxt "@label:button" -msgid "Ask a question" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 -msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 -msgctxt "@label:button" -msgid "Report a bug" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 -msgctxt "@tooltip:button" -msgid "Let developers know that something is going wrong." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 -msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -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/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 -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 "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 -msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 -msgctxt "@button" -msgid "Sign Out" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 -msgctxt "@label" -msgid "Checking..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 -msgctxt "@label" -msgid "Account synced" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 -msgctxt "@label" -msgid "Something went wrong..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 -msgctxt "@button" -msgid "Install pending updates" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 -msgctxt "@button" -msgid "Check for account updates" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 -msgctxt "@label" -msgid "No items to select from" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 -msgctxt "@action:inmenu" -msgid "Toggle Full Screen" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 -msgctxt "@action:inmenu" -msgid "Exit Full Screen" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 -msgctxt "@action:inmenu menubar:edit" -msgid "&Undo" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 -msgctxt "@action:inmenu menubar:edit" -msgid "&Redo" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 -msgctxt "@action:inmenu menubar:file" -msgid "&Quit" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 -msgctxt "@action:inmenu menubar:view" -msgid "3D View" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 -msgctxt "@action:inmenu menubar:view" -msgid "Front View" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 -msgctxt "@action:inmenu menubar:view" -msgid "Top View" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 -msgctxt "@action:inmenu menubar:view" -msgid "Bottom View" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 -msgctxt "@action:inmenu menubar:view" -msgid "Left Side View" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 -msgctxt "@action:inmenu menubar:view" -msgid "Right Side View" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 -msgctxt "@action:inmenu" -msgid "Configure Cura..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 -msgctxt "@action:inmenu menubar:printer" -msgid "&Add Printer..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 -msgctxt "@action:inmenu menubar:printer" -msgid "Manage Pr&inters..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 -msgctxt "@action:inmenu" -msgid "Manage Materials..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu" -msgid "Add more materials from Marketplace" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 -msgctxt "@action:inmenu menubar:profile" -msgid "&Update profile with current settings/overrides" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 -msgctxt "@action:inmenu menubar:profile" -msgid "&Discard current changes" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 -msgctxt "@action:inmenu menubar:profile" -msgid "&Create profile from current settings/overrides..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 -msgctxt "@action:inmenu menubar:profile" -msgid "Manage Profiles..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 -msgctxt "@action:inmenu menubar:help" -msgid "Show Online &Documentation" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 -msgctxt "@action:inmenu menubar:help" -msgid "Report a &Bug" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 -msgctxt "@action:inmenu menubar:help" -msgid "What's New" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 -msgctxt "@action:inmenu menubar:help" -msgid "About..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 -msgctxt "@action:inmenu menubar:edit" -msgid "Delete Selected" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 -msgctxt "@action:inmenu menubar:edit" -msgid "Center Selected" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 -msgctxt "@action:inmenu menubar:edit" -msgid "Multiply Selected" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 -msgctxt "@action:inmenu" -msgid "Delete Model" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 -msgctxt "@action:inmenu" -msgid "Ce&nter Model on Platform" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 -msgctxt "@action:inmenu menubar:edit" -msgid "&Group Models" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 -msgctxt "@action:inmenu menubar:edit" -msgid "Ungroup Models" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 -msgctxt "@action:inmenu menubar:edit" -msgid "&Merge Models" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 -msgctxt "@action:inmenu" -msgid "&Multiply Model..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 -msgctxt "@action:inmenu menubar:edit" -msgid "Select All Models" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 -msgctxt "@action:inmenu menubar:edit" -msgid "Clear Build Plate" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 -msgctxt "@action:inmenu menubar:file" -msgid "Reload All Models" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange Selection" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Positions" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Transformations" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 -msgctxt "@action:inmenu menubar:file" -msgid "&Open File(s)..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 -msgctxt "@action:inmenu menubar:file" -msgid "&New Project..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 -msgctxt "@action:inmenu menubar:help" -msgid "Show Configuration Folder" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 -msgctxt "@action:menu" -msgid "Configure setting visibility..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 -msgctxt "@label" -msgid "" -"This setting is not used because all the settings that it influences are " -"overridden." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 -msgctxt "@label Header for list of settings." -msgid "Affects" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 -msgctxt "@label Header for list of settings." -msgid "Affected By" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 -msgctxt "@label" -msgid "" -"This setting is always shared between all extruders. Changing it here will " -"change the value for all extruders." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 -msgctxt "@label" -msgid "This setting is resolved from conflicting extruder-specific values:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 -msgctxt "@label" -msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 -msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value " -"set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 -msgctxt "@label:textbox" -msgid "Search settings" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 -msgctxt "@action:menu" -msgid "Copy value to all extruders" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 -msgctxt "@action:menu" -msgid "Copy all changed values to all extruders" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 -msgctxt "@action:menu" -msgid "Hide this setting" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 -msgctxt "@action:menu" -msgid "Don't show this setting" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 -msgctxt "@action:menu" -msgid "Keep this setting visible" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated " @@ -6071,146 +5955,365 @@ msgid "" "Click to make these settings visible." msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 -msgctxt "@title:tab" -msgid "Settings" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 -msgctxt "@label %1 is the application name" -msgid "Are you sure you want to exit %1?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 -msgctxt "@window:title" -msgid "Install Package" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 -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." +"This setting is not used because all the settings that it influences are " +"overridden." msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 -msgctxt "@title:window" -msgid "Add Printer" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +msgctxt "@label Header for list of settings." +msgid "Affects" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 -msgctxt "@title:window" +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "This setting is resolved from conflicting extruder-specific values:" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +msgctxt "@label" +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:334 +msgctxt "@label" +msgid "" +"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 +msgctxt "@label:textbox" +msgid "Search settings" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:menu" +msgid "Copy all changed values to all extruders" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:menu" +msgid "Don't show this setting" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:tooltip" +msgid "3D View" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +msgctxt "@info:tooltip" +msgid "Front View" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Add printer manually" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +msgctxt "@label" +msgid "Manufacturer" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 +msgctxt "@label" +msgid "Profile author" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 +msgctxt "@label" +msgid "Printer name" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 +msgctxt "@label" +msgid "Refresh" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 +msgctxt "@button" +msgid "Add" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Can't connect to your Ultimaker printer?" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Connect" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +msgctxt "@label" +msgid "Release Notes" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:175 +msgctxt "@text" +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 +msgctxt "@button" +msgid "Skip" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +msgctxt "@text" +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 +msgctxt "@label" +msgid "Empty" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +msgctxt "@label" +msgid "User Agreement" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" msgid "What's New" msgstr "" -#: PerObjectSettingsTool/plugin.json -msgctxt "description" -msgid "Provides the Per Model Settings." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:18 +msgctxt "@label" +msgid "No items to select from" msgstr "" -#: PerObjectSettingsTool/plugin.json -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "" - -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "" - -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "" - -#: X3DReader/plugin.json -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "" - -#: X3DReader/plugin.json -msgctxt "name" -msgid "X3D Reader" -msgstr "" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "" - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "" - -#: MachineSettingsAction/plugin.json +#: ModelChecker/plugin.json msgctxt "description" msgid "" -"Provides a way to change machine settings (such as build volume, nozzle " -"size, etc.)." +"Checks models and print configuration for possible printing issues and give " +"suggestions." msgstr "" -#: MachineSettingsAction/plugin.json +#: ModelChecker/plugin.json msgctxt "name" -msgid "Machine Settings Action" -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 "" - -#: 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 "" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "" - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -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" +msgid "Model Checker" msgstr "" #: 3MFReader/plugin.json @@ -6223,64 +6326,14 @@ msgctxt "name" msgid "3MF Reader" msgstr "" -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." +msgid "Provides support for writing 3MF files." msgstr "" -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "name" -msgid "UFP Writer" -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 "" - -#: 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 "" - -#: PreviewStage/plugin.json -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "" - -#: PreviewStage/plugin.json -msgctxt "name" -msgid "Preview Stage" -msgstr "" - -#: XRayView/plugin.json -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "" - -#: XRayView/plugin.json -msgctxt "name" -msgid "X-Ray View" -msgstr "" - -#: CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "" - -#: CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" +msgid "3MF Writer" msgstr "" #: AMFReader/plugin.json @@ -6293,24 +6346,34 @@ msgctxt "name" msgid "AMF Reader" msgstr "" -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Reads g-code from a compressed archive." +msgid "Backup and restore your configuration." msgstr "" -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Compressed G-code Reader" +msgid "Cura Backups" msgstr "" -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/plugin.json msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" +msgid "Provides the link to the CuraEngine slicing backend." msgstr "" -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/plugin.json msgctxt "name" -msgid "Post Processing" +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 @@ -6323,99 +6386,6 @@ msgctxt "name" msgid "Cura Profile Writer" 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 "" - -#: PrepareStage/plugin.json -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "" - -#: PrepareStage/plugin.json -msgctxt "name" -msgid "Prepare Stage" -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 "" - -#: 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 "" - -#: 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 "" - -#: 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 "" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "" - -#: FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -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 "" - -#: XmlMaterialProfile/plugin.json -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "" - -#: XmlMaterialProfile/plugin.json -msgctxt "name" -msgid "Material Profiles" -msgstr "" - #: DigitalLibrary/plugin.json msgctxt "description" msgid "" @@ -6428,14 +6398,64 @@ msgctxt "name" msgid "Ultimaker Digital Library" msgstr "" -#: Toolbox/plugin.json +#: FirmwareUpdateChecker/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." +msgid "Checks for firmware updates." msgstr "" -#: Toolbox/plugin.json +#: FirmwareUpdateChecker/plugin.json msgctxt "name" -msgid "Toolbox" +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 @@ -6448,9 +6468,123 @@ 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 +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 "" + +#: 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 "" + +#: 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 Simulation view." +msgid "Provides the preview of sliced layerdata." msgstr "" #: SimulationView/plugin.json @@ -6458,234 +6592,35 @@ msgctxt "name" msgid "Simulation View" msgstr "" -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgid "Submits anonymous slice info. Can be disabled through preferences." msgstr "" -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/plugin.json msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" +msgid "Slice info" msgstr "" -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgid "Provides a normal solid mesh view." msgstr "" -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/plugin.json msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" +msgid "Solid View" msgstr "" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgid "" +"Creates an eraser mesh to block the printing of support in certain places" msgstr "" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/plugin.json msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -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/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/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/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/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/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/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/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 "" - -#: 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/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/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/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/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/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/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/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/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/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 "" - -#: UM3NetworkPrinting/plugin.json -msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "" - -#: UM3NetworkPrinting/plugin.json -msgctxt "name" -msgid "Ultimaker Network Connection" +msgid "Support Eraser" msgstr "" #: TrimeshReader/plugin.json @@ -6708,44 +6643,305 @@ msgctxt "name" msgid "UFP Reader" msgstr "" -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "description" -msgid "Provides a normal solid mesh view." +msgid "Provides support for writing Ultimaker Format Packages." msgstr "" -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "name" -msgid "Solid View" +msgid "UFP Writer" msgstr "" -#: 3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "" - -#: 3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "" - -#: MonitorStage/plugin.json -msgctxt "name" -msgid "Monitor Stage" -msgstr "" - -#: ModelChecker/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "description" msgid "" -"Checks models and print configuration for possible printing issues and give " -"suggestions." +"Provides machine actions for Ultimaker machines (such as bed leveling " +"wizard, selecting upgrades, etc.)." msgstr "" -#: ModelChecker/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "name" -msgid "Model Checker" +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 +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "" + +#: 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 "" diff --git a/resources/i18n/de_DE/cura.po b/resources/i18n/de_DE/cura.po index 6a711a67bb..c5127f28bd 100644 --- a/resources/i18n/de_DE/cura.po +++ b/resources/i18n/de_DE/cura.po @@ -1,415 +1,191 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0100\n" -"PO-Revision-Date: 2022-01-10 11:42+0100\n" -"Last-Translator: Lionbridge \n" -"Language-Team: German , German \n" +"POT-Creation-Date: 2022-06-21 12:50+0200\n" +"PO-Revision-Date: 2022-07-15 11:18+0200\n" +"Last-Translator: \n" +"Language-Team: \n" "Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.3\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Poedit 3.1.1\n" -#: /home/clamboo/Desktop/Cura/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/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "Unbekannt" -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 -msgctxt "@info:title" -msgid "Backup" -msgstr "Backup" +#: /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/clamboo/Desktop/Cura/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/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Verfügbare vernetzte Drucker" -#: /home/clamboo/Desktop/Cura/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/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Nicht überschrieben" -#: /home/clamboo/Desktop/Cura/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/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/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 -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/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/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 -msgctxt "@action:button" -msgid "New materials installed" -msgstr "Neue Materialien installiert" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 -msgctxt "@action:button" -msgid "Sync materials with printers" -msgstr "Materialien synchronisieren" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 -msgctxt "@action:button" -msgid "Learn more" -msgstr "Mehr erfahren" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 -msgctxt "@message:text" -msgid "Could not save material archive to {}:" -msgstr "Materialarchiv konnte nicht in {} gespeichert werden:" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 -msgctxt "@message:title" -msgid "Failed to save material archive" -msgstr "Speichern des Materialarchivs fehlgeschlagen" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 -msgctxt "@text" -msgid "Unknown error." -msgstr "Unbekannter Fehler." - -#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 -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/clamboo/Desktop/Cura/cura/BuildVolume.py:102 -msgctxt "@info:title" -msgid "Build Volume" -msgstr "Produktabmessungen" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Nicht überschrieben" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "Unbekannt" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Verfügbare vernetzte Drucker" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Alle Dateien (*)" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Visuell" +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Berechnet" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Entwurf" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 -msgctxt "@label" -msgid "Custom Material" -msgstr "Benutzerdefiniertes Material" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 -msgctxt "@label" -msgid "Custom" -msgstr "Benutzerdefiniert" - -#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 +#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "Login fehlgeschlagen" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Neue Position für Objekte finden" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 msgctxt "@info:title" msgid "Finding Location" msgstr "Position finden" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Kann Position nicht finden" -#: /home/clamboo/Desktop/Cura/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/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/CuraApplication.py:530 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "Geräte werden geladen..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "Erstellungen werden eingerichtet ..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "Aktives Gerät wird initialisiert ..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "Gerätemanager wird initialisiert ..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "Bauraum wird initialisiert ..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "Die Szene wird eingerichtet..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "Die Benutzeroberfläche wird geladen..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "Funktion wird initialisiert ..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 +#: /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 msgctxt "@info:title" -msgid "Warning" -msgstr "Warnhinweis" +msgid "Backup" +msgstr "Backup" -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 -#, python-brace-format +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 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." +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/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 msgctxt "@info:title" -msgid "Error" -msgstr "Fehler" +msgid "Build Volume" +msgstr "Produktabmessungen" -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 -msgctxt "@action:button" -msgid "Skip" -msgstr "Überspringen" - -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "Schließen" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 -msgctxt "@action:button" -msgid "Next" -msgstr "Weiter" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 -msgctxt "@action:button" -msgid "Finish" -msgstr "Beenden" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "Hinzufügen" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Abbrechen" - -#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 -#, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "Gruppe #{group_nr}" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Außenwand" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "Innenwände" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Skin" -msgstr "Außenhaut" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Infill" -msgstr "Füllung" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Stützstruktur-Füllung" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Stützstruktur-Schnittstelle" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Support" -msgstr "Stützstruktur" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Skirt" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "Einzugsturm" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 -msgctxt "@tooltip" -msgid "Travel" -msgstr "Bewegungen" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Einzüge" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 -msgctxt "@tooltip" -msgid "Other" -msgstr "Sonstige" - -#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 -msgctxt "@text:window" -msgid "The release notes could not be opened." -msgstr "Die Versionshinweise konnten nicht geöffnet werden." - -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura kann nicht starten" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

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

      \n" @@ -424,32 +200,32 @@ msgstr "" "

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

      \n" " " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 msgctxt "@action:button" msgid "Send crash report to Ultimaker" msgstr "Absturzbericht an Ultimaker senden" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Detaillierten Absturzbericht anzeigen" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Konfigurationsordner anzeigen" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Backup und Reset der Konfiguration" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Crash-Bericht" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190 +#: /home/trin/Gedeeld/Projects/Cura/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" @@ -460,618 +236,771 @@ msgstr "" "

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

      \n" " " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Systeminformationen" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Unbekannt" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura-Version" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Cura-Sprache" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "Sprache des Betriebssystems" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Plattform" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Qt Version" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "PyQt Version" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 msgctxt "@label" -msgid "Not yet initialized
      " -msgstr "Noch nicht initialisiert
      " +msgid "Not yet initialized" +msgstr "Noch nicht initialisiert" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
    • OpenGL Version: {version}
    • " msgstr "
    • OpenGL-Version: {version}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
    • OpenGL Vendor: {vendor}
    • " msgstr "
    • OpenGL-Anbieter: {vendor}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
    • OpenGL Renderer: {renderer}
    • " msgstr "
    • OpenGL-Renderer: {renderer}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Fehler-Rückverfolgung" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "Protokolle" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "Bericht senden" -#: /home/clamboo/Desktop/Cura/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/CuraApplication.py:531 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "Geräte werden geladen..." -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 -msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." -msgstr "Der Ultimaker-Konto-Server konnte nicht erreicht werden." +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "Erstellungen werden eingerichtet ..." -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "Aktives Gerät wird initialisiert ..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "Gerätemanager wird initialisiert ..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "Bauraum wird initialisiert ..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "Die Szene wird eingerichtet..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "Die Benutzeroberfläche wird geladen..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "Funktion wird initialisiert ..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#, 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 +#, 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 msgctxt "@info:title" -msgid "Log-in failed" -msgstr "Anmeldung fehlgeschlagen" +msgid "Warning" +msgstr "Warnhinweis" -#: /home/clamboo/Desktop/Cura/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/CuraApplication.py:1810 +#, 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/clamboo/Desktop/Cura/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/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 +msgctxt "@info:title" +msgid "Error" +msgstr "Fehler" -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 -msgctxt "@message" -msgid "Could not read response." -msgstr "Antwort konnte nicht gelesen werden." - -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "Objekte vervielfältigen und platzieren" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "Objekte platzieren" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Objekt-Platzierung" -#: /home/clamboo/Desktop/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/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "Antwort konnte nicht gelesen werden." -#: /home/clamboo/Desktop/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/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "Angegebener Status ist falsch." -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 -msgctxt "@label" -msgid "Nozzle" -msgstr "Düse" +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 -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/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/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info" +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 msgctxt "@info:title" -msgid "Settings updated" -msgstr "Einstellungen aktualisiert" +msgid "Log-in failed" +msgstr "Anmeldung fehlgeschlagen" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "Extruder deaktiviert" +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 msgctxt "@title:window" msgid "File Already Exists" msgstr "Datei bereits vorhanden" -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "Ungültige Datei-URL:" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Export erfolgreich ausgeführt" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Profil {0} erfolgreich importiert." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Benutzerdefiniertes Profil" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "Es ist noch kein Drucker aktiv." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Das Profil kann nicht hinzugefügt werden." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: /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 msgctxt "@label" -msgid "Per Model Settings" -msgstr "Einstellungen pro Objekt" +msgid "Nozzle" +msgstr "Düse" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "Pro Objekteinstellungen konfigurieren" +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +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/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Cura-Profil" - -#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3D-Datei" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 msgctxt "@info:title" -msgid "Backups" -msgstr "Backups" +msgid "Settings updated" +msgstr "Einstellungen aktualisiert" -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Ihr Backup wird erstellt..." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Ihr Backup wird hochgeladen..." - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "Ihr Backup wurde erfolgreich hochgeladen." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Backups verwalten" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Geräteeinstellungen" - -#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "Stützstruktur-Blocker" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Wechseldatenträger" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "Speichern auf Wechseldatenträger" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "Auf Wechseldatenträger speichern {0}" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 msgctxt "@info:title" -msgid "Saving" -msgstr "Wird gespeichert" +msgid "Extruder(s) Disabled" +msgstr "Extruder deaktiviert" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "Auf Wechseldatenträger {0} gespeichert als {1}" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 -msgctxt "@info:title" -msgid "File Saved" -msgstr "Datei wurde gespeichert" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" -msgid "Eject" -msgstr "Auswerfen" +msgid "Add" +msgstr "Hinzufügen" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Abbrechen" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 #, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "Wechseldatenträger auswerfen {0}" +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "Gruppe #{group_nr}" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 -#, 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/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Außenwand" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "Innenwände" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "Außenhaut" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "Füllung" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Stützstruktur-Füllung" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Stützstruktur-Schnittstelle" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "Stützstruktur" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Skirt" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "Einzugsturm" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "Bewegungen" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Einzüge" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Close" +msgstr "Schließen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "Neue Materialien installiert" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Learn more" +msgstr "Mehr erfahren" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "Speichern des Materialarchivs fehlgeschlagen" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +msgctxt "@text" +msgid "Unknown error." +msgstr "Unbekannter Fehler." + +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Hardware sicher entfernen" +msgid "3D Model Assistant" +msgstr "3D-Modell-Assistent" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 #, 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." +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 "" +"

      Ein oder mehrere 3D-Modelle können möglicherweise aufgrund der Modellgröße und Materialkonfiguration nicht optimal gedruckt werden:

      \n" +"

      {model_names}

      \n" +"

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

      \n" +"

      Leitfaden zu Druckqualität anzeigen

      " -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Firmware aktualisieren" - -#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Cura 15.04-Profile" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Empfohlen" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Benutzerdefiniert" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 +#: /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." -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 msgctxt "@info:title" msgid "Open Project File" msgstr "Projektdatei öffnen" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 +#: /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 "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." + +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:392 +msgctxt "@info:title" +msgid "Material profiles not installed" +msgstr "Materialprofile nicht installiert" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:405 +msgctxt "@action:button" +msgid "Install Materials" +msgstr "Materialien installieren" + +#: /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/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "Kann nicht in UFP-Datei schreiben:" +#: /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/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Ultimaker Format Package" +#: /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/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "G-Code-Datei" +#: /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/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "Vorschau" +#: /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/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Röntgen-Ansicht" +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Schichten werden verarbeitet" +#: /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 "Speichern der Materialpaketinformationen in der Projektdatei nicht möglich: {material}. Dieses Projekt kann auf anderen Systemen möglicherweise nicht korrekt geöffnet werden." -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:283 msgctxt "@info:title" -msgid "Information" -msgstr "Informationen" +msgid "Failed to save material package information" +msgstr "Speichern der Materialpaketinformationen fehlgeschlagen" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 msgctxt "@message:title" msgid "Slicing failed" msgstr "Slicing fehlgeschlagen" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 msgctxt "@message:button" msgid "Report a bug" msgstr "Einen Fehler melden" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 msgctxt "@info:status" msgid "" "Please review settings and check if your models:\n" @@ -1084,430 +1013,498 @@ msgstr "" "- Einem aktiven Extruder zugewiesen sind\n" "- Nicht alle als Modifier Meshes eingerichtet sind" -#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "AMF-Datei" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "Komprimierte G-Code-Datei" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "Nachbearbeitung" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "G-Code ändern" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "USB-Drucken" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Über USB drucken" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Über USB drucken" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Über USB verbunden" +msgid "Processing Layers" +msgstr "Schichten werden verarbeitet" -#: /home/clamboo/Desktop/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 "Ein USB-Druck wird ausgeführt. Das Schließen von Cura beendet diesen Druck. Sind Sie sicher?" - -#: /home/clamboo/Desktop/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 "Druck wird bearbeitet. Cura kann keinen weiteren Druck via USB starten, bis der vorherige Druck abgeschlossen wurde." - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 -msgctxt "@message" -msgid "Print in Progress" -msgstr "Druck in Bearbeitung" - -#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "Vorbereiten" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "G-Code parsen" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 msgctxt "@info:title" -msgid "G-code Details" -msgstr "G-Code-Details" +msgid "Information" +msgstr "Informationen" -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 -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/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 msgctxt "@item:inlistbox" -msgid "G File" -msgstr "G-Datei" +msgid "Cura Profile" +msgstr "Cura-Profil" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG-Bilddatei" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG-Bilddatei" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG-Bilddatei" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP-Bilddatei" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF-Bilddatei" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "Druckbett nivellieren" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "Upgrades wählen" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "GCodeWriter unterstützt keinen Textmodus." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 msgctxt "@info" msgid "Could not access update information." msgstr "Zugriff auf Update-Informationen nicht möglich." -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#: /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." -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#: /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" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 msgctxt "@action:button" msgid "How to update" msgstr "Anleitung für die Aktualisierung" -#: /home/clamboo/Desktop/Cura/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/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Firmware aktualisieren" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 -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/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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Synchronisierung läuft ..." +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +#: /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 "Changes detected from your Ultimaker account" -msgstr "Von Ihrem Ultimaker-Konto erkannte Änderungen" +msgid "G-code Details" +msgstr "G-Code-Details" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 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?" +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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 -msgctxt "@action:button" -msgid "Sync" -msgstr "Synchronisieren" +#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "G-Datei" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Ablehnen und vom Konto entfernen" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "{} Plugins konnten nicht heruntergeladen werden" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "Ablehnen" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "Stimme zu" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Plugin für Lizenzvereinbarung" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +#: /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/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +#: /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 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "Überwachen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "Pro Objekteinstellungen konfigurieren" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +msgctxt "@item:inmenu" +msgid "Post Processing" +msgstr "Nachbearbeitung" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@item:inmenu" +msgid "Prepare" +msgstr "Vorbereiten" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 +msgctxt "@item:inmenu" +msgid "Preview" +msgstr "Vorschau" + +#: /home/trin/Gedeeld/Projects/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 +#, 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 +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 +#, 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 +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 +#, 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 +#, 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 +#, 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 +#, 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 +msgctxt "@info:title" +msgid "File Saved" +msgstr "Datei wurde gespeichert" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +msgctxt "@action:button" +msgid "Eject" +msgstr "Auswerfen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +#, 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 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "Hardware sicher entfernen" + +#: /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 "Auswurf fehlgeschlagen {0}. Möglicherweise wird das Laufwerk von einem anderen Programm verwendet." + +#: /home/trin/Gedeeld/Projects/Cura/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." -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 msgctxt "@info:title" msgid "Simulation View" msgstr "Simulationsansicht" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:133 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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 msgctxt "@info:title" msgid "No layers to show" msgstr "Keine anzeigbaren Schichten vorhanden" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +#: /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 "Diese Meldung nicht mehr anzeigen" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Schichtenansicht" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "Drucken über Netzwerk" +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Drücken über Netzwerk" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Über Netzwerk verbunden" +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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "morgen" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 +msgctxt "@info:title" +msgid "Model Errors" +msgstr "Modellfehler" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "heute" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Solid view" +msgstr "Solide Ansicht" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 +msgctxt "@label" +msgid "Support Blocker" +msgstr "Stützstruktur-Blocker" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 Triangle Format" + +#: /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 Format Package" + +#: /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 "Kann nicht in UFP-Datei schreiben:" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" -msgid "Connect via Network" -msgstr "Anschluss über Netzwerk" +msgid "Level build plate" +msgstr "Druckbett nivellieren" -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "Druckfehler" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Daten gesendet" - -#: /home/clamboo/Desktop/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 "Sie versuchen, sich mit einem Drucker zu verbinden, auf dem Ultimaker Connect nicht läuft. Bitte aktualisieren Sie die Firmware des Druckers." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 -msgctxt "@info:title" -msgid "Update your printer" -msgstr "Drucker aktualisieren" - -#: /home/clamboo/Desktop/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 "Die Druckauftragswarteschlange ist voll. Der Drucker kann keinen neuen Auftrag annehmen." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "Warteschlange voll" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "Druckauftrag senden" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Druckauftrag wird vorbereitet." - -#: /home/clamboo/Desktop/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 hat Materialprofile entdeckt, die auf dem Host-Drucker der Gruppe {0} noch nicht installiert wurden." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "Material an Drucker senden" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "Netzwerkfehler" - -#: /home/clamboo/Desktop/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 "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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "Nicht Host-Drucker der Gruppe" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 msgctxt "@action" -msgid "Configure group" -msgstr "Gruppe konfigurieren" +msgid "Select upgrades" +msgstr "Upgrades wählen" -#: /home/clamboo/Desktop/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 "" -"Ihr Drucker {printer_name} könnte über die Cloud verbunden sein.\n" -" Verwalten Sie Ihre Druckwarteschlange und überwachen Sie Ihre Drucke von allen Orten aus, an denen Sie Ihren Drucker mit der Digital Factory verbinden" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 -msgctxt "@action" -msgid "Get started" -msgstr "Erste Schritte" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 -msgctxt "@action" -msgid "Learn more" -msgstr "Mehr erfahren" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 msgctxt "@action:button" msgid "Print via cloud" msgstr "Über Cloud drucken" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Über Cloud drucken" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Über Cloud verbunden" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 msgctxt "@action:button" msgid "Monitor print" msgstr "Druck überwachen" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 msgctxt "@action:tooltip" msgid "Track the print in Ultimaker Digital Factory" msgstr "Verfolgen Sie den Druck in der Ultimaker Digital Factory" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#: /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 "Unbekannter Fehlercode beim Upload des Druckauftrags: {0}" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 +#: /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" @@ -1515,70 +1512,70 @@ msgid_plural "... and {0} others" msgstr[0] "... und {0} weiterer" msgstr[1] "... und {0} weitere" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:356 msgctxt "@action:button" msgid "Keep printer configurations" msgstr "Druckerkonfigurationen speichern" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:361 msgctxt "@action:button" msgid "Remove printers" msgstr "Drucker entfernen" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 +#: /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} wird bis zur nächsten Synchronisierung entfernt." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 +#: /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 "Wenn Sie {printer_name} dauerhaft entfernen möchten, dann besuchen Sie bitte die {digital_factory_link}" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 +#: /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 "Möchten Sie {printer_name} wirklich vorübergehend entfernen?" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 msgctxt "@title:window" msgid "Remove printers?" msgstr "Drucker entfernen?" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 #, python-brace-format msgctxt "@label" msgid "" @@ -1594,1584 +1591,1071 @@ 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +#: /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 "Es werden gleich alle Drucker aus Cura entfernt. Dieser Vorgang kann nicht rückgängig gemacht werden.Möchten Sie wirklich fortfahren?" -#: /home/clamboo/Desktop/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 "Öffnen Sie das komprimierte Dreiecksnetz" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA Digital Asset Exchange" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "glTF Binary" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF Embedded JSON" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Stanford Triangle Format" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Compressed COLLADA Digital Asset Exchange" - -#: /home/clamboo/Desktop/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 "Die hervorgehobenen Bereiche kennzeichnen fehlende oder überschüssige Oberflächen. Beheben Sie die Fehler am Modell und öffnen Sie es erneut in Cura." - -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "Modellfehler" - -#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Solide Ansicht" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Fehler beim Schreiben von 3MF-Datei." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MF-Datei" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Cura-Projekt 3MF-Datei" - -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "Überwachen" - -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 -msgctxt "@info:title" -msgid "3D Model Assistant" -msgstr "3D-Modell-Assistent" - -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 #, 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

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

      Ein oder mehrere 3D-Modelle können möglicherweise aufgrund der Modellgröße und Materialkonfiguration nicht optimal gedruckt werden:

      \n" -"

      {model_names}

      \n" -"

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

      \n" -"

      Leitfaden zu Druckqualität anzeigen

      " +"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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action" +msgid "Get started" +msgstr "Erste Schritte" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +msgctxt "@action" +msgid "Learn more" +msgstr "Mehr erfahren" + +#: /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 "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 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "Drucker aktualisieren" + +#: /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 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 +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 +#, 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 +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 +msgctxt "@action" +msgid "Configure group" +msgstr "Gruppe konfigurieren" + +#: /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 "Bitte warten Sie, bis der aktuelle Druckauftrag gesendet wurde." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info:title" +msgid "Network error" +msgstr "Netzwerkfehler" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "Warteschlange voll" + +#: /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 "Der Druckauftrag wurde erfolgreich an den Drucker gesendet." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "Drücken über Netzwerk" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "Über Netzwerk verbunden" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "morgen" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "heute" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "USB-Drucken" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "Über USB drucken" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" -msgid "Mesh Type" -msgstr "Mesh-Typ" +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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "Normales Modell" +#: /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 "Druck wird bearbeitet. Cura kann keinen weiteren Druck via USB starten, bis der vorherige Druck abgeschlossen wurde." -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "Als Stützstruktur drucken" +#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "Druck in Bearbeitung" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Einstellungen für Überlappungen ändern" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Überlappungen nicht unterstützen" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 +#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Nur Mesh-Füllung" +msgid "X3D File" +msgstr "X3D-Datei" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 +#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Mesh beschneiden" +msgid "X-Ray view" +msgstr "Röntgen-Ansicht" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Einstellungen wählen" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Einstellungen für die benutzerdefinierte Anpassung dieses Modells wählen" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtern..." - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Alle anzeigen" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cura-Backups" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Cura-Version" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Maschinen" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Materialien" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Profile" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Plugins" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Möchten Sie mehr?" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Jetzt Backup durchführen" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Automatisches Backup" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "Wiederherstellen" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Backup löschen" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Backup wiederherstellen" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 -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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 -msgctxt "@button" -msgid "Sign in" -msgstr "Anmelden" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Meine Backups" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -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/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Druckereinstellungen" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (Breite)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Tiefe)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Höhe)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 -msgctxt "@label" -msgid "Build plate shape" -msgstr "Druckbettform" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 -msgctxt "@label" -msgid "Origin at center" -msgstr "Ausgang in Mitte" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 -msgctxt "@label" -msgid "Heated bed" -msgstr "Heizbares Bett" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 -msgctxt "@label" -msgid "Heated build volume" -msgstr "Druckraum aufgeheizt" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 -msgctxt "@label" -msgid "G-code flavor" -msgstr "G-Code-Variante" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Druckkopfeinstellungen" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -msgctxt "@label" -msgid "X min" -msgstr "X min" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -msgctxt "@label" -msgid "Y min" -msgstr "Y min" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -msgctxt "@label" -msgid "X max" -msgstr "X max" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -msgctxt "@label" -msgid "Y max" -msgstr "Y max" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "Gantry Height" -msgstr "Brückenhöhe" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Anzahl Extruder" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Extruder-Versatzwerte auf GCode anwenden" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "Start G-Code" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "Ende G-Code" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Düseneinstellungen" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 -msgctxt "@label" -msgid "Nozzle size" -msgstr "Düsengröße" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Kompatibler Materialdurchmesser" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "X-Versatz Düse" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Y-Versatz Düse" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Kühllüfter-Nr" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "G-Code Extruder-Start" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "G-Code Extruder-Ende" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "Drucker" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Firmware aktualisieren" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Firmware automatisch aktualisieren" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Benutzerdefinierte Firmware hochladen" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Benutzerdefinierte Firmware wählen" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Firmware-Aktualisierung" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Updating firmware." -msgstr "Die Firmware wird aktualisiert." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Firmware-Aktualisierung abgeschlossen." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "Die Firmware-Aktualisierung ist aufgrund eines unbekannten Fehlers fehlgeschlagen." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "Die Firmware-Aktualisierung ist aufgrund eines Kommunikationsfehlers fehlgeschlagen." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "Die Firmware-Aktualisierung ist aufgrund eines Eingabe-/Ausgabefehlers fehlgeschlagen." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "Die Firmware-Aktualisierung ist aufgrund von fehlender Firmware fehlgeschlagen." - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 msgctxt "@title:window" msgid "Open Project" msgstr "Projekt öffnen" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 msgctxt "@action:ComboBox Update/override existing profile" msgid "Update existing" msgstr "Vorhandenes aktualisieren" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Druckereinstellungen" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Profileinstellungen" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 msgctxt "@action:label" msgid "Derivative from" msgstr "Ableitung von" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 -msgctxt "@action:label" -msgid "Material settings" -msgstr "Materialeinstellungen" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 msgctxt "@action:label" msgid "Mode" msgstr "Modus" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 msgctxt "@action:label" msgid "Visible settings:" msgstr "Sichtbare Einstellungen:" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 von %2" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 msgctxt "@action:button" msgid "Open" msgstr "Öffnen" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "Projekt trotzdem öffnen" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:529 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "Fehlendes Material installieren" + +#: /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 "Post Processing Plugin" -msgstr "Plugin Nachbearbeitung" +msgid "Cura Backups" +msgstr "Cura-Backups" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 +#: /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 "Cura-Projekt speichern und Datei drucken" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "Cura-Projekt speichern" + +#: /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 "Post Processing Scripts" -msgstr "Skripts Nachbearbeitung" +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/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "Ein Skript hinzufügen" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 msgctxt "@label" -msgid "Settings" -msgstr "Einstellungen" +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/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Aktive Nachbearbeitungsskripts ändern." +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Firmware automatisch aktualisieren" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 -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/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Benutzerdefinierte Firmware hochladen" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /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 "Convert Image..." -msgstr "Bild konvertieren..." +msgid "Select custom firmware" +msgstr "Benutzerdefinierte Firmware wählen" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 -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/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Firmware-Aktualisierung" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "Die Basishöhe von der Druckplatte in Millimetern." +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "Der Maximalabstand von jedem Pixel von der „Basis“." -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 msgctxt "@action:label" msgid "Base (mm)" msgstr "Basis (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate." -msgstr "Die Breite der Druckplatte in Millimetern." +msgid "The base height from the build plate in millimeters." +msgstr "Die Basishöhe von der Druckplatte in Millimetern." -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 msgctxt "@action:label" msgid "Width (mm)" msgstr "Breite (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "Die Tiefe der Druckplatte in Millimetern" +msgid "The width in millimeters on the build plate" +msgstr "Die Breite der Druckplatte in Millimetern" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 msgctxt "@action:label" msgid "Depth (mm)" msgstr "Tiefe (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 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." +msgid "The depth in millimeters on the build plate" +msgstr "Die Tiefe der Druckplatte in Millimetern" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "Dunkler ist höher" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "Heller ist höher" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 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." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "Transparenz" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 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." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "1 mm Durchlässigkeit (%)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 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." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 msgctxt "@action:label" msgid "Smoothing" msgstr "Glättung" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /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/clamboo/Desktop/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" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "Beheizte Druckplatte (offizielles Kit oder Eigenbau)" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Nivellierung der Druckplatte" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Nivellierung der Druckplatte starten" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Gehe zur nächsten Position" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Weitere Informationen zur anonymen Datenerfassung" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -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/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Ich möchte keine anonymen Daten senden" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Senden von anonymen Daten erlauben" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" -msgid "Marketplace" -msgstr "Marktplatz" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -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." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "%1 beenden" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "Installieren" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -msgctxt "@action:button" -msgid "Installed" -msgstr "Installiert" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "Premium" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 -msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "Zum Web Marketplace gehen" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 -msgctxt "@label" -msgid "Search materials" -msgstr "Materialien suchen" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "Kompatibilität" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "Gerät" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "Druckbett" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "Support" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "Qualität" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "Technisches Datenblatt" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "Sicherheitsdatenblatt" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "Druckrichtlinien" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "Website" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -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" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "Materialspulen kaufen" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "Aktualisierung" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "Aktualisierung wird durchgeführt" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "Aktualisiert" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "Zurück" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 msgctxt "@title:tab" -msgid "Plugins" -msgstr "Plugins" +msgid "Printer" +msgstr "Drucker" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materialien" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Düseneinstellungen" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "Installiert" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 msgctxt "@label" -msgid "Will install upon restarting" -msgstr "Installiert nach Neustart" +msgid "Nozzle size" +msgstr "Düsengröße" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "Anmeldung für Update erforderlich" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Downgrade" -msgstr "Downgraden" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "Deinstallieren" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /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 "Community Contributions" -msgstr "Community-Beiträge" +msgid "mm" +msgstr "mm" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 msgctxt "@label" -msgid "Community Plugins" -msgstr "Community-Plugins" +msgid "Compatible material diameter" +msgstr "Kompatibler Materialdurchmesser" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 msgctxt "@label" -msgid "Generic Materials" -msgstr "Generische Materialien" +msgid "Nozzle offset X" +msgstr "X-Versatz Düse" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "Pakete werden abgeholt..." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 msgctxt "@label" -msgid "Website" -msgstr "Website" +msgid "Nozzle offset Y" +msgstr "Y-Versatz Düse" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 msgctxt "@label" -msgid "Email" -msgstr "E-Mail" +msgid "Cooling Fan Number" +msgstr "Kühllüfter-Nr" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -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" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "G-Code Extruder-Start" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 +#: /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 "Version" -msgstr "Version" +msgid "X (Width)" +msgstr "X (Breite)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 msgctxt "@label" -msgid "Last updated" -msgstr "Zuletzt aktualisiert" +msgid "Y (Depth)" +msgstr "Y (Tiefe)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 msgctxt "@label" -msgid "Brand" -msgstr "Marke" +msgid "Z (Height)" +msgstr "Z (Höhe)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 msgctxt "@label" -msgid "Downloads" -msgstr "Downloads" +msgid "Build plate shape" +msgstr "Druckbettform" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "Installierte Plugins" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "Es wurde kein Plugin installiert." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "Installierte Materialien" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 -msgctxt "@info" -msgid "No material has been installed." -msgstr "Es wurde kein Material installiert." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "Gebündelte Plugins" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "Gebündelte Materialien" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -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." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 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" +msgid "Origin at center" +msgstr "Ausgang in Mitte" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 msgctxt "@button" msgid "Dismiss" msgstr "Verwerfen" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "Deinstallieren bestätigen" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "Fehlende Materialien installieren" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -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." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "Plugin für Lizenzvereinbarung" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "Materialien" +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "Profile" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "Akzeptieren" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "Bestätigen" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 +msgctxt "@header" +msgid "Manage packages" +msgstr "Pakete verwalten" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "Farbschema" +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Materialfarbe" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "Pakete verwalten" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Linientyp" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Geschwindigkeit" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Schichtdicke" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Linienbreite" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Fluss" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Kompatibilitätsmodus" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "Bewegungen" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "Helfer" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "Gehäuse" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "Füllung" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "Startet" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Nur obere Schichten anzeigen" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "5 detaillierte Schichten oben anzeigen" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Oben/Unten" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Innenwand" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "min" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "max" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Drucker verwalten" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -msgctxt "@label" -msgid "Glass" -msgstr "Glas" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" msgid "Loading..." msgstr "Lädt..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Nicht verfügbar" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "Plugins" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Nicht erreichbar" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "Materialien" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "Leerlauf" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193 +msgctxt "@info" +msgid "Search in the browser" +msgstr "Suche im Browser" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Vorbereitung..." +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "Drucken" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 -msgctxt "@label" -msgid "Untitled" -msgstr "Unbenannt" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anonym" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Erfordert Konfigurationsänderungen" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "Details" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Drucker nicht verfügbar" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "Zuerst verfügbar" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "In Warteschlange" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Im Browser verwalten" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "Druckaufträge" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "Druckdauer insgesamt" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "Warten auf" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Drucken über Netzwerk" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 -msgctxt "@action:button" -msgid "Print" -msgstr "Drucken" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 -msgctxt "@label" -msgid "Printer selection" -msgstr "Druckerauswahl" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Konfigurationsänderungen" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "Überschreiben" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Material %1 von %2 auf %3 wechseln." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "%3 als Material %1 laden (Dies kann nicht übergangen werden)." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Print Core %1 von %2 auf %3 wechseln." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "Druckplatte auf %1 wechseln (Dies kann nicht übergangen werden)." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "Aluminium" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Finished" -msgstr "Beendet" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Wird abgebrochen..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Abgebrochen" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Failed" -msgstr "Fehlgeschlagen" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Wird pausiert..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Paused" -msgstr "Pausiert" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Wird fortgesetzt..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 -msgctxt "@label:status" -msgid "Action required" -msgstr "Handlung erforderlich" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Fertigstellung %1 um %2" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Anschluss an vernetzten Drucker" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Wählen Sie Ihren Drucker aus der folgenden Liste aus:" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "Bearbeiten" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 -msgctxt "@action:button" -msgid "Remove" -msgstr "Entfernen" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Aktualisieren" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "Typ" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "Firmware-Version" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "Adresse" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "Der Drucker unter dieser Adresse hat nicht reagiert." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "Verbinden" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Ungültige IP-Adresse" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:12 msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Bitte eine gültige IP-Adresse eingeben." +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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Druckeradresse" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 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." +msgid "You need to accept the license to install the package" +msgstr "Sie müssen die Lizenz akzeptieren, um das Paket zu installieren" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "Vorziehen" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Löschen" +#: /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 "Von" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "Zurückkehren" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Enable" +msgstr "Aktivieren" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Wird pausiert..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Disable" +msgstr "Deaktivieren" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Wird fortgesetzt..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 +msgctxt "@button" +msgid "Downgrading..." +msgstr "Downgrade läuft…" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "Pausieren" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 +msgctxt "@button" +msgid "Downgrade" +msgstr "Downgraden" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Wird abgebrochen..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 +msgctxt "@button" +msgid "Installing..." +msgstr "Wird installiert…" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Abbrechen" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250 +msgctxt "@button" +msgid "Install" +msgstr "Installieren" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -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/Marketplace/resources/qml/PackageCardHeader.qml:254 +msgctxt "@button" +msgid "Uninstall" +msgstr "Deinstallieren" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Druckauftrag vorziehen" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Updating..." +msgstr "Aktualisierung läuft…" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -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/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Update" +msgstr "Aktualisierung" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Druckauftrag löschen" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "Details zum Paket" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -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/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "Hinten" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Drucken abbrechen" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "Beschreibung" -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /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" @@ -3183,2138 +2667,657 @@ msgstr "" "– 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/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /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/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /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/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /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/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "3D-Ansicht" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "Vorderansicht" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "Draufsicht" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "Ansicht von links" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "Ansicht von rechts" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 msgctxt "@label" -msgid "Object list" -msgstr "Objektliste" +msgid "Mesh Type" +msgstr "Mesh-Typ" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 +#: /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 "Marketplace" -msgstr "Marktplatz" +msgid "Select settings" +msgstr "Einstellungen wählen" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "&Datei" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "&Bearbeiten" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "&Ansicht" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "&Einstellungen" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "Er&weiterungen" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "&Konfiguration" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "&Hilfe" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 msgctxt "@title:window" -msgid "New project" -msgstr "Neues Projekt" +msgid "Select Settings to Customize for this model" +msgstr "Einstellungen für die benutzerdefinierte Anpassung dieses Modells wählen" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 -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/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filtern..." -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 -msgctxt "@label:PrintjobStatus" -msgid "Slicing..." -msgstr "Das Slicing läuft..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Alle anzeigen" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 -msgctxt "@label:PrintjobStatus" -msgid "Unable to slice" -msgstr "Slicing nicht möglich" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "Plugin Nachbearbeitung" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Processing" -msgstr "Verarbeitung läuft" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Slice" -msgstr "Slice" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 msgctxt "@label" -msgid "Start the slicing process" -msgstr "Slicing-Vorgang starten" +msgid "Post Processing Scripts" +msgstr "Skripts Nachbearbeitung" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 -msgctxt "@button" -msgid "Cancel" -msgstr "Abbrechen" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +msgctxt "@action" +msgid "Add a script" +msgstr "Ein Skript hinzufügen" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 msgctxt "@label" -msgid "Time estimation" -msgstr "Zeitschätzung" +msgid "Settings" +msgstr "Einstellungen" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +#: /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 "Material estimation" -msgstr "Materialschätzung" +msgid "Color scheme" +msgstr "Farbschema" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1 m" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Materialfarbe" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1 g" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Linientyp" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: /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 "No time estimation available" -msgstr "Keine Zeitschätzung verfügbar" +msgid "Compatibility Mode" +msgstr "Kompatibilitätsmodus" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 msgctxt "@label" -msgid "No cost estimation available" -msgstr "Keine Kostenschätzung verfügbar" +msgid "Travels" +msgstr "Bewegungen" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "Vorschau" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 msgctxt "@label" -msgid "Add a printer" -msgstr "Einen Drucker hinzufügen" +msgid "Helpers" +msgstr "Helfer" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 msgctxt "@label" -msgid "Add a networked printer" -msgstr "Einen vernetzten Drucker hinzufügen" +msgid "Shell" +msgstr "Gehäuse" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +#: /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 "Add a non-networked printer" -msgstr "Einen unvernetzten Drucker hinzufügen" +msgid "Infill" +msgstr "Füllung" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "Einen Cloud-Drucker hinzufügen" +msgid "Starts" +msgstr "Startet" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "Auf eine Antwort von der Cloud warten" +msgid "Only Show Top Layers" +msgstr "Nur obere Schichten anzeigen" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 msgctxt "@label" -msgid "No printers found in your account?" -msgstr "Keine Drucker in Ihrem Konto gefunden?" +msgid "Show 5 Detailed Layers On Top" +msgstr "5 detaillierte Schichten oben anzeigen" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 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:" +msgid "Top / Bottom" +msgstr "Oben/Unten" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "Drucker manuell hinzufügen" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 msgctxt "@label" -msgid "Add printer by IP address" -msgstr "Drucker nach IP-Adresse hinzufügen" +msgid "Inner Wall" +msgstr "Innenwand" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "Geben Sie die IP-Adresse Ihres Druckers ein." - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "Hinzufügen" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 msgctxt "@label" -msgid "Could not connect to device." -msgstr "Verbindung mit Drucker nicht möglich." +msgid "min" +msgstr "min" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Sie können keine Verbindung zu Ihrem Ultimaker-Drucker herstellen?" +msgid "max" +msgstr "max" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +#: /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 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "Nivellierung der Druckplatte" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 msgctxt "@label" -msgid "The printer at this address has not responded yet." -msgstr "Der Drucker unter dieser Adresse hat noch nicht reagiert." +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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 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." +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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 -msgctxt "@button" -msgid "Back" -msgstr "Zurück" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "Nivellierung der Druckplatte starten" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" +#: /home/trin/Gedeeld/Projects/Cura/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" + +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "Benutzervereinbarung" +#: /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/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "Ablehnen und schließen" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Willkommen bei Ultimaker Cura" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +#: /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 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." +msgid "Please enter a valid IP address." +msgstr "Bitte eine gültige IP-Adresse eingeben." -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "Erste Schritte" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Druckeradresse" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +#: /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 +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 msgctxt "@label" msgid "Sign in to the Ultimaker platform" msgstr "Bei der Ultimaker-Plattform anmelden" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "Materialeinstellungen und Plug-ins aus dem Marketplace hinzufügen" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "Materialeinstellungen und Plug-ins sichern und synchronisieren" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -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" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 -msgctxt "@button" -msgid "Skip" -msgstr "Überspringen" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Kostenloses Ultimaker-Konto erstellen" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 -msgctxt "@label" -msgid "Manufacturer" -msgstr "Hersteller" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 -msgctxt "@label" -msgid "Profile author" -msgstr "Autor des Profils" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 -msgctxt "@label" -msgid "Printer name" -msgstr "Druckername" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 -msgctxt "@text" -msgid "Please name your printer" -msgstr "Bitte weisen Sie Ihrem Drucker einen Namen zu" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "Aktualisieren" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "Drucker nach IP hinzufügen" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "Ein Cloud-Drucker hinzufügen" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "Störungen beheben" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "Gerätetypen" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "Materialverbrauch" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "Anzahl der Slices" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "Druckeinstellungen" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "Mehr Informationen" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 -msgctxt "@label" -msgid "What's New" -msgstr "Neuheiten" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "Leer" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "Versionshinweise" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 -msgctxt "@title:window The argument is the application name." -msgid "About %1" -msgstr "Über %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 -msgctxt "@label" -msgid "version: %1" -msgstr "Version: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 -msgctxt "@label" -msgid "End-to-end solution for fused filament 3D printing." -msgstr "Komplettlösung für den 3D-Druck mit geschmolzenem Filament." - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 -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 "" -"Cura wurde von Ultimaker B.V. in Zusammenarbeit mit der Community entwickelt.\n" -"Cura verwendet mit Stolz die folgenden Open Source-Projekte:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 -msgctxt "@label" -msgid "Graphical user interface" -msgstr "Grafische Benutzerschnittstelle" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" -msgid "Application framework" -msgstr "Anwendungsrahmenwerk" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" -msgid "G-code generator" -msgstr "G-Code-Generator" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" -msgid "Interprocess communication library" -msgstr "Bibliothek Interprozess-Kommunikation" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" -msgid "Programming language" -msgstr "Programmiersprache" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" -msgid "GUI framework" -msgstr "GUI-Rahmenwerk" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" -msgid "GUI framework bindings" -msgstr "GUI-Rahmenwerk Einbindungen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" -msgid "C/C++ Binding library" -msgstr "C/C++ Einbindungsbibliothek" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 -msgctxt "@label" -msgid "Data interchange format" -msgstr "Format Datenaustausch" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 -msgctxt "@label" -msgid "Support library for scientific computing" -msgstr "Support-Bibliothek für wissenschaftliche Berechnung" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" -msgid "Support library for faster math" -msgstr "Support-Bibliothek für schnelleres Rechnen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" -msgid "Support library for handling STL files" -msgstr "Support-Bibliothek für die Handhabung von STL-Dateien" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" -msgid "Support library for handling planar objects" -msgstr "Support-Bibliothek für die Handhabung von ebenen Objekten" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" -msgid "Support library for handling triangular meshes" -msgstr "Support-Bibliothek für die Handhabung von dreieckigen Netzen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" -msgid "Support library for handling 3MF files" -msgstr "Support-Bibliothek für die Handhabung von 3MF-Dateien" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 -msgctxt "@label" -msgid "Support library for file metadata and streaming" -msgstr "Support-Bibliothek für Datei-Metadaten und Streaming" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 -msgctxt "@label" -msgid "Serial communication library" -msgstr "Bibliothek für serielle Kommunikation" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 -msgctxt "@label" -msgid "ZeroConf discovery library" -msgstr "Bibliothek für ZeroConf-Erkennung" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" -msgid "Polygon clipping library" -msgstr "Bibliothek für Polygon-Beschneidung" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@Label" -msgid "Static type checker for Python" -msgstr "Statischer Prüfer für Python" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@Label" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "Root-Zertifikate zur Validierung der SSL-Vertrauenswürdigkeit" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 -msgctxt "@Label" -msgid "Python Error tracking library" -msgstr "Python-Fehlerverfolgungs-Bibliothek" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 -msgctxt "@label" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "Polygon-Packaging-Bibliothek, entwickelt von Prusa Research" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -msgctxt "@label" -msgid "Python bindings for libnest2d" -msgstr "Python-Bindungen für libnest2d" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" -msgid "Support library for system keyring access" -msgstr "Unterstützungsbibliothek für den Zugriff auf den Systemschlüsselbund" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" -msgid "Python extensions for Microsoft Windows" -msgstr "Python-Erweiterungen für Microsoft Windows" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" -msgid "Font" -msgstr "Schriftart" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" -msgid "SVG icons" -msgstr "SVG-Symbole" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" -msgid "Linux cross-distribution application deployment" -msgstr "Distributionsunabhängiges Format für Linux-Anwendungen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Datei(en) öffnen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 -msgctxt "@action:button" -msgid "Import all as models" -msgstr "Alle als Modelle importieren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 -msgctxt "@title:window" -msgid "Save Project" -msgstr "Projekt speichern" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Extruder %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & Material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 -msgctxt "@action:label" -msgid "Material" -msgstr "Material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "Projektzusammenfassung beim Speichern nicht erneut anzeigen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 -msgctxt "@action:button" -msgid "Save" -msgstr "Speichern" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 -msgctxt "@title:window" -msgid "Discard or Keep changes" -msgstr "Änderungen verwerfen oder übernehmen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 -msgctxt "@title:column" -msgid "Profile settings" -msgstr "Profileinstellungen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 -msgctxt "@title:column" -msgid "Current changes" -msgstr "Aktuelle Änderungen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 -msgctxt "@option:discardOrKeep" -msgid "Always ask me this" -msgstr "Stets nachfragen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 -msgctxt "@option:discardOrKeep" -msgid "Discard and never ask again" -msgstr "Verwerfen und zukünftig nicht mehr nachfragen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 -msgctxt "@option:discardOrKeep" -msgid "Keep and never ask again" -msgstr "Übernehmen und zukünftig nicht mehr nachfragen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 -msgctxt "@action:button" -msgid "Discard changes" -msgstr "Änderungen verwerfen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 -msgctxt "@action:button" -msgid "Keep changes" -msgstr "Änderungen speichern" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 -msgctxt "@title:window" -msgid "Open project file" -msgstr "Projektdatei öffnen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "Meine Auswahl merken" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 -msgctxt "@action:button" -msgid "Open as project" -msgstr "Als Projekt öffnen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 -msgctxt "@action:button" -msgid "Import models" -msgstr "Modelle importieren" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 -msgctxt "@label" -msgid "Active print" -msgstr "Aktiver Druck" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 -msgctxt "@label" -msgid "Job Name" -msgstr "Name des Auftrags" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 -msgctxt "@label" -msgid "Printing Time" -msgstr "Druckzeit" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 -msgctxt "@label" -msgid "Estimated time left" -msgstr "Geschätzte verbleibende Zeit" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Add printer" -msgstr "Drucker hinzufügen" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 -msgctxt "@button" -msgid "Manage printers" -msgstr "Drucker verwalten" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "Verbundene Drucker" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "Voreingestellte Drucker" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 -msgctxt "@label" -msgid "Print settings" -msgstr "Druckeinstellungen" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -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/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 -msgctxt "@label" -msgid "Profile" -msgstr "Profil" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 -msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "" -"Einige Einstellungs-/Überschreibungswerte unterscheiden sich von den im Profil gespeicherten Werten.\n" -"\n" -"Klicken Sie, um den Profilmanager zu öffnen." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 -msgctxt "@label:header" -msgid "Custom profiles" -msgstr "Benutzerdefinierte Profile" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "Aktuelle Änderungen verwerfen" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "Empfohlen" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "Benutzerdefiniert" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "Ein" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "Aus" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" -msgstr "Experimentell" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 -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" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 -msgctxt "@label" -msgid "Profiles" -msgstr "Profile" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 -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“." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 -msgctxt "@label" -msgid "Support" -msgstr "Stützstruktur" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 -msgctxt "@label" -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 -msgctxt "@label" -msgid "Gradual infill" -msgstr "Stufenweise Füllung" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "Haftung" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 -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/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "Projekt speichern..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "Netzwerkfähige Drucker" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "Lokale Drucker" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "Material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "Favoriten" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "Generisch" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 -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/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 -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/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "Anzahl Kopien" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "&Projekt speichern ..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "&Exportieren..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "Auswahl exportieren..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "Konfigurationen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "Benutzerdefiniert" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "Drucker" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "Aktiviert" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "Material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 -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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 -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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 -msgctxt "@label" -msgid "Select configuration" -msgstr "Konfiguration wählen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 -msgctxt "@label" -msgid "Configurations" -msgstr "Konfigurationen" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "Marktplatz" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "Datei(en) öffnen..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "Dr&ucker" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Als aktiven Extruder festlegen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Extruder aktivieren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Extruder deaktivieren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "&Zuletzt geöffnet" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "Sichtbare Einstellungen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "Alle Kategorien schließen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "Sichtbarkeit einstellen verwalten..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "&Kameraposition" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "Kameraansicht" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "Ansicht" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "Orthogonal" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "&Druckplatte" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 -msgctxt "@label" -msgid "View type" -msgstr "Typ anzeigen" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 -msgctxt "@label" -msgid "Is printed as support." -msgstr "Wird als Stückstruktur gedruckt." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "Andere Modelle, die sich mit diesem Modell überschneiden, werden angepasst." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "Überlappende Füllung wird bei diesem Modell angepasst." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "Überlappungen mit diesem Modell werden nicht unterstützt." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Profile" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 -msgctxt "@action:button" -msgid "Activate" -msgstr "Aktivieren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "Erstellen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "Duplizieren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 -msgctxt "@action:button" -msgid "Rename" -msgstr "Umbenennen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -msgctxt "@action:button" -msgid "Import" -msgstr "Import" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -msgctxt "@action:button" -msgid "Export" -msgstr "Export" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Profil erstellen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "Geben Sie bitte einen Namen für dieses Profil an." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Profil duplizieren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Entfernen bestätigen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Profil umbenennen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Profil importieren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Profil exportieren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "Drucker: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "Profil mit aktuellen Einstellungen/Überschreibungen aktualisieren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "Ihre aktuellen Einstellungen stimmen mit dem gewählten Profil überein." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Globale Einstellungen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 -msgctxt "@title:tab" -msgid "General" -msgstr "Allgemein" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 -msgctxt "@label" -msgid "Interface" -msgstr "Schnittstelle" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 -msgctxt "@label" -msgid "Currency:" -msgstr "Währung:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 -msgctxt "@label" -msgid "Theme:" -msgstr "Thema:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Bei Änderung der Einstellungen automatisch schneiden." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Automatisch schneiden" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "Viewport-Verhalten" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Überhang anzeigen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "Modellfehler anzeigen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Zentrieren Sie die Kamera, wenn das Element ausgewählt wurde" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Kehren Sie die Richtung des Kamera-Zooms um." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "Soll das Zoomen in Richtung der Maus erfolgen?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "In Mausrichtung zoomen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "Stellen Sie sicher, dass die Modelle getrennt gehalten werden" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "Setzt Modelle automatisch auf der Druckplatte ab" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "Warnmeldung im G-Code-Reader anzeigen." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "Warnmeldung in G-Code-Reader" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "Soll die Schicht in den Kompatibilitätsmodus gezwungen werden?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "Schichtenansicht Kompatibilitätsmodus erzwingen (Neustart erforderlich)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "Fensterposition beim Start wiederherstellen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "Welches Kamera-Rendering sollte verwendet werden?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "Kamera-Rendering:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 -msgid "Perspective" -msgstr "Ansicht" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 -msgid "Orthographic" -msgstr "Orthogonal" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Dateien öffnen und speichern" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Eine einzelne Instanz von Cura verwenden" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Große Modelle anpassen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Extrem kleine Modelle skalieren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "Sollten Modelle gewählt werden, nachdem sie geladen wurden?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "Modelle wählen, nachdem sie geladen wurden" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "Geräte-Präfix zu Auftragsnamen hinzufügen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "Dialog Zusammenfassung beim Speichern eines Projekts anzeigen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "Standardverhalten beim Öffnen einer Projektdatei" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "Standardverhalten beim Öffnen einer Projektdatei: " - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "Stets nachfragen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Immer als Projekt öffnen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Modelle immer importieren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "Geänderte Einstellungen immer verwerfen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "Geänderte Einstellungen immer auf neues Profil übertragen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 -msgctxt "@label" -msgid "Privacy" -msgstr "Privatsphäre" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "(Anonyme) Druckinformationen senden" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 -msgctxt "@action:button" -msgid "More information" -msgstr "Mehr Informationen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 -msgctxt "@label" -msgid "Updates" -msgstr "Updates" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 -msgctxt "@info:tooltip" -msgid "Should Cura check for updates when the program is started?" -msgstr "Soll Cura bei Programmstart nach Updates suchen?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Bei Start nach Updates suchen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 -msgctxt "@option:radio" -msgid "Stable releases only" -msgstr "Nur stabile Versionen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 -msgctxt "@option:radio" -msgid "Stable and Beta releases" -msgstr "Stabile und Beta-Versionen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 -msgctxt "@option:check" -msgid "Get notifications for plugin updates" -msgstr "Benachrichtigungen über Plug-in-Updates erhalten" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "Informationen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "Änderung Durchmesser bestätigen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "Namen anzeigen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "Materialtyp" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "Farbe" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "Eigenschaften" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "Dichte" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "Durchmesser" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "Filamentkosten" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "Filamentgewicht" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "Filamentlänge" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Kosten pro Meter" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "Material trennen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "Beschreibung" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Haftungsinformationen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "Erstellen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Duplizieren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "Mit Druckern synchronisieren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "Drucker" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Material importieren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Material wurde erfolgreich importiert %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Material exportieren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Material erfolgreich nach %1 exportiert" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 -msgctxt "@title:window" -msgid "Sync materials with printers" -msgstr "Materialien mit Druckern synchronisieren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 -msgctxt "@title:header" -msgid "Sync materials with printers" -msgstr "Materialien mit Druckern synchronisieren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 -msgctxt "@button" -msgid "Start" -msgstr "Start" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 -msgctxt "@button" -msgid "Why do I need to sync material profiles?" -msgstr "Warum muss ich Materialprofile synchronisieren?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 -msgctxt "@title:header" -msgid "Sign in" -msgstr "Anmelden" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 -msgctxt "@button" -msgid "Sync materials with USB" -msgstr "Materialien über USB snchronisieren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 -msgctxt "@title:header" -msgid "The following printers will receive the new material profiles:" -msgstr "Die folgenden Drucker erhalten die neuen Materialprofile:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 -msgctxt "@title:header" -msgid "Material profiles successfully synced with the following printers:" -msgstr "Materialprofile wurden erfolgreich mit den folgenden Druckern synchronisiert:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 -msgctxt "@button" -msgid "Troubleshooting" -msgstr "Störungen beheben" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 -msgctxt "@text Asking the user whether printers are missing in a list." -msgid "Printers missing?" -msgstr "Fehlen Drucker?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 -msgctxt "@button" -msgid "Refresh List" -msgstr "Liste aktualisieren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 -msgctxt "@button" -msgid "Try again" -msgstr "Erneut versuchen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Done" -msgstr "Fertig" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 -msgctxt "@button" -msgid "Sync" -msgstr "Synchronisieren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 -msgctxt "@button" -msgid "Syncing" -msgstr "Synchronisierung" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 -msgctxt "@title:header" -msgid "No printers found" -msgstr "Keine Drucker gefunden" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 -msgctxt "@button" -msgid "Learn how to connect your printer to Digital Factory" -msgstr "Erfahren Sie, wie Sie Ihren Drucker mit Digital Factory verbinden" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 -msgctxt "@button" -msgid "Refresh" -msgstr "Aktualisieren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 -msgctxt "@title:header" -msgid "Sync material profiles via USB" -msgstr "Synchronisieren von Materialprofilen über USB" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 -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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 -msgctxt "@text" -msgid "Save the .umm file on a USB stick." -msgstr "Speichern Sie die .umm-Datei auf einem USB-Stick." - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 -msgctxt "@button" -msgid "How to load new material profiles to my printer" -msgstr "Wie lade ich neue Materialprofile in meinen Drucker" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Export material archive" -msgstr "Materialarchiv exportieren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "Alle Materialien exportieren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Sichtbarkeit einstellen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Alle prüfen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 -msgctxt "@title:tab" -msgid "Printers" -msgstr "Drucker" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Berechnet" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "Einstellung" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "Profil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "Aktuell" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "Einheit" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "Nicht mit einem Drucker verbunden" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "Drucker nimmt keine Befehle an" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "In Wartung. Den Drucker überprüfen" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "Verbindung zum Drucker wurde unterbrochen" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "Es wird gedruckt..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "Pausiert" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "Vorbereitung läuft..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Bitte den Ausdruck entfernen" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "Drucken abbrechen" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "Soll das Drucken wirklich abgebrochen werden?" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 -msgctxt "@label:button" -msgid "My printers" -msgstr "Meine Drucker" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 -msgctxt "@label:button" -msgid "Print jobs" -msgstr "Druckaufträge" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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." - -#: /home/clamboo/Desktop/Cura/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." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 -msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "Ultimaker Kundendienst" - -#: /home/clamboo/Desktop/Cura/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." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 -msgctxt "@label:button" -msgid "Ask a question" -msgstr "Eine Frage stellen" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 -msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "Wenden Sie sich an die Ultimaker Community." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 -msgctxt "@label:button" -msgid "Report a bug" -msgstr "Einen Fehler melden" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 -msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "Besuchen Sie die Ultimaker-Website." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "Druckersteuerung" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "Tippposition" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Tippdistanz" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "G-Code senden" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "Extruder" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "Die aktuelle Temperatur dieses Hotends." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "Die Temperatur, auf die das Hotend vorgeheizt wird." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Abbrechen" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Vorheizen" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Die Farbe des Materials in diesem Extruder." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Das Material in diesem Extruder." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "Die in diesem Extruder eingesetzte Düse." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "Der Drucker ist nicht verbunden." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "Druckbett" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -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/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "Die Temperatur, auf die das Bett vorgeheizt wird." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -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/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "Anmelden" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 msgctxt "@text" msgid "" "- Add material profiles and plug-ins from the Marketplace\n" @@ -5325,374 +3328,2253 @@ msgstr "" "- Materialprofile und Plug-ins sichern und synchronisieren\n" "- Ideenaustausch mit und Hilfe von mehr als 48.000 Benutzern in der Ultimaker Community" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" msgid "Create a free Ultimaker account" msgstr "Kostenloses Ultimaker-Konto erstellen" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "Letztes Update: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Ultimaker‑Konto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 -msgctxt "@button" -msgid "Sign Out" -msgstr "Abmelden" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "Überprüfung läuft ..." -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "Konto wurde synchronisiert" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "Irgendetwas ist schief gelaufen ..." -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "Ausstehende Updates installieren" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "Nach Updates für das Konto suchen" -#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "Unbenannt" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "Letztes Update: %1" -#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "Ultimaker‑Konto" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "Abmelden" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" -msgid "No items to select from" -msgstr "Keine auswählbaren Einträge" +msgid "No time estimation available" +msgstr "Keine Zeitschätzung verfügbar" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Preview" +msgstr "Vorschau" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Material estimation" +msgstr "Materialschätzung" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1 g" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:PrintjobStatus" +msgid "Unable to slice" +msgstr "Slicing nicht möglich" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Slice" +msgstr "Slice" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Cancel" +msgstr "Abbrechen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" +msgid "Show Online Troubleshooting" msgstr "Online-Fehlerbehebung anzeigen" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "Umschalten auf Vollbild-Modus" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "Vollbildmodus beenden" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "&Rückgängig machen" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "&Wiederholen" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "&Beenden" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "3D-Ansicht" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Vorderansicht" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "Draufsicht" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "Ansicht von unten" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "Ansicht von links" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "Ansicht von rechts" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "Cura konfigurieren..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "&Drucker hinzufügen..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "Dr&ucker verwalten..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Materialien werden verwaltet..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu" +#: /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." msgid "Add more materials from Marketplace" msgstr "Weiteres Material aus Marketplace hinzufügen" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 msgctxt "@action:inmenu menubar:profile" msgid "&Update profile with current settings/overrides" msgstr "&Profil mit aktuellen Einstellungen/Überschreibungen aktualisieren" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "&Aktuelle Änderungen verwerfen" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." msgstr "P&rofil von aktuellen Einstellungen/Überschreibungen erstellen..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "Profile verwalten..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Online-&Dokumentation anzeigen" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "&Fehler melden" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "Neuheiten" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "Über..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "Ausgewählte löschen" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "Ausgewählte zentrieren" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "Ausgewählte vervielfachen" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Modell löschen" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "Modell auf Druckplatte ze&ntrieren" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "Modelle &gruppieren" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Gruppierung für Modelle aufheben" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "Modelle &zusammenführen" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "Modell &multiplizieren..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "Alle Modelle wählen" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "Druckplatte reinigen" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "Alle Modelle neu laden" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "Alle Modelle an allen Druckplatten anordnen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Alle Modelle anordnen" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Anordnung auswählen" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Alle Modellpositionen zurücksetzen" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "Alle Modelltransformationen zurücksetzen" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "&Datei(en) öffnen..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&Neues Projekt..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Konfigurationsordner anzeigen" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Sichtbarkeit einstellen wird konfiguriert..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "&Marktplatz" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "Meine Drucker" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "Druckaufträge" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +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 +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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "Ultimaker Kundendienst" + +#: /home/trin/Gedeeld/Projects/Cura/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." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "Wenden Sie sich an die Ultimaker Community." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "Besuchen Sie die Ultimaker-Website." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 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." +msgid "Hex" +msgstr "Hexadezimal" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 -msgctxt "@label Header for list of settings." -msgid "Affects" -msgstr "Hat Einfluss auf" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 -msgctxt "@label Header for list of settings." -msgid "Affected By" -msgstr "Wird beeinflusst von" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 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." +msgid "This package will be installed after restarting." +msgstr "Dieses Paket wird nach einem Neustart installiert." -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 -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/Cura.qml:463 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +msgctxt "@title:tab" +msgid "General" +msgstr "Allgemein" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +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 +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 +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 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Profile" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +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 +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 +msgctxt "@title:window" +msgid "Open file(s)" +msgstr "Datei(en) öffnen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +msgctxt "@window:title" +msgid "Install Package" +msgstr "Paket installieren" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Datei(en) öffnen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +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 +msgctxt "@title:window" +msgid "Add Printer" +msgstr "Drucker hinzufügen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +msgctxt "@title:window" +msgid "What's New" +msgstr "Neuheiten" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" +msgid "version: %1" +msgstr "Version: %1" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +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 +msgctxt "@info:credit" msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." +"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura proudly uses the following open source projects:" msgstr "" -"Diese Einstellung hat einen vom Profil abweichenden Wert.\n" -"\n" -"Klicken Sie, um den Wert des Profils wiederherzustellen." +"Cura wurde von Ultimaker B.V. in Zusammenarbeit mit der Community entwickelt.\n" +"Cura verwendet mit Stolz die folgenden Open Source-Projekte:" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"Diese Einstellung wird normalerweise berechnet; aktuell ist jedoch ein Absolutwert eingestellt.\n" -"\n" -"Klicken Sie, um den berechneten Wert wiederherzustellen." +msgid "Graphical user interface" +msgstr "Grafische Benutzerschnittstelle" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +msgctxt "@label" +msgid "Application framework" +msgstr "Anwendungsrahmenwerk" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label" +msgid "G-code generator" +msgstr "G-Code-Generator" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label" +msgid "Interprocess communication library" +msgstr "Bibliothek Interprozess-Kommunikation" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label" +msgid "Python bindings for libnest2d" +msgstr "Python-Bindungen für libnest2d" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 +msgctxt "@label" +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" +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" +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" +msgid "Programming language" +msgstr "Programmiersprache" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +msgctxt "@label" +msgid "GUI framework" +msgstr "GUI-Rahmenwerk" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label" +msgid "GUI framework bindings" +msgstr "GUI-Rahmenwerk Einbindungen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label" +msgid "C/C++ Binding library" +msgstr "C/C++ Einbindungsbibliothek" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label" +msgid "Data interchange format" +msgstr "Format Datenaustausch" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label" +msgid "Font" +msgstr "Schriftart" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +msgctxt "@label" +msgid "Polygon clipping library" +msgstr "Bibliothek für Polygon-Beschneidung" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +msgctxt "@label" +msgid "JSON parser" +msgstr "JSON-Parser" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label" +msgid "Utility functions, including an image loader" +msgstr "Utility-Funktionen, einschließlich Bildlader" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label" +msgid "Utility library, including Voronoi generation" +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" +msgid "Root Certificates for validating SSL trustworthiness" +msgstr "Root-Zertifikate zur Validierung der SSL-Vertrauenswürdigkeit" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +msgctxt "@label" +msgid "Compatibility between Python 2 and 3" +msgstr "Kompatibilität zwischen Python 2 und 3" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label" +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" +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" +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" +msgid "Python bindings for Clipper" +msgstr "Python-Anbindungen für Clipper" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label" +msgid "Serial communication library" +msgstr "Bibliothek für serielle Kommunikation" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label" +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" +msgid "Python Error tracking library" +msgstr "Python-Fehlerverfolgungs-Bibliothek" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label" +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" +msgid "ZeroConf discovery library" +msgstr "Bibliothek für ZeroConf-Erkennung" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 +msgctxt "@label" +msgid "Universal build system configuration" +msgstr "Universelle Build-Systemkonfiguration" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 +msgctxt "@label" +msgid "Dependency and package manager" +msgstr "Abhängigkeits- und Paketmanager" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label" +msgid "Packaging Python-applications" +msgstr "Verpacken von Python-Anwendungen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label" +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" +msgid "Generating Windows installers" +msgstr "Generieren von Windows-Installern" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "Meine Auswahl merken" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +msgctxt "@action:button" +msgid "Open as project" +msgstr "Als Projekt öffnen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +msgctxt "@action:button" +msgid "Import models" +msgstr "Modelle importieren" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 "" +"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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +msgctxt "@title:column" +msgid "Profile settings" +msgstr "Profileinstellungen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +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 +msgctxt "@option:discardOrKeep" +msgid "Always ask me this" +msgstr "Stets nachfragen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +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 +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 +msgctxt "@action:button" +msgid "Discard changes" +msgstr "Änderungen verwerfen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +msgctxt "@action:button" +msgid "Keep changes" +msgstr "Änderungen speichern" + +#: /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?" +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 +msgctxt "@action:button" +msgid "Import all as models" +msgstr "Alle als Modelle importieren" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Extruder %1" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & Material" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +msgctxt "@action:label" +msgid "Material" +msgstr "Material" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +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 +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 +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 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "&Einstellungen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Marketplace" +msgstr "Marktplatz" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Marketplace" +msgstr "Marktplatz" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@label" +msgid "Select configuration" +msgstr "Konfiguration wählen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Enabled" +msgstr "Aktiviert" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +msgctxt "@label" +msgid "Material" +msgstr "Material" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +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 +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 +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 +msgctxt "@label" +msgid "Number of Copies" +msgstr "Anzahl Kopien" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "Er&weiterungen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "&Projekt speichern ..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "Auswahl exportieren..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "Material" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "Generisch" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "&Konfiguration" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "Netzwerkfähige Drucker" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "&Zuletzt geöffnet" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "Sichtbare Einstellungen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "Sichtbarkeit einstellen verwalten..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "&Kameraposition" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "Ansicht" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "Es wird gedruckt..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "Pausiert" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "Vorbereitung läuft..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Abort Print" +msgstr "Drucken abbrechen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Is printed as support." +msgstr "Wird als Stückstruktur gedruckt." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Defaults" +msgstr "Standardeinstellungen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +msgctxt "@label" +msgid "Interface" +msgstr "Schnittstelle" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +msgctxt "@heading" +msgid "-- incomplete --" +msgstr "-- unvollständig --" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +msgctxt "@label" +msgid "Currency:" +msgstr "Währung:" + +#: /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." +msgid "Theme*:" +msgstr "Thema*:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +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 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "Automatisch schneiden" + +#: /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." +msgstr "*Die Anwendung muss neu gestartet werden, damit die Änderungen in Kraft treten." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "Viewport-Verhalten" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +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 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "Überhang anzeigen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +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 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "Modellfehler anzeigen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +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 +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 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "In Mausrichtung zoomen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:463 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "Kamera-Rendering:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +msgid "Perspective" +msgstr "Ansicht" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +msgid "Orthographic" +msgstr "Orthogonal" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "Dateien öffnen und speichern" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +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 +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 +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 +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 +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 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "Große Modelle anpassen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +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 +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "Extrem kleine Modelle skalieren" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:665 +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 +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 +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 +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 +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 +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 +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 +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 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "Stets nachfragen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +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 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "Modelle immer importieren" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +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 +msgctxt "@label" +msgid "Profiles" +msgstr "Profile" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +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 +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 +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 +msgctxt "@label" +msgid "Privacy" +msgstr "Privatsphäre" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "(Anonyme) Druckinformationen senden" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:876 +msgctxt "@label" +msgid "Updates" +msgstr "Updates" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +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 +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 +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 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "Nur stabile Versionen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +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 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "Stabile und Beta-Versionen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Rename" +msgstr "Umbenennen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Import" +msgstr "Import" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Material importieren" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Material exportieren" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +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 +msgctxt "@button" +msgid "Start" +msgstr "Start" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +msgctxt "@title:header" +msgid "Sign in" +msgstr "Anmelden" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +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 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "Materialien über USB snchronisieren" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +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 +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 +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 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "Störungen beheben" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +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 +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 +msgctxt "@button" +msgid "Refresh List" +msgstr "Liste aktualisieren" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +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 +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 +msgctxt "@button" +msgid "Sync" +msgstr "Synchronisieren" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +msgctxt "@button" +msgid "Syncing" +msgstr "Synchronisierung" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +msgctxt "@title:header" +msgid "No printers found" +msgstr "Keine Drucker gefunden" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +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 +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 +msgctxt "@button" +msgid "Refresh" +msgstr "Aktualisieren" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +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 +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 +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 +msgctxt "@text" +msgid "Save the .umm file on a USB stick." +msgstr "Save the .umm file on a USB stick." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:665 +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 +msgctxt "@button" +msgid "How to load new material profiles to my printer" +msgstr "How to load new material profiles to my printer" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:687 /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Export material archive" +msgstr "Materialarchiv exportieren" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "Alle Materialien exportieren" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Display Name" +msgstr "Namen anzeigen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Material Type" +msgstr "Materialtyp" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title" +msgid "Material color picker" +msgstr "Material-Farbwähler" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Density" +msgstr "Dichte" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Filament Cost" +msgstr "Filamentkosten" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Filament length" +msgstr "Filamentlänge" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Unlink Material" +msgstr "Material trennen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Adhesion Information" +msgstr "Haftungsinformationen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Print settings" +msgstr "Druckeinstellungen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@action:button" +msgid "Update profile." +msgstr "Profil aktualisieren." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "Aktuelle Änderungen verwerfen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Globale Einstellungen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Profil exportieren" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "Sichtbarkeit einstellen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" -msgid "Search settings" -msgstr "Einstellungen durchsuchen" +msgid "Check all" +msgstr "Alle prüfen" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 -msgctxt "@action:menu" -msgid "Copy value to all extruders" -msgstr "Werte für alle Extruder kopieren" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "Extruder" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 -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/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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 -msgctxt "@action:menu" -msgid "Hide this setting" -msgstr "Diese Einstellung ausblenden" +#: /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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 -msgctxt "@action:menu" -msgid "Don't show this setting" -msgstr "Diese Einstellung ausblenden" +#: /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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 -msgctxt "@action:menu" -msgid "Keep this setting visible" -msgstr "Diese Einstellung weiterhin anzeigen" +#: /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/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 +#: /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 +msgctxt "@label" +msgid "Active print" +msgstr "Aktiver Druck" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +msgctxt "@label" +msgid "Job Name" +msgstr "Name des Auftrags" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +msgctxt "@label" +msgid "Printing Time" +msgstr "Druckzeit" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Profile" +msgstr "Profil" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 +msgctxt "@tooltip" +msgid "" +"Some setting/override values are different from the values stored in the profile.\n" +"\n" +"Click to open the profile manager." +msgstr "" +"Einige Einstellungs-/Überschreibungswerte unterscheiden sich von den im Profil gespeicherten Werten.\n" +"\n" +"Klicken Sie, um den Profilmanager zu öffnen." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@label:Should be short" +msgid "On" +msgstr "Ein" + +#: /home/trin/Gedeeld/Projects/Cura/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" + +#: /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 "benutzerdefiniertes Profil ist aktiv und einige Einstellungen wurden überschrieben." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +msgctxt "@info" +msgid "custom profile is overriding some settings." +msgstr "benutzerdefiniertes Profil überschreibt einige Einstellungen." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 +msgctxt "@info" +msgid "Some settings were changed." +msgstr "Einige Einstellungen wurden geändert." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +msgctxt "@label" +msgid "Adhesion" +msgstr "Haftung" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +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 +msgctxt "@label" +msgid "Gradual infill" +msgstr "Stufenweise Füllung" + +#: /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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:26 +msgctxt "@label" +msgid "Resolution" +msgstr "Auflösung" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +msgctxt "@label" +msgid "Support" +msgstr "Stützstruktur" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +msgctxt "@label" +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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +msgctxt "@error" +msgid "Configuration not supported" +msgstr "Konfiguration wird nicht unterstützt" + +#: /home/trin/Gedeeld/Projects/Cura/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 "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 +msgctxt "@button:label" +msgid "Learn more" +msgstr "Mehr erfahren" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +msgctxt "@title:column" +msgid "Setting" +msgstr "Einstellung" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +msgctxt "@title:column" +msgid "Profile" +msgstr "Profil" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +msgctxt "@title:column" +msgid "Current" +msgstr "Aktuell" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@placeholder" +msgid "Search" +msgstr "Suche" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5703,140 +5585,359 @@ msgstr "" "\n" "Klicken Sie, um diese Einstellungen sichtbar zu machen." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "Dieses Paket wird nach einem Neustart installiert." +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/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 -msgctxt "@title:tab" -msgid "Settings" -msgstr "Einstellungen" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +msgctxt "@label Header for list of settings." +msgid "Affects" +msgstr "Hat Einfluss auf" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "%1 wird geschlossen" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +msgctxt "@label Header for list of settings." +msgid "Affected By" +msgstr "Wird beeinflusst von" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 -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/Settings/SettingItem.qml:190 +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/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 -msgctxt "@window:title" -msgid "Install Package" -msgstr "Paket installieren" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +msgctxt "@label" +msgid "This setting is resolved from conflicting extruder-specific values:" +msgstr "Diese Einstellung wird durch gegensätzliche, extruderspezifische Werte gelöst:" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Datei(en) öffnen" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +msgctxt "@label" +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"Diese Einstellung hat einen vom Profil abweichenden Wert.\n" +"\n" +"Klicken Sie, um den Wert des Profils wiederherzustellen." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 -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/Settings/SettingItem.qml:334 +msgctxt "@label" +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"Diese Einstellung wird normalerweise berechnet; aktuell ist jedoch ein Absolutwert eingestellt.\n" +"\n" +"Klicken Sie, um den berechneten Wert wiederherzustellen." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 -msgctxt "@title:window" -msgid "Add Printer" -msgstr "Drucker hinzufügen" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +msgctxt "@label:textbox" +msgid "Search settings" +msgstr "Einstellungen durchsuchen" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 -msgctxt "@title:window" +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:menu" +msgid "Hide this setting" +msgstr "Diese Einstellung ausblenden" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:menu" +msgid "Keep this setting visible" +msgstr "Diese Einstellung weiterhin anzeigen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:25 +msgctxt "@info:tooltip" +msgid "3D View" +msgstr "3D-Ansicht" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +msgctxt "@info:tooltip" +msgid "Front View" +msgstr "Vorderansicht" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "Draufsicht" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "Ansicht von rechts" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "Typ anzeigen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@button" +msgid "Add printer manually" +msgstr "Drucker manuell hinzufügen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +msgctxt "@label" +msgid "Manufacturer" +msgstr "Hersteller" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Printer name" +msgstr "Druckername" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Refresh" +msgstr "Aktualisieren" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "Störungen beheben" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Add" +msgstr "Hinzufügen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +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 +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 +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 +msgctxt "@button" +msgid "Connect" +msgstr "Verbinden" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +msgctxt "@label" +msgid "Release Notes" +msgstr "Versionshinweise" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +msgctxt "@button" +msgid "Skip" +msgstr "Überspringen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +msgctxt "@text" +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 +msgctxt "@label" +msgid "Empty" +msgstr "Leer" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +msgctxt "@label" +msgid "User Agreement" +msgstr "Benutzervereinbarung" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" msgid "What's New" msgstr "Neuheiten" -#: PerObjectSettingsTool/plugin.json +#: /home/trin/Gedeeld/Projects/Cura/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 "Provides the Per Model Settings." -msgstr "Ermöglicht die Einstellungen pro Objekt." +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." -#: PerObjectSettingsTool/plugin.json +#: ModelChecker/plugin.json msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Werkzeug „Einstellungen pro Objekt“" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" +msgid "Model Checker" +msgstr "Modell-Prüfer" #: 3MFReader/plugin.json msgctxt "description" @@ -5848,65 +5949,15 @@ msgctxt "name" msgid "3MF Reader" msgstr "3MF-Reader" -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Bietet Unterstützung für das Schreiben von Ultimaker Format Packages." +msgid "Provides support for writing 3MF files." +msgstr "Bietet Unterstützung für das Schreiben von 3MF-Dateien." -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "name" -msgid "UFP Writer" -msgstr "UFP-Writer" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" +msgid "3MF Writer" +msgstr "3MF-Writer" #: AMFReader/plugin.json msgctxt "description" @@ -5918,25 +5969,35 @@ msgctxt "name" msgid "AMF Reader" msgstr "AMF-Reader" -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Liest G-Code-Format aus einem komprimierten Archiv." +msgid "Backup and restore your configuration." +msgstr "Sicherung und Wiederherstellen Ihrer Konfiguration." -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Reader für komprimierten G-Code" +msgid "Cura Backups" +msgstr "Cura-Backups" -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/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" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Stellt die Verbindung zum Slicing-Backend der CuraEngine her." -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "Nachbearbeitung" +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" @@ -5948,65 +6009,15 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Cura-Profil-Writer" -#: USBPrinting/plugin.json +#: DigitalLibrary/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." +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." -#: USBPrinting/plugin.json +#: DigitalLibrary/plugin.json msgctxt "name" -msgid "USB printing" -msgstr "USB-Drucken" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" +msgid "Ultimaker Digital Library" +msgstr "Digitale Bibliothek von Ultimaker" #: FirmwareUpdateChecker/plugin.json msgctxt "description" @@ -6018,45 +6029,55 @@ msgctxt "name" msgid "Firmware Update Checker" msgstr "Firmware-Update-Prüfer" -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/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." +msgid "Provides a machine actions for updating firmware." +msgstr "Ermöglicht Gerätemaßnahmen für die Aktualisierung der Firmware." -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Slice info" -msgstr "Slice-Informationen" +msgid "Firmware Updater" +msgstr "Firmware-Aktualisierungsfunktion" -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/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." +msgid "Reads g-code from a compressed archive." +msgstr "Liest G-Code-Format aus einem komprimierten Archiv." -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "Materialprofile" +msgid "Compressed G-code Reader" +msgstr "Reader für komprimierten G-Code" -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/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." +msgid "Writes g-code to a compressed archive." +msgstr "G-Code wird in ein komprimiertes Archiv geschrieben." -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/plugin.json msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Digitale Bibliothek von Ultimaker" +msgid "Compressed G-code Writer" +msgstr "Writer für komprimierten G-Code" -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "Neue Cura Pakete finden, verwalten und installieren." +msgid "Provides support for importing profiles from g-code files." +msgstr "Ermöglicht das Importieren von Profilen aus G-Code-Dateien." -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "Toolbox" +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" @@ -6068,245 +6089,155 @@ 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 Simulation view." -msgstr "Ermöglicht die Simulationsansicht." +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" -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/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." +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Sendet anonymisierte Slice-Informationen. Kann in den Einstellungen deaktiviert werden." -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/plugin.json msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Upgrade von Version 4.5 auf 4.6" +msgid "Slice info" +msgstr "Slice-Informationen" -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/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." +msgid "Provides a normal solid mesh view." +msgstr "Bietet eine normale, solide Netzansicht." -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/plugin.json msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Upgrade von Version 2.5 auf 2.6" +msgid "Solid View" +msgstr "Solide Ansicht" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/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." +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" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/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/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/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/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/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/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/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/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/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" - -#: 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/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/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/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/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/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/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/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/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/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" - -#: 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" +msgid "Support Eraser" +msgstr "Stützstruktur-Radierer" #: TrimeshReader/plugin.json msgctxt "description" @@ -6328,45 +6259,645 @@ msgctxt "name" msgid "UFP Reader" msgstr "UFP-Reader" -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Bietet eine normale, solide Netzansicht." +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Bietet Unterstützung für das Schreiben von Ultimaker Format Packages." -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "name" -msgid "Solid View" -msgstr "Solide Ansicht" +msgid "UFP Writer" +msgstr "UFP-Writer" -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Bietet Unterstützung für das Schreiben von 3MF-Dateien." +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.)" -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "name" -msgid "3MF Writer" -msgstr "3MF-Writer" +msgid "Ultimaker machine actions" +msgstr "Ultimaker-Maschinenabläufe" -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Bietet eine Überwachungsstufe in Cura." +msgid "Manages network connections to Ultimaker networked printers." +msgstr "Verwaltet Netzwerkverbindungen zu Ultimaker-Netzwerkdruckern." -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "name" -msgid "Monitor Stage" -msgstr "Überwachungsstufe" +msgid "Ultimaker Network Connection" +msgstr "Ultimaker-Netzwerkverbindung" -#: ModelChecker/plugin.json +#: USBPrinting/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." +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." -#: ModelChecker/plugin.json +#: USBPrinting/plugin.json msgctxt "name" -msgid "Model Checker" -msgstr "Modell-Prüfer" +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 "@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." @@ -6676,22 +7207,6 @@ msgstr "Modell-Prüfer" #~ msgid "Create an account" #~ msgstr "Ein Konto erstellen" -#~ msgctxt "@info:generic" -#~ msgid "" -#~ "\n" -#~ "Do you want to sync material and software packages with your account?" -#~ msgstr "" -#~ "\n" -#~ "Möchten Sie Material- und Softwarepakete mit Ihrem Konto synchronisieren?" - -#~ msgctxt "@info:generic" -#~ msgid "" -#~ "\n" -#~ "Syncing..." -#~ msgstr "" -#~ "\n" -#~ "Synchronisierung läuft ..." - #~ 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." @@ -8794,10 +9309,6 @@ msgstr "Modell-Prüfer" #~ 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 "@action:button" -#~ msgid "Dismiss" -#~ msgstr "Verwerfen" - #~ msgctxt "@menuitem" #~ msgid "Global" #~ msgstr "Global" diff --git a/resources/i18n/de_DE/fdmextruder.def.json.po b/resources/i18n/de_DE/fdmextruder.def.json.po index 76cc994c6c..72b55121f6 100644 --- a/resources/i18n/de_DE/fdmextruder.def.json.po +++ b/resources/i18n/de_DE/fdmextruder.def.json.po @@ -1,20 +1,20 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0000\n" -"PO-Revision-Date: 2021-04-16 15:15+0200\n" -"Last-Translator: Bothof \n" -"Language-Team: German\n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"PO-Revision-Date: 2022-07-15 11:17+0200\n" +"Last-Translator: \n" +"Language-Team: LANGUAGE\n" "Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.4.1\n" +"X-Generator: Poedit 3.1.1\n" #: fdmextruder.def.json msgctxt "machine_settings label" diff --git a/resources/i18n/de_DE/fdmprinter.def.json.po b/resources/i18n/de_DE/fdmprinter.def.json.po index 25ee8fcf09..dd402803d5 100644 --- a/resources/i18n/de_DE/fdmprinter.def.json.po +++ b/resources/i18n/de_DE/fdmprinter.def.json.po @@ -1,20 +1,20 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 11:59+0000\n" -"PO-Revision-Date: 2021-04-16 15:16+0200\n" -"Last-Translator: Lionbridge \n" -"Language-Team: German , German \n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"PO-Revision-Date: 2022-07-15 11:04+0200\n" +"Last-Translator: \n" +"Language-Team: LANGUAGE\n" "Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.4.1\n" +"X-Generator: Poedit 3.1.1\n" #: fdmprinter.def.json msgctxt "machine_settings label" @@ -57,7 +57,7 @@ msgid "" "G-code commands to be executed at the very start - separated by \n" "." msgstr "" -"G-Code-Befehle, die ganz am Anfang ausgeführt werden - getrennt durch \n" +"G-Code-Befehle, die zu Beginn ausgeführt werden sollen – getrennt durch \n" "." #: fdmprinter.def.json @@ -71,7 +71,7 @@ msgid "" "G-code commands to be executed at the very end - separated by \n" "." msgstr "" -"G-Code-Befehle, die ganz am Ende ausgeführt werden - getrennt durch \n" +"G-Code-Befehle, die am Ende ausgeführt werden sollen – getrennt durch \n" "." #: fdmprinter.def.json @@ -466,8 +466,8 @@ msgstr "Gerätekopf und Lüfter Polygon" #: fdmprinter.def.json 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)." +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" @@ -562,7 +562,7 @@ msgstr "Die Maximaldrehzahl für den Motor der Z-Richtung." #: fdmprinter.def.json msgctxt "machine_max_feedrate_e label" msgid "Maximum Speed E" -msgstr "Maximaldrehzahl Extruder" +msgstr "Maximum Speed E" #: fdmprinter.def.json msgctxt "machine_max_feedrate_e description" @@ -739,6 +739,16 @@ 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" @@ -959,6 +969,56 @@ 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" @@ -990,14 +1050,24 @@ msgid "Optimize the order in which walls are printed so as to reduce the number 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 "outer_inset_first label" -msgid "Outer Before Inner Walls" -msgstr "Außenwände vor Innenwänden" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Wandreihenfolge" #: fdmprinter.def.json -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 "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" @@ -1010,84 +1080,54 @@ msgid "Prints an extra wall at every other layer. This way infill gets caught be 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 "travel_compensate_overlapping_walls_enabled label" -msgid "Compensate Wall Overlaps" -msgstr "Wandüberlappungen ausgleichen" +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Mindestlinienstärke der Wand" #: fdmprinter.def.json -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 "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 "travel_compensate_overlapping_walls_0_enabled label" -msgid "Compensate Outer Wall Overlaps" -msgstr "Außenwandüberlappungen ausgleichen" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Minimale Wandlinienstärke (geradzahlig)" #: fdmprinter.def.json -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 "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 "travel_compensate_overlapping_walls_x_enabled label" -msgid "Compensate Inner Wall Overlaps" -msgstr "Innenwandüberlappungen ausgleichen" +msgctxt "wall_split_middle_threshold label" +msgid "Split Middle Line Threshold" +msgstr "Schwellenwert für das Teilen der Mittellinie" #: fdmprinter.def.json -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_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 "wall_min_flow label" -msgid "Minimum Wall Flow" -msgstr "Mindestwandfluss" +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Minimale Wandlinienstärke (ungeradzahlig)" #: fdmprinter.def.json -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 "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_min_flow_retract label" -msgid "Prefer Retract" -msgstr "Einziehen bevorzugt" +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_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." - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps label" -msgid "Fill Gaps Between Walls" -msgstr "Lücken zwischen Wänden füllen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option nowhere" -msgid "Nowhere" -msgstr "Nirgends" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option everywhere" -msgid "Everywhere" -msgstr "Überall" - -#: fdmprinter.def.json -msgctxt "filter_out_tiny_gaps label" -msgid "Filter Out Tiny Gaps" -msgstr "Kleine Lücken ausfiltern" - -#: fdmprinter.def.json -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 "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" @@ -1099,6 +1139,26 @@ 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" @@ -1267,7 +1327,7 @@ msgstr "Intelligent verbergen" #: fdmprinter.def.json msgctxt "z_seam_relative label" msgid "Z Seam Relative" -msgstr "Relativwert der Z-Naht" +msgstr "Realitvwert der Z-Naht" #: fdmprinter.def.json msgctxt "z_seam_relative description" @@ -1732,7 +1792,7 @@ 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 "Das Muster des Füllungsmaterials des Drucks. Die Linien- und Zickzack-Füllung wechselt die Richtung auf abwechselnden Schichten, was die Materialkosten reduziert. Die Gitter-, Dreieck-, Tri-Hexagon-, Kubus-, Oktett-, Viertelkubus-, Kreuz- und konzentrischen Muster werden in jeder Schicht vollständig gedruckt. Die Füllung in Form von Kreiseln, Würfeln, Viertelwürfeln und Achten wechselt mit jeder Schicht, um eine gleichmäßigere Verteilung der Stärke in jeder Richtung zu erreichen. Bei der Blitz-Füllung wird versucht, die Füllung zu minimieren, indem nur die Decke des Objekts unterstützt wird." +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" @@ -2046,7 +2106,7 @@ 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 "Die Endpunkte der Füllungslinien werden verkürzt, um Material zu sparen. Diese Einstellung ist der Winkel des Überhangs der Endpunkte dieser Linien." +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" @@ -2056,7 +2116,7 @@ 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 "Um Druckzeit zu sparen, werden die Füllungslinien begradigt. Dies ist der maximal zulässige Winkel des Überhangs über die Länge der Füllung." +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" @@ -2198,6 +2258,26 @@ 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" @@ -2709,24 +2789,14 @@ msgid "The first few layers are printed slower than the rest of the model, to ge 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_enabled label" -msgid "Equalize Filament Flow" -msgstr "Ausgleich des Filamentflusses" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Verhältnis für Durchflussausgleich" #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_max label" -msgid "Maximum Speed for Flow Equalization" -msgstr "Maximale Geschwindigkeit für Flussausgleich" - -#: fdmprinter.def.json -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 "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" @@ -2738,6 +2808,16 @@ 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 "Beschleunigung für Bewegung aktivieren" + +#: 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 "acceleration_print label" msgid "Print Acceleration" @@ -2928,6 +3008,16 @@ 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 "Ruckfunktion für Bewegung aktivieren" + +#: 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 Ruckfunktionsrate 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 "jerk_print label" msgid "Print Jerk" @@ -3721,7 +3811,7 @@ msgstr "Zickzack" #: fdmprinter.def.json msgctxt "support_pattern option cross" msgid "Cross" -msgstr "Kreuz" +msgstr "Quer" #: fdmprinter.def.json msgctxt "support_pattern option gyroid" @@ -4463,6 +4553,46 @@ 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" @@ -4627,6 +4757,16 @@ 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" @@ -5127,6 +5267,16 @@ 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" @@ -5585,17 +5735,17 @@ msgstr "Die Geschwindigkeit, mit der die Bewegung während des Coasting erfolgt, #: fdmprinter.def.json msgctxt "cross_infill_pocket_size label" msgid "Cross 3D Pocket Size" -msgstr "Größe 3D-Kreuztasche" +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-Kreuzmuster bei Höhen, in denen sich das Muster selbst berührt." +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 "Kreuzfülldichte Bild" +msgstr "Querfülldichte Bild" #: fdmprinter.def.json msgctxt "cross_infill_density_image description" @@ -5605,7 +5755,7 @@ msgstr "Die Dateiposition eines Bildes, von dem die Helligkeitswerte die minimal #: fdmprinter.def.json msgctxt "cross_support_density_image label" msgid "Cross Fill Density Image for Support" -msgstr "Kreuzfülldichte Bild für Stützstruktur" +msgstr "Querfülldichte Bild für Stützstruktur" #: fdmprinter.def.json msgctxt "cross_support_density_image description" @@ -6421,6 +6571,36 @@ 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 "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "Abwechselnde Wandrichtungen" + +#: 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 "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" + +#: 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 "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Wandanzahl des Raft-Bodens" + +#: 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 "command_line_settings label" msgid "Command Line Settings" @@ -6481,6 +6661,98 @@ 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." diff --git a/resources/i18n/es_ES/cura.po b/resources/i18n/es_ES/cura.po index 62ffb7e3f7..f5bd264d96 100644 --- a/resources/i18n/es_ES/cura.po +++ b/resources/i18n/es_ES/cura.po @@ -1,465 +1,211 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0100\n" -"PO-Revision-Date: 2021-11-08 11:48+0100\n" -"Last-Translator: Lionbridge \n" -"Language-Team: \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" "Language: es_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 3.0\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" -#: /home/clamboo/Desktop/Cura/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/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "Desconocido" -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 -msgctxt "@info:title" -msgid "Backup" -msgstr "Copia de seguridad" +#: /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/clamboo/Desktop/Cura/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/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Impresoras en red disponibles" -#: /home/clamboo/Desktop/Cura/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/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "No reemplazado" -#: /home/clamboo/Desktop/Cura/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/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/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 -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/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/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 -msgctxt "@action:button" -msgid "New materials installed" -msgstr "Nuevos materiales instalados" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 -msgctxt "@action:button" -msgid "Sync materials with printers" -msgstr "Sincronizar materiales" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 -msgctxt "@action:button" -msgid "Learn more" -msgstr "Más información" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 -msgctxt "@text" -msgid "Unknown error." -msgstr "Error desconocido." - -#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 -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/clamboo/Desktop/Cura/cura/BuildVolume.py:102 -msgctxt "@info:title" -msgid "Build Volume" -msgstr "Volumen de impresión" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "No reemplazado" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "Desconocido" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Impresoras en red disponibles" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Todos los archivos (*)" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Visual" +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Calculado" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Boceto" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 -msgctxt "@label" -msgid "Custom Material" -msgstr "Material personalizado" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 -msgctxt "@label" -msgid "Custom" -msgstr "Personalizado" - -#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 +#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "Fallo de inicio de sesión" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Buscando nueva ubicación para los objetos" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 msgctxt "@info:title" msgid "Finding Location" msgstr "Buscando ubicación" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 msgctxt "@info:title" msgid "Can't Find Location" msgstr "No se puede encontrar la ubicación" -#: /home/clamboo/Desktop/Cura/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/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 -msgctxt "@text:error" -msgid "Failed to connect to Digital Factory." -msgstr "Error al conectarse con Digital Factory." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "Cargando máquinas..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "Configurando preferencias...." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "Iniciando la máquina activa..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "Iniciando el administrador de la máquina..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "Iniciando el volumen de impresión..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "Configurando escena..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "Cargando interfaz..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "Iniciando el motor..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 +#: /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 msgctxt "@info:title" -msgid "Warning" -msgstr "Advertencia" +msgid "Backup" +msgstr "Copia de seguridad" -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 -#, python-brace-format +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 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}" +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/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 msgctxt "@info:title" -msgid "Error" -msgstr "Error" +msgid "Build Volume" +msgstr "Volumen de impresión" -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 -msgctxt "@action:button" -msgid "Skip" -msgstr "Omitir" - -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "Cerrar" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 -msgctxt "@action:button" -msgid "Next" -msgstr "Siguiente" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 -msgctxt "@action:button" -msgid "Finish" -msgstr "Finalizar" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "Agregar" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Cancelar" - -#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 -#, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "N.º de grupo {group_nr}" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Pared exterior" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "Paredes interiores" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Skin" -msgstr "Forro" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Infill" -msgstr "Relleno" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Relleno de soporte" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Interfaz de soporte" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Support" -msgstr "Soporte" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Falda" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "Torre auxiliar" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 -msgctxt "@tooltip" -msgid "Travel" -msgstr "Desplazamiento" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Retracciones" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 -msgctxt "@tooltip" -msgid "Other" -msgstr "Otro" - -#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 -#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 -msgctxt "@text:window" -msgid "The release notes could not be opened." -msgstr "No se han podido abrir las notas de la versión." - -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura no puede iniciarse" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

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

      \n" @@ -474,32 +220,32 @@ msgstr "" "

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

      \n" " " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 msgctxt "@action:button" msgid "Send crash report to Ultimaker" msgstr "Enviar informe de errores a Ultimaker" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Mostrar informe de errores detallado" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Mostrar carpeta de configuración" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Realizar copia de seguridad y restablecer configuración" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Informe del accidente" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190 +#: /home/trin/Gedeeld/Projects/Cura/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" @@ -507,644 +253,814 @@ msgid "" " " msgstr "" "

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

      \n" -"

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

      \n" +"

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

      \n" " " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Información del sistema" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Desconocido" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Versión de Cura" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Idioma de Cura" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "Idioma del sistema operativo" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Plataforma" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Versión Qt" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "Versión PyQt" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 msgctxt "@label" -msgid "Not yet initialized
      " -msgstr "Aún no se ha inicializado
      " +msgid "Not yet initialized" +msgstr "Aún no inicializado" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
    • OpenGL Version: {version}
    • " msgstr "
    • Versión de OpenGL: {version}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
    • OpenGL Vendor: {vendor}
    • " msgstr "
    • Proveedor de OpenGL: {vendor}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
    • OpenGL Renderer: {renderer}
    • " msgstr "
    • Representador de OpenGL: {renderer}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Rastreabilidad de errores" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "Registros" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "Enviar informe" -#: /home/clamboo/Desktop/Cura/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/CuraApplication.py:531 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "Cargando máquinas..." -#: /home/clamboo/Desktop/Cura/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." +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "Configurando preferencias...." -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "Iniciando la máquina activa..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "Iniciando el administrador de la máquina..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "Iniciando el volumen de impresión..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "Configurando escena..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "Cargando interfaz..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "Iniciando el motor..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#, 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 +#, 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 msgctxt "@info:title" -msgid "Log-in failed" -msgstr "Error de inicio de sesión" +msgid "Warning" +msgstr "Advertencia" -#: /home/clamboo/Desktop/Cura/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/CuraApplication.py:1810 +#, 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/clamboo/Desktop/Cura/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/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 +msgctxt "@info:title" +msgid "Error" +msgstr "Error" -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 -msgctxt "@message" -msgid "Could not read response." -msgstr "No se ha podido leer la respuesta." - -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "Multiplicar y colocar objetos" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "Colocando objetos" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Colocando objeto" -#: /home/clamboo/Desktop/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/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "No se ha podido leer la respuesta." -#: /home/clamboo/Desktop/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/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "El estado indicado no es correcto." -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 -msgctxt "@label" -msgid "Nozzle" -msgstr "Tobera" +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 -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/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/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info" +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 msgctxt "@info:title" -msgid "Settings updated" -msgstr "Ajustes actualizados" +msgid "Log-in failed" +msgstr "Error de inicio de sesión" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "Extrusores deshabilitados" +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 msgctxt "@title:window" msgid "File Already Exists" msgstr "El archivo ya existe" -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "URL del archivo no válida:" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Exportación correcta" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Perfil {0} importado correctamente." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Perfil personalizado" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "Todavía no hay ninguna impresora activa." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "No se puede añadir el perfil." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: /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 msgctxt "@label" -msgid "Per Model Settings" -msgstr "Ajustes por modelo" +msgid "Nozzle" +msgstr "Tobera" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "Configurar ajustes por modelo" +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +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/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Perfil de cura" - -#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "Archivo X3D" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 msgctxt "@info:title" -msgid "Backups" -msgstr "Copias de seguridad" +msgid "Settings updated" +msgstr "Ajustes actualizados" -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Creando copia de seguridad..." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Cargando su copia de seguridad..." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Administrar copias de seguridad" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Ajustes de la máquina" - -#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "Bloqueador de soporte" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Unidad extraíble" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 msgctxt "@info:title" -msgid "Saving" -msgstr "Guardando" +msgid "Extruder(s) Disabled" +msgstr "Extrusores deshabilitados" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "Guardado en unidad extraíble {0} como {1}" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 -msgctxt "@info:title" -msgid "File Saved" -msgstr "Archivo guardado" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" -msgid "Eject" -msgstr "Expulsar" +msgid "Add" +msgstr "Agregar" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Cancelar" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 #, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "Expulsar dispositivo extraíble {0}" +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "N.º de grupo {group_nr}" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 -#, 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/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Pared exterior" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "Paredes interiores" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "Forro" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "Relleno" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Relleno de soporte" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Interfaz de soporte" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "Soporte" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Falda" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "Torre auxiliar" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "Desplazamiento" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Retracciones" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Close" +msgstr "Cerrar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "Nuevos materiales instalados" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Learn more" +msgstr "Más información" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@text" +msgid "Unknown error." +msgstr "Error desconocido." + +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Retirar de forma segura el hardware" +msgid "3D Model Assistant" +msgstr "Asistente del modelo 3D" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 #, 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." +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 "" +"

      Es posible que uno o más modelos 3D no se impriman correctamente debido al tamaño del modelo y la configuración del material:

      \n" +"

      {model_names}

      \n" +"

      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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Actualizar firmware" - -#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Perfiles de Cura 15.04" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Recomendado" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Personalizado" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 +#: /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." -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 msgctxt "@info:title" msgid "Open Project File" msgstr "Abrir archivo de proyecto" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 +#: /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 "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." + +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:392 +msgctxt "@info:title" +msgid "Material profiles not installed" +msgstr "Perfiles de materiales no instalados" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:405 +msgctxt "@action:button" +msgid "Install Materials" +msgstr "Instalar materiales" + +#: /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/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 -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/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/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 -#: /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Paquete de formato Ultimaker" +#: /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/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "Archivo GCode" +#: /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/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "Vista previa" +#: /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/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Vista de rayos X" +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Procesando capas" +#: /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 "No ha sido posible almacenar la información del paquete de materiales en el archivo del proyecto: {material}. Es posible que este proyecto no se abra correctamente" +" en otros sistemas." -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:283 msgctxt "@info:title" -msgid "Information" -msgstr "Información" +msgid "Failed to save material package information" +msgstr "Se ha producido un error al guardar la información del paquete de materiales" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 msgctxt "@message:title" msgid "Slicing failed" msgstr "Error en el corte" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 msgctxt "@message:button" msgid "Report a bug" msgstr "Informar del error" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 msgctxt "@info:status" msgid "" "Please review settings and check if your models:\n" @@ -1157,436 +1073,516 @@ msgstr "" "- Están asignados a un extrusor activado\n" " - No están todos definidos como mallas modificadoras" -#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "Archivo AMF" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "Archivo GCode comprimido" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "Posprocesamiento" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "Modificar GCode" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "Impresión USB" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Imprimir mediante USB" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Imprimir mediante USB" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Conectado mediante USB" +msgid "Processing Layers" +msgstr "Procesando capas" -#: /home/clamboo/Desktop/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 "Se está realizando una impresión con USB, si cierra Cura detendrá la impresión. ¿Desea continuar?" - -#: /home/clamboo/Desktop/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 "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/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 -msgctxt "@message" -msgid "Print in Progress" -msgstr "Impresión en curso" - -#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "Preparar" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "Analizar GCode" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 msgctxt "@info:title" -msgid "G-code Details" -msgstr "Datos de GCode" +msgid "Information" +msgstr "Información" -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 -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/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 msgctxt "@item:inlistbox" -msgid "G File" -msgstr "Archivo G" +msgid "Cura Profile" +msgstr "Perfil de cura" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "Imagen JPG" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "Imagen JPEG" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "Imagen PNG" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "Imagen BMP" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "Imagen GIF" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "Nivelar placa de impresión" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "Seleccionar actualizaciones" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 msgctxt "@info" msgid "Could not access update information." msgstr "No se pudo acceder a la información actualizada." -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#: /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}." -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#: /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" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 msgctxt "@action:button" msgid "How to update" msgstr "Cómo actualizar" -#: /home/clamboo/Desktop/Cura/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/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Actualizar firmware" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 -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/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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Sincronizando..." +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +#: /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 "Changes detected from your Ultimaker account" -msgstr "Se han detectado cambios desde su cuenta de Ultimaker" +msgid "G-code Details" +msgstr "Datos de GCode" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 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?" +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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 -msgctxt "@action:button" -msgid "Sync" -msgstr "Sincronizar" +#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "Archivo G" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Rechazar y eliminar de la cuenta" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "Error al descargar los complementos {}" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "Rechazar" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "Estoy de acuerdo" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Acuerdo de licencia de complemento" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +#: /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/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +#: /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 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "Supervisar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "Configurar ajustes por modelo" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +msgctxt "@item:inmenu" +msgid "Post Processing" +msgstr "Posprocesamiento" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@item:inmenu" +msgid "Prepare" +msgstr "Preparar" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 +msgctxt "@item:inmenu" +msgid "Preview" +msgstr "Vista previa" + +#: /home/trin/Gedeeld/Projects/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 +#, 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 +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 +#, 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 +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 +#, 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 +#, 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 +#, 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 +#, 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 +msgctxt "@info:title" +msgid "File Saved" +msgstr "Archivo guardado" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +msgctxt "@action:button" +msgid "Eject" +msgstr "Expulsar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +#, 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 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "Retirar de forma segura el hardware" + +#: /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 "Error al expulsar {0}. Es posible que otro programa esté utilizando la unidad." + +#: /home/trin/Gedeeld/Projects/Cura/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." -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 msgctxt "@info:title" msgid "Simulation View" msgstr "Vista de simulación" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:133 msgctxt "@info:status" msgid "Nothing is shown because you need to slice first." msgstr "No se muestra nada porque primero hay que cortar." -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 msgctxt "@info:title" msgid "No layers to show" msgstr "No hay capas para mostrar" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +#: /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 "No volver a mostrar este mensaje" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Vista de capas" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -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/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Imprime a través de la red" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Conectado a través de la red" +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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "mañana" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 +msgctxt "@info:title" +msgid "Model Errors" +msgstr "Errores de modelo" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "hoy" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Solid view" +msgstr "Vista de sólidos" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 +msgctxt "@label" +msgid "Support Blocker" +msgstr "Bloqueador de soporte" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 binario" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "Stanford Triangle Format" + +#: /home/trin/Gedeeld/Projects/Cura/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" + +#: /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 "No se puede escribir en el archivo UFP:" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" -msgid "Connect via Network" -msgstr "Conectar a través de la red" +msgid "Level build plate" +msgstr "Nivelar placa de impresión" -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "Error de impresión" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Fecha de envío" - -#: /home/clamboo/Desktop/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 "Está intentando conectarse a una impresora que no está ejecutando Ultimaker Connect. Actualice la impresora al firmware más reciente." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 -msgctxt "@info:title" -msgid "Update your printer" -msgstr "Actualice su impresora" - -#: /home/clamboo/Desktop/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 "La cola de trabajos de impresión está llena. La impresora no puede aceptar trabajos nuevos." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "Cola llena" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "Enviando trabajo de impresión" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/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 ha detectado perfiles de material que aún no estaban instalados en la impresora host del grupo {0}." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "Enviando materiales a la impresora" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "Error de red" - -#: /home/clamboo/Desktop/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 "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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "No es un host de grupo" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 msgctxt "@action" -msgid "Configure group" -msgstr "Configurar grupo" +msgid "Select upgrades" +msgstr "Seleccionar actualizaciones" -#: /home/clamboo/Desktop/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 "" -"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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 -msgctxt "@action" -msgid "Get started" -msgstr "Empezar" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 -msgctxt "@action" -msgid "Learn more" -msgstr "Más información" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 msgctxt "@action:button" msgid "Print via cloud" msgstr "Imprimir mediante cloud" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Imprimir mediante cloud" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Conectado mediante cloud" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 msgctxt "@action:button" msgid "Monitor print" msgstr "Supervisar la impresión" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 msgctxt "@action:tooltip" msgid "Track the print in Ultimaker Digital Factory" msgstr "Haga un seguimiento de la impresión en Ultimaker Digital Factory" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#: /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 "Código de error desconocido al cargar el trabajo de impresión: {0}" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 +#: /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" @@ -1594,71 +1590,71 @@ msgid_plural "... and {0} others" msgstr[0] "... y {0} más" msgstr[1] "... y {0} más" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:361 msgctxt "@action:button" msgid "Remove printers" msgstr "Eliminar impresoras" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 +#: /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} se eliminará hasta la próxima sincronización de la cuenta." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 +#: /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 "Para eliminar {printer_name} permanentemente, visite {digital_factory_link}" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 +#: /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 "¿Seguro que desea eliminar {printer_name} temporalmente?" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 msgctxt "@title:window" msgid "Remove printers?" msgstr "¿Eliminar impresoras?" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 #, python-brace-format msgctxt "@label" msgid "" @@ -1674,1645 +1670,1100 @@ msgstr[1] "" "Está a punto de eliminar {0} impresoras de Cura. Esta acción no se puede deshacer.\n" "¿Seguro que desea continuar?" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +#: /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 "Está a punto de eliminar todas las impresoras de Cura. Esta acción no se puede deshacer.¿Seguro que desea continuar?" -#: /home/clamboo/Desktop/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 "Open Compressed Triangle Mesh" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA Digital Asset Exchange" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "glTF binario" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF incrustado JSON" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Stanford Triangle Format" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "COLLADA Digital Asset Exchange comprimido" - -#: /home/clamboo/Desktop/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 "Las áreas resaltadas indican que faltan superficies o son inusuales. Corrija los errores en el modelo y vuelva a abrirlo en Cura." - -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "Errores de modelo" - -#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Vista de sólidos" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Error al escribir el archivo 3MF." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "Archivo 3MF" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Archivo 3MF del proyecto de Cura" - -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "Supervisar" - -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 -msgctxt "@info:title" -msgid "3D Model Assistant" -msgstr "Asistente del modelo 3D" - -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 #, 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

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

      Es posible que uno o más modelos 3D no se impriman correctamente debido al tamaño del modelo y la configuración del material:

      \n" -"

      {model_names}

      \n" -"

      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

      " +"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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action" +msgid "Get started" +msgstr "Empezar" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +msgctxt "@action" +msgid "Learn more" +msgstr "Más información" + +#: /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 "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 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "Actualice su impresora" + +#: /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 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 +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 +#, 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 +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 +msgctxt "@action" +msgid "Configure group" +msgstr "Configurar grupo" + +#: /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 "Espere hasta que se envíe el trabajo actual." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info:title" +msgid "Network error" +msgstr "Error de red" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "Cola llena" + +#: /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 "El trabajo de impresión se ha enviado correctamente a la impresora." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "mañana" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "hoy" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "Imprimir mediante USB" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" -msgid "Mesh Type" -msgstr "Tipo de malla" +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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "Modelo normal" +#: /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 "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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "Imprimir como soporte" +#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "Impresión en curso" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Modificar los ajustes de las superposiciones" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "No es compatible con superposiciones" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 +#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Solo malla de relleno" +msgid "X3D File" +msgstr "Archivo X3D" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 +#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Cortar malla" +msgid "X-Ray view" +msgstr "Vista de rayos X" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Seleccionar ajustes" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Seleccionar ajustes o personalizar este modelo" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtrar..." - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Mostrar todo" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Copias de seguridad de Cura" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Versión de Cura" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Máquinas" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Materiales" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Perfiles" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Complementos" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "¿Desea obtener más información?" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Realizar copia de seguridad ahora" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Copia de seguridad automática" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "Restaurar" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Eliminar copia de seguridad" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Restaurar copia de seguridad" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 -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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 -msgctxt "@button" -msgid "Sign in" -msgstr "Iniciar sesión" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Mis copias de seguridad" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -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/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Ajustes de la impresora" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (anchura)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (profundidad)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (altura)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 -msgctxt "@label" -msgid "Build plate shape" -msgstr "Forma de la placa de impresión" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 -msgctxt "@label" -msgid "Origin at center" -msgstr "Origen en el centro" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 -msgctxt "@label" -msgid "Heated bed" -msgstr "Plataforma calentada" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 -msgctxt "@label" -msgid "Heated build volume" -msgstr "Volumen de impresión calentado" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 -msgctxt "@label" -msgid "G-code flavor" -msgstr "Tipo de GCode" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Ajustes del cabezal de impresión" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -msgctxt "@label" -msgid "X min" -msgstr "X mín" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -msgctxt "@label" -msgid "Y min" -msgstr "Y mín" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -msgctxt "@label" -msgid "X max" -msgstr "X máx" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -msgctxt "@label" -msgid "Y max" -msgstr "Y máx" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "Gantry Height" -msgstr "Altura del puente" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Número de extrusores" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Aplicar compensaciones del extrusor a GCode" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "Iniciar GCode" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "Finalizar GCode" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Ajustes de la tobera" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 -msgctxt "@label" -msgid "Nozzle size" -msgstr "Tamaño de la tobera" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Diámetro del material compatible" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Desplazamiento de la tobera sobre el eje X" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Desplazamiento de la tobera sobre el eje Y" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Número de ventilador de enfriamiento" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "GCode inicial del extrusor" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "GCode final del extrusor" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "Impresora" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Actualizar firmware" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Actualización de firmware automática" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Cargar firmware personalizado" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Seleccionar firmware personalizado" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Actualización del firmware" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Updating firmware." -msgstr "Actualización del firmware." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Actualización del firmware completada." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 msgctxt "@title:window" msgid "Open Project" msgstr "Abrir proyecto" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 msgctxt "@action:ComboBox Update/override existing profile" msgid "Update existing" msgstr "Actualizar existente" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Ajustes de la impresora" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Ajustes del perfil" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 msgctxt "@action:label" msgid "Derivative from" msgstr "Derivado de" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 -msgctxt "@action:label" -msgid "Material settings" -msgstr "Ajustes del material" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 msgctxt "@action:label" msgid "Mode" msgstr "Modo" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 msgctxt "@action:label" msgid "Visible settings:" msgstr "Ajustes visibles:" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 msgctxt "@action:button" msgid "Open" msgstr "Abrir" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "Abrir el proyecto de todos modos" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:529 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "Instalar material no instalado" + +#: /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 "Post Processing Plugin" -msgstr "Complemento de posprocesamiento" +msgid "Cura Backups" +msgstr "Copias de seguridad de Cura" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 +#: /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 "Guardar el proyecto de Cura e imprimir archivo" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "Guardar el proyecto de Cura" + +#: /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 "Post Processing Scripts" -msgstr "Secuencias de comandos de posprocesamiento" +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/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "Añadir secuencia de comando" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 msgctxt "@label" -msgid "Settings" -msgstr "Ajustes" +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/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Cambiar las secuencias de comandos de posprocesamiento." +#: /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/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 -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/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Cargar firmware personalizado" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /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 "Convert Image..." -msgstr "Convertir imagen..." +msgid "Select custom firmware" +msgstr "Seleccionar firmware personalizado" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 -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/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Actualización del firmware" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 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." +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "La distancia máxima de cada píxel desde la \"Base\"." -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 msgctxt "@action:label" msgid "Base (mm)" msgstr "Base (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate." -msgstr "La anchura en milímetros en la placa de impresión." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 msgctxt "@action:label" msgid "Width (mm)" msgstr "Anchura (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "La profundidad en milímetros en la placa de impresión" +msgid "The width in millimeters on the build plate" +msgstr "La anchura en milímetros en la placa de impresión" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 msgctxt "@action:label" msgid "Depth (mm)" msgstr "Profundidad (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 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." +msgid "The depth in millimeters on the build plate" +msgstr "La profundidad en milímetros en la placa de impresión" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 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." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "Translucidez" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 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." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "Transmitancia de 1 mm (%)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "La cantidad de suavizado que se aplica a la imagen." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 msgctxt "@action:label" msgid "Smoothing" msgstr "Suavizado" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /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/clamboo/Desktop/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" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Nivelación de la placa de impresión" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Iniciar nivelación de la placa de impresión" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Mover a la siguiente posición" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Más información sobre la recopilación de datos anónimos" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -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/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "No deseo enviar datos anónimos" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Permitir el envío de datos anónimos" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" -msgid "Marketplace" -msgstr "Marketplace" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -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." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "Salir de %1" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "Instalar" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -msgctxt "@action:button" -msgid "Installed" -msgstr "Instalado" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "Prémium" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 -msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "Ir a Web Marketplace" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 -msgctxt "@label" -msgid "Search materials" -msgstr "Buscar materiales" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "Compatibilidad" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "Máquina" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "Placa de impresión" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "Soporte" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "Calidad" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "Especificaciones técnicas" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "Especificaciones de seguridad" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "Directrices de impresión" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "Sitio web" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -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" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "Comprar bobinas de material" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "Actualizar" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "Actualizando" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "Actualizado" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "Atrás" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 msgctxt "@title:tab" -msgid "Plugins" -msgstr "Complementos" +msgid "Printer" +msgstr "Impresora" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materiales" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Ajustes de la tobera" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "Instalado" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 msgctxt "@label" -msgid "Will install upon restarting" -msgstr "Se instalará después de reiniciar" +msgid "Nozzle size" +msgstr "Tamaño de la tobera" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -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" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Downgrade" -msgstr "Degradar" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "Desinstalar" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /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 "Community Contributions" -msgstr "Contribuciones de la comunidad" +msgid "mm" +msgstr "mm" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 msgctxt "@label" -msgid "Community Plugins" -msgstr "Complementos de la comunidad" +msgid "Compatible material diameter" +msgstr "Diámetro del material compatible" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 msgctxt "@label" -msgid "Generic Materials" -msgstr "Materiales genéricos" +msgid "Nozzle offset X" +msgstr "Desplazamiento de la tobera sobre el eje X" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "Buscando paquetes..." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 msgctxt "@label" -msgid "Website" -msgstr "Sitio web" +msgid "Nozzle offset Y" +msgstr "Desplazamiento de la tobera sobre el eje Y" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 msgctxt "@label" -msgid "Email" -msgstr "Correo electrónico" +msgid "Cooling Fan Number" +msgstr "Número de ventilador de enfriamiento" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -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" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "GCode inicial del extrusor" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 +#: /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 "Version" -msgstr "Versión" +msgid "X (Width)" +msgstr "X (anchura)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 msgctxt "@label" -msgid "Last updated" -msgstr "Última actualización" +msgid "Y (Depth)" +msgstr "Y (profundidad)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 msgctxt "@label" -msgid "Brand" -msgstr "Marca" +msgid "Z (Height)" +msgstr "Z (altura)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 msgctxt "@label" -msgid "Downloads" -msgstr "Descargas" +msgid "Build plate shape" +msgstr "Forma de la placa de impresión" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "Complementos instalados" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "No se ha instalado ningún complemento." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "Materiales instalados" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 -msgctxt "@info" -msgid "No material has been installed." -msgstr "No se ha instalado ningún material." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "Complementos agrupados" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "Materiales agrupados" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -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." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "Tiene que aceptar la licencia para instalar el paquete" +msgid "Origin at center" +msgstr "Origen en el centro" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 msgctxt "@button" msgid "Dismiss" msgstr "Descartar" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "Confirmar desinstalación" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "Instalar los materiales que faltan" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -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." +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "Materiales" +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "Perfiles" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "Aceptar" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "Confirmar" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 +msgctxt "@header" +msgid "Manage packages" +msgstr "Gestionar paquetes" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "Combinación de colores" +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Color del material" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "Gestionar paquetes" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Tipo de línea" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Velocidad" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Grosor de la capa" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Ancho de línea" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Flujo" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Modo de compatibilidad" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "Desplazamientos" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "Asistentes" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "Perímetro" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "Relleno" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "Inicios" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Mostrar solo capas superiores" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "Mostrar cinco capas detalladas en la parte superior" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Superior o inferior" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Pared interior" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "mín" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "máx" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Administrar impresora" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -msgctxt "@label" -msgid "Glass" -msgstr "Vidrio" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" msgid "Loading..." msgstr "Cargando..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "No disponible" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "Complementos" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "No se puede conectar" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "Materiales" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "Sin actividad" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Preparando..." +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "Imprimiendo" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 +#: /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 "Untitled" -msgstr "Sin título" +msgid "You need to accept the license to install the package" +msgstr "Tiene que aceptar la licencia para instalar el paquete" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anónimo" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Debe cambiar la configuració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 "Por" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "Detalles" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Enable" +msgstr "Habilitar" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Impresora no disponible" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Disable" +msgstr "Deshabilitar" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "Primera disponible" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 +msgctxt "@button" +msgid "Downgrading..." +msgstr "Degradando..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "En cola" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 +msgctxt "@button" +msgid "Downgrade" +msgstr "Degradar" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Gestionar en el navegador" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 +msgctxt "@button" +msgid "Installing..." +msgstr "Instalando..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -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/Marketplace/resources/qml/PackageCardHeader.qml:250 +msgctxt "@button" +msgid "Install" +msgstr "Instalar" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "Trabajos de impresión" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254 +msgctxt "@button" +msgid "Uninstall" +msgstr "Desinstalar" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "Tiempo de impresión total" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Updating..." +msgstr "Actualizando..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "Esperando" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Imprimir a través de la red" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 -msgctxt "@action:button" -msgid "Print" -msgstr "Imprimir" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 -msgctxt "@label" -msgid "Printer selection" -msgstr "Selección de la impresora" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Cambios de configuración" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "Anular" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Cambiar material %1, de %2 a %3." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "Cargar %3 como material %1 (no se puede anular)." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Cambiar print core %1, de %2 a %3." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "Aluminio" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Finished" -msgstr "Terminado" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Cancelando..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Cancelado" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Failed" -msgstr "Error" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Pausando..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Paused" -msgstr "En pausa" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Reanudando..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 -msgctxt "@label:status" -msgid "Action required" -msgstr "Acción requerida" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Termina el %1 a las %2" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Conectar con la impresora en red" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Seleccione la impresora en la lista siguiente:" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "Editar" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 -msgctxt "@action:button" -msgid "Remove" -msgstr "Eliminar" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Update" msgstr "Actualizar" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -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/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "Detalles del paquete" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "Tipo" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "Atrás" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "Versión de firmware" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "Descripción" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "Dirección" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:110 +msgctxt "@header" +msgid "Compatible printers" +msgstr "Impresoras compatibles" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -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/Marketplace/resources/qml/PackagePage.qml:134 +msgctxt "@info" +msgid "No compatibility information" +msgstr "No hay información sobre la compatibilidad" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -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/Marketplace/resources/qml/PackagePage.qml:152 +msgctxt "@header" +msgid "Compatible support materials" +msgstr "Materiales de soporte compatibles" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -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/Marketplace/resources/qml/PackagePage.qml:176 +msgctxt "@info No materials" +msgid "None" +msgstr "Ninguno" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "Conectar" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Dirección IP no válida" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +#: /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 "Please enter a valid IP address." -msgstr "Introduzca una dirección IP válida." +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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Dirección de la impresora" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 -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/Marketplace/resources/qml/VerifiedIcon.qml:22 +msgctxt "@info" +msgid "Ultimaker Certified Material" +msgstr "Material certificado por Ultimaker" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "Mover al principio" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 +msgctxt "@info" +msgid "Ultimaker Verified Package" +msgstr "Paquete verificado por Ultimaker" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Borrar" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "Reanudar" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Pausando..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Reanudando..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "Pausar" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Cancelando..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Cancelar" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Mover trabajo de impresión al principio" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Borrar trabajo de impresión" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Cancela la impresión" - -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" msgid "" "Please make sure your printer has a connection:\n" @@ -3325,2170 +2776,681 @@ msgstr "" "- Compruebe que la impresora está conectada a la red.\n" "- Compruebe que ha iniciado sesión para ver impresoras conectadas a la nube." -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /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/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /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/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /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/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "Vista en 3D" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "Vista frontal" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "Vista superior" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "Vista del lado izquierdo" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "Vista del lado derecho" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 msgctxt "@label" -msgid "Object list" -msgstr "Lista de objetos" +msgid "Mesh Type" +msgstr "Tipo de malla" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 +#: /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 "Marketplace" -msgstr "Marketplace" +msgid "Select settings" +msgstr "Seleccionar ajustes" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "&Archivo" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "&Edición" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "&Ver" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "A&justes" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "E&xtensiones" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "Pre&ferencias" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "A&yuda" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 msgctxt "@title:window" -msgid "New project" -msgstr "Nuevo proyecto" +msgid "Select Settings to Customize for this model" +msgstr "Seleccionar ajustes o personalizar este modelo" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 -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/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filtrar..." -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 -msgctxt "@label:PrintjobStatus" -msgid "Slicing..." -msgstr "Segmentando..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Mostrar todo" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 -msgctxt "@label:PrintjobStatus" -msgid "Unable to slice" -msgstr "No se puede segmentar" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "Complemento de posprocesamiento" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Processing" -msgstr "Procesando" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Slice" -msgstr "Segmentación" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 msgctxt "@label" -msgid "Start the slicing process" -msgstr "Iniciar el proceso de segmentación" +msgid "Post Processing Scripts" +msgstr "Secuencias de comandos de posprocesamiento" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 -msgctxt "@button" -msgid "Cancel" -msgstr "Cancelar" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +msgctxt "@action" +msgid "Add a script" +msgstr "Añadir secuencia de comando" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 msgctxt "@label" -msgid "Time estimation" -msgstr "Estimación de tiempos" +msgid "Settings" +msgstr "Ajustes" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +#: /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 "Material estimation" -msgstr "Estimación de material" +msgid "Color scheme" +msgstr "Combinación de colores" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1 m" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Color del material" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1 g" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Tipo de línea" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: /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 "No time estimation available" -msgstr "Ningún cálculo de tiempo disponible" +msgid "Compatibility Mode" +msgstr "Modo de compatibilidad" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 msgctxt "@label" -msgid "No cost estimation available" -msgstr "Ningún cálculo de costes disponible" +msgid "Travels" +msgstr "Desplazamientos" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "Vista previa" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 msgctxt "@label" -msgid "Add a printer" -msgstr "Agregar una impresora" +msgid "Helpers" +msgstr "Asistentes" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 msgctxt "@label" -msgid "Add a networked printer" -msgstr "Agregar una impresora en red" +msgid "Shell" +msgstr "Perímetro" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +#: /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 "Add a non-networked printer" -msgstr "Agregar una impresora fuera de red" +msgid "Infill" +msgstr "Relleno" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "Añadir una impresora a la nube" +msgid "Starts" +msgstr "Inicios" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "Esperando la respuesta de la nube" +msgid "Only Show Top Layers" +msgstr "Mostrar solo capas superiores" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 msgctxt "@label" -msgid "No printers found in your account?" -msgstr "¿No se han encontrado impresoras en su cuenta?" +msgid "Show 5 Detailed Layers On Top" +msgstr "Mostrar cinco capas detalladas en la parte superior" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 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:" +msgid "Top / Bottom" +msgstr "Superior o inferior" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "Añadir impresora manualmente" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 msgctxt "@label" -msgid "Add printer by IP address" -msgstr "Agregar impresora por dirección IP" +msgid "Inner Wall" +msgstr "Pared interior" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "Introduzca la dirección IP de su impresora." - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "Agregar" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 msgctxt "@label" -msgid "Could not connect to device." -msgstr "No se ha podido conectar al dispositivo." +msgid "min" +msgstr "mín" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "¿No puede conectarse a la impresora Ultimaker?" +msgid "max" +msgstr "máx" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +#: /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 +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 msgctxt "@label" -msgid "The printer at this address has not responded yet." +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 +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 +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 +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" + +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 -msgctxt "@button" -msgid "Back" -msgstr "Atrás" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +msgctxt "@action:button" msgid "Connect" msgstr "Conectar" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "Acuerdo de usuario" +#: /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/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "Rechazar y cerrar" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Le damos la bienvenida a Ultimaker Cura" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +#: /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 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." +msgid "Please enter a valid IP address." +msgstr "Introduzca una dirección IP válida." -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "Empezar" +#: /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/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +#: /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 +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 msgctxt "@label" msgid "Sign in to the Ultimaker platform" msgstr "Inicie sesión en la plataforma Ultimaker" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "Añada ajustes de material y complementos desde Marketplace" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -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" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 -msgctxt "@button" -msgid "Skip" -msgstr "Omitir" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Cree una cuenta gratuita de Ultimaker" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 -msgctxt "@label" -msgid "Manufacturer" -msgstr "Fabricante" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 -msgctxt "@label" -msgid "Profile author" -msgstr "Autor del perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 -msgctxt "@label" -msgid "Printer name" -msgstr "Nombre de la impresora" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 -msgctxt "@text" -msgid "Please name your printer" -msgstr "Asigne un nombre a su impresora" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "Actualizar" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "Agregar impresora por IP" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "Añadir impresora a la nube" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "Solución de problemas" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Ayúdenos a mejorar Ultimaker Cura" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "Tipos de máquina" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "Uso de material" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "Número de segmentos" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "Ajustes de impresión" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "Más información" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 -msgctxt "@label" -msgid "What's New" -msgstr "Novedades" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "Vacío" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "Notas de la versión" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 -msgctxt "@title:window The argument is the application name." -msgid "About %1" -msgstr "Acerca de %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 -msgctxt "@label" -msgid "version: %1" -msgstr "versión: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 -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 "" -"Ultimaker B.V. ha desarrollado Cura en cooperación con la comunidad.\n" -"Cura se enorgullece de utilizar los siguientes proyectos de código abierto:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 -msgctxt "@label" -msgid "Graphical user interface" -msgstr "Interfaz gráfica de usuario (GUI)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" -msgid "Application framework" -msgstr "Entorno de la aplicación" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" -msgid "G-code generator" -msgstr "Generador de GCode" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" -msgid "Interprocess communication library" -msgstr "Biblioteca de comunicación entre procesos" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" -msgid "Programming language" -msgstr "Lenguaje de programación" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" -msgid "GUI framework" -msgstr "Entorno de la GUI" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" -msgid "GUI framework bindings" -msgstr "Enlaces del entorno de la GUI" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" -msgid "C/C++ Binding library" -msgstr "Biblioteca de enlaces C/C++" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 -msgctxt "@label" -msgid "Data interchange format" -msgstr "Formato de intercambio de datos" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 -msgctxt "@label" -msgid "Support library for scientific computing" -msgstr "Biblioteca de apoyo para cálculos científicos" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" -msgid "Support library for faster math" -msgstr "Biblioteca de apoyo para cálculos más rápidos" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" -msgid "Support library for handling STL files" -msgstr "Biblioteca de apoyo para gestionar archivos STL" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" -msgid "Support library for handling planar objects" -msgstr "Biblioteca de compatibilidad para trabajar con objetos planos" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" -msgid "Support library for handling triangular meshes" -msgstr "Biblioteca de compatibilidad para trabajar con mallas triangulares" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" -msgid "Support library for handling 3MF files" -msgstr "Biblioteca de compatibilidad para trabajar con archivos 3MF" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 -msgctxt "@label" -msgid "Support library for file metadata and streaming" -msgstr "Biblioteca de compatibilidad para metadatos y transmisión de archivos" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 -msgctxt "@label" -msgid "Serial communication library" -msgstr "Biblioteca de comunicación en serie" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 -msgctxt "@label" -msgid "ZeroConf discovery library" -msgstr "Biblioteca de detección para Zeroconf" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" -msgid "Polygon clipping library" -msgstr "Biblioteca de recorte de polígonos" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@Label" -msgid "Static type checker for Python" -msgstr "Comprobador de tipo estático para Python" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@Label" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "Certificados de raíz para validar la fiabilidad del SSL" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 -msgctxt "@Label" -msgid "Python Error tracking library" -msgstr "Biblioteca de seguimiento de errores de Python" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 -msgctxt "@label" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "Biblioteca de empaquetado de polígonos, desarrollada por Prusa Research" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -msgctxt "@label" -msgid "Python bindings for libnest2d" -msgstr "Enlaces de Python para libnest2d" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" -msgid "Support library for system keyring access" -msgstr "Biblioteca de soporte para el acceso al llavero del sistema" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" -msgid "Python extensions for Microsoft Windows" -msgstr "Extensiones Python para Microsoft Windows" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" -msgid "Font" -msgstr "Fuente" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" -msgid "SVG icons" -msgstr "Iconos SVG" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" -msgid "Linux cross-distribution application deployment" -msgstr "Implementación de la aplicación de distribución múltiple de Linux" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Abrir archivo(s)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 -msgctxt "@action:button" -msgid "Import all as models" -msgstr "Importar todos como modelos" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 -msgctxt "@title:window" -msgid "Save Project" -msgstr "Guardar proyecto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Extrusor %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 y material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 -msgctxt "@action:label" -msgid "Material" -msgstr "Material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "No mostrar resumen de proyecto al guardar de nuevo" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 -msgctxt "@action:button" -msgid "Save" -msgstr "Guardar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 -msgctxt "@title:window" -msgid "Discard or Keep changes" -msgstr "Descartar o guardar cambios" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 -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'." - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 -msgctxt "@title:column" -msgid "Profile settings" -msgstr "Ajustes del perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 -msgctxt "@title:column" -msgid "Current changes" -msgstr "Cambios actuales" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 -msgctxt "@option:discardOrKeep" -msgid "Always ask me this" -msgstr "Preguntar siempre" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 -msgctxt "@option:discardOrKeep" -msgid "Discard and never ask again" -msgstr "Descartar y no volver a preguntar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 -msgctxt "@option:discardOrKeep" -msgid "Keep and never ask again" -msgstr "Guardar y no volver a preguntar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 -msgctxt "@action:button" -msgid "Discard changes" -msgstr "Descartar los cambios" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 -msgctxt "@action:button" -msgid "Keep changes" -msgstr "Mantener los cambios" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 -msgctxt "@title:window" -msgid "Open project file" -msgstr "Abrir archivo de proyecto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "Recordar mi selección" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 -msgctxt "@action:button" -msgid "Open as project" -msgstr "Abrir como proyecto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 -msgctxt "@action:button" -msgid "Import models" -msgstr "Importar modelos" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 -msgctxt "@label" -msgid "Active print" -msgstr "Activar impresión" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 -msgctxt "@label" -msgid "Job Name" -msgstr "Nombre del trabajo" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 -msgctxt "@label" -msgid "Printing Time" -msgstr "Tiempo de impresión" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 -msgctxt "@label" -msgid "Estimated time left" -msgstr "Tiempo restante estimado" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Add printer" -msgstr "Agregar impresora" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 -msgctxt "@button" -msgid "Manage printers" -msgstr "Administrar impresoras" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "Impresoras conectadas" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "Impresoras preconfiguradas" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 -msgctxt "@label" -msgid "Print settings" -msgstr "Ajustes de impresión" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -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/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 -msgctxt "@label" -msgid "Profile" -msgstr "Perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 -msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "" -"Algunos valores de los ajustes o sobrescrituras son distintos a los valores almacenados en el perfil.\n" -"\n" -"Haga clic para abrir el administrador de perfiles." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 -msgctxt "@label:header" -msgid "Custom profiles" -msgstr "Perfiles personalizados" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "Descartar cambios actuales" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "Recomendado" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "Personalizado" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "Encendido" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "Apagado" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" -msgstr "Experimental" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 -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" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 -msgctxt "@label" -msgid "Profiles" -msgstr "Perfiles" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 -msgctxt "@label" -msgid "Support" -msgstr "Soporte" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 -msgctxt "@label" -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 -msgctxt "@label" -msgid "Gradual infill" -msgstr "Relleno gradual" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 -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/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "Adherencia" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 -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/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "Guardar proyecto..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "Impresoras de red habilitadas" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "Impresoras locales" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "Material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "Favoritos" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "Genérico" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 -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/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "Multiplicar modelo seleccionado" -msgstr[1] "Multiplicar modelos seleccionados" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "Número de copias" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "&Guardar proyecto..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "&Exportar..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "Exportar selección..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "Configuraciones" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "Personalizado" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "Impresora" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "Habilitado" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "Material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 -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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 -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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 -msgctxt "@label" -msgid "Select configuration" -msgstr "Seleccionar configuración" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 -msgctxt "@label" -msgid "Configurations" -msgstr "Configuraciones" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "Cargando configuraciones disponibles desde la impresora..." - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "Marketplace" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "Abrir archivo(s)..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "&Impresora" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Definir como extrusor activo" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Habilitar extrusor" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Deshabilitar extrusor" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "Abrir &reciente" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "Ajustes visibles" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "Contraer todas las categorías" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "Gestionar visibilidad de los ajustes..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "&Posición de la cámara" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "Vista de cámara" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "Perspectiva" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "Ortográfica" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "P&laca de impresión" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 -msgctxt "@label" -msgid "View type" -msgstr "Ver tipo" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 -msgctxt "@label" -msgid "Is printed as support." -msgstr "Se imprime como soporte." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "Se han modificado otros modelos que se superponen con este modelo." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "Se ha modificado la superposición del relleno con este modelo." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "No se admiten superposiciones con este modelo." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Perfiles" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 -msgctxt "@action:button" -msgid "Activate" -msgstr "Activar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "Crear" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "Duplicado" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 -msgctxt "@action:button" -msgid "Rename" -msgstr "Cambiar nombre" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -msgctxt "@action:button" -msgid "Import" -msgstr "Importar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -msgctxt "@action:button" -msgid "Export" -msgstr "Exportar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Crear perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "Introduzca un nombre para este perfil." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Duplicar perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Confirmar eliminación" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Cambiar nombre de perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Importar perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Exportar perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "Impresora: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "Actualizar perfil con ajustes o sobrescrituras actuales" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "Los ajustes actuales coinciden con el perfil seleccionado." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Ajustes globales" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 -msgctxt "@title:tab" -msgid "General" -msgstr "General" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 -msgctxt "@label" -msgid "Interface" -msgstr "Interfaz" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 -msgctxt "@label" -msgid "Currency:" -msgstr "Moneda:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 -msgctxt "@label" -msgid "Theme:" -msgstr "Tema:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Segmentar automáticamente al cambiar los ajustes." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Segmentar automáticamente" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "Comportamiento de la ventanilla" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Mostrar voladizos" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "Mostrar errores de modelo" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Centrar cámara cuando se selecciona elemento" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Invertir la dirección del zoom de la cámara." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "Hacer zoom en la dirección del ratón" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "Asegúrese de que los modelos están separados" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "Se muestra el mensaje de advertencia en el lector de GCode." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "Mensaje de advertencia en el lector de GCode" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "¿Debe forzarse el modo de compatibilidad de la capa?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "Forzar modo de compatibilidad de la vista de capas (necesario reiniciar)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "Restaurar la posición de la ventana al inicio" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "¿Qué tipo de renderizado de cámara debería usarse?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "Renderizado de cámara:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 -msgid "Perspective" -msgstr "Perspectiva" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 -msgid "Orthographic" -msgstr "Ortográfica" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Abrir y guardar archivos" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Utilizar una sola instancia de Cura" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Escalar modelos de gran tamaño" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Escalar modelos demasiado pequeños" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "Seleccionar modelos al abrirlos" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "Agregar prefijo de la máquina al nombre del trabajo" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "Mostrar un cuadro de diálogo de resumen al guardar el proyecto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "Comportamiento predeterminado al abrir un archivo del proyecto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "Comportamiento predeterminado al abrir un archivo del proyecto: " - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "Preguntar siempre" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Abrir siempre como un proyecto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Importar modelos siempre" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "Descartar siempre los ajustes modificados" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "Transferir siempre los ajustes modificados al nuevo perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 -msgctxt "@label" -msgid "Privacy" -msgstr "Privacidad" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "Enviar información (anónima) de impresión" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 -msgctxt "@action:button" -msgid "More information" -msgstr "Más información" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 -msgctxt "@label" -msgid "Updates" -msgstr "Actualizaciones" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Buscar actualizaciones al iniciar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 -msgctxt "@info:tooltip" -msgid "When checking for updates, only check for stable releases." -msgstr "Cuando busque actualizaciones, compruebe solo si hay versiones estables." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 -msgctxt "@option:radio" -msgid "Stable releases only" -msgstr "Solo versiones estables" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 -msgctxt "@option:radio" -msgid "Stable and Beta releases" -msgstr "Versiones estables y beta" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 -msgctxt "@option:check" -msgid "Get notifications for plugin updates" -msgstr "Recibir notificaciones de actualizaciones de complementos" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "Información" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "Confirmar cambio de diámetro" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "Mostrar nombre" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "Tipo de material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "Color" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "Propiedades" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "Densidad" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "Diámetro" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "Coste del filamento" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "Peso del filamento" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "Longitud del filamento" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Coste por metro" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "Desvincular material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "Descripción" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Información sobre adherencia" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "Crear" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Duplicado" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "Sincronizar con las impresoras" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "Impresora" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Importar material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "El material se ha importado correctamente en %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Exportar material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 -msgctxt "@title:window" -msgid "Sync materials with printers" -msgstr "Sincronizar materiales con impresoras" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 -msgctxt "@title:header" -msgid "Sync materials with printers" -msgstr "Sincronizar materiales con impresoras" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 -msgctxt "@button" -msgid "Start" -msgstr "Iniciar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 -msgctxt "@button" -msgid "Why do I need to sync material profiles?" -msgstr "¿Por qué tengo que sincronizar los perfiles de materiales?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 -msgctxt "@title:header" -msgid "Sign in" -msgstr "Iniciar sesión" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 -msgctxt "@button" -msgid "Sync materials with USB" -msgstr "Sincronización de materiales con USB" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 -msgctxt "@button" -msgid "Troubleshooting" -msgstr "Solución de problemas" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 -msgctxt "@text Asking the user whether printers are missing in a list." -msgid "Printers missing?" -msgstr "¿Faltan impresoras?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 -msgctxt "@button" -msgid "Refresh List" -msgstr "Actualizar la lista" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 -msgctxt "@button" -msgid "Try again" -msgstr "Inténtelo de nuevo" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Done" -msgstr "Realizado" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 -msgctxt "@button" -msgid "Sync" -msgstr "Sincronizar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 -msgctxt "@button" -msgid "Syncing" -msgstr "Sincronizando" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 -msgctxt "@title:header" -msgid "No printers found" -msgstr "No se ha encontrado ninguna impresora" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 -msgctxt "@button" -msgid "Learn how to connect your printer to Digital Factory" -msgstr "Aprenda a conectar su impresora a Digital Factory" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 -msgctxt "@button" -msgid "Refresh" -msgstr "Actualizar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 -msgctxt "@title:header" -msgid "Sync material profiles via USB" -msgstr "Sincronización de perfiles de material a través USB" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 -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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 -msgctxt "@button" -msgid "How to load new material profiles to my printer" -msgstr "Cómo cargar nuevos perfiles de material en mi impresora" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Export material archive" -msgstr "Exportar archivo de material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "Exportar todos los materiales" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Visibilidad de los ajustes" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Comprobar todo" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 -msgctxt "@title:tab" -msgid "Printers" -msgstr "Impresoras" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Calculado" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "Ajustes" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "Perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "Actual" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "Unidad" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "No está conectado a ninguna impresora" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "La impresora no acepta comandos" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "En mantenimiento. Compruebe la impresora" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "Se ha perdido la conexión con la impresora" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "Imprimiendo..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "En pausa" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "Preparando..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Retire la impresión" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "Cancelar impresión" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "¿Está seguro de que desea cancelar la impresión?" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 -msgctxt "@label:button" -msgid "My printers" -msgstr "Mis impresoras" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 -msgctxt "@label:button" -msgid "Print jobs" -msgstr "Trabajos de impresión" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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." - -#: /home/clamboo/Desktop/Cura/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." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 -msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "Soporte técnico de Ultimaker" - -#: /home/clamboo/Desktop/Cura/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." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 -msgctxt "@label:button" -msgid "Ask a question" -msgstr "Haga una pregunta" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 -msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "Consulte en la Comunidad Ultimaker." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 -msgctxt "@label:button" -msgid "Report a bug" -msgstr "Informar del error" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 -msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "Visite el sitio web de Ultimaker." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "Control de impresoras" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "Posición de desplazamiento" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Distancia de desplazamiento" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "Enviar GCode" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "Extrusor" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "Temperatura actual de este extremo caliente." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Cancelar" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Precalentar" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Color del material en este extrusor." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Material en este extrusor." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "Tobera insertada en este extrusor." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "La impresora no está conectada." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "Placa de impresión" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -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/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -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/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "Iniciar sesión" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 msgctxt "@text" msgid "" "- Add material profiles and plug-ins from the Marketplace\n" @@ -5499,375 +3461,2289 @@ msgstr "" "- 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" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" msgid "Create a free Ultimaker account" msgstr "Cree una cuenta gratuita de Ultimaker" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "Última actualización: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Cuenta de Ultimaker" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 -msgctxt "@button" -msgid "Sign Out" -msgstr "Cerrar sesión" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "Comprobando..." -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "Cuenta sincronizada" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "Se ha producido un error..." -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "Instalar actualizaciones pendientes" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "Buscar actualizaciones de la cuenta" -#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "Sin título" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "Última actualización: %1" -#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "Cuenta de Ultimaker" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" -msgid "No items to select from" -msgstr "No hay elementos para seleccionar" +msgid "No time estimation available" +msgstr "Ningún cálculo de tiempo disponible" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Preview" +msgstr "Vista previa" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Material estimation" +msgstr "Estimación de material" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1 g" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +msgctxt "@label:PrintjobStatus" +msgid "Slicing..." +msgstr "Segmentando..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Processing" +msgstr "Procesando" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +msgctxt "@button" +msgid "Slice" +msgstr "Segmentación" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Cancel" +msgstr "Cancelar" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "Mostrar Guía de resolución de problemas en línea" +msgid "Show Online Troubleshooting" +msgstr "Mostrar resolución de problemas online" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "Alternar pantalla completa" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "Salir de modo de pantalla completa" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "Des&hacer" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "&Rehacer" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "&Salir" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "Vista en 3D" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Vista frontal" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "Vista superior" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "Vista inferior" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "Vista del lado izquierdo" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "Vista del lado derecho" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "Configurar Cura..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "&Agregar impresora..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "Adm&inistrar impresoras ..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Administrar materiales..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu" +#: /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." msgid "Add more materials from Marketplace" msgstr "Añadir más materiales de Marketplace" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 msgctxt "@action:inmenu menubar:profile" msgid "&Update profile with current settings/overrides" msgstr "&Actualizar perfil con ajustes o sobrescrituras actuales" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "&Descartar cambios actuales" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." msgstr "&Crear perfil a partir de ajustes o sobrescrituras actuales..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "Administrar perfiles..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Mostrar &documentación en línea" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "Informar de un &error" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "Novedades" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "Acerca de..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "Eliminar selección" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "Centrar selección" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "Multiplicar selección" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Eliminar modelo" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "Ce&ntrar modelo en plataforma" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "A&grupar modelos" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Desagrupar modelos" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "Co&mbinar modelos" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "&Multiplicar modelo..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "Seleccionar todos los modelos" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "Borrar placa de impresión" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "Recargar todos los modelos" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 -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" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Organizar todos los modelos" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Organizar selección" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Restablecer las posiciones de todos los modelos" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "Restablecer las transformaciones de todos los modelos" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "&Abrir archivo(s)..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&Nuevo proyecto..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Mostrar carpeta de configuración" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Configurar visibilidad de los ajustes..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "&Marketplace" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "Mis impresoras" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "Trabajos de impresión" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +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 +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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "Soporte técnico de Ultimaker" + +#: /home/trin/Gedeeld/Projects/Cura/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." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "Consulte en la Comunidad Ultimaker." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "Visite el sitio web de Ultimaker." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 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." +msgid "Hex" +msgstr "Hex" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 -msgctxt "@label Header for list of settings." -msgid "Affects" -msgstr "Afecta a" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 -msgctxt "@label Header for list of settings." -msgid "Affected By" -msgstr "Afectado por" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 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." +msgid "This package will be installed after restarting." +msgstr "Este paquete se instalará después de reiniciar." -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 -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/Cura.qml:463 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +msgctxt "@title:tab" +msgid "General" +msgstr "General" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +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 +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 +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 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Perfiles" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +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 +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 +msgctxt "@title:window" +msgid "Open file(s)" +msgstr "Abrir archivo(s)" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +msgctxt "@window:title" +msgid "Install Package" +msgstr "Instalar paquete" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Abrir archivo(s)" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +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 +msgctxt "@title:window" +msgid "Add Printer" +msgstr "Agregar impresora" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +msgctxt "@title:window" +msgid "What's New" +msgstr "Novedades" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" +msgid "version: %1" +msgstr "versión: %1" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +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 +msgctxt "@info:credit" msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." +"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura proudly uses the following open source projects:" msgstr "" -"Este ajuste tiene un valor distinto del perfil.\n" -"\n" -"Haga clic para restaurar el valor del perfil." +"Ultimaker B.V. ha desarrollado Cura en cooperación con la comunidad.\n" +"Cura se enorgullece de utilizar los siguientes proyectos de código abierto:" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"Este ajuste se calcula normalmente pero actualmente tiene un valor absoluto establecido.\n" -"\n" -"Haga clic para restaurar el valor calculado." +msgid "Graphical user interface" +msgstr "Interfaz gráfica de usuario (GUI)" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +msgctxt "@label" +msgid "Application framework" +msgstr "Entorno de la aplicación" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label" +msgid "G-code generator" +msgstr "Generador de GCode" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label" +msgid "Interprocess communication library" +msgstr "Biblioteca de comunicación entre procesos" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label" +msgid "Python bindings for libnest2d" +msgstr "Enlaces de Python para libnest2d" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 +msgctxt "@label" +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" +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" +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" +msgid "Programming language" +msgstr "Lenguaje de programación" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +msgctxt "@label" +msgid "GUI framework" +msgstr "Entorno de la GUI" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label" +msgid "GUI framework bindings" +msgstr "Enlaces del entorno de la GUI" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label" +msgid "C/C++ Binding library" +msgstr "Biblioteca de enlaces C/C++" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label" +msgid "Data interchange format" +msgstr "Formato de intercambio de datos" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label" +msgid "Font" +msgstr "Fuente" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +msgctxt "@label" +msgid "Polygon clipping library" +msgstr "Biblioteca de recorte de polígonos" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +msgctxt "@label" +msgid "JSON parser" +msgstr "Parser JSON" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label" +msgid "Utility functions, including an image loader" +msgstr "Funciones de utilidades, incluido un cargador de imágenes" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label" +msgid "Utility library, including Voronoi generation" +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" +msgid "Root Certificates for validating SSL trustworthiness" +msgstr "Certificados de raíz para validar la fiabilidad del SSL" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +msgctxt "@label" +msgid "Compatibility between Python 2 and 3" +msgstr "Compatibilidad entre Python 2 y 3" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label" +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" +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" +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" +msgid "Python bindings for Clipper" +msgstr "Enlaces de Python para Clipper" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label" +msgid "Serial communication library" +msgstr "Biblioteca de comunicación en serie" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label" +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" +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" +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" +msgid "ZeroConf discovery library" +msgstr "Biblioteca de detección para Zeroconf" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 +msgctxt "@label" +msgid "Universal build system configuration" +msgstr "Configuración del sistema de construcción universal" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 +msgctxt "@label" +msgid "Dependency and package manager" +msgstr "Gestor de dependencias y paquetes" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label" +msgid "Packaging Python-applications" +msgstr "Empaquetado de aplicaciones Python" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label" +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" +msgid "Generating Windows installers" +msgstr "Generación de instaladores de Windows" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "Recordar mi selección" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +msgctxt "@action:button" +msgid "Open as project" +msgstr "Abrir como proyecto" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +msgctxt "@action:button" +msgid "Import models" +msgstr "Importar modelos" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 "" +"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'." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +msgctxt "@title:column" +msgid "Profile settings" +msgstr "Ajustes del perfil" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +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 +msgctxt "@option:discardOrKeep" +msgid "Always ask me this" +msgstr "Preguntar siempre" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +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 +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 +msgctxt "@action:button" +msgid "Discard changes" +msgstr "Descartar los cambios" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +msgctxt "@action:button" +msgid "Keep changes" +msgstr "Mantener los cambios" + +#: /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?" +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 +msgctxt "@action:button" +msgid "Import all as models" +msgstr "Importar todos como modelos" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Extrusor %1" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 y material" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +msgctxt "@action:label" +msgid "Material" +msgstr "Material" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +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 +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 +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 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "A&justes" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Marketplace" +msgstr "Marketplace" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Marketplace" +msgstr "Marketplace" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@label" +msgid "Select configuration" +msgstr "Seleccionar configuración" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Enabled" +msgstr "Habilitado" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +msgctxt "@label" +msgid "Material" +msgstr "Material" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +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 +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 +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 +msgctxt "@label" +msgid "Number of Copies" +msgstr "Número de copias" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "E&xtensiones" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "&Guardar proyecto..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "Exportar selección..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "Material" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "Genérico" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "Pre&ferencias" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label:category menu label" +msgid "Local printers" +msgstr "Impresoras locales" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "Ajustes visibles" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "Gestionar visibilidad de los ajustes..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:inmenu menubar:view" +msgid "Camera view" +msgstr "Vista de cámara" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "Ortográfica" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "Imprimiendo..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "En pausa" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "Preparando..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Abort Print" +msgstr "Cancelar impresión" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Is printed as support." +msgstr "Se imprime como soporte." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Defaults" +msgstr "Valores predeterminados" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +msgctxt "@label" +msgid "Interface" +msgstr "Interfaz" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +msgctxt "@heading" +msgid "-- incomplete --" +msgstr "-- incompleto --" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +msgctxt "@label" +msgid "Currency:" +msgstr "Moneda:" + +#: /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." +msgid "Theme*:" +msgstr "Tema*:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +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 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "Segmentar automáticamente" + +#: /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." +msgstr "*Tendrá que reiniciar la aplicación para que estos cambios tengan efecto." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "Comportamiento de la ventanilla" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +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 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "Mostrar voladizos" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +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 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "Mostrar errores de modelo" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "Renderizado de cámara:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +msgid "Perspective" +msgstr "Perspectiva" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +msgid "Orthographic" +msgstr "Ortográfica" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "Abrir y guardar archivos" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +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 +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 +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 +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 +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 +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 +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 +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 +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 +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "Seleccionar modelos al abrirlos" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:680 +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 +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 +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 +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 +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 +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 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "Preguntar siempre" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +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 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "Importar modelos siempre" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +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 +msgctxt "@label" +msgid "Profiles" +msgstr "Perfiles" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +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 +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 +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 +msgctxt "@label" +msgid "Privacy" +msgstr "Privacidad" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +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 +msgctxt "@label" +msgid "Updates" +msgstr "Actualizaciones" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +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 +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 +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 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "Solo versiones estables" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +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 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "Versiones estables y beta" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Rename" +msgstr "Cambiar nombre" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Import" +msgstr "Importar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Importar material" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Exportar material" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +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 +msgctxt "@button" +msgid "Start" +msgstr "Iniciar" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +msgctxt "@title:header" +msgid "Sign in" +msgstr "Iniciar sesión" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +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 +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 +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 +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 +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 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "Solución de problemas" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +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 +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 +msgctxt "@button" +msgid "Refresh List" +msgstr "Actualizar la lista" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +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 +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 +msgctxt "@button" +msgid "Sync" +msgstr "Sincronizar" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +msgctxt "@button" +msgid "Syncing" +msgstr "Sincronizando" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +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 +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 +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 +msgctxt "@button" +msgid "Refresh" +msgstr "Actualizar" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +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 +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 +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 +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 +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 +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 +msgctxt "@button" +msgid "Back" +msgstr "Atrás" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +msgctxt "@button" +msgid "Export material archive" +msgstr "Exportar archivo de material" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "Exportar todos los materiales" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Display Name" +msgstr "Mostrar nombre" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Material Type" +msgstr "Tipo de material" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title" +msgid "Material color picker" +msgstr "Seleccionador de color del material" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Density" +msgstr "Densidad" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Filament Cost" +msgstr "Coste del filamento" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Filament length" +msgstr "Longitud del filamento" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Unlink Material" +msgstr "Desvincular material" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Adhesion Information" +msgstr "Información sobre adherencia" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Print settings" +msgstr "Ajustes de impresión" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@action:button" +msgid "Update profile." +msgstr "Actualizar perfil." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "Descartar cambios actuales" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Ajustes globales" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Exportar perfil" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "Visibilidad de los ajustes" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" -msgid "Search settings" -msgstr "Buscar ajustes" +msgid "Check all" +msgstr "Comprobar todo" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 -msgctxt "@action:menu" -msgid "Copy value to all extruders" -msgstr "Copiar valor en todos los extrusores" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "Extrusor" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 -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/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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 -msgctxt "@action:menu" -msgid "Hide this setting" -msgstr "Ocultar este ajuste" +#: /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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 -msgctxt "@action:menu" -msgid "Don't show this setting" -msgstr "No mostrar este ajuste" +#: /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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 -msgctxt "@action:menu" -msgid "Keep this setting visible" -msgstr "Mostrar este ajuste" +#: /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/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 +#: /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 +msgctxt "@label" +msgid "Active print" +msgstr "Activar impresión" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +msgctxt "@label" +msgid "Job Name" +msgstr "Nombre del trabajo" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Estimated time left" +msgstr "Tiempo restante estimado" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip" +msgid "" +"Some setting/override values are different from the values stored in the profile.\n" +"\n" +"Click to open the profile manager." +msgstr "" +"Algunos valores de los ajustes o sobrescrituras son distintos a los valores almacenados en el perfil.\n" +"\n" +"Haga clic para abrir el administrador de perfiles." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@label:Should be short" +msgid "On" +msgstr "Encendido" + +#: /home/trin/Gedeeld/Projects/Cura/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" + +#: /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 "el perfil personalizado está activo y ha sobrescrito algunos ajustes." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +msgctxt "@info" +msgid "custom profile is overriding some settings." +msgstr "el perfil personalizado está sobrescribiendo algunos ajustes." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 +msgctxt "@info" +msgid "Some settings were changed." +msgstr "Se han modificado algunos ajustes." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +msgctxt "@label" +msgid "Adhesion" +msgstr "Adherencia" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +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 +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" +msgstr "Resolución" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +msgctxt "@label" +msgid "Support" +msgstr "Soporte" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +msgctxt "@label" +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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +msgctxt "@error" +msgid "Configuration not supported" +msgstr "Configuración no admitida" + +#: /home/trin/Gedeeld/Projects/Cura/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 "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 +msgctxt "@button:label" +msgid "Learn more" +msgstr "Más información" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +msgctxt "@title:column" +msgid "Setting" +msgstr "Ajustes" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +msgctxt "@title:column" +msgid "Profile" +msgstr "Perfil" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +msgctxt "@title:column" +msgid "Current" +msgstr "Actual" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@placeholder" +msgid "Search" +msgstr "Buscar" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5878,141 +5754,360 @@ msgstr "" "\n" "Haga clic para mostrar estos ajustes." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "Este paquete se instalará después de reiniciar." +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/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 -msgctxt "@title:tab" -msgid "Settings" -msgstr "Ajustes" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +msgctxt "@label Header for list of settings." +msgid "Affects" +msgstr "Afecta a" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "Cerrando %1" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +msgctxt "@label Header for list of settings." +msgid "Affected By" +msgstr "Afectado por" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 -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/Settings/SettingItem.qml:190 +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/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 -msgctxt "@window:title" -msgid "Install Package" -msgstr "Instalar paquete" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +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/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Abrir archivo(s)" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +msgctxt "@label" +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"Este ajuste tiene un valor distinto del perfil.\n" +"\n" +"Haga clic para restaurar el valor del perfil." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 -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/Settings/SettingItem.qml:334 +msgctxt "@label" +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"Este ajuste se calcula normalmente pero actualmente tiene un valor absoluto establecido.\n" +"\n" +"Haga clic para restaurar el valor calculado." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 -msgctxt "@title:window" -msgid "Add Printer" -msgstr "Agregar impresora" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +msgctxt "@label:textbox" +msgid "Search settings" +msgstr "Buscar ajustes" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 -msgctxt "@title:window" +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:menu" +msgid "Hide this setting" +msgstr "Ocultar este ajuste" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:menu" +msgid "Keep this setting visible" +msgstr "Mostrar este ajuste" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:tooltip" +msgid "Front View" +msgstr "Vista frontal" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "Vista superior" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "Vista del lado derecho" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "Ver tipo" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@button" +msgid "Add printer manually" +msgstr "Añadir impresora manualmente" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +msgctxt "@label" +msgid "Manufacturer" +msgstr "Fabricante" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Printer name" +msgstr "Nombre de la impresora" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Refresh" +msgstr "Actualizar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "Solución de problemas" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Add" +msgstr "Agregar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +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 +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 +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 +msgctxt "@button" +msgid "Connect" +msgstr "Conectar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +msgctxt "@button" +msgid "Skip" +msgstr "Omitir" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +msgctxt "@text" +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 +msgctxt "@label" +msgid "Empty" +msgstr "Vacío" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" msgid "What's New" msgstr "Novedades" -#: PerObjectSettingsTool/plugin.json +#: /home/trin/Gedeeld/Projects/Cura/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 "Provides the Per Model Settings." -msgstr "Proporciona los ajustes por modelo." +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." -#: PerObjectSettingsTool/plugin.json +#: ModelChecker/plugin.json msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Herramienta de ajustes por modelo" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" +msgid "Model Checker" +msgstr "Comprobador de modelos" #: 3MFReader/plugin.json msgctxt "description" @@ -6024,65 +6119,15 @@ msgctxt "name" msgid "3MF Reader" msgstr "Lector de 3MF" -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Permite la escritura de paquetes de formato Ultimaker." +msgid "Provides support for writing 3MF files." +msgstr "Proporciona asistencia para escribir archivos 3MF." -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "name" -msgid "UFP Writer" -msgstr "Escritor de UFP" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" +msgid "3MF Writer" +msgstr "Escritor de 3MF" #: AMFReader/plugin.json msgctxt "description" @@ -6094,25 +6139,35 @@ msgctxt "name" msgid "AMF Reader" msgstr "Lector de AMF" -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Lee GCode de un archivo comprimido." +msgid "Backup and restore your configuration." +msgstr "Realice una copia de seguridad de su configuración y restáurela." -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Lector de GCode comprimido" +msgid "Cura Backups" +msgstr "Copias de seguridad de Cura" -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/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" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Proporciona el vínculo para el backend de segmentación de CuraEngine." -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "Posprocesamiento" +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" @@ -6124,65 +6179,15 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Escritor de perfiles de Cura" -#: USBPrinting/plugin.json +#: DigitalLibrary/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." +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." -#: USBPrinting/plugin.json +#: DigitalLibrary/plugin.json msgctxt "name" -msgid "USB printing" -msgstr "Impresión USB" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" #: FirmwareUpdateChecker/plugin.json msgctxt "description" @@ -6194,45 +6199,55 @@ msgctxt "name" msgid "Firmware Update Checker" msgstr "Buscador de actualizaciones de firmware" -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/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." +msgid "Provides a machine actions for updating firmware." +msgstr "Proporciona opciones a la máquina para actualizar el firmware." -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Slice info" -msgstr "Info de la segmentación" +msgid "Firmware Updater" +msgstr "Actualizador de firmware" -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/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." +msgid "Reads g-code from a compressed archive." +msgstr "Lee GCode de un archivo comprimido." -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "Perfiles de material" +msgid "Compressed G-code Reader" +msgstr "Lector de GCode comprimido" -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/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." +msgid "Writes g-code to a compressed archive." +msgstr "Escribe GCode en un archivo comprimido." -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/plugin.json msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" +msgid "Compressed G-code Writer" +msgstr "Escritor de GCode comprimido" -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "Buscar, administrar e instalar nuevos paquetes de Cura." +msgid "Provides support for importing profiles from g-code files." +msgstr "Proporciona asistencia para la importación de perfiles de archivos GCode." -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "Cuadro de herramientas" +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" @@ -6244,245 +6259,155 @@ 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 Simulation view." -msgstr "Abre la vista de simulación." +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" -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/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." +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." -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/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" +msgid "Slice info" +msgstr "Info de la segmentación" -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/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." +msgid "Provides a normal solid mesh view." +msgstr "Proporciona una vista de malla sólida normal." -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/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" +msgid "Solid View" +msgstr "Vista de sólidos" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/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." +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" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/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/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/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/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/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/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/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/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/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" - -#: 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/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/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/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/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/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/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/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/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/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" - -#: 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" +msgid "Support Eraser" +msgstr "Borrador de soporte" #: TrimeshReader/plugin.json msgctxt "description" @@ -6504,45 +6429,645 @@ msgctxt "name" msgid "UFP Reader" msgstr "Lector de UFP" -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Proporciona una vista de malla sólida normal." +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Permite la escritura de paquetes de formato Ultimaker." -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "name" -msgid "Solid View" -msgstr "Vista de sólidos" +msgid "UFP Writer" +msgstr "Escritor de UFP" -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Proporciona asistencia para escribir archivos 3MF." +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.)." -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "name" -msgid "3MF Writer" -msgstr "Escritor de 3MF" +msgid "Ultimaker machine actions" +msgstr "Acciones de la máquina Ultimaker" -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Proporciona una fase de supervisión en Cura." +msgid "Manages network connections to Ultimaker networked printers." +msgstr "Gestiona las conexiones de red de las impresoras Ultimaker conectadas." -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "name" -msgid "Monitor Stage" -msgstr "Fase de supervisión" +msgid "Ultimaker Network Connection" +msgstr "Conexión en red de Ultimaker" -#: ModelChecker/plugin.json +#: USBPrinting/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." +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." -#: ModelChecker/plugin.json +#: USBPrinting/plugin.json msgctxt "name" -msgid "Model Checker" -msgstr "Comprobador de modelos" +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 "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." @@ -6852,22 +7377,6 @@ msgstr "Comprobador de modelos" #~ msgid "Create an account" #~ msgstr "Crear una cuenta" -#~ msgctxt "@info:generic" -#~ msgid "" -#~ "\n" -#~ "Do you want to sync material and software packages with your account?" -#~ msgstr "" -#~ "\n" -#~ "¿Desea sincronizar el material y los paquetes de software con su cuenta?" - -#~ 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 "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." diff --git a/resources/i18n/es_ES/fdmextruder.def.json.po b/resources/i18n/es_ES/fdmextruder.def.json.po index b281d5a778..e37d9d9882 100644 --- a/resources/i18n/es_ES/fdmextruder.def.json.po +++ b/resources/i18n/es_ES/fdmextruder.def.json.po @@ -1,19 +1,20 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0000\n" -"PO-Revision-Date: 2019-03-13 14:00+0200\n" -"Last-Translator: Bothof \n" -"Language-Team: Spanish\n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"PO-Revision-Date: 2022-07-15 11:17+0200\n" +"Last-Translator: \n" +"Language-Team: LANGUAGE\n" "Language: es_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 3.1.1\n" #: fdmextruder.def.json msgctxt "machine_settings label" diff --git a/resources/i18n/es_ES/fdmprinter.def.json.po b/resources/i18n/es_ES/fdmprinter.def.json.po index 2c56a713c6..38c6064d01 100644 --- a/resources/i18n/es_ES/fdmprinter.def.json.po +++ b/resources/i18n/es_ES/fdmprinter.def.json.po @@ -1,20 +1,20 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 11:59+0000\n" -"PO-Revision-Date: 2021-04-16 15:15+0200\n" -"Last-Translator: Lionbridge \n" -"Language-Team: Spanish , Spanish \n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"PO-Revision-Date: 2022-07-15 11:17+0200\n" +"Last-Translator: \n" +"Language-Team: LANGUAGE\n" "Language: es_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.4.1\n" +"X-Generator: Poedit 3.1.1\n" #: fdmprinter.def.json msgctxt "machine_settings label" @@ -56,7 +56,9 @@ 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." +msgstr "" +"Los comandos de GCode que se ejecutarán justo al inicio separados por - \n" +"." #: fdmprinter.def.json msgctxt "machine_end_gcode label" @@ -68,7 +70,9 @@ 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." +msgstr "" +"Los comandos de GCode que se ejecutarán justo al final separados por -\n" +"." #: fdmprinter.def.json msgctxt "material_guid label" @@ -462,8 +466,8 @@ msgstr "Polígono del cabezal de la máquina y del ventilador" #: fdmprinter.def.json 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)." +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" @@ -735,6 +739,16 @@ 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" @@ -955,6 +969,56 @@ 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" @@ -986,14 +1050,24 @@ msgid "Optimize the order in which walls are printed so as to reduce the number 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 "outer_inset_first label" -msgid "Outer Before Inner Walls" -msgstr "Paredes exteriores antes que interiores" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Orden de paredes" #: fdmprinter.def.json -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 "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" @@ -1006,84 +1080,54 @@ msgid "Prints an extra wall at every other layer. This way infill gets caught be 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 "travel_compensate_overlapping_walls_enabled label" -msgid "Compensate Wall Overlaps" -msgstr "Compensar superposiciones de pared" +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Ancho mínimo de la línea perimetral" #: fdmprinter.def.json -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 "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 "travel_compensate_overlapping_walls_0_enabled label" -msgid "Compensate Outer Wall Overlaps" -msgstr "Compensar superposiciones de pared exterior" +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 "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 "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 "travel_compensate_overlapping_walls_x_enabled label" -msgid "Compensate Inner Wall Overlaps" -msgstr "Compensar superposiciones de pared interior" +msgctxt "wall_split_middle_threshold label" +msgid "Split Middle Line Threshold" +msgstr "Dividir umbral de línea media" #: fdmprinter.def.json -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_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 "wall_min_flow label" -msgid "Minimum Wall Flow" -msgstr "Flujo de pared mínimo" +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 "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 "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_min_flow_retract label" -msgid "Prefer Retract" -msgstr "Preferencia de retracción" +msgctxt "wall_add_middle_threshold label" +msgid "Add Middle Line Threshold" +msgstr "Añadir umbral de línea media" #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps label" -msgid "Fill Gaps Between Walls" -msgstr "Rellenar espacios entre paredes" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option nowhere" -msgid "Nowhere" -msgstr "En ningún sitio" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option everywhere" -msgid "Everywhere" -msgstr "En todas partes" - -#: fdmprinter.def.json -msgctxt "filter_out_tiny_gaps label" -msgid "Filter Out Tiny Gaps" -msgstr "Filtrar pequeños huecos" - -#: fdmprinter.def.json -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 "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" @@ -1095,6 +1139,26 @@ 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" @@ -1728,10 +1792,7 @@ 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." +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" @@ -2055,8 +2116,7 @@ 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." +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" @@ -2198,6 +2258,26 @@ 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" @@ -2709,24 +2789,14 @@ msgid "The first few layers are printed slower than the rest of the model, to ge 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_enabled label" -msgid "Equalize Filament Flow" -msgstr "Igualar flujo de filamentos" +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_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." - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_max label" -msgid "Maximum Speed for Flow Equalization" -msgstr "Velocidad máxima de igualación de flujo" - -#: fdmprinter.def.json -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 "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" @@ -2738,6 +2808,16 @@ 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 "Habilitar la aceleración de desplazamiento" + +#: 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 "acceleration_print label" msgid "Print Acceleration" @@ -2928,6 +3008,16 @@ 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 "Habilitar el impulso de desplazamiento" + +#: 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 "jerk_print label" msgid "Print Jerk" @@ -4463,6 +4553,46 @@ 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" @@ -4627,6 +4757,16 @@ 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" @@ -5127,6 +5267,16 @@ 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" @@ -6421,6 +6571,36 @@ 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 "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "Alternar direcciones de pared" + +#: 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 "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" + +#: 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 "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Recuento de paredes base de balsa" + +#: 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 "command_line_settings label" msgid "Command Line Settings" @@ -6481,6 +6661,98 @@ 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." diff --git a/resources/i18n/fdmextruder.def.json.pot b/resources/i18n/fdmextruder.def.json.pot index 2d127a3742..785c690810 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: Uranium json setting files\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0000\n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" diff --git a/resources/i18n/fdmprinter.def.json.pot b/resources/i18n/fdmprinter.def.json.pot index 5482032204..a3c8c46750 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: Uranium json setting files\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 11:59+0000\n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -508,7 +508,10 @@ msgstr "" #: fdmprinter.def.json msgctxt "machine_head_with_fans_polygon description" -msgid "A 2D silhouette of the print head (fan caps included)." +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 @@ -804,6 +807,16 @@ 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" @@ -1048,6 +1061,75 @@ msgid "" "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" @@ -1090,17 +1172,27 @@ msgid "" msgstr "" #: fdmprinter.def.json -msgctxt "outer_inset_first label" -msgid "Outer Before Inner Walls" +msgctxt "inset_direction label" +msgid "Wall Ordering" msgstr "" #: fdmprinter.def.json -msgctxt "outer_inset_first description" +msgctxt "inset_direction 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." +"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 @@ -1116,96 +1208,85 @@ msgid "" msgstr "" #: fdmprinter.def.json -msgctxt "travel_compensate_overlapping_walls_enabled label" -msgid "Compensate Wall Overlaps" +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" msgstr "" #: fdmprinter.def.json -msgctxt "travel_compensate_overlapping_walls_enabled description" +msgctxt "min_wall_line_width description" msgid "" -"Compensate the flow for parts of a wall being printed where there is already " -"a wall in place." +"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 "travel_compensate_overlapping_walls_0_enabled label" -msgid "Compensate Outer Wall Overlaps" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" msgstr "" #: fdmprinter.def.json -msgctxt "travel_compensate_overlapping_walls_0_enabled description" +msgctxt "min_even_wall_line_width description" msgid "" -"Compensate the flow for parts of an outer wall being printed where there is " -"already a wall in place." +"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 "travel_compensate_overlapping_walls_x_enabled label" -msgid "Compensate Inner Wall Overlaps" +msgctxt "wall_split_middle_threshold label" +msgid "Split Middle Line Threshold" msgstr "" #: fdmprinter.def.json -msgctxt "travel_compensate_overlapping_walls_x_enabled description" +msgctxt "wall_split_middle_threshold description" msgid "" -"Compensate the flow for parts of an inner wall being printed where there is " -"already a wall in place." +"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 "wall_min_flow label" -msgid "Minimum Wall Flow" +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" msgstr "" #: fdmprinter.def.json -msgctxt "wall_min_flow description" +msgctxt "min_odd_wall_line_width 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." +"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_min_flow_retract label" -msgid "Prefer Retract" +msgctxt "wall_add_middle_threshold label" +msgid "Add Middle Line Threshold" msgstr "" #: fdmprinter.def.json -msgctxt "wall_min_flow_retract description" +msgctxt "wall_add_middle_threshold 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 "" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps label" -msgid "Fill Gaps Between Walls" -msgstr "" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps description" -msgid "Fills the gaps between walls where no walls fit." -msgstr "" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option nowhere" -msgid "Nowhere" -msgstr "" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option everywhere" -msgid "Everywhere" -msgstr "" - -#: fdmprinter.def.json -msgctxt "filter_out_tiny_gaps label" -msgid "Filter Out Tiny Gaps" -msgstr "" - -#: fdmprinter.def.json -msgctxt "filter_out_tiny_gaps description" -msgid "Filter out tiny gaps to reduce blobs on outside of model." +"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 @@ -1220,6 +1301,33 @@ msgid "" "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" @@ -2535,6 +2643,30 @@ msgid "" "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" @@ -3112,28 +3244,19 @@ msgid "" msgstr "" #: fdmprinter.def.json -msgctxt "speed_equalize_flow_enabled label" -msgid "Equalize Filament Flow" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" msgstr "" #: fdmprinter.def.json -msgctxt "speed_equalize_flow_enabled description" +msgctxt "speed_equalize_flow_width_factor 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 "" - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_max label" -msgid "Maximum Speed for Flow Equalization" -msgstr "" - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_max description" -msgid "" -"Maximum print speed when adjusting the print speed in order to equalize flow." +"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 @@ -3148,6 +3271,18 @@ msgid "" "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" @@ -3350,6 +3485,18 @@ msgid "" "print quality." msgstr "" +#: 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" @@ -5170,6 +5317,54 @@ msgid "" "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" @@ -5373,6 +5568,19 @@ msgid "" "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" @@ -5952,6 +6160,24 @@ msgid "" "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" @@ -7505,6 +7731,40 @@ msgid "" "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 "" + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +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" +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 "command_line_settings label" msgid "Command Line Settings" diff --git a/resources/i18n/fi_FI/cura.po b/resources/i18n/fi_FI/cura.po index e1e678109d..2e9ebdd4b4 100644 --- a/resources/i18n/fi_FI/cura.po +++ b/resources/i18n/fi_FI/cura.po @@ -1,463 +1,191 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0100\n" -"PO-Revision-Date: 2017-09-27 12:27+0200\n" +"POT-Creation-Date: 2022-06-21 12:50+0200\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/clamboo/Desktop/Cura/cura/Backups/Backup.py:115 -msgctxt "@info:backup_failed" -msgid "Could not create archive from user data directory: {}" +#: /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/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 -msgctxt "@info:title" -msgid "Backup" +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:134 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup without having proper data or meta data." +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:145 -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup that is higher than the current version." +#: /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/clamboo/Desktop/Cura/cura/Backups/Backup.py:158 -msgctxt "@info:backup_failed" -msgid "The following error occurred while trying to restore a Cura backup:" +#: /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/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 -msgctxt "@action:button" -msgid "Please sync the material profiles with your printers before starting to print." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 -msgctxt "@action:button" -msgid "New materials installed" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 -msgctxt "@action:button" -msgid "Sync materials with printers" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 -msgctxt "@action:button" -msgid "Learn more" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 -msgctxt "@message:text" -msgid "Could not save material archive to {}:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 -msgctxt "@message:title" -msgid "Failed to save material archive" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 -msgctxt "@text" -msgid "Unknown error." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 -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/clamboo/Desktop/Cura/cura/BuildVolume.py:102 -msgctxt "@info:title" -msgid "Build Volume" -msgstr "Tulostustilavuus" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "Tuntematon" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:426 #, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "" +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Laskettu" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 -msgctxt "@label" -msgid "Custom Material" -msgstr "Mukautettu materiaali" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 -msgctxt "@label" -msgid "Custom" -msgstr "Mukautettu" - -#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 +#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Uusien paikkojen etsiminen kappaleille" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 msgctxt "@info:title" msgid "Finding Location" msgstr "Etsitään paikkaa" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Paikkaa ei löydy" -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 -msgctxt "@text:error" -msgid "Failed to create archive of materials to sync with printers." +#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:115 +msgctxt "@info:backup_failed" +msgid "Could not create archive from user data directory: {}" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 -msgctxt "@text:error" -msgid "Failed to load the archive of materials to sync it with printers." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 -msgctxt "@text:error" -msgid "The response from Digital Factory appears to be corrupted." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 -msgctxt "@text:error" -msgid "The response from Digital Factory is missing important information." -msgstr "" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 -msgctxt "@text:error" -msgid "Failed to connect to Digital Factory." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "Ladataan laitteita..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "Asetetaan näkymää..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "Ladataan käyttöliittymää..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 +#: /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 msgctxt "@info:title" -msgid "Warning" -msgstr "Varoitus" +msgid "Backup" +msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 -#, python-brace-format +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 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." +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/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 msgctxt "@info:title" -msgid "Error" -msgstr "Virhe" +msgid "Build Volume" +msgstr "Tulostustilavuus" -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 -msgctxt "@action:button" -msgid "Skip" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "Sulje" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 -msgctxt "@action:button" -msgid "Next" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 -msgctxt "@action:button" -msgid "Finish" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "Lisää" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Peruuta" - -#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 -#, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Ulkoseinämä" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "Sisäseinämät" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Skin" -msgstr "Pintakalvo" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Infill" -msgstr "Täyttö" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Tuen täyttö" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Tukiliittymä" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Support" -msgstr "Tuki" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Helma" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 -msgctxt "@tooltip" -msgid "Travel" -msgstr "Siirtoliike" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Takaisinvedot" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 -msgctxt "@tooltip" -msgid "Other" -msgstr "Muu" - -#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 -#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 -msgctxt "@text:window" -msgid "The release notes could not be opened." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

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

      \n" @@ -467,32 +195,32 @@ msgid "" " " msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 msgctxt "@action:button" msgid "Send crash report to Ultimaker" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Kaatumisraportti" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190 +#: /home/trin/Gedeeld/Projects/Cura/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" @@ -500,641 +228,767 @@ msgid "" " " msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 msgctxt "@label" -msgid "Not yet initialized
      " +msgid "Not yet initialized" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
    • OpenGL Version: {version}
    • " msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
    • OpenGL Vendor: {vendor}
    • " msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
    • OpenGL Renderer: {renderer}
    • " msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "" -#: /home/clamboo/Desktop/Cura/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." +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:531 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "Ladataan laitteita..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +msgctxt "@info:progress" +msgid "Setting up preferences..." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 -msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "Asetetaan näkymää..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "Ladataan käyttöliittymää..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#, 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 +#, 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 msgctxt "@info:title" -msgid "Log-in failed" -msgstr "" +msgid "Warning" +msgstr "Varoitus" -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "" +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 +#, 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/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 -msgctxt "@message" -msgid "Timeout when authenticating with the account server." -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 +msgctxt "@info:title" +msgid "Error" +msgstr "Virhe" -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 -msgctxt "@message" -msgid "Please give the required permissions when authorizing this application." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 -msgctxt "@message" -msgid "Something unexpected happened when trying to log in, please try again." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 -msgctxt "@message" -msgid "Could not read response." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "Kappaleiden kertominen ja sijoittelu" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Sijoitetaan kappaletta" -#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" +#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" +#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 -msgctxt "@label" -msgid "Nozzle" -msgstr "Suutin" - -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 -msgctxt "@info:message Followed by a list of settings." -msgid "Settings have been changed to match the current availability of extruders:" +#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +msgctxt "@message" +msgid "Timeout when authenticating with the account server." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@info" +msgid "Unable to reach the Ultimaker account server." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:278 msgctxt "@info:title" -msgid "Settings updated" +msgid "Log-in failed" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@text:error" +msgid "The response from Digital Factory is missing important information." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 msgctxt "@title:window" msgid "File Already Exists" msgstr "Tiedosto on jo olemassa" -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Mukautettu profiili" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Profiilista puuttuu laatutyyppi." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: /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 msgctxt "@label" -msgid "Per Model Settings" -msgstr "Mallikohtaiset asetukset" +msgid "Nozzle" +msgstr "Suutin" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "Määritä mallikohtaiset asetukset" - -#: /home/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Cura-profiili" - -#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3D-tiedosto" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +msgctxt "@info:message Followed by a list of settings." +msgid "Settings have been changed to match the current availability of extruders:" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 msgctxt "@info:title" -msgid "Backups" +msgid "Settings updated" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Laitteen asetukset" - -#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:13 -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Siirrettävä asema" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "Tallenna siirrettävälle asemalle" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 -msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 msgctxt "@info:title" -msgid "Saving" -msgstr "Tallennetaan" +msgid "Extruder(s) Disabled" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "Tallennettu siirrettävälle asemalle {0} nimellä {1}" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 -msgctxt "@info:title" -msgid "File Saved" -msgstr "Tiedosto tallennettu" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" -msgid "Eject" -msgstr "Poista" +msgid "Add" +msgstr "Lisää" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "Poista siirrettävä asema {0}" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Poista laite turvallisesti" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 -#, 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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:290 +msgctxt "@action:button" +msgid "Finish" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Cura 15.04 -profiilit" +#: /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 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Peruuta" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Suositeltu" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#, python-brace-format +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Mukautettu" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Ulkoseinämä" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "Sisäseinämät" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "Pintakalvo" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "Täyttö" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Tuen täyttö" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Tukiliittymä" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "Tuki" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Helma" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "Siirtoliike" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Takaisinvedot" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Close" +msgstr "Sulje" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Learn more" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 #, 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 "" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 msgctxt "@info:title" msgid "Open Project File" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 +#: /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/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 -#: /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" +#: /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/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "GCode-tiedosto" - -#: /home/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" +#: /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/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Kerrosnäkymä" +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Käsitellään kerroksia" +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:238 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +#: /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 "Information" -msgstr "Tiedot" +msgid "Failed to save material package information" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 msgctxt "@message:title" msgid "Slicing failed" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 msgctxt "@message:button" msgid "Report a bug" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 msgctxt "@info:status" msgid "" "Please review settings and check if your models:\n" @@ -1143,434 +997,498 @@ msgid "" "- Are not all set as modifier meshes" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "USB-tulostus" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Tulosta USB:n kautta" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Tulosta USB:n kautta" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Yhdistetty USB:n kautta" +msgid "Processing Layers" +msgstr "Käsitellään kerroksia" -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 -msgctxt "@message" -msgid "Print in Progress" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "G-coden jäsennys" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 msgctxt "@info:title" -msgid "G-code Details" -msgstr "G-coden tiedot" +msgid "Information" +msgstr "Tiedot" -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 -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/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 msgctxt "@item:inlistbox" -msgid "G File" -msgstr "G File -tiedosto" +msgid "Cura Profile" +msgstr "Cura-profiili" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG-kuva" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG-kuva" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG-kuva" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP-kuva" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF-kuva" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "Tasaa alusta" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "Valitse päivitykset" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 msgctxt "@info" msgid "Could not access update information." msgstr "Päivitystietoja ei löytynyt." -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#: /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/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#: /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/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 msgctxt "@action:button" msgid "How to update" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 -msgctxt "@text" -msgid "Unable to read example data file." +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +#: /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 "Changes detected from your Ultimaker account" -msgstr "" +msgid "G-code Details" +msgstr "G-coden tiedot" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "" +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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 -msgctxt "@action:button" -msgid "Sync" -msgstr "" +#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "G File -tiedosto" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Lisäosan lisenssisopimus" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74 msgctxt "@error:not supported" msgid "GCodeWriter does not support non-text mode." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +#: /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 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +msgctxt "@label" +msgid "Per Model Settings" +msgstr "Mallikohtaiset asetukset" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 "Tallenna siirrettävälle asemalle" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 "Tallennetaan siirrettävälle asemalle {0}" + +#: /home/trin/Gedeeld/Projects/Cura/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 +#, 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 +#, 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 +#, 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 +#, 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 +msgctxt "@info:title" +msgid "File Saved" +msgstr "Tiedosto tallennettu" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +msgctxt "@action:button" +msgid "Eject" +msgstr "Poista" + +#: /home/trin/Gedeeld/Projects/Cura/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 +#, 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 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "Poista laite turvallisesti" + +#: /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 "Kohteen {0} poistaminen epäonnistui. Asema saattaa olla toisen ohjelman käytössä." + +#: /home/trin/Gedeeld/Projects/Cura/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." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 msgctxt "@info:title" msgid "Simulation View" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 msgctxt "@info:title" msgid "No layers to show" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Kerrosnäkymä" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "Tulosta verkon kautta" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Tulosta verkon kautta" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 msgctxt "@info:status" -msgid "tomorrow" +msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 +msgctxt "@info:title" +msgid "Model Errors" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 "Connect via Network" -msgstr "Yhdistä verkon kautta" +msgid "Level build plate" +msgstr "Tasaa alusta" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 -msgctxt "@info:title" -msgid "Update your printer" -msgstr "" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 msgctxt "@action" -msgid "Configure group" -msgstr "" +msgid "Select upgrades" +msgstr "Valitse päivitykset" -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 -msgctxt "@info:title" -msgid "Are you ready for cloud printing?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 -msgctxt "@action" -msgid "Get started" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 -msgctxt "@action" -msgid "Learn more" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 msgctxt "@action:button" msgid "Print via cloud" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 msgctxt "@info:status" msgid "Connected via cloud" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 msgctxt "@action:button" msgid "Monitor print" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 +#: /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" @@ -1578,71 +1496,70 @@ msgid_plural "... and {0} others" msgstr[0] "" msgstr[1] "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:266 msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:356 msgctxt "@action:button" msgid "Keep printer configurations" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:361 msgctxt "@action:button" msgid "Remove printers" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 msgctxt "@title:window" msgid "Remove printers?" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 #, python-brace-format msgctxt "@label" msgid "" @@ -1654,1641 +1571,1069 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +#: /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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Kiinteä näkymä" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MF-tiedosto" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Cura-projektin 3MF-tiedosto" - -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 -msgctxt "@info:title" -msgid "3D Model Assistant" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 #, 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

      " +"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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 +#: /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 "Tulosta verkon kautta" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "Tulosta verkon kautta" + +#: /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 "Yhdistä verkon kautta" + +#: /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-tulostus" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "Tulosta USB:n kautta" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" -msgid "Mesh Type" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" +#: /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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" +#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 +#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "" +msgid "X3D File" +msgstr "X3D-tiedosto" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 +#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "" +msgid "X-Ray view" +msgstr "Kerrosnäkymä" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Valitse asetukset" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Valitse tätä mallia varten mukautettavat asetukset" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Suodatin..." - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Näytä kaikki" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 -msgctxt "@button" -msgid "Sign in" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -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/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (leveys)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (syvyys)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (korkeus)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 -msgctxt "@label" -msgid "Build plate shape" -msgstr "Alustan muoto" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 -msgctxt "@label" -msgid "Origin at center" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 -msgctxt "@label" -msgid "Heated bed" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 -msgctxt "@label" -msgid "Heated build volume" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 -msgctxt "@label" -msgid "G-code flavor" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -msgctxt "@label" -msgid "X min" -msgstr "X väh." - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -msgctxt "@label" -msgid "Y min" -msgstr "Y väh." - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -msgctxt "@label" -msgid "X max" -msgstr "X enint." - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -msgctxt "@label" -msgid "Y max" -msgstr "Y enint." - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "Gantry Height" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Suulakkeiden määrä" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 -msgctxt "@label" -msgid "Nozzle size" -msgstr "Suuttimen koko" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Suuttimen X-siirtymä" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Suuttimen Y-siirtymä" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "Tulostin" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Päivitä laiteohjelmisto automaattisesti" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Lataa mukautettu laiteohjelmisto" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Valitse mukautettu laiteohjelmisto" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Laiteohjelmiston päivitys" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Updating firmware." -msgstr "Päivitetään laiteohjelmistoa." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Laiteohjelmiston päivitys suoritettu." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "Laiteohjelmiston päivitys epäonnistui tuntemattoman virheen takia." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "Laiteohjelmiston päivitys epäonnistui tietoliikennevirheen takia." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "Laiteohjelmiston päivitys epäonnistui puuttuvan laiteohjelmiston takia." - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 msgctxt "@title:window" msgid "Open Project" msgstr "Avaa projekti" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 msgctxt "@action:ComboBox Update/override existing profile" msgid "Update existing" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:64 msgctxt "@action:ComboBox Save settings in a new profile" msgid "Create new" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Tulostimen asetukset" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Profiilin asetukset" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 msgctxt "@action:label" msgid "Derivative from" msgstr "Johdettu seuraavista" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 -msgctxt "@action:label" -msgid "Material settings" -msgstr "Materiaaliasetukset" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 msgctxt "@action:label" msgid "Mode" msgstr "Tila" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 msgctxt "@action:label" msgid "Visible settings:" msgstr "Näkyvät asetukset:" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1/%2" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 msgctxt "@action:button" msgid "Open" msgstr "Avaa" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Jälkikäsittelylisäosa" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Jälkikäsittelykomentosarjat" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "Lisää komentosarja" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 -msgctxt "@label" -msgid "Settings" -msgstr "Asetukset" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 +msgctxt "@action:button" +msgid "Open project anyway" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 -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/3MFReader/WorkspaceDialog.qml:529 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /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 "Convert Image..." -msgstr "Muunna kuva..." +msgid "Cura Backups" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 -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/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "Pohjan korkeus alustasta millimetreinä." +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "Kunkin pikselin suurin etäisyys \"Pohja\"-arvosta." -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 msgctxt "@action:label" msgid "Base (mm)" msgstr "Pohja (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate." -msgstr "Leveys millimetreinä alustalla." +msgid "The base height from the build plate in millimeters." +msgstr "Pohjan korkeus alustasta millimetreinä." -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 msgctxt "@action:label" msgid "Width (mm)" msgstr "Leveys (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "Syvyys millimetreinä alustalla" +msgid "The width in millimeters on the build plate" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 msgctxt "@action:label" msgid "Depth (mm)" msgstr "Syvyys (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 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 "" +msgid "The depth in millimeters on the build plate" +msgstr "Syvyys millimetreinä alustalla" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "Tummempi on korkeampi" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "Vaaleampi on korkeampi" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 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 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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 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 "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "Kuvassa käytettävän tasoituksen määrä." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 msgctxt "@action:label" msgid "Smoothing" msgstr "Tasoitus" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /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/clamboo/Desktop/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" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "Lämmitettävä alusta (virallinen sarja tai itse rakennettu)" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Alustan tasaaminen" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Aloita alustan tasaaminen" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Siirry seuraavaan positioon" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -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/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" -msgid "Marketplace" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -msgctxt "@info" -msgid "You will need to restart Cura before changes in packages have effect." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -msgctxt "@action:button" -msgid "Installed" -msgstr "Asennettu" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 -msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 -msgctxt "@label" -msgid "Search materials" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to install or update" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 msgctxt "@title:tab" -msgid "Plugins" +msgid "Printer" +msgstr "Tulostin" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materiaalit" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 msgctxt "@label" -msgid "Will install upon restarting" -msgstr "" +msgid "Nozzle size" +msgstr "Suuttimen koko" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Downgrade" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /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 "Community Contributions" -msgstr "" +msgid "mm" +msgstr "mm" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 msgctxt "@label" -msgid "Community Plugins" +msgid "Compatible material diameter" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 msgctxt "@label" -msgid "Generic Materials" -msgstr "" +msgid "Nozzle offset X" +msgstr "Suuttimen X-siirtymä" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 msgctxt "@label" -msgid "Website" -msgstr "" +msgid "Nozzle offset Y" +msgstr "Suuttimen Y-siirtymä" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 msgctxt "@label" -msgid "Email" +msgid "Cooling Fan Number" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -msgctxt "@description" -msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 +msgctxt "@title:label" +msgid "Extruder Start G-code" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 +#: /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 "Version" -msgstr "" +msgid "X (Width)" +msgstr "X (leveys)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 msgctxt "@label" -msgid "Last updated" -msgstr "" +msgid "Y (Depth)" +msgstr "Y (syvyys)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 msgctxt "@label" -msgid "Brand" -msgstr "Merkki" +msgid "Z (Height)" +msgstr "Z (korkeus)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 msgctxt "@label" -msgid "Downloads" -msgstr "" +msgid "Build plate shape" +msgstr "Alustan muoto" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 -msgctxt "@info" -msgid "No material has been installed." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -msgctxt "@info" -msgid "Could not connect to the Cura Package database. Please check your connection." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 msgctxt "@label" -msgid "You need to accept the license to install the package" +msgid "Origin at center" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 msgctxt "@button" msgid "Dismiss" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 msgctxt "@label" msgid "The following packages will be added:" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -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." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 +msgctxt "@header" +msgid "Manage packages" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "Värimalli" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Materiaalin väri" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Linjojen tyyppi" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Yhteensopivuustila" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "Täyttö" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Näytä vain yläkerrokset" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "Näytä 5 yksityiskohtaista kerrosta ylhäällä" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Yläosa/alaosa" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Sisäseinämä" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -msgctxt "@label" -msgid "Glass" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" msgid "Loading..." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193 +msgctxt "@info" +msgid "Search in the browser" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Preparing..." +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "Tulostetaan" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 -msgctxt "@label" -msgid "Untitled" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "Jonossa" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Tulosta verkon kautta" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 -msgctxt "@action:button" -msgid "Print" -msgstr "Tulosta" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 -msgctxt "@label" -msgid "Printer selection" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Finished" -msgstr "Valmis" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Aborted" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Failed" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Paused" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 -msgctxt "@label:status" -msgid "Action required" -msgstr "Vaatii toimenpiteitä" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Yhdistä verkkotulostimeen" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "Muokkaa" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 -msgctxt "@action:button" -msgid "Remove" -msgstr "Poista" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Päivitä" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "Tyyppi" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "Laiteohjelmistoversio" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "Osoite" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "Tämän osoitteen tulostin ei ole vielä vastannut." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "Yhdistä" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:12 msgctxt "@text" -msgid "Please enter a valid IP address." +msgid "Select and install material profiles optimised for your Ultimaker 3D printers." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Tulostimen osoite" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 msgctxt "@label" -msgid "Enter the IP address of your printer on the network." +msgid "You need to accept the license to install the package" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Enable" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Disable" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 +msgctxt "@button" +msgid "Downgrading..." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 +msgctxt "@button" +msgid "Downgrade" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 +msgctxt "@button" +msgid "Installing..." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250 +msgctxt "@button" +msgid "Install" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -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?" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254 +msgctxt "@button" +msgid "Uninstall" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Updating..." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Update" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Keskeytä tulostus" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /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" @@ -3297,433 +2642,1160 @@ msgid "" "- Check if you are signed in to discover cloud-connected printers." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:113 msgctxt "@info" msgid "Please connect your printer to the network." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:147 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /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/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 -msgctxt "@info:tooltip" -msgid "Some things could be problematic in this print. Click to see tips for adjustment." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 msgctxt "@label" -msgid "Object list" +msgid "Mesh Type" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 +#: /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 "Marketplace" -msgstr "" +msgid "Select settings" +msgstr "Valitse asetukset" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "Tie&dosto" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "&Muokkaa" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "&Näytä" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "Laa&jennukset" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "L&isäasetukset" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "&Ohje" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 msgctxt "@title:window" -msgid "New project" -msgstr "Uusi projekti" +msgid "Select Settings to Customize for this model" +msgstr "Valitse tätä mallia varten mukautettavat asetukset" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 -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/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Suodatin..." -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 -msgctxt "@label:PrintjobStatus" -msgid "Slicing..." -msgstr "Viipaloidaan..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Näytä kaikki" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 -msgctxt "@label:PrintjobStatus" -msgid "Unable to slice" -msgstr "" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "Jälkikäsittelylisäosa" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Processing" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Slice" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 msgctxt "@label" -msgid "Start the slicing process" -msgstr "" +msgid "Post Processing Scripts" +msgstr "Jälkikäsittelykomentosarjat" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 -msgctxt "@button" -msgid "Cancel" -msgstr "" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +msgctxt "@action" +msgid "Add a script" +msgstr "Lisää komentosarja" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 msgctxt "@label" -msgid "Time estimation" +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/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +#: /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 "Material estimation" +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/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:116 +msgctxt "@label:listbox" +msgid "Layer Thickness" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:120 +msgctxt "@label:listbox" +msgid "Line Width" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: /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 "No time estimation available" -msgstr "" +msgid "Compatibility Mode" +msgstr "Yhteensopivuustila" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 msgctxt "@label" -msgid "No cost estimation available" +msgid "Travels" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 msgctxt "@label" -msgid "Add a printer" +msgid "Helpers" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 msgctxt "@label" -msgid "Add a networked printer" +msgid "Shell" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +#: /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 "Add a non-networked printer" -msgstr "" +msgid "Infill" +msgstr "Täyttö" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" -msgid "Add a Cloud printer" +msgid "Starts" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "" +msgid "Only Show Top Layers" +msgstr "Näytä vain yläkerrokset" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 msgctxt "@label" -msgid "No printers found in your account?" -msgstr "" +msgid "Show 5 Detailed Layers On Top" +msgstr "Näytä 5 yksityiskohtaista kerrosta ylhäällä" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" -msgstr "" +msgid "Top / Bottom" +msgstr "Yläosa/alaosa" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 msgctxt "@label" -msgid "Add printer by IP address" -msgstr "" +msgid "Inner Wall" +msgstr "Sisäseinämä" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 msgctxt "@label" -msgid "Could not connect to device." +msgid "min" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" +msgid "max" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +#: /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 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "Alustan tasaaminen" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 msgctxt "@label" -msgid "The printer at this address has not responded yet." -msgstr "" +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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 msgctxt "@label" -msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." +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 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "Aloita alustan tasaaminen" + +#: /home/trin/Gedeeld/Projects/Cura/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" + +#: /home/trin/Gedeeld/Projects/Cura/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" + +#: /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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 -msgctxt "@button" -msgid "Back" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 +msgctxt "@label" +msgid "Select your printer from the list below:" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" +#: /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." +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/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +#: /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 follow these steps to set up Ultimaker Cura. This will only take a few moments." +msgid "Please enter a valid IP address." msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" +#: /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/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +#: /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 +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 msgctxt "@label" msgid "Sign in to the Ultimaker platform" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" +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 "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" -msgid "Skip" +msgid "Create a free Ultimaker account" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 msgctxt "@label" -msgid "Manufacturer" +msgid "Checking..." msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 msgctxt "@label" -msgid "Profile author" +msgid "Account synced" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 msgctxt "@label" -msgid "Printer name" +msgid "Something went wrong..." msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 -msgctxt "@text" -msgid "Please name your printer" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 +msgctxt "@button" +msgid "Install pending updates" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" -msgid "There is no printer found over your network." +msgid "No time estimation available" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 msgctxt "@label" -msgid "Refresh" +msgid "No cost estimation available" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +msgctxt "@button" +msgid "Preview" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" -msgid "Add printer by IP" +msgid "Time estimation" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107 msgctxt "@label" -msgid "Add cloud printer" +msgid "Material estimation" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +msgctxt "@label:PrintjobStatus" +msgid "Slicing..." +msgstr "Viipaloidaan..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Processing" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +msgctxt "@button" +msgid "Slice" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:115 msgctxt "@label" -msgid "Troubleshooting" +msgid "Start the slicing process" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:132 +msgctxt "@button" +msgid "Cancel" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu" +msgid "Exit Full Screen" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 +msgctxt "@action:inmenu menubar:edit" +msgid "&Undo" +msgstr "&Kumoa" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:file" +msgid "&Quit" +msgstr "&Lopeta" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 +msgctxt "@action:inmenu menubar:view" +msgid "3D View" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 +msgctxt "@action:inmenu menubar:view" +msgid "Front View" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 +msgctxt "@action:inmenu menubar:view" +msgid "Top View" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 +msgctxt "@action:inmenu menubar:view" +msgid "Bottom View" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 +msgctxt "@action:inmenu menubar:view" +msgid "Left Side View" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 -msgctxt "@label" +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu" +msgid "Configure Cura..." +msgstr "Määritä Curan asetukset..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 +msgctxt "@action:inmenu menubar:printer" +msgid "&Add Printer..." +msgstr "L&isää tulostin..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 +msgctxt "@action:inmenu menubar:printer" +msgid "Manage Pr&inters..." +msgstr "Tulostinten &hallinta..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 +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." +msgid "Add more materials from Marketplace" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 +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 +msgctxt "@action:inmenu menubar:profile" +msgid "&Discard current changes" +msgstr "&Hylkää tehdyt muutokset" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 +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 +msgctxt "@action:inmenu menubar:profile" +msgid "Manage Profiles..." +msgstr "Profiilien hallinta..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 +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 +msgctxt "@action:inmenu menubar:help" +msgid "Report a &Bug" +msgstr "Ilmoita &virheestä" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 +msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 +msgctxt "@action:inmenu menubar:help" +msgid "About..." +msgstr "Tietoja..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 +msgctxt "@action:inmenu menubar:edit" +msgid "Delete Selected" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 +msgctxt "@action:inmenu menubar:edit" +msgid "Center Selected" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 +msgctxt "@action:inmenu menubar:edit" +msgid "Multiply Selected" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 +msgctxt "@action:inmenu" +msgid "Delete Model" +msgstr "Poista malli" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 +msgctxt "@action:inmenu" +msgid "Ce&nter Model on Platform" +msgstr "Ke&skitä malli alustalle" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 +msgctxt "@action:inmenu menubar:edit" +msgid "&Group Models" +msgstr "&Ryhmittele mallit" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 +msgctxt "@action:inmenu menubar:edit" +msgid "Ungroup Models" +msgstr "Poista mallien ryhmitys" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 +msgctxt "@action:inmenu menubar:edit" +msgid "&Merge Models" +msgstr "&Yhdistä mallit" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 +msgctxt "@action:inmenu" +msgid "&Multiply Model..." +msgstr "&Kerro malli..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Valitse kaikki mallit" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 +msgctxt "@action:inmenu menubar:edit" +msgid "Clear Build Plate" +msgstr "Tyhjennä tulostusalusta" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 +msgctxt "@action:inmenu menubar:file" +msgid "Reload All Models" +msgstr "Lataa kaikki mallit uudelleen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models" +msgstr "Järjestä kaikki mallit" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Järjestä valinta" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 +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 +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 +msgctxt "@action:inmenu menubar:file" +msgid "&Open File(s)..." +msgstr "&Avaa tiedosto(t)..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 +msgctxt "@action:inmenu menubar:file" +msgid "&New Project..." +msgstr "&Uusi projekti..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 +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 +msgctxt "@action:menu" +msgid "Configure setting visibility..." +msgstr "Määritä asetusten näkyvyys..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Extend Ultimaker Cura with plugins and material profiles." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +msgctxt "@tooltip:button" +msgid "Become a 3D printing expert with Ultimaker e-learning." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +msgctxt "@tooltip:button" +msgid "Learn how to get started with Ultimaker Cura." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 +msgctxt "@label" +msgid "Hex" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 +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 +msgctxt "@title:tab" +msgid "General" +msgstr "Yleiset" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +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 +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 +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 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Profiilit" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +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 +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 +msgctxt "@title:window" +msgid "Open file(s)" +msgstr "Avaa tiedosto(t)" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +msgctxt "@window:title" +msgid "Install Package" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Avaa tiedosto(t)" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +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 +msgctxt "@title:window" +msgid "Add Printer" +msgstr "Lisää tulostin" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +msgctxt "@title:window" +msgid "What's New" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 msgctxt "@label" msgid "version: %1" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "Kokonaisvaltainen sulatettavan tulostuslangan 3D-tulostusratkaisu." -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 msgctxt "@info:credit" msgid "" "Cura is developed by Ultimaker B.V. in cooperation with the community.\n" @@ -3732,349 +3804,1610 @@ 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/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" msgid "Graphical user interface" msgstr "Graafinen käyttöliittymä" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 msgctxt "@label" msgid "Application framework" msgstr "Sovelluskehys" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 msgctxt "@label" msgid "G-code generator" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 msgctxt "@label" msgid "Interprocess communication library" msgstr "Prosessien välinen tietoliikennekirjasto" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" -msgid "Programming language" -msgstr "Ohjelmointikieli" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" -msgid "GUI framework" -msgstr "GUI-kehys" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" -msgid "GUI framework bindings" -msgstr "GUI-kehyksen sidonnat" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" -msgid "C/C++ Binding library" -msgstr "C/C++ -sidontakirjasto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 -msgctxt "@label" -msgid "Data interchange format" -msgstr "Data Interchange Format" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 -msgctxt "@label" -msgid "Support library for scientific computing" -msgstr "Tieteellisen laskennan tukikirjasto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" -msgid "Support library for faster math" -msgstr "Nopeamman laskennan tukikirjasto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" -msgid "Support library for handling STL files" -msgstr "STL-tiedostojen käsittelyn tukikirjasto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" -msgid "Support library for handling planar objects" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" -msgid "Support library for handling triangular meshes" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" -msgid "Support library for handling 3MF files" -msgstr "Tukikirjasto 3MF-tiedostojen käsittelyyn" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 -msgctxt "@label" -msgid "Support library for file metadata and streaming" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 -msgctxt "@label" -msgid "Serial communication library" -msgstr "Sarjatietoliikennekirjasto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 -msgctxt "@label" -msgid "ZeroConf discovery library" -msgstr "ZeroConf-etsintäkirjasto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" -msgid "Polygon clipping library" -msgstr "Monikulmion leikkauskirjasto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@Label" -msgid "Static type checker for Python" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@Label" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 -msgctxt "@Label" -msgid "Python Error tracking library" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 -msgctxt "@label" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 msgctxt "@label" msgid "Python bindings for libnest2d" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 msgctxt "@label" -msgid "Support library for system keyring access" +msgid "Polygon packing library, developed by Prusa Research" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 msgctxt "@label" -msgid "Python extensions for Microsoft Windows" +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" +msgid "Support library for file metadata and streaming" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 +msgctxt "@label" +msgid "Programming language" +msgstr "Ohjelmointikieli" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +msgctxt "@label" +msgid "GUI framework" +msgstr "GUI-kehys" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label" +msgid "GUI framework bindings" +msgstr "GUI-kehyksen sidonnat" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label" +msgid "C/C++ Binding library" +msgstr "C/C++ -sidontakirjasto" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label" +msgid "Data interchange format" +msgstr "Data Interchange Format" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 msgctxt "@label" msgid "Font" msgstr "Fontti" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 msgctxt "@label" -msgid "SVG icons" -msgstr "SVG-kuvakkeet" +msgid "Polygon clipping library" +msgstr "Monikulmion leikkauskirjasto" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +msgctxt "@label" +msgid "JSON parser" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label" +msgid "Utility functions, including an image loader" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label" +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" +msgid "Root Certificates for validating SSL trustworthiness" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +msgctxt "@label" +msgid "Compatibility between Python 2 and 3" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label" +msgid "Support library for system keyring access" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +msgctxt "@label" +msgid "Support library for faster math" +msgstr "Nopeamman laskennan tukikirjasto" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +msgctxt "@label" +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" +msgid "Python bindings for Clipper" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label" +msgid "Serial communication library" +msgstr "Sarjatietoliikennekirjasto" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label" +msgid "Support library for scientific computing" +msgstr "Tieteellisen laskennan tukikirjasto" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:169 +msgctxt "@Label" +msgid "Python Error tracking library" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label" +msgid "Support library for handling triangular meshes" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:171 +msgctxt "@label" +msgid "ZeroConf discovery library" +msgstr "ZeroConf-etsintäkirjasto" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 +msgctxt "@label" +msgid "Universal build system configuration" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 +msgctxt "@label" +msgid "Dependency and package manager" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label" +msgid "Packaging Python-applications" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 msgctxt "@label" msgid "Linux cross-distribution application deployment" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Avaa tiedosto(t)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 -msgctxt "@action:button" -msgid "Import all as models" -msgstr "Tuo kaikki malleina" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 -msgctxt "@title:window" -msgid "Save Project" -msgstr "Tallenna projekti" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Suulake %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & materiaali" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 -msgctxt "@action:label" -msgid "Material" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:178 +msgctxt "@label" +msgid "Generating Windows installers" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "Älä näytä projektin yhteenvetoa tallennettaessa" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 -msgctxt "@action:button" -msgid "Save" -msgstr "Tallenna" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 -msgctxt "@title:window" -msgid "Discard or Keep changes" -msgstr "Hylkää tai säilytä muutokset" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 -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 "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 -msgctxt "@title:column" -msgid "Profile settings" -msgstr "Profiilin asetukset" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 -msgctxt "@title:column" -msgid "Current changes" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 -msgctxt "@option:discardOrKeep" -msgid "Always ask me this" -msgstr "Kysy aina" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 -msgctxt "@option:discardOrKeep" -msgid "Discard and never ask again" -msgstr "Hylkää äläkä kysy uudelleen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 -msgctxt "@option:discardOrKeep" -msgid "Keep and never ask again" -msgstr "Säilytä äläkä kysy uudelleen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 -msgctxt "@action:button" -msgid "Discard changes" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 -msgctxt "@action:button" -msgid "Keep changes" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 msgctxt "@title:window" msgid "Open project file" msgstr "Avaa projektitiedosto" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:83 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/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:90 msgctxt "@text:window" msgid "Remember my choice" msgstr "Muista valintani" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 msgctxt "@action:button" msgid "Open as project" msgstr "Avaa projektina" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 msgctxt "@action:button" msgid "Import models" msgstr "Tuo mallit" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 -msgctxt "@label" -msgid "Active print" -msgstr "Aktiivinen tulostustyö" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 +msgctxt "@title:window" +msgid "Discard or Keep changes" +msgstr "Hylkää tai säilytä muutokset" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 -msgctxt "@label" -msgid "Job Name" -msgstr "Työn nimi" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 -msgctxt "@label" -msgid "Printing Time" -msgstr "Tulostusaika" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 -msgctxt "@label" -msgid "Estimated time left" -msgstr "Aikaa jäljellä arviolta" - -#: /home/clamboo/Desktop/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." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:49 +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/clamboo/Desktop/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." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +msgctxt "@title:column" +msgid "Profile settings" +msgstr "Profiilin asetukset" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +msgctxt "@title:column" +msgid "Current changes" msgstr "" -#: /home/clamboo/Desktop/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." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:104 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:799 +msgctxt "@option:discardOrKeep" +msgid "Always ask me this" +msgstr "Kysy aina" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +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 +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 +msgctxt "@action:button" +msgid "Discard changes" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +msgctxt "@action:button" +msgid "Keep changes" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 +#: /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?" +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 +msgctxt "@action:button" +msgid "Import all as models" +msgstr "Tuo kaikki malleina" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Suulake %1" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & materiaali" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +msgctxt "@action:label" +msgid "Material" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +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 +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 +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 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Marketplace" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +msgctxt "@header" +msgid "Configurations" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Marketplace" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@label" +msgid "Select configuration" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 +msgctxt "@label" +msgid "Configurations" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Enabled" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +msgctxt "@label" +msgid "Material" +msgstr "Materiaali" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Number of Copies" +msgstr "Kopioiden määrä" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "Laa&jennukset" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "L&isäasetukset" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "Avaa &viimeisin" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59 +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label:MonitorStatus" +msgid "In maintenance. Please check the printer" +msgstr "Huolletaan. Tarkista tulostin" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "Tulostetaan..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "Keskeytetty" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "Valmistellaan..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Abort Print" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Is printed as support." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@action:button" +msgid "Defaults" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +msgctxt "@label" +msgid "Interface" +msgstr "Käyttöliittymä" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +msgctxt "@heading" +msgid "-- incomplete --" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +msgctxt "@label" +msgid "Currency:" +msgstr "Valuutta:" + +#: /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." +msgid "Theme*:" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +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 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "Viipaloi automaattisesti" + +#: /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." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "Näyttöikkunan käyttäytyminen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +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 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "Näytä uloke" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +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 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +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ä" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:401 +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 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "Zoomaa hiiren suuntaan" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:463 +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 +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 +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 +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 +msgctxt "@info:tooltip" +msgid "Show caution message in g-code reader." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:503 +msgctxt "@option:check" +msgid "Caution message in g-code reader" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:511 +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 +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 +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 +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:541 +msgctxt "@info:tooltip" +msgid "What type of camera rendering should be used?" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +msgid "Perspective" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +msgid "Orthographic" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "Tiedostojen avaaminen ja tallentaminen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +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 +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619 +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 +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 +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 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "Skaalaa suuret mallit" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +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 +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 +msgctxt "@info:tooltip" +msgid "Should models be selected after they are loaded?" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:680 +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 +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 +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 +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 +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 +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 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +msgctxt "@option:openProject" +msgid "Always open as a project" +msgstr "Avaa aina projektina" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "Tuo mallit aina" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +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 +msgctxt "@label" +msgid "Profiles" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +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 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:801 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:835 +msgctxt "@label" +msgid "Privacy" +msgstr "Tietosuoja" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "Lähetä (anonyymit) tulostustiedot" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:876 +msgctxt "@label" +msgid "Updates" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +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 +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 +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 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +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 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +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 +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Rename" +msgstr "Nimeä uudelleen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Import" +msgstr "Tuo" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Tuo materiaali" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Vie materiaali" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 msgctxt "@button" -msgid "Add printer" +msgid "Why do I need to sync material profiles?" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 msgctxt "@button" -msgid "Manage printers" +msgid "Start" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +msgctxt "@title:header" +msgid "Sign in" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +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 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +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 +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 +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 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +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 +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 +msgctxt "@button" +msgid "Refresh List" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +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 +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 +msgctxt "@button" +msgid "Sync" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +msgctxt "@button" +msgid "Syncing" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +msgctxt "@title:header" +msgid "No printers found" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +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 +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 +msgctxt "@button" +msgid "Refresh" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +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." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:663 +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:664 +msgctxt "@text" +msgid "Save the .umm file on a USB stick." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:665 +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 +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 +msgctxt "@button" +msgid "Back" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +msgctxt "@button" +msgid "Export material archive" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 msgctxt "@label" -msgid "Connected printers" -msgstr "" +msgid "Display Name" +msgstr "Näytä nimi" -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171 msgctxt "@label" -msgid "Preset printers" +msgid "Brand" +msgstr "Merkki" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Color" +msgstr "Väri" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:262 +msgctxt "@title" +msgid "Material color picker" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Density" +msgstr "Tiheys" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Filament Cost" +msgstr "Tulostuslangan hinta" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Filament length" +msgstr "Tulostuslangan pituus" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Unlink Material" +msgstr "Poista materiaalin linkitys" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Adhesion Information" +msgstr "Tarttuvuustiedot" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" msgid "Print settings" msgstr "Tulostusasetukset" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -msgctxt "@label shown when we load a Gcode file" -msgid "Print setup disabled. G-code file can not be modified." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:59 +msgctxt "@label" +msgid "Profiles compatible with active printer:" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:label" +msgid "Some settings from current profile were overwritten." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:140 +msgctxt "@action:button" +msgid "Update profile." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "Hylkää tehdyt muutokset" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Yleiset asetukset" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Profiilin vienti" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "Näkyvyyden asettaminen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Active print" +msgstr "Aktiivinen tulostustyö" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +msgctxt "@label" +msgid "Job Name" +msgstr "Työn nimi" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +msgctxt "@label" +msgid "Printing Time" +msgstr "Tulostusaika" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" msgid "Profile" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -4085,1752 +5418,132 @@ msgstr "" "\n" "Avaa profiilin hallinta napsauttamalla." -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 msgctxt "@label:header" msgid "Custom profiles" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "Hylkää tehdyt muutokset" +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:142 msgctxt "@button" msgid "Recommended" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:156 msgctxt "@button" msgid "Custom" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 msgctxt "@label:Should be short" msgid "On" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 msgctxt "@label:Should be short" msgid "Off" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 msgctxt "@label" msgid "Experimental" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 -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] "" -msgstr[1] "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 -msgctxt "@label" -msgid "Profiles" +#: /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/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 -msgctxt "@tooltip" -msgid "You have modified some profile settings. If you want to change these go to custom mode." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +msgctxt "@info" +msgid "custom profile is overriding some settings." msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 -msgctxt "@label" -msgid "Support" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 +msgctxt "@info" +msgid "Some settings were changed." msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 -msgctxt "@label" -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 -msgctxt "@label" -msgid "Gradual infill" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 msgctxt "@label" msgid "Adhesion" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 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/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:198 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:" +msgid "Gradual infill" +msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "Kerro valittu malli" -msgstr[1] "Kerro valitut mallit" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:236 msgctxt "@label" -msgid "Number of Copies" -msgstr "Kopioiden määrä" +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." -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:26 msgctxt "@label" -msgid "Printer" +msgid "Resolution" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 msgctxt "@label" -msgid "Enabled" +msgid "Support" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 msgctxt "@label" -msgid "Material" -msgstr "Materiaali" +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." -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +msgctxt "@error" +msgid "Configuration not supported" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 -msgctxt "@tooltip" -msgid "The configuration of this extruder is not allowed, and prohibits slicing." +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 -msgctxt "@tooltip" -msgid "There are no profiles matching the configuration of this extruder." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 +msgctxt "@button:label" +msgid "Learn more" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 -msgctxt "@label" -msgid "Select configuration" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 -msgctxt "@label" -msgid "Configurations" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 -msgctxt "@label" -msgid "The configurations are not available because the printer is disconnected." -msgstr "" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "&Tulostin" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Materiaali" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Aseta aktiiviseksi suulakepuristimeksi" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "Avaa &viimeisin" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 -msgctxt "@label" -msgid "View type" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 -msgctxt "@label" -msgid "Is printed as support." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "" -msgstr[1] "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Profiilit" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 -msgctxt "@action:button" -msgid "Activate" -msgstr "Aktivoi" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "Luo" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "Jäljennös" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 -msgctxt "@action:button" -msgid "Rename" -msgstr "Nimeä uudelleen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -msgctxt "@action:button" -msgid "Import" -msgstr "Tuo" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -msgctxt "@action:button" -msgid "Export" -msgstr "Vie" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Luo profiili" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Monista profiili" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Nimeä profiili uudelleen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Profiilin tuonti" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Profiilin vienti" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "Tulostin: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "Päivitä nykyiset asetukset tai ohitukset profiiliin" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "Nykyiset asetukset vastaavat valittua profiilia." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Yleiset asetukset" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 -msgctxt "@title:tab" -msgid "General" -msgstr "Yleiset" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 -msgctxt "@label" -msgid "Interface" -msgstr "Käyttöliittymä" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 -msgctxt "@label" -msgid "Currency:" -msgstr "Valuutta:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 -msgctxt "@label" -msgid "Theme:" -msgstr "Teema:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Viipaloi automaattisesti, kun asetuksia muutetaan." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Viipaloi automaattisesti" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "Näyttöikkunan käyttäytyminen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Näytä uloke" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 -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ä." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Keskitä kamera kun kohde on valittu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "Pitääkö Curan oletusarvoinen zoom-toimintatapa muuttaa päinvastaiseksi?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Käännä kameran zoomin suunta päinvastaiseksi." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "Tuleeko zoomauksen siirtyä hiiren suuntaan?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -msgctxt "@info:tooltip" -msgid "Zooming towards the mouse is not supported in the orthographic perspective." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "Zoomaa hiiren suuntaan" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "Varmista, että mallit ovat erillään" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "Pudota mallit automaattisesti alustalle" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "Pakotetaanko kerros yhteensopivuustilaan?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "Pakota kerrosnäkymän yhteensopivuustila (vaatii uudelleenkäynnistyksen)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 -msgid "Perspective" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 -msgid "Orthographic" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Tiedostojen avaaminen ja tallentaminen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 -msgctxt "@info:tooltip" -msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 -msgctxt "@info:tooltip" -msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 -msgctxt "@option:check" -msgid "Clear buildplate before loading model into the single instance" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Skaalaa suuret mallit" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Skaalaa erittäin pienet mallit" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "Lisää laitteen etuliite työn nimeen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "Näytetäänkö yhteenveto, kun projektitiedosto tallennetaan?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "Näytä yhteenvetoikkuna, kun projekti tallennetaan" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "Projektitiedoston avaamisen oletustoimintatapa" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "Projektitiedoston avaamisen oletustoimintatapa: " - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Avaa aina projektina" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Tuo mallit aina" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 -msgctxt "@window:text" -msgid "Default behavior for changed setting values when switching to a different profile: " -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 -msgctxt "@label" -msgid "Privacy" -msgstr "Tietosuoja" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "Lähetä (anonyymit) tulostustiedot" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 -msgctxt "@action:button" -msgid "More information" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 -msgctxt "@label" -msgid "Updates" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Tarkista päivitykset käynnistettäessä" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 -msgctxt "@info:tooltip" -msgid "When checking for updates, only check for stable releases." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 -msgctxt "@option:radio" -msgid "Stable releases only" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 -msgctxt "@info:tooltip" -msgid "When checking for updates, check for both stable and for beta releases." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 -msgctxt "@option:radio" -msgid "Stable and Beta releases" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 -msgctxt "@option:check" -msgid "Get notifications for plugin updates" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "Tiedot" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "Näytä nimi" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "Materiaalin tyyppi" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "Väri" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "Ominaisuudet" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "Tiheys" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "Läpimitta" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "Tulostuslangan hinta" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "Tulostuslangan paino" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "Tulostuslangan pituus" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Hinta metriä kohden" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "Poista materiaalin linkitys" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "Kuvaus" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Tarttuvuustiedot" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "Luo" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Jäljennös" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Tuo materiaali" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Materiaalin tuominen onnistui: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Vie materiaali" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Materiaalin vieminen onnistui kohteeseen %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 -msgctxt "@title:window" -msgid "Sync materials with printers" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 -msgctxt "@title:header" -msgid "Sync materials with printers" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 -msgctxt "@text" -msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 -msgctxt "@button" -msgid "Start" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 -msgctxt "@button" -msgid "Why do I need to sync material profiles?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 -msgctxt "@title:header" -msgid "Sign in" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 -msgctxt "@button" -msgid "Sync materials with USB" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 -msgctxt "@title:header" -msgid "The following printers will receive the new material profiles:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 -msgctxt "@title:header" -msgid "Something went wrong when sending the materials to the printers." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 -msgctxt "@title:header" -msgid "Material profiles successfully synced with the following printers:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 -msgctxt "@button" -msgid "Troubleshooting" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 -msgctxt "@text Asking the user whether printers are missing in a list." -msgid "Printers missing?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 -msgctxt "@text" -msgid "Make sure all your printers are turned ON and connected to Digital Factory." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 -msgctxt "@button" -msgid "Refresh List" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 -msgctxt "@button" -msgid "Try again" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Done" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 -msgctxt "@button" -msgid "Sync" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 -msgctxt "@button" -msgid "Syncing" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 -msgctxt "@title:header" -msgid "No printers found" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 -msgctxt "@button" -msgid "Learn how to connect your printer to Digital Factory" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 -msgctxt "@button" -msgid "Refresh" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 -msgctxt "@title:header" -msgid "Sync material profiles via USB" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 -msgctxt "@text" -msgid "Click the export material archive button." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 -msgctxt "@text" -msgid "Save the .umm file on a USB stick." -msgstr "" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 -msgctxt "@button" -msgid "How to load new material profiles to my printer" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Export material archive" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Näkyvyyden asettaminen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Tarkista kaikki" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 -msgctxt "@title:tab" -msgid "Printers" -msgstr "Tulostimet" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Laskettu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 msgctxt "@title:column" msgid "Setting" msgstr "Asetus" -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 msgctxt "@title:column" msgid "Profile" msgstr "Profiili" -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 msgctxt "@title:column" msgid "Current" msgstr "Nykyinen" -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:39 +msgctxt "@title:column Unit of measurement" msgid "Unit" -msgstr "Yksikkö" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "Ei yhteyttä tulostimeen" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "Tulostin ei hyväksy komentoja" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "Huolletaan. Tarkista tulostin" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "Yhteys tulostimeen menetetty" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "Tulostetaan..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "Keskeytetty" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "Valmistellaan..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Poista tuloste" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "Haluatko varmasti keskeyttää tulostuksen?" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 -msgctxt "@label:button" -msgid "My printers" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/SearchBar.qml:17 +msgctxt "@placeholder" +msgid "Search" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 -msgctxt "@tooltip:button" -msgid "Monitor printers in Ultimaker Digital Factory." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 -msgctxt "@tooltip:button" -msgid "Create print projects in Digital Library." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 -msgctxt "@label:button" -msgid "Print jobs" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 -msgctxt "@tooltip:button" -msgid "Monitor print jobs and reprint from your print history." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 -msgctxt "@tooltip:button" -msgid "Extend Ultimaker Cura with plugins and material profiles." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 -msgctxt "@tooltip:button" -msgid "Become a 3D printing expert with Ultimaker e-learning." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 -msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 -msgctxt "@tooltip:button" -msgid "Learn how to get started with Ultimaker Cura." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 -msgctxt "@label:button" -msgid "Ask a question" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 -msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 -msgctxt "@label:button" -msgid "Report a bug" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 -msgctxt "@tooltip:button" -msgid "Let developers know that something is going wrong." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 -msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "Suulake" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Peruuta" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Esilämmitä" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Tämän suulakkeen materiaalin väri." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Tämän suulakkeen materiaali." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "Tähän suulakkeeseen liitetty suutin." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "Tulostinta ei ole yhdistetty." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "Alusta" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -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/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -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/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 -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 "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 -msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 -msgctxt "@button" -msgid "Sign Out" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 -msgctxt "@label" -msgid "Checking..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 -msgctxt "@label" -msgid "Account synced" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 -msgctxt "@label" -msgid "Something went wrong..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 -msgctxt "@button" -msgid "Install pending updates" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 -msgctxt "@button" -msgid "Check for account updates" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 -msgctxt "@label" -msgid "No items to select from" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 -msgctxt "@action:inmenu" -msgid "Toggle Full Screen" -msgstr "Vaihda koko näyttöön" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 -msgctxt "@action:inmenu" -msgid "Exit Full Screen" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 -msgctxt "@action:inmenu menubar:edit" -msgid "&Undo" -msgstr "&Kumoa" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 -msgctxt "@action:inmenu menubar:edit" -msgid "&Redo" -msgstr "Tee &uudelleen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 -msgctxt "@action:inmenu menubar:file" -msgid "&Quit" -msgstr "&Lopeta" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 -msgctxt "@action:inmenu menubar:view" -msgid "3D View" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 -msgctxt "@action:inmenu menubar:view" -msgid "Front View" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 -msgctxt "@action:inmenu menubar:view" -msgid "Top View" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 -msgctxt "@action:inmenu menubar:view" -msgid "Bottom View" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 -msgctxt "@action:inmenu menubar:view" -msgid "Left Side View" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 -msgctxt "@action:inmenu menubar:view" -msgid "Right Side View" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 -msgctxt "@action:inmenu" -msgid "Configure Cura..." -msgstr "Määritä Curan asetukset..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 -msgctxt "@action:inmenu menubar:printer" -msgid "&Add Printer..." -msgstr "L&isää tulostin..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 -msgctxt "@action:inmenu menubar:printer" -msgid "Manage Pr&inters..." -msgstr "Tulostinten &hallinta..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 -msgctxt "@action:inmenu" -msgid "Manage Materials..." -msgstr "Hallitse materiaaleja..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu" -msgid "Add more materials from Marketplace" -msgstr "" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 -msgctxt "@action:inmenu menubar:profile" -msgid "&Discard current changes" -msgstr "&Hylkää tehdyt muutokset" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 -msgctxt "@action:inmenu menubar:profile" -msgid "Manage Profiles..." -msgstr "Profiilien hallinta..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 -msgctxt "@action:inmenu menubar:help" -msgid "Show Online &Documentation" -msgstr "Näytä sähköinen &dokumentaatio" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 -msgctxt "@action:inmenu menubar:help" -msgid "Report a &Bug" -msgstr "Ilmoita &virheestä" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 -msgctxt "@action:inmenu menubar:help" -msgid "What's New" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 -msgctxt "@action:inmenu menubar:help" -msgid "About..." -msgstr "Tietoja..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 -msgctxt "@action:inmenu menubar:edit" -msgid "Delete Selected" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 -msgctxt "@action:inmenu menubar:edit" -msgid "Center Selected" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 -msgctxt "@action:inmenu menubar:edit" -msgid "Multiply Selected" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 -msgctxt "@action:inmenu" -msgid "Delete Model" -msgstr "Poista malli" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 -msgctxt "@action:inmenu" -msgid "Ce&nter Model on Platform" -msgstr "Ke&skitä malli alustalle" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 -msgctxt "@action:inmenu menubar:edit" -msgid "&Group Models" -msgstr "&Ryhmittele mallit" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 -msgctxt "@action:inmenu menubar:edit" -msgid "Ungroup Models" -msgstr "Poista mallien ryhmitys" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 -msgctxt "@action:inmenu menubar:edit" -msgid "&Merge Models" -msgstr "&Yhdistä mallit" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 -msgctxt "@action:inmenu" -msgid "&Multiply Model..." -msgstr "&Kerro malli..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 -msgctxt "@action:inmenu menubar:edit" -msgid "Select All Models" -msgstr "Valitse kaikki mallit" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 -msgctxt "@action:inmenu menubar:edit" -msgid "Clear Build Plate" -msgstr "Tyhjennä tulostusalusta" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 -msgctxt "@action:inmenu menubar:file" -msgid "Reload All Models" -msgstr "Lataa kaikki mallit uudelleen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models" -msgstr "Järjestä kaikki mallit" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange Selection" -msgstr "Järjestä valinta" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Positions" -msgstr "Määritä kaikkien mallien positiot uudelleen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Transformations" -msgstr "Määritä kaikkien mallien muutokset uudelleen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 -msgctxt "@action:inmenu menubar:file" -msgid "&Open File(s)..." -msgstr "&Avaa tiedosto(t)..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 -msgctxt "@action:inmenu menubar:file" -msgid "&New Project..." -msgstr "&Uusi projekti..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 -msgctxt "@action:inmenu menubar:help" -msgid "Show Configuration Folder" -msgstr "Näytä määrityskansio" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 -msgctxt "@action:menu" -msgid "Configure setting visibility..." -msgstr "Määritä asetusten näkyvyys..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 -msgctxt "@label" -msgid "This setting is not used because all the settings that it influences are overridden." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 -msgctxt "@label Header for list of settings." -msgid "Affects" -msgstr "Koskee seuraavia:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 -msgctxt "@label Header for list of settings." -msgid "Affected By" -msgstr "Riippuu seuraavista:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 -msgctxt "@label" -msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 -msgctxt "@label" -msgid "This setting is resolved from conflicting extruder-specific values:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 -msgctxt "@label" -msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." -msgstr "" -"Tämän asetuksen arvo eroaa profiilin arvosta.\n" -"\n" -"Palauta profiilin arvo napsauttamalla." - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 -msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"Tämä asetus on normaalisti laskettu, mutta sillä on tällä hetkellä absoluuttinen arvo.\n" -"\n" -"Palauta laskettu arvo napsauttamalla." - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 -msgctxt "@label:textbox" -msgid "Search settings" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 -msgctxt "@action:menu" -msgid "Copy value to all extruders" -msgstr "Kopioi arvo kaikkiin suulakepuristimiin" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 -msgctxt "@action:menu" -msgid "Copy all changed values to all extruders" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 -msgctxt "@action:menu" -msgid "Hide this setting" -msgstr "Piilota tämä asetus" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 -msgctxt "@action:menu" -msgid "Don't show this setting" -msgstr "Älä näytä tätä asetusta" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 -msgctxt "@action:menu" -msgid "Keep this setting visible" -msgstr "Pidä tämä asetus näkyvissä" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5841,142 +5554,358 @@ msgstr "" "\n" "Tee asetuksista näkyviä napsauttamalla." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" -msgid "This package will be installed after restarting." +msgid "This setting is not used because all the settings that it influences are overridden." msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 -msgctxt "@title:tab" -msgid "Settings" -msgstr "Asetukset" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +msgctxt "@label Header for list of settings." +msgid "Affects" +msgstr "Koskee seuraavia" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +msgctxt "@label Header for list of settings." +msgid "Affected By" +msgstr "Riippuu seuraavista" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:190 +msgctxt "@label" +msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 -msgctxt "@label %1 is the application name" -msgid "Are you sure you want to exit %1?" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +msgctxt "@label" +msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 -msgctxt "@window:title" -msgid "Install Package" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +msgctxt "@label" +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"Tämän asetuksen arvo eroaa profiilin arvosta.\n" +"\n" +"Palauta profiilin arvo napsauttamalla." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:334 +msgctxt "@label" +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"Tämä asetus on normaalisti laskettu, mutta sillä on tällä hetkellä absoluuttinen arvo.\n" +"\n" +"Palauta laskettu arvo napsauttamalla." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +msgctxt "@label:textbox" +msgid "Search settings" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Avaa tiedosto(t)" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:395 +msgctxt "@action:menu" +msgid "Copy value to all extruders" +msgstr "Kopioi arvo kaikkiin suulakepuristimiin" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 -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/Settings/SettingView.qml:404 +msgctxt "@action:menu" +msgid "Copy all changed values to all extruders" +msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 -msgctxt "@title:window" -msgid "Add Printer" -msgstr "Lisää tulostin" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:440 +msgctxt "@action:menu" +msgid "Hide this setting" +msgstr "Piilota tämä asetus" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 -msgctxt "@title:window" +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info:tooltip" +msgid "3D View" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +msgctxt "@info:tooltip" +msgid "Front View" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Add printer manually" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +msgctxt "@label" +msgid "Manufacturer" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 +msgctxt "@label" +msgid "Profile author" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 +msgctxt "@label" +msgid "Printer name" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 +msgctxt "@label" +msgid "Refresh" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 +msgctxt "@button" +msgid "Add" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Can't connect to your Ultimaker printer?" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Connect" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +msgctxt "@label" +msgid "Release Notes" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:175 +msgctxt "@text" +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 +msgctxt "@button" +msgid "Skip" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +msgctxt "@text" +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 +msgctxt "@label" +msgid "Empty" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +msgctxt "@label" +msgid "User Agreement" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" msgid "What's New" 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" - -#: 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" - -#: 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" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:18 +msgctxt "@label" +msgid "No items to select from" msgstr "" -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "" - -#: MachineSettingsAction/plugin.json +#: ModelChecker/plugin.json msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgid "Checks models and print configuration for possible printing issues and give suggestions." msgstr "" -#: MachineSettingsAction/plugin.json +#: ModelChecker/plugin.json msgctxt "name" -msgid "Machine Settings Action" +msgid "Model Checker" 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 "" - -#: 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" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "" - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "" - -#: 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" - #: 3MFReader/plugin.json msgctxt "description" msgid "Provides support for reading 3MF files." @@ -5987,65 +5916,15 @@ msgctxt "name" msgid "3MF Reader" msgstr "3MF-lukija" -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "" +msgid "Provides support for writing 3MF files." +msgstr "Tukee 3MF-tiedostojen kirjoittamista." -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "name" -msgid "UFP Writer" -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 "" - -#: 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 "" - -#: PreviewStage/plugin.json -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "" - -#: PreviewStage/plugin.json -msgctxt "name" -msgid "Preview Stage" -msgstr "" - -#: 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ä" - -#: 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" +msgid "3MF Writer" +msgstr "3MF-kirjoitin" #: AMFReader/plugin.json msgctxt "description" @@ -6057,25 +5936,35 @@ msgctxt "name" msgid "AMF Reader" msgstr "" -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Reads g-code from a compressed archive." +msgid "Backup and restore your configuration." msgstr "" -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Compressed G-code Reader" +msgid "Cura Backups" msgstr "" -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/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" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Linkki CuraEngine-viipalointiin taustalla." -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "Jälkikäsittely" +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" @@ -6087,64 +5976,14 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Cura-profiilin kirjoitin" -#: USBPrinting/plugin.json +#: DigitalLibrary/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" - -#: PrepareStage/plugin.json -msgctxt "description" -msgid "Provides a prepare stage in Cura." +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." msgstr "" -#: PrepareStage/plugin.json +#: DigitalLibrary/plugin.json msgctxt "name" -msgid "Prepare Stage" -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" - -#: 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" - -#: 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" - -#: GCodeGzWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "" - -#: GCodeGzWriter/plugin.json -msgctxt "name" -msgid "Compressed G-code Writer" +msgid "Ultimaker Digital Library" msgstr "" #: FirmwareUpdateChecker/plugin.json @@ -6157,46 +5996,56 @@ msgctxt "name" msgid "Firmware Update Checker" msgstr "Laiteohjelmiston päivitysten tarkistus" -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/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" - -#: 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" - -#: DigitalLibrary/plugin.json -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgid "Provides a machine actions for updating firmware." msgstr "" -#: DigitalLibrary/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Ultimaker Digital Library" +msgid "Firmware Updater" msgstr "" -#: Toolbox/plugin.json +#: GCodeGzReader/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." +msgid "Reads g-code from a compressed archive." msgstr "" -#: Toolbox/plugin.json +#: GCodeGzReader/plugin.json msgctxt "name" -msgid "Toolbox" +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." @@ -6207,9 +6056,119 @@ 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 Simulation view." +msgid "Provides the preview of sliced layerdata." msgstr "" #: SimulationView/plugin.json @@ -6217,234 +6176,34 @@ msgctxt "name" msgid "Simulation View" msgstr "" -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Lähettää anonyymiä viipalointitietoa. Voidaan lisäasetuksista kytkeä pois käytöstä." -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/plugin.json msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "" +msgid "Slice info" +msgstr "Viipalointitiedot" -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/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." +msgid "Provides a normal solid mesh view." +msgstr "Näyttää normaalin kiinteän verkkonäkymän." -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/plugin.json msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Päivitys versiosta 2.5 versioon 2.6" +msgid "Solid View" +msgstr "Kiinteä näkymä" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgid "Creates an eraser mesh to block the printing of support in certain places" msgstr "" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/plugin.json msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -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/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/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/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/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/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/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/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 "" - -#: 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/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/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/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/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/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/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/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/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/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 "" - -#: UM3NetworkPrinting/plugin.json -msgctxt "description" -msgid "Manages network connections to Ultimaker networked printers." -msgstr "" - -#: UM3NetworkPrinting/plugin.json -msgctxt "name" -msgid "Ultimaker Network Connection" +msgid "Support Eraser" msgstr "" #: TrimeshReader/plugin.json @@ -6467,46 +6226,354 @@ msgctxt "name" msgid "UFP Reader" msgstr "" -#: SolidView/plugin.json +#: UFPWriter/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ä" - -#: 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" - -#: MonitorStage/plugin.json -msgctxt "description" -msgid "Provides a monitor stage in Cura." +msgid "Provides support for writing Ultimaker Format Packages." msgstr "" -#: MonitorStage/plugin.json +#: UFPWriter/plugin.json msgctxt "name" -msgid "Monitor Stage" +msgid "UFP Writer" msgstr "" -#: ModelChecker/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." msgstr "" -#: ModelChecker/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "name" -msgid "Model Checker" +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" diff --git a/resources/i18n/fi_FI/fdmextruder.def.json.po b/resources/i18n/fi_FI/fdmextruder.def.json.po index a814af04d4..e3d787b72f 100644 --- a/resources/i18n/fi_FI/fdmextruder.def.json.po +++ b/resources/i18n/fi_FI/fdmextruder.def.json.po @@ -1,19 +1,20 @@ # Cura JSON setting files -# Copyright (C) 2019 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0000\n" -"PO-Revision-Date: 2017-08-11 14:31+0200\n" +"POT-Creation-Date: 2022-06-21 12:50+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 "machine_settings label" diff --git a/resources/i18n/fi_FI/fdmprinter.def.json.po b/resources/i18n/fi_FI/fdmprinter.def.json.po index ba8d2db2c2..17324b976a 100644 --- a/resources/i18n/fi_FI/fdmprinter.def.json.po +++ b/resources/i18n/fi_FI/fdmprinter.def.json.po @@ -1,19 +1,20 @@ # Cura JSON setting files -# Copyright (C) 2019 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 11:59+0000\n" -"PO-Revision-Date: 2017-09-27 12:27+0200\n" +"POT-Creation-Date: 2022-06-21 12:50+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" @@ -461,8 +462,8 @@ msgstr "" #: fdmprinter.def.json 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)" +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" @@ -572,7 +573,7 @@ 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." +msgstr "X-suunnan moottorin maksimikiihtyvyys" #: fdmprinter.def.json msgctxt "machine_max_acceleration_y label" @@ -734,6 +735,16 @@ 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" @@ -954,6 +965,56 @@ 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" @@ -985,14 +1046,24 @@ msgid "Optimize the order in which walls are printed so as to reduce the number msgstr "" #: fdmprinter.def.json -msgctxt "outer_inset_first label" -msgid "Outer Before Inner Walls" -msgstr "Ulkoseinämät ennen sisäseinämiä" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "" #: fdmprinter.def.json -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 "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" @@ -1005,83 +1076,53 @@ msgid "Prints an extra wall at every other layer. This way infill gets caught be 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 "travel_compensate_overlapping_walls_enabled label" -msgid "Compensate Wall Overlaps" -msgstr "Kompensoi seinämän limityksiä" - -#: fdmprinter.def.json -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 "travel_compensate_overlapping_walls_0_enabled label" -msgid "Compensate Outer Wall Overlaps" -msgstr "Kompensoi ulkoseinämän limityksiä" - -#: fdmprinter.def.json -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 "travel_compensate_overlapping_walls_x_enabled label" -msgid "Compensate Inner Wall Overlaps" -msgstr "Kompensoi sisäseinämän limityksiä" - -#: fdmprinter.def.json -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_min_flow label" -msgid "Minimum Wall Flow" +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" msgstr "" #: fdmprinter.def.json -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." +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 "wall_min_flow_retract label" -msgid "Prefer Retract" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" msgstr "" #: fdmprinter.def.json -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." +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 "fill_perimeter_gaps label" -msgid "Fill Gaps Between Walls" -msgstr "Täytä seinämien väliset raot" - -#: fdmprinter.def.json -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 "fill_perimeter_gaps option nowhere" -msgid "Nowhere" -msgstr "Ei missään" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option everywhere" -msgid "Everywhere" -msgstr "Kaikkialla" - -#: fdmprinter.def.json -msgctxt "filter_out_tiny_gaps label" -msgid "Filter Out Tiny Gaps" +msgctxt "wall_split_middle_threshold label" +msgid "Split Middle Line Threshold" msgstr "" #: fdmprinter.def.json -msgctxt "filter_out_tiny_gaps description" -msgid "Filter out tiny gaps to reduce blobs on outside of model." +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 @@ -1094,6 +1135,26 @@ 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" @@ -2069,7 +2130,7 @@ msgstr "Oletustulostuslämpötila" #: 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ä." +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 "build_volume_temperature label" @@ -2191,6 +2252,26 @@ 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" @@ -2702,24 +2783,14 @@ msgid "The first few layers are printed slower than the rest of the model, to ge 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_enabled label" -msgid "Equalize Filament Flow" -msgstr "Yhdenmukaista tulostuslangan virtaus" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "" #: fdmprinter.def.json -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 "speed_equalize_flow_max label" -msgid "Maximum Speed for Flow Equalization" -msgstr "Virtauksen yhdenmukaistamisen maksiminopeus" - -#: fdmprinter.def.json -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 "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" @@ -2731,6 +2802,16 @@ 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" @@ -2921,6 +3002,16 @@ 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" @@ -3129,7 +3220,7 @@ 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. " +msgstr "Vedä tulostuslanka takaisin, kun suutin on siirtymässä seuraavaan kerrokseen." #: fdmprinter.def.json msgctxt "retraction_amount label" @@ -4456,6 +4547,46 @@ 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" @@ -4618,6 +4749,16 @@ 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" @@ -5118,6 +5259,16 @@ 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" @@ -6412,6 +6563,36 @@ 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 "" + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +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" +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 "command_line_settings label" msgid "Command Line Settings" @@ -6472,6 +6653,74 @@ 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 "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 "outer_inset_first label" +#~ msgid "Outer Before Inner Walls" +#~ msgstr "Ulkoseinämät ennen sisäseinämiä" + +#~ 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 "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_0_enabled label" +#~ msgid "Compensate Outer Wall Overlaps" +#~ msgstr "Kompensoi ulkoseinämän limityksiä" + +#~ 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 "travel_compensate_overlapping_walls_x_enabled label" +#~ msgid "Compensate Inner Wall Overlaps" +#~ msgstr "Kompensoi sisäseinämän limityksiä" + +#~ 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 "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 "fill_perimeter_gaps option nowhere" +#~ msgid "Nowhere" +#~ msgstr "Ei missään" + +#~ msgctxt "fill_perimeter_gaps option everywhere" +#~ msgid "Everywhere" +#~ msgstr "Kaikkialla" + +#~ msgctxt "speed_equalize_flow_enabled label" +#~ msgid "Equalize Filament Flow" +#~ msgstr "Yhdenmukaista tulostuslangan virtaus" + +#~ 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 "speed_equalize_flow_max label" +#~ msgid "Maximum Speed for Flow Equalization" +#~ msgstr "Virtauksen yhdenmukaistamisen 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 "machine_max_feedrate_e label" #~ msgid "Maximum Feedrate" #~ msgstr "Maksimisyöttönopeus" diff --git a/resources/i18n/fr_FR/cura.po b/resources/i18n/fr_FR/cura.po index f8a41bc81c..1ed0741285 100644 --- a/resources/i18n/fr_FR/cura.po +++ b/resources/i18n/fr_FR/cura.po @@ -1,465 +1,190 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0100\n" -"PO-Revision-Date: 2021-09-07 07:48+0200\n" -"Last-Translator: Lionbridge \n" -"Language-Team: French , French \n" +"POT-Creation-Date: 2022-06-21 12:50+0200\n" +"PO-Revision-Date: 2022-07-15 11:16+0200\n" +"Last-Translator: \n" +"Language-Team: \n" "Language: fr_FR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.0\n" +"Plural-Forms: nplurals=2; plural=n>1;\n" +"X-Generator: Poedit 3.1.1\n" -#: /home/clamboo/Desktop/Cura/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 : {}" +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "Inconnu" -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 -msgctxt "@info:title" -msgid "Backup" -msgstr "Sauvegarde" +#: /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/clamboo/Desktop/Cura/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/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Imprimantes en réseau disponibles" -#: /home/clamboo/Desktop/Cura/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/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Pas écrasé" -#: /home/clamboo/Desktop/Cura/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 :" +#: /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/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 -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/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/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 -msgctxt "@action:button" -msgid "New materials installed" -msgstr "Nouveaux matériaux installés" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 -msgctxt "@action:button" -msgid "Sync materials with printers" -msgstr "Synchroniser les matériaux" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 -msgctxt "@action:button" -msgid "Learn more" -msgstr "En savoir plus" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 -msgctxt "@text" -msgid "Unknown error." -msgstr "Erreur inconnue." - -#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 -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/clamboo/Desktop/Cura/cura/BuildVolume.py:102 -msgctxt "@info:title" -msgid "Build Volume" -msgstr "Volume d'impression" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Pas écrasé" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "Inconnu" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Imprimantes en réseau disponibles" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Tous les fichiers (*)" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Visuel" +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Calculer" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Ébauche" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 -msgctxt "@label" -msgid "Custom Material" -msgstr "Matériau personnalisé" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 -msgctxt "@label" -msgid "Custom" -msgstr "Personnalisé" - -#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 +#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "La connexion a échoué" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Recherche d'un nouvel emplacement pour les objets" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 msgctxt "@info:title" msgid "Finding Location" msgstr "Recherche d'emplacement" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Impossible de trouver un emplacement" -#: /home/clamboo/Desktop/Cura/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/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 : {}" -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 -msgctxt "@text:error" -msgid "Failed to connect to Digital Factory." -msgstr "Échec de la connexion à Digital Factory." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "Chargement des machines..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "Configuration des préférences..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "Initialisation de la machine active..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "Initialisation du gestionnaire de machine..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "Initialisation du volume de fabrication..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "Préparation de la scène..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "Chargement de l'interface..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "Initialisation du moteur..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 +#: /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 msgctxt "@info:title" -msgid "Warning" -msgstr "Avertissement" +msgid "Backup" +msgstr "Sauvegarde" -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 -#, python-brace-format +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 :" + +#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 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" +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/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 msgctxt "@info:title" -msgid "Error" -msgstr "Erreur" +msgid "Build Volume" +msgstr "Volume d'impression" -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 -msgctxt "@action:button" -msgid "Skip" -msgstr "Passer" - -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "Fermer" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 -msgctxt "@action:button" -msgid "Next" -msgstr "Suivant" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 -msgctxt "@action:button" -msgid "Finish" -msgstr "Fin" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "Ajouter" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Annuler" - -#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 -#, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "Groupe nº {group_nr}" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Paroi externe" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "Parois internes" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Skin" -msgstr "Couche extérieure" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Infill" -msgstr "Remplissage" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Remplissage du support" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Interface du support" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Support" -msgstr "Support" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Jupe" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "Tour primaire" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 -msgctxt "@tooltip" -msgid "Travel" -msgstr "Déplacement" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Rétractions" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 -msgctxt "@tooltip" -msgid "Other" -msgstr "Autre" - -#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 -#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 -msgctxt "@text:window" -msgid "The release notes could not be opened." -msgstr "Les notes de version n'ont pas pu être ouvertes." - -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Échec du démarrage de Cura" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

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

      \n" @@ -474,32 +199,32 @@ msgstr "" "

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

      \n" " " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 msgctxt "@action:button" msgid "Send crash report to Ultimaker" msgstr "Envoyer le rapport de d'incident à Ultimaker" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Afficher le rapport d'incident détaillé" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Afficher le dossier de configuration" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Sauvegarder et réinitialiser la configuration" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Rapport d'incident" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190 +#: /home/trin/Gedeeld/Projects/Cura/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" @@ -510,641 +235,771 @@ msgstr "" "

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

      \n" " " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Informations système" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Inconnu" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Version Cura" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Langue de Cura" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "Langue du SE" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Plate-forme" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Version Qt" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "Version PyQt" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 msgctxt "@label" -msgid "Not yet initialized
      " -msgstr "Pas encore initialisé
      " +msgid "Not yet initialized" +msgstr "Pas encore initialisé" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
    • OpenGL Version: {version}
    • " msgstr "
    • Version OpenGL : {version}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
    • OpenGL Vendor: {vendor}
    • " msgstr "
    • Revendeur OpenGL : {vendor}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
    • OpenGL Renderer: {renderer}
    • " msgstr "
    • Moteur de rendu OpenGL : {renderer}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Retraçage de l'erreur" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "Journaux" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "Envoyer rapport" -#: /home/clamboo/Desktop/Cura/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/CuraApplication.py:531 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "Chargement des machines..." -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 -msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." -msgstr "Impossible d’atteindre le serveur du compte Ultimaker." +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "Configuration des préférences..." -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "Initialisation de la machine active..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "Initialisation du gestionnaire de machine..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "Initialisation du volume de fabrication..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "Préparation de la scène..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "Chargement de l'interface..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "Initialisation du moteur..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#, 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 +#, 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 msgctxt "@info:title" -msgid "Log-in failed" -msgstr "Échec de la connexion" +msgid "Warning" +msgstr "Avertissement" -#: /home/clamboo/Desktop/Cura/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/CuraApplication.py:1810 +#, 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/clamboo/Desktop/Cura/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/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 +msgctxt "@info:title" +msgid "Error" +msgstr "Erreur" -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 -msgctxt "@message" -msgid "Could not read response." -msgstr "Impossible de lire la réponse." - -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "Multiplication et placement d'objets" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "Placement des objets" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Placement de l'objet" -#: /home/clamboo/Desktop/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/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "Impossible de lire la réponse." -#: /home/clamboo/Desktop/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/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "L'état fourni n'est pas correct." -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 -msgctxt "@label" -msgid "Nozzle" -msgstr "Buse" +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 -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 :" +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info" +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 msgctxt "@info:title" -msgid "Settings updated" -msgstr "Paramètres mis à jour" +msgid "Log-in failed" +msgstr "Échec de la connexion" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "Extrudeuse(s) désactivée(s)" +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 msgctxt "@title:window" msgid "File Already Exists" msgstr "Le fichier existe déjà" -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 /home/trin/Gedeeld/Projects/Cura/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 ?" -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "URL de fichier invalide :" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: /home/trin/Gedeeld/Projects/Cura/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." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "L'exportation a réussi" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: /home/trin/Gedeeld/Projects/Cura/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}" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: /home/trin/Gedeeld/Projects/Cura/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} :" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Importation du profil {0} réussie." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Personnaliser le profil" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Impossible d'ajouter le profil." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: /home/trin/Gedeeld/Projects/Cura/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} »." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: /home/trin/Gedeeld/Projects/Cura/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é." -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: /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 msgctxt "@label" -msgid "Per Model Settings" -msgstr "Paramètres par modèle" +msgid "Nozzle" +msgstr "Buse" -#: /home/clamboo/Desktop/Cura/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/cura/Settings/MachineManager.py:857 +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 :" -#: /home/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Profil Cura" - -#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "Fichier X3D" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 msgctxt "@info:title" -msgid "Backups" -msgstr "Sauvegardes" +msgid "Settings updated" +msgstr "Paramètres mis à jour" -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Création de votre sauvegarde..." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Téléchargement de votre sauvegarde..." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Gérer les sauvegardes" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Paramètres de la machine" - -#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "Blocage des supports" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Lecteur amovible" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/clamboo/Desktop/Cura/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 !" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 msgctxt "@info:title" -msgid "Saving" -msgstr "Enregistrement" +msgid "Extruder(s) Disabled" +msgstr "Extrudeuse(s) désactivée(s)" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "Enregistré sur le lecteur amovible {0} sous {1}" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 -msgctxt "@info:title" -msgid "File Saved" -msgstr "Fichier enregistré" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" -msgid "Eject" -msgstr "Ejecter" +msgid "Add" +msgstr "Ajouter" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Annuler" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 #, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "Ejecter le lecteur amovible {0}" +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "Groupe nº {group_nr}" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 -#, 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/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Paroi externe" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "Parois internes" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "Couche extérieure" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "Remplissage" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Remplissage du support" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Interface du support" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "Support" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Jupe" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "Tour primaire" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "Déplacement" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Rétractions" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Close" +msgstr "Fermer" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "Nouveaux matériaux installés" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Learn more" +msgstr "En savoir plus" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@text" +msgid "Unknown error." +msgstr "Erreur inconnue." + +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Retirez le lecteur en toute sécurité" +msgid "3D Model Assistant" +msgstr "Assistant de modèle 3D" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 #, 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." +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 "" +"

      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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Mettre à jour le firmware" - -#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Profils Cura 15.04" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Recommandé" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Personnalisé" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 +#: /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." -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 msgctxt "@info:title" msgid "Open Project File" msgstr "Ouvrir un fichier de projet" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 +#: /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 "Les matériaux utilisés pour ce projet sont basés sur des définitions de matériaux qui ne sont pas disponibles dans Cura, ce qui peut entraîner des résultats d'impression indésirables. Nous vous recommandons vivement d'installer le package de matériaux complet à partir de la Marketplace." + +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:392 +msgctxt "@info:title" +msgid "Material profiles not installed" +msgstr "Les profils de matériaux ne sont pas installés" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:405 +msgctxt "@action:button" +msgid "Install Materials" +msgstr "Installer des matériaux" + +#: /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/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "Impossible d'écrire dans le fichier UFP :" +#: /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/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 -#: /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Ultimaker Format Package" +#: /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/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "Fichier GCode" +#: /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/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "Aperçu" +#: /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/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Visualisation par rayons X" +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Traitement des couches" +#: /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 "Impossible de stocker les informations du package de matériaux dans le fichier projet suivant : {material}. Ce projet peut ne pas s'ouvrir correctement sur d'autres systèmes." -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:283 msgctxt "@info:title" -msgid "Information" -msgstr "Informations" +msgid "Failed to save material package information" +msgstr "Échec de l'enregistrement des informations du package de matériaux" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 msgctxt "@message:title" msgid "Slicing failed" msgstr "Échec de la découpe" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 msgctxt "@message:button" msgid "Report a bug" msgstr "Notifier un bug" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 msgctxt "@info:status" msgid "" "Please review settings and check if your models:\n" @@ -1157,436 +1012,497 @@ msgstr "" "- Sont affectés à un extrudeur activé\n" "- N sont pas tous définis comme des mailles de modificateur" -#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "Fichier AMF" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "Fichier G-Code compressé" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "Post-traitement" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "Modifier le G-Code" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "Impression par USB" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Imprimer via USB" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Imprimer via USB" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Connecté via USB" +msgid "Processing Layers" +msgstr "Traitement des couches" -#: /home/clamboo/Desktop/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 "Une impression USB est en cours, la fermeture de Cura arrêtera cette impression. Êtes-vous sûr ?" - -#: /home/clamboo/Desktop/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 "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/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 -msgctxt "@message" -msgid "Print in Progress" -msgstr "Impression en cours" - -#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "Préparer" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "Analyse du G-Code" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 msgctxt "@info:title" -msgid "G-code Details" -msgstr "Détails G-Code" +msgid "Information" +msgstr "Informations" -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 -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/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 msgctxt "@item:inlistbox" -msgid "G File" -msgstr "Fichier G" +msgid "Cura Profile" +msgstr "Profil Cura" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "Image JPG" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "Image JPEG" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "Image PNG" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "Image BMP" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "Image GIF" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "Nivellement du plateau" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "Sélectionner les mises à niveau" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 msgctxt "@info" msgid "Could not access update information." msgstr "Impossible d'accéder aux informations de mise à jour." -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#: /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}." -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#: /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" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 msgctxt "@action:button" msgid "How to update" msgstr "Comment effectuer la mise à jour" -#: /home/clamboo/Desktop/Cura/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/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Mettre à jour le firmware" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 -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/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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Synchronisation..." +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +#: /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 "Changes detected from your Ultimaker account" -msgstr "Changements détectés à partir de votre compte Ultimaker" +msgid "G-code Details" +msgstr "Détails G-Code" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 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 ?" +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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 -msgctxt "@action:button" -msgid "Sync" -msgstr "Synchroniser" +#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "Fichier G" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Décliner et supprimer du compte" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "Échec de téléchargement des plugins {}" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "Refuser" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "Accepter" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Plug-in d'accord de licence" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +#: /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/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +#: /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 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "Surveiller" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@item:inmenu" +msgid "Post Processing" +msgstr "Post-traitement" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@item:inmenu" +msgid "Prepare" +msgstr "Préparer" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 +msgctxt "@item:inmenu" +msgid "Preview" +msgstr "Aperçu" + +#: /home/trin/Gedeeld/Projects/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 +#, 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 +msgctxt "@info:status" +msgid "There are no file formats available to write with!" +msgstr "Aucun format de fichier n'est disponible pour écriture !" + +#: /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 "Enregistrement sur le lecteur amovible {0}" + +#: /home/trin/Gedeeld/Projects/Cura/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 +#, 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 +#, 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 +#, 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 +#, 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 +msgctxt "@info:title" +msgid "File Saved" +msgstr "Fichier enregistré" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +msgctxt "@action:button" +msgid "Eject" +msgstr "Ejecter" + +#: /home/trin/Gedeeld/Projects/Cura/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 +#, 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 +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 +#, 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 +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." -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 msgctxt "@info:title" msgid "Simulation View" msgstr "Vue simulation" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:133 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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 msgctxt "@info:title" msgid "No layers to show" msgstr "Pas de couches à afficher" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +#: /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 "Ne plus afficher ce message" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Vue en couches" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "Imprimer sur le réseau" +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Imprimer sur le réseau" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Connecté sur le réseau" +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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "demain" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 +msgctxt "@info:title" +msgid "Model Errors" +msgstr "Erreurs du modèle" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "aujourd'hui" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Solid view" +msgstr "Vue solide" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 +msgctxt "@label" +msgid "Support Blocker" +msgstr "Blocage des supports" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 binaire" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "Format Triangle de Stanford" + +#: /home/trin/Gedeeld/Projects/Cura/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" + +#: /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 "Impossible d'écrire dans le fichier UFP :" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" -msgid "Connect via Network" -msgstr "Connecter via le réseau" +msgid "Level build plate" +msgstr "Nivellement du plateau" -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "Erreur d'impression" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Données envoyées" - -#: /home/clamboo/Desktop/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 "Vous tentez de vous connecter à une imprimante qui n'exécute pas Ultimaker Connect. Veuillez mettre à jour l'imprimante avec le dernier micrologiciel." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 -msgctxt "@info:title" -msgid "Update your printer" -msgstr "Mettre à jour votre imprimante" - -#: /home/clamboo/Desktop/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 "La file d'attente pour les tâches d'impression est pleine. L'imprimante ne peut pas accepter une nouvelle tâche." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "La file d'attente est pleine" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "Lancement d'une tâche d'impression" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/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 a détecté des profils de matériau qui ne sont pas encore installés sur l'imprimante hôte du groupe {0}." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "Envoi de matériaux à l'imprimante" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "Erreur de réseau" - -#: /home/clamboo/Desktop/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 "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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "Pas un hôte de groupe" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 msgctxt "@action" -msgid "Configure group" -msgstr "Configurer le groupe" +msgid "Select upgrades" +msgstr "Sélectionner les mises à niveau" -#: /home/clamboo/Desktop/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 "" -"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/clamboo/Desktop/Cura/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 ?" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 -msgctxt "@action" -msgid "Get started" -msgstr "Prise en main" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 -msgctxt "@action" -msgid "Learn more" -msgstr "En savoir plus" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 msgctxt "@action:button" msgid "Print via cloud" msgstr "Imprimer via le cloud" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Imprimer via le cloud" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Connecté via le cloud" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 msgctxt "@action:button" msgid "Monitor print" msgstr "Surveiller l'impression" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 msgctxt "@action:tooltip" msgid "Track the print in Ultimaker Digital Factory" msgstr "Suivre l'impression dans Ultimaker Digital Factory" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#: /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 "Code d'erreur inconnu lors du téléchargement d'une tâche d'impression : {0}" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 +#: /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" @@ -1594,71 +1510,70 @@ msgid_plural "... and {0} others" msgstr[0] "... et {0} autre" msgstr[1] "... et {0} autres" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:361 msgctxt "@action:button" msgid "Remove printers" msgstr "Supprimer des imprimantes" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 +#: /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 "L'imprimante {printer_name} sera supprimée jusqu'à la prochaine synchronisation de compte." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 +#: /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 "Pour supprimer {printer_name} définitivement, visitez le site {digital_factory_link}" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 +#: /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 "Voulez-vous vraiment supprimer {printer_name} temporairement ?" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 msgctxt "@title:window" msgid "Remove printers?" msgstr "Supprimer des imprimantes ?" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 #, python-brace-format msgctxt "@label" msgid "" @@ -1674,7 +1589,7 @@ msgstr[1] "" "Vous êtes sur le point de supprimer {0} imprimantes de Cura. Cette action est irréversible.\n" "Voulez-vous vraiment continuer ?" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +#: /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" @@ -1683,1638 +1598,1062 @@ msgstr "" "Vous êtes sur le point de supprimer toutes les imprimantes de Cura. Cette action est irréversible.\n" "Voulez-vous vraiment continuer ?" -#: /home/clamboo/Desktop/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 "Ouvrir le maillage triangulaire compressé" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA Digital Asset Exchange" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "glTF binaire" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF incorporé JSON" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Format Triangle de Stanford" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "COLLADA Digital Asset Exchange compressé" - -#: /home/clamboo/Desktop/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 "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/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "Erreurs du modèle" - -#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Vue solide" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Erreur d'écriture du fichier 3MF." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "Fichier 3MF" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Projet Cura fichier 3MF" - -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "Surveiller" - -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 -msgctxt "@info:title" -msgid "3D Model Assistant" -msgstr "Assistant de modèle 3D" - -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 #, 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

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

      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

      " +"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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/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 ?" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action" +msgid "Learn more" +msgstr "En savoir plus" + +#: /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 "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 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "Mettre à jour votre imprimante" + +#: /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 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 +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 +#, 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 +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 +msgctxt "@action" +msgid "Configure group" +msgstr "Configurer le groupe" + +#: /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 "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 +msgctxt "@info:title" +msgid "Print error" +msgstr "Erreur d'impression" + +#: /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 "Impossible de transférer les données à l'imprimante." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +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 +msgctxt "@info:title" +msgid "Data Sent" +msgstr "Données envoyées" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 +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 +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 +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 +msgctxt "@action" +msgid "Connect via Network" +msgstr "Connecter via le réseau" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "demain" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "aujourd'hui" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "Imprimer via USB" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" -msgid "Mesh Type" -msgstr "Type de maille" +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 ?" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "Modèle normal" +#: /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 "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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "Imprimer comme support" +#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "Impression en cours" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Modifier les paramètres de chevauchement" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Ne prend pas en charge le chevauchement" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 +#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Maille de remplissage uniquement" +msgid "X3D File" +msgstr "Fichier X3D" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 +#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Maille de coupe" +msgid "X-Ray view" +msgstr "Visualisation par rayons X" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Sélectionner les paramètres" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Sélectionner les paramètres pour personnaliser ce modèle" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtrer..." - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Afficher tout" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Sauvegardes Cura" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Version Cura" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Machines" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Matériaux" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Profils" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Plug-ins" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Vous en voulez plus ?" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Sauvegarder maintenant" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Sauvegarde automatique" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "Restaurer" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Supprimer la sauvegarde" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Restaurer la sauvegarde" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 -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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 -msgctxt "@button" -msgid "Sign in" -msgstr "Se connecter" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Mes sauvegardes" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -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/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Paramètres de l'imprimante" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (Largeur)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Profondeur)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Hauteur)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 -msgctxt "@label" -msgid "Build plate shape" -msgstr "Forme du plateau" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 -msgctxt "@label" -msgid "Origin at center" -msgstr "Origine au centre" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 -msgctxt "@label" -msgid "Heated bed" -msgstr "Plateau chauffant" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 -msgctxt "@label" -msgid "Heated build volume" -msgstr "Volume de fabrication chauffant" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 -msgctxt "@label" -msgid "G-code flavor" -msgstr "Parfum G-Code" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Paramètres de la tête d'impression" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -msgctxt "@label" -msgid "X min" -msgstr "X min" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -msgctxt "@label" -msgid "Y min" -msgstr "Y min" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -msgctxt "@label" -msgid "X max" -msgstr "X max" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -msgctxt "@label" -msgid "Y max" -msgstr "Y max" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "Gantry Height" -msgstr "Hauteur du portique" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Nombre d'extrudeuses" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Appliquer les décalages offset de l'extrudeuse au GCode" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "G-Code de démarrage" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "G-Code de fin" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Paramètres de la buse" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 -msgctxt "@label" -msgid "Nozzle size" -msgstr "Taille de la buse" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Diamètre du matériau compatible" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Décalage buse X" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Décalage buse Y" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Numéro du ventilateur de refroidissement" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "Extrudeuse G-Code de démarrage" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "Extrudeuse G-Code de fin" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "Imprimante" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Mettre à jour le firmware" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Mise à niveau automatique du firmware" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Charger le firmware personnalisé" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Sélectionner le firmware personnalisé" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Mise à jour du firmware" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Updating firmware." -msgstr "Mise à jour du firmware en cours." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Mise à jour du firmware terminée." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "Échec de la mise à jour du firmware en raison du firmware manquant." - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 msgctxt "@title:window" msgid "Open Project" msgstr "Ouvrir un projet" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Paramètres de l'imprimante" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Paramètres de profil" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 msgctxt "@action:label" msgid "Derivative from" msgstr "Dérivé de" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 -msgctxt "@action:label" -msgid "Material settings" -msgstr "Paramètres du matériau" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 msgctxt "@action:label" msgid "Mode" msgstr "Mode" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 msgctxt "@action:label" msgid "Visible settings:" msgstr "Paramètres visibles :" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 sur %2" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 msgctxt "@action:button" msgid "Open" msgstr "Ouvrir" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "Ouvrir le projet quand même" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:529 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "Installer le matériau manquant" + +#: /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 "Post Processing Plugin" -msgstr "Plug-in de post-traitement" +msgid "Cura Backups" +msgstr "Sauvegardes Cura" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 +#: /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 "Enregistrer le projet Cura et imprimer le fichier" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "Enregistrer le projet Cura" + +#: /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 "Post Processing Scripts" -msgstr "Scripts de post-traitement" +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/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "Ajouter un script" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 msgctxt "@label" -msgid "Settings" -msgstr "Paramètres" +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/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Modifiez les scripts de post-traitement actifs." +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Mise à niveau automatique du firmware" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 -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/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Charger le firmware personnalisé" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /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 "Convert Image..." -msgstr "Conversion de l'image..." +msgid "Select custom firmware" +msgstr "Sélectionner le firmware personnalisé" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 -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/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Mise à jour du firmware" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 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." +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "La distance maximale de chaque pixel à partir de la « Base »." -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 msgctxt "@action:label" msgid "Base (mm)" msgstr "Base (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate." -msgstr "La largeur en millimètres sur le plateau." +msgid "The base height from the build plate in millimeters." +msgstr "La hauteur de la base à partir du plateau en millimètres." -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 msgctxt "@action:label" msgid "Width (mm)" msgstr "Largeur (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "La profondeur en millimètres sur le plateau" +msgid "The width in millimeters on the build plate" +msgstr "La largeur en millimètres sur le plateau de fabrication" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 msgctxt "@action:label" msgid "Depth (mm)" msgstr "Profondeur (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 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é." +msgid "The depth in millimeters on the build plate" +msgstr "La profondeur en millimètres sur le plateau" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 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." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "Translucidité" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 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." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "Transmission 1 mm (%)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "La quantité de lissage à appliquer à l'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 "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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 msgctxt "@action:label" msgid "Smoothing" msgstr "Lissage" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /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/clamboo/Desktop/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" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "Plateau chauffant (kit officiel ou fabriqué soi-même)" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Nivellement du plateau" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Démarrer le nivellement du plateau" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Aller à la position suivante" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Plus d'informations sur la collecte de données anonymes" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -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/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Je ne veux pas envoyer de données anonymes" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Autoriser l'envoi de données anonymes" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" -msgid "Marketplace" -msgstr "Marché en ligne" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -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." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "Quitter %1" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "Installer" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -msgctxt "@action:button" -msgid "Installed" -msgstr "Installé" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "Premium" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 -msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "Aller sur le Marché en ligne" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 -msgctxt "@label" -msgid "Search materials" -msgstr "Rechercher des matériaux" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "Compatibilité" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "Machine" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "Plateau" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "Support" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "Qualité" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "Fiche technique" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "Fiche de sécurité" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "Directives d'impression" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "Site Internet" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -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" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "Acheter des bobines de matériau" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "Mise à jour" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "Mise à jour" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "Mis à jour" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "Précédent" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 msgctxt "@title:tab" -msgid "Plugins" -msgstr "Plug-ins" +msgid "Printer" +msgstr "Imprimante" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Matériaux" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Paramètres de la buse" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "Installé" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 msgctxt "@label" -msgid "Will install upon restarting" -msgstr "S'installera au redémarrage" +msgid "Nozzle size" +msgstr "Taille de la buse" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -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" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Downgrade" -msgstr "Revenir à une version précédente" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "Désinstaller" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /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 "Community Contributions" -msgstr "Contributions de la communauté" +msgid "mm" +msgstr "mm" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 msgctxt "@label" -msgid "Community Plugins" -msgstr "Plug-ins de la communauté" +msgid "Compatible material diameter" +msgstr "Diamètre du matériau compatible" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 msgctxt "@label" -msgid "Generic Materials" -msgstr "Matériaux génériques" +msgid "Nozzle offset X" +msgstr "Décalage buse X" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "Récupération des paquets..." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 msgctxt "@label" -msgid "Website" -msgstr "Site Internet" +msgid "Nozzle offset Y" +msgstr "Décalage buse Y" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 msgctxt "@label" -msgid "Email" -msgstr "E-mail" +msgid "Cooling Fan Number" +msgstr "Numéro du ventilateur de refroidissement" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -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" +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 +#: /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 "Version" -msgstr "Version" +msgid "X (Width)" +msgstr "X (Largeur)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 msgctxt "@label" -msgid "Last updated" -msgstr "Dernière mise à jour" +msgid "Y (Depth)" +msgstr "Y (Profondeur)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 msgctxt "@label" -msgid "Brand" -msgstr "Marque" +msgid "Z (Height)" +msgstr "Z (Hauteur)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 msgctxt "@label" -msgid "Downloads" -msgstr "Téléchargements" +msgid "Build plate shape" +msgstr "Forme du plateau" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "Plug-ins installés" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "Aucun plug-in n'a été installé." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "Matériaux installés" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 -msgctxt "@info" -msgid "No material has been installed." -msgstr "Aucun matériau n'a été installé." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "Plug-ins groupés" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "Matériaux groupés" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -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." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "Vous devez accepter la licence pour installer le package" +msgid "Origin at center" +msgstr "Origine au centre" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 msgctxt "@button" msgid "Dismiss" msgstr "Ignorer" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 +#: /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 :" +msgstr "Les packages suivants seront ajoutés:" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "Confirmer la désinstallation" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "Installer les matériaux manquants" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -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." +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "Matériaux" +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "Profils" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "Accepter" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "Confirmer" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 +msgctxt "@header" +msgid "Manage packages" +msgstr "Gérer les packages" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "Modèle de couleurs" +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Couleur du matériau" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "Gérer les packages" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Type de ligne" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Vitesse" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Épaisseur de la couche" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Largeur de ligne" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Débit" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Mode de compatibilité" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "Déplacements" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "Aides" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "Coque" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "Remplissage" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "Démarre" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Afficher uniquement les couches supérieures" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "Afficher 5 niveaux détaillés en haut" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Haut / bas" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Paroi interne" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "min" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "max" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Gérer l'imprimante" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -msgctxt "@label" -msgid "Glass" -msgstr "Verre" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" msgid "Loading..." msgstr "Chargement..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Indisponible" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "Plug-ins" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Injoignable" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "Matériaux" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "Inactif" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Préparation..." +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "Impression" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 -msgctxt "@label" -msgid "Untitled" -msgstr "Sans titre" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anonyme" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Nécessite des modifications de configuration" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "Détails" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Imprimante indisponible" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "Premier disponible" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "Mis en file d'attente" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Gérer dans le navigateur" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "Tâches d'impression" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "Temps total d'impression" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "Attente de" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Imprimer sur le réseau" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 -msgctxt "@action:button" -msgid "Print" -msgstr "Imprimer" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 -msgctxt "@label" -msgid "Printer selection" -msgstr "Sélection d'imprimantes" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Modifications de configuration" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "Remplacer" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Changer le matériau %1 de %2 à %3." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Changer le print core %1 de %2 à %3." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "Aluminium" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Finished" -msgstr "Terminé" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Abandon..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Abandonné" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Failed" -msgstr "Échec" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Mise en pause..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Paused" -msgstr "En pause" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Reprise..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 -msgctxt "@label:status" -msgid "Action required" -msgstr "Action requise" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Finit %1 à %2" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Connecter à l'imprimante en réseau" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Sélectionnez votre imprimante dans la liste ci-dessous :" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "Modifier" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 -msgctxt "@action:button" -msgid "Remove" -msgstr "Supprimer" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Rafraîchir" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "Type" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "Version du firmware" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "Adresse" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "L'imprimante à cette adresse n'a pas encore répondu." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "Connecter" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Adresse IP non valide" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:12 msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Veuillez saisir une adresse IP valide." +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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Adresse de l'imprimante" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 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." +msgid "You need to accept the license to install the package" +msgstr "Vous devez accepter la licence pour installer le package" -#: /home/clamboo/Desktop/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/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Effacer" +#: /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 "Par" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "Reprendre" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Enable" +msgstr "Activer" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Mise en pause..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Disable" +msgstr "Désactiver" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Reprise..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 +msgctxt "@button" +msgid "Downgrading..." +msgstr "Téléchargement..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "Pause" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 +msgctxt "@button" +msgid "Downgrade" +msgstr "Revenir à une version précédente" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Abandon..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 +msgctxt "@button" +msgid "Installing..." +msgstr "Installation..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Abandonner" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250 +msgctxt "@button" +msgid "Install" +msgstr "Installer" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -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/Marketplace/resources/qml/PackageCardHeader.qml:254 +msgctxt "@button" +msgid "Uninstall" +msgstr "Désinstaller" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -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/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Updating..." +msgstr "Mise à jour..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -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/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Update" +msgstr "Mise à jour" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Supprimer l'impression" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "Détails sur le paquet" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -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/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "Précédent" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Abandonner l'impression" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "Description" -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /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" @@ -3326,2170 +2665,654 @@ msgstr "" "- 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/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /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/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /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/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /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/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "Vue 3D" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "Vue de face" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "Vue du dessus" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "Vue gauche" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "Vue droite" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 msgctxt "@label" -msgid "Object list" -msgstr "Liste d'objets" +msgid "Mesh Type" +msgstr "Type de maille" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 +#: /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 "Marketplace" -msgstr "Marché en ligne" +msgid "Select settings" +msgstr "Sélectionner les paramètres" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "&Fichier" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "&Modifier" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "&Visualisation" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "&Paramètres" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "E&xtensions" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "P&références" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "&Aide" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 msgctxt "@title:window" -msgid "New project" -msgstr "Nouveau projet" +msgid "Select Settings to Customize for this model" +msgstr "Sélectionner les paramètres pour personnaliser ce modèle" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 -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/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filtrer..." -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 -msgctxt "@label:PrintjobStatus" -msgid "Slicing..." -msgstr "Découpe en cours..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Afficher tout" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 -msgctxt "@label:PrintjobStatus" -msgid "Unable to slice" -msgstr "Impossible de découper" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "Plug-in de post-traitement" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Processing" -msgstr "Traitement" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Slice" -msgstr "Découper" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 msgctxt "@label" -msgid "Start the slicing process" -msgstr "Démarrer le processus de découpe" +msgid "Post Processing Scripts" +msgstr "Scripts de post-traitement" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 -msgctxt "@button" -msgid "Cancel" -msgstr "Annuler" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +msgctxt "@action" +msgid "Add a script" +msgstr "Ajouter un script" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 msgctxt "@label" -msgid "Time estimation" -msgstr "Estimation de durée" +msgid "Settings" +msgstr "Paramètres" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +#: /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 "Material estimation" -msgstr "Estimation du matériau" +msgid "Color scheme" +msgstr "Modèle de couleurs" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Couleur du matériau" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Type de ligne" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: /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 "No time estimation available" -msgstr "Aucune estimation de la durée n'est disponible" +msgid "Compatibility Mode" +msgstr "Mode de compatibilité" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 msgctxt "@label" -msgid "No cost estimation available" -msgstr "Aucune estimation des coûts n'est disponible" +msgid "Travels" +msgstr "Déplacements" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "Aperçu" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 msgctxt "@label" -msgid "Add a printer" -msgstr "Ajouter une imprimante" +msgid "Helpers" +msgstr "Aides" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 msgctxt "@label" -msgid "Add a networked printer" -msgstr "Ajouter une imprimante en réseau" +msgid "Shell" +msgstr "Coque" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +#: /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 "Add a non-networked printer" -msgstr "Ajouter une imprimante hors réseau" +msgid "Infill" +msgstr "Remplissage" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "Ajouter une imprimante cloud" +msgid "Starts" +msgstr "Démarre" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "En attente d'une réponse cloud" +msgid "Only Show Top Layers" +msgstr "Afficher uniquement les couches supérieures" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 msgctxt "@label" -msgid "No printers found in your account?" -msgstr "Aucune imprimante trouvée dans votre compte ?" +msgid "Show 5 Detailed Layers On Top" +msgstr "Afficher 5 niveaux détaillés en haut" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 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 :" +msgid "Top / Bottom" +msgstr "Haut / bas" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "Ajouter l'imprimante manuellement" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 msgctxt "@label" -msgid "Add printer by IP address" -msgstr "Ajouter une imprimante par adresse IP" +msgid "Inner Wall" +msgstr "Paroi interne" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "Saisissez l'adresse IP de votre imprimante." - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "Ajouter" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 msgctxt "@label" -msgid "Could not connect to device." -msgstr "Impossible de se connecter à l'appareil." +msgid "min" +msgstr "min" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Impossible de vous connecter à votre imprimante Ultimaker ?" +msgid "max" +msgstr "max" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +#: /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 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "Nivellement du plateau" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 msgctxt "@label" -msgid "The printer at this address has not responded yet." +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 +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 +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 +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" + +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 -msgctxt "@button" -msgid "Back" -msgstr "Précédent" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" +#: /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 +msgctxt "@action:button" +msgid "Sign in" msgstr "Se connecter" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "Accord utilisateur" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "Décliner et fermer" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Bienvenue dans Ultimaker Cura" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "Prise en main" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:19 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64 msgctxt "@label" msgid "Sign in to the Ultimaker platform" msgstr "Connectez-vous à la plateforme Ultimaker" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -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" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -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" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -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" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 -msgctxt "@button" -msgid "Skip" -msgstr "Ignorer" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Créez gratuitement un compte Ultimaker" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 -msgctxt "@label" -msgid "Manufacturer" -msgstr "Fabricant" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 -msgctxt "@label" -msgid "Profile author" -msgstr "Auteur du profil" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 -msgctxt "@label" -msgid "Printer name" -msgstr "Nom de l'imprimante" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 -msgctxt "@text" -msgid "Please name your printer" -msgstr "Veuillez nommer votre imprimante" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "Rafraîchir" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "Ajouter une imprimante par IP" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "Ajouter une imprimante cloud" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "Dépannage" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Aidez-nous à améliorer Ultimaker Cura" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "Types de machines" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "Utilisation du matériau" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "Nombre de découpes" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "Paramètres d'impression" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "Plus d'informations" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 -msgctxt "@label" -msgid "What's New" -msgstr "Nouveautés" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "Vide" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "Notes de version" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 -msgctxt "@title:window The argument is the application name." -msgid "About %1" -msgstr "À propos de %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 -msgctxt "@label" -msgid "version: %1" -msgstr "version : %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 -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 "" -"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/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 -msgctxt "@label" -msgid "Graphical user interface" -msgstr "Interface utilisateur graphique" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" -msgid "Application framework" -msgstr "Cadre d'application" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" -msgid "G-code generator" -msgstr "Générateur G-Code" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" -msgid "Interprocess communication library" -msgstr "Bibliothèque de communication interprocess" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" -msgid "Programming language" -msgstr "Langage de programmation" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" -msgid "GUI framework" -msgstr "Cadre IUG" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" -msgid "GUI framework bindings" -msgstr "Liens cadre IUG" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" -msgid "C/C++ Binding library" -msgstr "Bibliothèque C/C++ Binding" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 -msgctxt "@label" -msgid "Data interchange format" -msgstr "Format d'échange de données" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 -msgctxt "@label" -msgid "Support library for scientific computing" -msgstr "Prise en charge de la bibliothèque pour le calcul scientifique" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" -msgid "Support library for faster math" -msgstr "Prise en charge de la bibliothèque pour des maths plus rapides" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" -msgid "Support library for handling STL files" -msgstr "Prise en charge de la bibliothèque pour le traitement des fichiers STL" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" -msgid "Support library for handling planar objects" -msgstr "Prise en charge de la bibliothèque pour le traitement des objets planaires" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" -msgid "Support library for handling triangular meshes" -msgstr "Prise en charge de la bibliothèque pour le traitement des mailles triangulaires" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" -msgid "Support library for handling 3MF files" -msgstr "Prise en charge de la bibliothèque pour le traitement des fichiers 3MF" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 -msgctxt "@label" -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/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 -msgctxt "@label" -msgid "Serial communication library" -msgstr "Bibliothèque de communication série" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 -msgctxt "@label" -msgid "ZeroConf discovery library" -msgstr "Bibliothèque de découverte ZeroConf" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" -msgid "Polygon clipping library" -msgstr "Bibliothèque de découpe polygone" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@Label" -msgid "Static type checker for Python" -msgstr "Vérificateur de type statique pour Python" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@Label" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "Certificats racines pour valider la fiabilité SSL" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 -msgctxt "@Label" -msgid "Python Error tracking library" -msgstr "Bibliothèque de suivi des erreurs Python" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 -msgctxt "@label" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "Bibliothèque d'emballage de polygones, développée par Prusa Research" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -msgctxt "@label" -msgid "Python bindings for libnest2d" -msgstr "Liens en python pour libnest2d" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" -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/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" -msgid "Python extensions for Microsoft Windows" -msgstr "Extensions Python pour Microsoft Windows" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" -msgid "Font" -msgstr "Police" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" -msgid "SVG icons" -msgstr "Icônes SVG" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" -msgid "Linux cross-distribution application deployment" -msgstr "Déploiement d'applications sur multiples distributions Linux" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Ouvrir le(s) fichier(s)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -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 ?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 -msgctxt "@action:button" -msgid "Import all as models" -msgstr "Importer tout comme modèles" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 -msgctxt "@title:window" -msgid "Save Project" -msgstr "Enregistrer le projet" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Extrudeuse %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & matériau" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 -msgctxt "@action:label" -msgid "Material" -msgstr "Matériau" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 -msgctxt "@action:button" -msgid "Save" -msgstr "Enregistrer" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 -msgctxt "@title:window" -msgid "Discard or Keep changes" -msgstr "Annuler ou conserver les modifications" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 -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'." - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 -msgctxt "@title:column" -msgid "Profile settings" -msgstr "Paramètres du profil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 -msgctxt "@title:column" -msgid "Current changes" -msgstr "Modifications actuelles" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 -msgctxt "@option:discardOrKeep" -msgid "Always ask me this" -msgstr "Toujours me demander" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 -msgctxt "@option:discardOrKeep" -msgid "Discard and never ask again" -msgstr "Annuler et ne plus me demander" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 -msgctxt "@option:discardOrKeep" -msgid "Keep and never ask again" -msgstr "Conserver et ne plus me demander" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 -msgctxt "@action:button" -msgid "Discard changes" -msgstr "Annuler les modifications" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 -msgctxt "@action:button" -msgid "Keep changes" -msgstr "Conserver les modifications" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 -msgctxt "@title:window" -msgid "Open project file" -msgstr "Ouvrir un fichier de projet" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "Se souvenir de mon choix" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 -msgctxt "@action:button" -msgid "Open as project" -msgstr "Ouvrir comme projet" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 -msgctxt "@action:button" -msgid "Import models" -msgstr "Importer les modèles" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 -msgctxt "@label" -msgid "Active print" -msgstr "Activer l'impression" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 -msgctxt "@label" -msgid "Job Name" -msgstr "Nom de la tâche" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 -msgctxt "@label" -msgid "Printing Time" -msgstr "Durée d'impression" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 -msgctxt "@label" -msgid "Estimated time left" -msgstr "Durée restante estimée" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Add printer" -msgstr "Ajouter une imprimante" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 -msgctxt "@button" -msgid "Manage printers" -msgstr "Gérer les imprimantes" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "Imprimantes connectées" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "Imprimantes préréglées" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 -msgctxt "@label" -msgid "Print settings" -msgstr "Paramètres d'impression" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -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/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 -msgctxt "@label" -msgid "Profile" -msgstr "Profil" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 -msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "" -"Certaines valeurs de paramètre / forçage sont différentes des valeurs enregistrées dans le profil. \n" -"\n" -"Cliquez pour ouvrir le gestionnaire de profils." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 -msgctxt "@label:header" -msgid "Custom profiles" -msgstr "Personnaliser les profils" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "Ignorer les modifications actuelles" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "Recommandé" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "Personnalisé" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "On" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "Off" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" -msgstr "Expérimental" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 -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" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 -msgctxt "@label" -msgid "Profiles" -msgstr "Profils" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 -msgctxt "@label" -msgid "Support" -msgstr "Support" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 -msgctxt "@label" -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 -msgctxt "@label" -msgid "Gradual infill" -msgstr "Remplissage graduel" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "Adhérence" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 -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/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "Sauvegarder le projet..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "Imprimantes réseau" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "Imprimantes locales" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "Matériau" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "Favoris" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "Générique" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 -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/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 -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/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "Nombre de copies" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "&Enregistrer le projet..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "E&xporter..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "Exporter la sélection..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "Configurations" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "Personnalisé" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "Imprimante" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "Activé" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "Matériau" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 -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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 -msgctxt "@tooltip" -msgid "There are no profiles matching the configuration of this extruder." -msgstr "Aucun profil ne correspond à la configuration de cet extrudeur." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 -msgctxt "@label" -msgid "Select configuration" -msgstr "Sélectionner la configuration" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 -msgctxt "@label" -msgid "Configurations" -msgstr "Configurations" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "Marché en ligne" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "Ouvrir le(s) fichier(s)..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "Im&primante" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Matériau" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Définir comme extrudeur actif" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Activer l'extrudeuse" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Désactiver l'extrudeuse" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "Ouvrir un fichier &récent" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "Paramètres visibles" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "Réduire toutes les catégories" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "Gérer la visibilité des paramètres..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "Position de la &caméra" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "Vue de la caméra" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "Perspective" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "Orthographique" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "&Plateau" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 -msgctxt "@label" -msgid "View type" -msgstr "Type d'affichage" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 -msgctxt "@label" -msgid "Is printed as support." -msgstr "Est imprimé comme support." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 -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/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "Le chevauchement de remplissage avec ce modèle a été modifié." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "Les chevauchements avec ce modèle ne sont pas pris en charge." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Profils" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 -msgctxt "@action:button" -msgid "Activate" -msgstr "Activer" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "Créer" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "Dupliquer" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 -msgctxt "@action:button" -msgid "Rename" -msgstr "Renommer" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -msgctxt "@action:button" -msgid "Import" -msgstr "Importer" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -msgctxt "@action:button" -msgid "Export" -msgstr "Exporter" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Créer un profil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "Veuillez fournir un nom pour ce profil." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Dupliquer un profil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Confirmer la suppression" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Renommer le profil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Importer un profil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Exporter un profil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "Imprimante : %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "Mettre à jour le profil à l'aide des paramètres / forçages actuels" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "Vos paramètres actuels correspondent au profil sélectionné." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Paramètres généraux" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 -msgctxt "@title:tab" -msgid "General" -msgstr "Général" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 -msgctxt "@label" -msgid "Interface" -msgstr "Interface" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 -msgctxt "@label" -msgid "Currency:" -msgstr "Devise :" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 -msgctxt "@label" -msgid "Theme:" -msgstr "Thème :" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Découper automatiquement si les paramètres sont modifiés." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Découper automatiquement" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "Comportement Viewport" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Mettre en surbrillance les porte-à-faux" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "Afficher les erreurs du modèle" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Centrer la caméra lorsqu'un élément est sélectionné" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Inverser la direction du zoom de la caméra." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "Zoomer vers la direction de la souris" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "Veillez à ce que les modèles restent séparés" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "Abaisser automatiquement les modèles sur le plateau" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "Afficher le message d'avertissement dans le lecteur G-Code." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "Message d'avertissement dans le lecteur G-Code" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "La couche doit-elle être forcée en mode de compatibilité ?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "Restaurer la position de la fenêtre au démarrage" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "Rendu caméra :" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 -msgid "Perspective" -msgstr "Perspective" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 -msgid "Orthographic" -msgstr "Orthographique" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Ouvrir et enregistrer des fichiers" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Utiliser une seule instance de Cura" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Réduire la taille des modèles trop grands" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Mettre à l'échelle les modèles extrêmement petits" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "Sélectionner les modèles lorsqu'ils sont chargés" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "Toujours me demander" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Toujours ouvrir comme projet" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Toujours importer les modèles" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "Toujours rejeter les paramètres modifiés" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 -msgctxt "@label" -msgid "Privacy" -msgstr "Confidentialité" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "Envoyer des informations (anonymes) sur l'impression" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 -msgctxt "@action:button" -msgid "More information" -msgstr "Plus d'informations" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 -msgctxt "@label" -msgid "Updates" -msgstr "Mises à jour" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Vérifier les mises à jour au démarrage" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 -msgctxt "@option:radio" -msgid "Stable releases only" -msgstr "Uniquement les versions stables" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 -msgctxt "@option:radio" -msgid "Stable and Beta releases" -msgstr "Versions stables et bêta" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 -msgctxt "@option:check" -msgid "Get notifications for plugin updates" -msgstr "Recevoir des notifications pour les mises à jour des plugins" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "Informations" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "Confirmer le changement de diamètre" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "Afficher le nom" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "Type de matériau" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "Couleur" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "Propriétés" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "Densité" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "Diamètre" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "Coût du filament" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "Poids du filament" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "Longueur du filament" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Coût au mètre" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "Délier le matériau" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "Description" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Informations d'adhérence" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "Créer" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Dupliquer" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "Synchroniser les imprimantes" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "Imprimante" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Importer un matériau" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Matériau %1 importé avec succès" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Exporter un matériau" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 -msgctxt "@title:window" -msgid "Sync materials with printers" -msgstr "Synchroniser les matériaux avec les imprimantes" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 -msgctxt "@title:header" -msgid "Sync materials with printers" -msgstr "Synchroniser les matériaux avec les imprimantes" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 -msgctxt "@button" -msgid "Start" -msgstr "Démarrer" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 -msgctxt "@button" -msgid "Why do I need to sync material profiles?" -msgstr "Pourquoi dois-je synchroniser les profils de matériaux ?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 -msgctxt "@title:header" -msgid "Sign in" -msgstr "Se connecter" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 -msgctxt "@button" -msgid "Sync materials with USB" -msgstr "Synchroniser les matériaux avec USB" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 -msgctxt "@button" -msgid "Troubleshooting" -msgstr "Dépannage" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 -msgctxt "@text Asking the user whether printers are missing in a list." -msgid "Printers missing?" -msgstr "Imprimantes manquantes ?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 -msgctxt "@button" -msgid "Refresh List" -msgstr "Actualiser la liste" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 -msgctxt "@button" -msgid "Try again" -msgstr "Réessayer" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Done" -msgstr "Terminé" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 -msgctxt "@button" -msgid "Sync" -msgstr "Synchroniser" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 -msgctxt "@button" -msgid "Syncing" -msgstr "Synchronisation" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 -msgctxt "@title:header" -msgid "No printers found" -msgstr "Aucune imprimante trouvée" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 -msgctxt "@button" -msgid "Learn how to connect your printer to Digital Factory" -msgstr "Découvrez comment connecter votre imprimante à Digital Factory" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 -msgctxt "@button" -msgid "Refresh" -msgstr "Rafraîchir" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 -msgctxt "@title:header" -msgid "Sync material profiles via USB" -msgstr "Synchroniser les profils de matériaux via USB" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 -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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Export material archive" -msgstr "Exporter l'archive des matériaux" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "Exporter tous les matériaux" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Visibilité des paramètres" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Vérifier tout" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 -msgctxt "@title:tab" -msgid "Printers" -msgstr "Imprimantes" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Calculer" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "Paramètre" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "Profil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "Actuel" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "Unité" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "Non connecté à une imprimante" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "L'imprimante n'accepte pas les commandes" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "En maintenance. Vérifiez l'imprimante" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "Connexion avec l'imprimante perdue" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "Impression..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "En pause" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "Préparation..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Supprimez l'imprimante" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "Abandonner l'impression" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "Êtes-vous sûr(e) de vouloir abandonner l'impression ?" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 -msgctxt "@label:button" -msgid "My printers" -msgstr "Mes imprimantes" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 -msgctxt "@label:button" -msgid "Print jobs" -msgstr "Tâches d'impression" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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." - -#: /home/clamboo/Desktop/Cura/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." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 -msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "Assistance ultimaker" - -#: /home/clamboo/Desktop/Cura/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." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 -msgctxt "@label:button" -msgid "Ask a question" -msgstr "Posez une question" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 -msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "Consultez la communauté Ultimaker." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 -msgctxt "@label:button" -msgid "Report a bug" -msgstr "Notifier un bug" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 -msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "Visitez le site web Ultimaker." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "Contrôle de l'imprimante" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "Position de coupe" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Distance de coupe" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "Envoyer G-Code" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "Extrudeuse" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "Température actuelle de cette extrémité chauffante." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Annuler" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Préchauffer" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Couleur du matériau dans cet extrudeur." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Matériau dans cet extrudeur." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "Buse insérée dans cet extrudeur." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "Plateau" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -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/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "Température jusqu'à laquelle préchauffer le plateau." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -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/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "Se connecter" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 msgctxt "@text" msgid "" "- Add material profiles and plug-ins from the Marketplace\n" @@ -5500,375 +3323,2253 @@ msgstr "" "- 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" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" msgid "Create a free Ultimaker account" msgstr "Créez gratuitement un compte Ultimaker" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "Dernière mise à jour : %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Compte Ultimaker" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 -msgctxt "@button" -msgid "Sign Out" -msgstr "Déconnexion" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "Vérification en cours..." -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "Compte synchronisé" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "Un problème s'est produit..." -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "Installer les mises à jour en attente" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "Rechercher des mises à jour de compte" -#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "Sans titre" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "Dernière mise à jour : %1" -#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "Compte Ultimaker" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" -msgid "No items to select from" -msgstr "Aucun élément à sélectionner" +msgid "No time estimation available" +msgstr "Aucune estimation de la durée n'est disponible" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Preview" +msgstr "Aperçu" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Material estimation" +msgstr "Estimation du matériau" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:PrintjobStatus" +msgid "Unable to slice" +msgstr "Impossible de découper" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +msgctxt "@button" +msgid "Processing" +msgstr "Traitement" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +msgctxt "@button" +msgid "Slice" +msgstr "Découper" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Cancel" +msgstr "Annuler" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "Afficher le guide de dépannage en ligne" +msgid "Show Online Troubleshooting" +msgstr "Afficher le dépannage en ligne" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "Passer en Plein écran" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "Quitter le mode plein écran" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "&Annuler" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "&Rétablir" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "&Quitter" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "Vue 3D" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Vue de face" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "Vue du dessus" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "Vue de dessous" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "Vue latérale gauche" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "Vue latérale droite" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "Configurer Cura..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "&Ajouter une imprimante..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "Gérer les &imprimantes..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Gérer les matériaux..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu" +#: /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." msgid "Add more materials from Marketplace" -msgstr "Ajouter d'autres matériaux du Marketplace" +msgstr "Ajouter d'autres matériaux depuis la Marketplace" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 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/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "&Ignorer les modifications actuelles" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 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/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "Gérer les profils..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Afficher la &documentation en ligne" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "Notifier un &bug" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "Quoi de neuf" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "À propos de..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "Supprimer la sélection" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "Centrer la sélection" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "Multiplier la sélection" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Supprimer le modèle" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "Ce&ntrer le modèle sur le plateau" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "&Grouper les modèles" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Dégrouper les modèles" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "&Fusionner les modèles" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "&Multiplier le modèle..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "Sélectionner tous les modèles" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "Supprimer les objets du plateau" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "Recharger tous les modèles" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "Réorganiser tous les modèles sur tous les plateaux" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Réorganiser tous les modèles" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Réorganiser la sélection" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Réinitialiser toutes les positions des modèles" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "Réinitialiser tous les modèles et transformations" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "&Ouvrir le(s) fichier(s)..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&Nouveau projet..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Afficher le dossier de configuration" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Configurer la visibilité des paramètres..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "&Marché en ligne" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "Mes imprimantes" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "Tâches d'impression" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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." + +#: /home/trin/Gedeeld/Projects/Cura/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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "Assistance ultimaker" + +#: /home/trin/Gedeeld/Projects/Cura/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." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "Consultez la communauté Ultimaker." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "Visitez le site web Ultimaker." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 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." +msgid "Hex" +msgstr "Hex" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 -msgctxt "@label Header for list of settings." -msgid "Affects" -msgstr "Touche" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 -msgctxt "@label Header for list of settings." -msgid "Affected By" -msgstr "Touché par" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 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." +msgid "This package will be installed after restarting." +msgstr "Ce paquet sera installé après le redémarrage." -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 -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/Cura.qml:463 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +msgctxt "@title:tab" +msgid "General" +msgstr "Général" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +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 +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 +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 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Profils" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +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 +msgctxt "@label %1 is the application name" +msgid "Are you sure you want to exit %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 +msgctxt "@title:window" +msgid "Open file(s)" +msgstr "Ouvrir le(s) fichier(s)" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +msgctxt "@window:title" +msgid "Install Package" +msgstr "Installer le paquet" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Ouvrir le(s) fichier(s)" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +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 +msgctxt "@title:window" +msgid "Add Printer" +msgstr "Ajouter une imprimante" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +msgctxt "@title:window" +msgid "What's New" +msgstr "Quoi de neuf" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" +msgid "version: %1" +msgstr "version : %1" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +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 +msgctxt "@info:credit" msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." +"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura proudly uses the following open source projects:" msgstr "" -"Ce paramètre possède une valeur qui est différente du profil.\n" -"\n" -"Cliquez pour restaurer la valeur du profil." +"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/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"Ce paramètre est normalement calculé mais il possède actuellement une valeur absolue définie.\n" -"\n" -"Cliquez pour restaurer la valeur calculée." +msgid "Graphical user interface" +msgstr "Interface utilisateur graphique" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +msgctxt "@label" +msgid "Application framework" +msgstr "Cadre d'application" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label" +msgid "G-code generator" +msgstr "Générateur G-Code" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label" +msgid "Interprocess communication library" +msgstr "Bibliothèque de communication interprocess" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label" +msgid "Python bindings for libnest2d" +msgstr "Liens en python pour libnest2d" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 +msgctxt "@label" +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" +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" +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" +msgid "Programming language" +msgstr "Langage de programmation" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +msgctxt "@label" +msgid "GUI framework" +msgstr "Cadre IUG" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label" +msgid "GUI framework bindings" +msgstr "Liens cadre IUG" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label" +msgid "C/C++ Binding library" +msgstr "Bibliothèque C/C++ Binding" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label" +msgid "Data interchange format" +msgstr "Format d'échange de données" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label" +msgid "Font" +msgstr "Police" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +msgctxt "@label" +msgid "Polygon clipping library" +msgstr "Bibliothèque de découpe polygone" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +msgctxt "@label" +msgid "JSON parser" +msgstr "Analyseur JSON" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label" +msgid "Utility functions, including an image loader" +msgstr "Fonctions utilitaires, y compris un chargeur d'images" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label" +msgid "Utility library, including Voronoi generation" +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" +msgid "Root Certificates for validating SSL trustworthiness" +msgstr "Certificats racines pour valider la fiabilité SSL" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +msgctxt "@label" +msgid "Compatibility between Python 2 and 3" +msgstr "Compatibilité entre Python 2 et Python 3" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label" +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" +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" +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" +msgid "Python bindings for Clipper" +msgstr "Connexions avec Python pour Clipper" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label" +msgid "Serial communication library" +msgstr "Bibliothèque de communication série" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label" +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" +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" +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" +msgid "ZeroConf discovery library" +msgstr "Bibliothèque de découverte ZeroConf" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 +msgctxt "@label" +msgid "Universal build system configuration" +msgstr "Configuration du système de fabrication universel" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 +msgctxt "@label" +msgid "Dependency and package manager" +msgstr "Gestionnaire des dépendances et des packages" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label" +msgid "Packaging Python-applications" +msgstr "Packaging d'applications Python" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label" +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" +msgid "Generating Windows installers" +msgstr "Génération de programmes d'installation Windows" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "Se souvenir de mon choix" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +msgctxt "@action:button" +msgid "Open as project" +msgstr "Ouvrir comme projet" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +msgctxt "@action:button" +msgid "Import models" +msgstr "Importer les modèles" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 "" +"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'." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +msgctxt "@title:column" +msgid "Profile settings" +msgstr "Paramètres du profil" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +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 +msgctxt "@option:discardOrKeep" +msgid "Always ask me this" +msgstr "Toujours me demander" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +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 +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 +msgctxt "@action:button" +msgid "Discard changes" +msgstr "Annuler les modifications" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +msgctxt "@action:button" +msgid "Keep changes" +msgstr "Conserver les modifications" + +#: /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?" +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 +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 +msgctxt "@title:window" +msgid "Save Project" +msgstr "Enregistrer le projet" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:175 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Extrudeuse %1" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & matériau" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +msgctxt "@action:label" +msgid "Material" +msgstr "Matériau" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +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 +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 +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 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "&Paramètres" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Marketplace" +msgstr "Marché en ligne" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +msgctxt "@header" +msgid "Configurations" +msgstr "Configurations" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Marketplace" +msgstr "Marché en ligne" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@label" +msgid "Select configuration" +msgstr "Sélectionner la configuration" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 +msgctxt "@label" +msgid "Configurations" +msgstr "Configurations" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Enabled" +msgstr "Activé" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +msgctxt "@label" +msgid "Material" +msgstr "Matériau" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +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 +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 +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 +msgctxt "@label" +msgid "Number of Copies" +msgstr "Nombre de copies" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "E&xtensions" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "&Enregistrer le projet..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "Exporter la sélection..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "Matériau" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "Générique" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "P&références" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "Imprimantes réseau" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "Paramètres visibles" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:menu menubar:toplevel" +msgid "&View" +msgstr "&Visualisation" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "Perspective" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:MonitorStatus" +msgid "Not connected to a printer" +msgstr "Non connecté à une imprimante" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "Impression..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "En pause" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "Préparation..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Abort Print" +msgstr "Abandonner l'impression" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Is printed as support." +msgstr "Est imprimé comme support." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +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 +msgctxt "@label" +msgid "Interface" +msgstr "Interface" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +msgctxt "@heading" +msgid "-- incomplete --" +msgstr "--complet --" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +msgctxt "@label" +msgid "Currency:" +msgstr "Devise :" + +#: /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." +msgid "Theme*:" +msgstr "Thème* :" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +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 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "Découper automatiquement" + +#: /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." +msgstr "*Vous devez redémarrer l'application pour appliquer ces changements." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "Comportement Viewport" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +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 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "Mettre en surbrillance les porte-à-faux" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "Rendu caméra :" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +msgid "Perspective" +msgstr "Perspective" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +msgid "Orthographic" +msgstr "Orthographique" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "Ouvrir et enregistrer des fichiers" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "Toujours me demander" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +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 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "Toujours importer les modèles" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +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 +msgctxt "@label" +msgid "Profiles" +msgstr "Profils" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +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 +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 +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 +msgctxt "@label" +msgid "Privacy" +msgstr "Confidentialité" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +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 +msgctxt "@label" +msgid "Updates" +msgstr "Mises à jour" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +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 +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 +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 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "Uniquement les versions stables" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +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 +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 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Rename" +msgstr "Renommer" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Import" +msgstr "Importer" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Importer un matériau" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Exporter un matériau" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +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 +msgctxt "@button" +msgid "Start" +msgstr "Démarrer" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +msgctxt "@title:header" +msgid "Sign in" +msgstr "Se connecter" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +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 +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 +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 +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 +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 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "Dépannage" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +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 +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 +msgctxt "@button" +msgid "Refresh List" +msgstr "Actualiser la liste" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +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 +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 +msgctxt "@button" +msgid "Sync" +msgstr "Synchroniser" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +msgctxt "@button" +msgid "Syncing" +msgstr "Synchronisation" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +msgctxt "@title:header" +msgid "No printers found" +msgstr "Aucune imprimante trouvée" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +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 +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 +msgctxt "@button" +msgid "Refresh" +msgstr "Rafraîchir" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +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 +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 +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 +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 +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 +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 +msgctxt "@button" +msgid "Back" +msgstr "Précédent" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +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 +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 +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 +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 +msgctxt "@label" +msgid "Display Name" +msgstr "Afficher le nom" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Material Type" +msgstr "Type de matériau" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Properties" +msgstr "Propriétés" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Diameter" +msgstr "Diamètre" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Filament weight" +msgstr "Poids du filament" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Cost per Meter" +msgstr "Coût au mètre" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Unlink Material" +msgstr "Délier le matériau" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:485 +msgctxt "@label" +msgid "Description" +msgstr "Description" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Print settings" +msgstr "Paramètres d'impression" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@action:button" +msgid "Update profile." +msgstr "Mettre à jour le profil." + +#: /home/trin/Gedeeld/Projects/Cura/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" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:148 /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:256 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "Ignorer les modifications actuelles" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Paramètres généraux" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Exporter un profil" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "Visibilité des paramètres" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" -msgid "Search settings" -msgstr "Paramètres de recherche" +msgid "Check all" +msgstr "Vérifier tout" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 -msgctxt "@action:menu" -msgid "Copy value to all extruders" -msgstr "Copier la valeur vers tous les extrudeurs" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "Extrudeuse" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 -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/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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 -msgctxt "@action:menu" -msgid "Hide this setting" -msgstr "Masquer ce paramètre" +#: /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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 -msgctxt "@action:menu" -msgid "Don't show this setting" -msgstr "Masquer ce paramètre" +#: /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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 -msgctxt "@action:menu" -msgid "Keep this setting visible" -msgstr "Afficher ce paramètre" +#: /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/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 +#: /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 +msgctxt "@label" +msgid "Active print" +msgstr "Activer l'impression" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Printing Time" +msgstr "Durée d'impression" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Profile" +msgstr "Profil" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 +msgctxt "@tooltip" +msgid "" +"Some setting/override values are different from the values stored in the profile.\n" +"\n" +"Click to open the profile manager." +msgstr "" +"Certaines valeurs de paramètre / forçage sont différentes des valeurs enregistrées dans le profil. \n" +"\n" +"Cliquez pour ouvrir le gestionnaire de profils." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@label:Should be short" +msgid "On" +msgstr "On" + +#: /home/trin/Gedeeld/Projects/Cura/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 "le profil personnalisé est actif et vous avez remplacé certains paramètres." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +msgctxt "@info" +msgid "custom profile is overriding some settings." +msgstr "le profil personnalisé remplace certains paramètres." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 +msgctxt "@info" +msgid "Some settings were changed." +msgstr "Certains paramètres ont été modifiés." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +msgctxt "@label" +msgid "Adhesion" +msgstr "Adhérence" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +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 +msgctxt "@label" +msgid "Gradual infill" +msgstr "Remplissage graduel" + +#: /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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:26 +msgctxt "@label" +msgid "Resolution" +msgstr "Résolution" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +msgctxt "@label" +msgid "Support" +msgstr "Support" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +msgctxt "@label" +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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +msgctxt "@error" +msgid "Configuration not supported" +msgstr "La configuration n'est pas prise en charge" + +#: /home/trin/Gedeeld/Projects/Cura/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 "Aucun profil disponible pour la configuration de matériaux/%1 sélectionnée. Veuillez la modifier." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 +msgctxt "@button:label" +msgid "Learn more" +msgstr "En savoir plus" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +msgctxt "@title:column" +msgid "Setting" +msgstr "Paramètre" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +msgctxt "@title:column" +msgid "Profile" +msgstr "Profil" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +msgctxt "@title:column" +msgid "Current" +msgstr "Actuel" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@placeholder" +msgid "Search" +msgstr "Rechercher" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5879,141 +5580,359 @@ msgstr "" "\n" "Cliquez pour rendre ces paramètres visibles." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "Ce paquet sera installé après le redémarrage." +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/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 -msgctxt "@title:tab" -msgid "Settings" -msgstr "Paramètres" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +msgctxt "@label Header for list of settings." +msgid "Affects" +msgstr "Touche" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "Fermeture de %1" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +msgctxt "@label Header for list of settings." +msgid "Affected By" +msgstr "Touché par" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 -msgctxt "@label %1 is the application name" -msgid "Are you sure you want to exit %1?" -msgstr "Voulez-vous vraiment quitter %1 ?" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:190 +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/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 -msgctxt "@window:title" -msgid "Install Package" -msgstr "Installer le paquet" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +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/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Ouvrir le(s) fichier(s)" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +msgctxt "@label" +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"Ce paramètre possède une valeur qui est différente du profil.\n" +"\n" +"Cliquez pour restaurer la valeur du profil." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 -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/Settings/SettingItem.qml:334 +msgctxt "@label" +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"Ce paramètre est normalement calculé mais il possède actuellement une valeur absolue définie.\n" +"\n" +"Cliquez pour restaurer la valeur calculée." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 -msgctxt "@title:window" -msgid "Add Printer" +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@action:menu" +msgid "Hide this setting" +msgstr "Masquer ce paramètre" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:menu" +msgid "Keep this setting visible" +msgstr "Afficher ce paramètre" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:25 +msgctxt "@info:tooltip" +msgid "3D View" +msgstr "Vue 3D" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "Vue du dessus" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "Vue gauche" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "Vue droite" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Add a Cloud printer" +msgstr "Ajouter une imprimante cloud" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@button" +msgid "Add printer manually" +msgstr "Ajouter l'imprimante manuellement" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +msgctxt "@label" +msgid "Manufacturer" +msgstr "Fabricant" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Printer name" +msgstr "Nom de l'imprimante" + +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 -msgctxt "@title:window" +#: /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 +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 +msgctxt "@label" +msgid "Refresh" +msgstr "Rafraîchir" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "Dépannage" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Add" +msgstr "Ajouter" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +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 +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 +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 +msgctxt "@button" +msgid "Connect" +msgstr "Se connecter" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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" + +#: /home/trin/Gedeeld/Projects/Cura/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" + +#: /home/trin/Gedeeld/Projects/Cura/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" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +msgctxt "@button" +msgid "Skip" +msgstr "Ignorer" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +msgctxt "@text" +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 +msgctxt "@label" +msgid "Empty" +msgstr "Vide" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" msgid "What's New" -msgstr "Quoi de neuf" +msgstr "Nouveautés" -#: PerObjectSettingsTool/plugin.json +#: /home/trin/Gedeeld/Projects/Cura/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 "Provides the Per Model Settings." -msgstr "Fournit les paramètres par modèle." +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." -#: PerObjectSettingsTool/plugin.json +#: ModelChecker/plugin.json msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Outil de paramètres par modèle" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" +msgid "Model Checker" +msgstr "Contrôleur de modèle" #: 3MFReader/plugin.json msgctxt "description" @@ -6025,65 +5944,15 @@ msgctxt "name" msgid "3MF Reader" msgstr "Lecteur 3MF" -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Permet l'écriture de fichiers Ultimaker Format Package." +msgid "Provides support for writing 3MF files." +msgstr "Permet l'écriture de fichiers 3MF." -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "name" -msgid "UFP Writer" -msgstr "Générateur UFP" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" +msgid "3MF Writer" +msgstr "Générateur 3MF" #: AMFReader/plugin.json msgctxt "description" @@ -6095,25 +5964,35 @@ msgctxt "name" msgid "AMF Reader" msgstr "Lecteur AMF" -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Lit le G-Code à partir d'une archive compressée." +msgid "Backup and restore your configuration." +msgstr "Sauvegardez et restaurez votre configuration." -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Lecteur G-Code compressé" +msgid "Cura Backups" +msgstr "Sauvegardes Cura" -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/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" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Fournit le lien vers l'arrière du système de découpage CuraEngine." -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "Post-traitement" +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" @@ -6125,65 +6004,15 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Générateur de profil Cura" -#: USBPrinting/plugin.json +#: DigitalLibrary/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." +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." -#: USBPrinting/plugin.json +#: DigitalLibrary/plugin.json msgctxt "name" -msgid "USB printing" -msgstr "Impression par USB" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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é" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" #: FirmwareUpdateChecker/plugin.json msgctxt "description" @@ -6195,45 +6024,55 @@ msgctxt "name" msgid "Firmware Update Checker" msgstr "Vérificateur des mises à jour du firmware" -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/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." +msgid "Provides a machine actions for updating firmware." +msgstr "Fournit à une machine des actions permettant la mise à jour du firmware." -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Slice info" -msgstr "Information sur le découpage" +msgid "Firmware Updater" +msgstr "Programme de mise à jour du firmware" -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/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." +msgid "Reads g-code from a compressed archive." +msgstr "Lit le G-Code à partir d'une archive compressée." -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "Profils matériels" +msgid "Compressed G-code Reader" +msgstr "Lecteur G-Code compressé" -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/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." +msgid "Writes g-code to a compressed archive." +msgstr "Enregistre le G-Code dans une archive compressée." -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/plugin.json msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" +msgid "Compressed G-code Writer" +msgstr "Générateur de G-Code compressé" -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "Rechercher, gérer et installer de nouveaux paquets Cura." +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." -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "Boîte à outils" +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" @@ -6245,245 +6084,155 @@ 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 Simulation view." -msgstr "Fournit la Vue simulation." +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" -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/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." +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." -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/plugin.json msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Mise à niveau de 4.5 vers 4.6" +msgid "Slice info" +msgstr "Information sur le découpage" -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/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." +msgid "Provides a normal solid mesh view." +msgstr "Affiche une vue en maille solide normale." -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/plugin.json msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Mise à niveau de 2.5 vers 2.6" +msgid "Solid View" +msgstr "Vue solide" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/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." +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" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/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/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/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/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/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/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/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/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/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" - -#: 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/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/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/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/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/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/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/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/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/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" - -#: 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" +msgid "Support Eraser" +msgstr "Effaceur de support" #: TrimeshReader/plugin.json msgctxt "description" @@ -6505,45 +6254,645 @@ msgctxt "name" msgid "UFP Reader" msgstr "Lecteur UFP" -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Affiche une vue en maille solide normale." +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Permet l'écriture de fichiers Ultimaker Format Package." -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "name" -msgid "Solid View" -msgstr "Vue solide" +msgid "UFP Writer" +msgstr "Générateur UFP" -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Permet l'écriture de fichiers 3MF." +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.)" -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "name" -msgid "3MF Writer" -msgstr "Générateur 3MF" +msgid "Ultimaker machine actions" +msgstr "Actions de la machine Ultimaker" -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Fournit une étape de surveillance dans Cura." +msgid "Manages network connections to Ultimaker networked printers." +msgstr "Gère les connexions réseau vers les imprimantes Ultimaker en réseau." -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "name" -msgid "Monitor Stage" -msgstr "Étape de surveillance" +msgid "Ultimaker Network Connection" +msgstr "Connexion réseau Ultimaker" -#: ModelChecker/plugin.json +#: USBPrinting/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." +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." -#: ModelChecker/plugin.json +#: USBPrinting/plugin.json msgctxt "name" -msgid "Model Checker" -msgstr "Contrôleur de modèle" +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." @@ -8970,10 +9319,6 @@ msgstr "Contrôleur de modèle" #~ 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 "@action:button" -#~ msgid "Dismiss" -#~ msgstr "Ignorer" - #~ msgctxt "@menuitem" #~ msgid "Global" #~ msgstr "Global" diff --git a/resources/i18n/fr_FR/fdmextruder.def.json.po b/resources/i18n/fr_FR/fdmextruder.def.json.po index 6910d7a71c..2d68ca8dba 100644 --- a/resources/i18n/fr_FR/fdmextruder.def.json.po +++ b/resources/i18n/fr_FR/fdmextruder.def.json.po @@ -1,20 +1,19 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0000\n" -"PO-Revision-Date: 2021-04-16 15:16+0200\n" -"Last-Translator: Bothof \n" -"Language-Team: French\n" -"Language: fr_FR\n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.4.1\n" #: fdmextruder.def.json msgctxt "machine_settings label" diff --git a/resources/i18n/fr_FR/fdmprinter.def.json.po b/resources/i18n/fr_FR/fdmprinter.def.json.po index 1a7094e7c2..335d0d56ed 100644 --- a/resources/i18n/fr_FR/fdmprinter.def.json.po +++ b/resources/i18n/fr_FR/fdmprinter.def.json.po @@ -1,20 +1,19 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 11:59+0000\n" -"PO-Revision-Date: 2021-04-16 15:16+0200\n" -"Last-Translator: Lionbridge \n" -"Language-Team: French , French \n" -"Language: fr_FR\n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.4.1\n" #: fdmprinter.def.json msgctxt "machine_settings label" @@ -56,7 +55,9 @@ 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." +msgstr "" +"Commandes G-Code à exécuter au tout début, séparées par \n" +"." #: fdmprinter.def.json msgctxt "machine_end_gcode label" @@ -68,7 +69,9 @@ 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." +msgstr "" +"Commandes G-Code à exécuter tout à la fin, séparées par \n" +"." #: fdmprinter.def.json msgctxt "material_guid label" @@ -462,8 +465,8 @@ msgstr "Polygone de la tête de la machine et du ventilateur" #: fdmprinter.def.json 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)." +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" @@ -735,6 +738,16 @@ 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" @@ -955,6 +968,56 @@ 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" @@ -986,14 +1049,24 @@ msgid "Optimize the order in which walls are printed so as to reduce the number 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 "outer_inset_first label" -msgid "Outer Before Inner Walls" -msgstr "Extérieur avant les parois intérieures" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Ordre des parois" #: fdmprinter.def.json -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 "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" @@ -1006,84 +1079,54 @@ msgid "Prints an extra wall at every other layer. This way infill gets caught be 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 "travel_compensate_overlapping_walls_enabled label" -msgid "Compensate Wall Overlaps" -msgstr "Compenser les chevauchements de paroi" +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Largeur minimale de la ligne de paroi" #: fdmprinter.def.json -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 "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 "travel_compensate_overlapping_walls_0_enabled label" -msgid "Compensate Outer Wall Overlaps" -msgstr "Compenser les chevauchements de paroi externe" +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 "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 "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 "travel_compensate_overlapping_walls_x_enabled label" -msgid "Compensate Inner Wall Overlaps" -msgstr "Compenser les chevauchements de paroi intérieure" +msgctxt "wall_split_middle_threshold label" +msgid "Split Middle Line Threshold" +msgstr "Seuil de ligne médiane fractionnée" #: fdmprinter.def.json -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_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 "wall_min_flow label" -msgid "Minimum Wall Flow" -msgstr "Débit minimal de la paroi" +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 "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 "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_min_flow_retract label" -msgid "Prefer Retract" -msgstr "Préférer la rétractation" +msgctxt "wall_add_middle_threshold label" +msgid "Add Middle Line Threshold" +msgstr "Ajouter un seuil de ligne médiane" #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps label" -msgid "Fill Gaps Between Walls" -msgstr "Remplir les trous entre les parois" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option nowhere" -msgid "Nowhere" -msgstr "Nulle part" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option everywhere" -msgid "Everywhere" -msgstr "Partout" - -#: fdmprinter.def.json -msgctxt "filter_out_tiny_gaps label" -msgid "Filter Out Tiny Gaps" -msgstr "Filtrer les très petits trous" - -#: fdmprinter.def.json -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 "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" @@ -1095,6 +1138,26 @@ 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" @@ -1728,10 +1791,7 @@ 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." +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" @@ -2055,8 +2115,7 @@ 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." +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" @@ -2198,6 +2257,26 @@ 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" @@ -2709,24 +2788,14 @@ msgid "The first few layers are printed slower than the rest of the model, to ge 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_enabled label" -msgid "Equalize Filament Flow" -msgstr "Égaliser le débit de filaments" +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_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." - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_max label" -msgid "Maximum Speed for Flow Equalization" -msgstr "Vitesse maximale pour l'égalisation du débit" - -#: fdmprinter.def.json -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 "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" @@ -2738,6 +2807,17 @@ 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 "Activer l'accélération de déplacement" + +#: 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 différent 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 "acceleration_print label" msgid "Print Acceleration" @@ -2928,6 +3008,17 @@ 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 "Activer la saccade de déplacement" + +#: 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 celle" +" de la ligne imprimée à l'emplacement cible." + #: fdmprinter.def.json msgctxt "jerk_print label" msgid "Print Jerk" @@ -4463,6 +4554,46 @@ 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" @@ -4627,6 +4758,16 @@ 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" @@ -5127,6 +5268,16 @@ 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" @@ -6421,6 +6572,36 @@ 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 "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "Alterner les directions des parois" + +#: 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 "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" + +#: 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 "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Nombre de parois à la base du radeau" + +#: 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 "command_line_settings label" msgid "Command Line Settings" @@ -6481,6 +6662,98 @@ 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." diff --git a/resources/i18n/hu_HU/cura.po b/resources/i18n/hu_HU/cura.po index 6bc614a1f4..71ebc10ea9 100644 --- a/resources/i18n/hu_HU/cura.po +++ b/resources/i18n/hu_HU/cura.po @@ -1,12 +1,12 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0100\n" +"POT-Creation-Date: 2022-06-21 12:50+0200\n" "PO-Revision-Date: 2020-03-24 09:36+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: ATI-SZOFT\n" @@ -17,449 +17,196 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 2.2.4\n" -#: /home/clamboo/Desktop/Cura/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/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "Ismeretlen" -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 -msgctxt "@info:title" -msgid "Backup" -msgstr "Biztonsági mentés" +#: /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/clamboo/Desktop/Cura/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/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Elérhető hálózati nyomtatók" -#: /home/clamboo/Desktop/Cura/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/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Nincs felülírva" -#: /home/clamboo/Desktop/Cura/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/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/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 -msgctxt "@action:button" -msgid "Please sync the material profiles with your printers before starting to print." -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 "Előre beállított nyomtatók" -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 -msgctxt "@action:button" -msgid "New materials installed" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 -msgctxt "@action:button" -msgid "Sync materials with printers" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 -msgctxt "@action:button" -msgid "Learn more" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 -msgctxt "@message:text" -msgid "Could not save material archive to {}:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 -msgctxt "@message:title" -msgid "Failed to save material archive" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 -msgctxt "@text" -msgid "Unknown error." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 -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/clamboo/Desktop/Cura/cura/BuildVolume.py:102 -msgctxt "@info:title" -msgid "Build Volume" -msgstr "Építési térfogat" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Nincs felülírva" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "Ismeretlen" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Elérhető hálózati nyomtatók" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Minden fájl (*)" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "" +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Számított" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 -msgctxt "@label" -msgid "Custom Material" -msgstr "Egyedi anyag" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 -msgctxt "@label" -msgid "Custom" -msgstr "Egyedi" - -#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 +#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "Sikertelen bejelentkezés" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Új hely keresése az objektumokhoz" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 msgctxt "@info:title" msgid "Finding Location" msgstr "Hely keresés" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Nem találok helyet" -#: /home/clamboo/Desktop/Cura/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/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 -msgctxt "@text:error" -msgid "Failed to load the archive of materials to sync it with printers." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 -msgctxt "@text:error" -msgid "The response from Digital Factory appears to be corrupted." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 -msgctxt "@text:error" -msgid "The response from Digital Factory is missing important information." -msgstr "" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 -msgctxt "@text:error" -msgid "Failed to connect to Digital Factory." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "Gépek betöltése ..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "Felület beállítása..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "Interfészek betöltése..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 +#: /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 msgctxt "@info:title" -msgid "Warning" -msgstr "Figyelem" +msgid "Backup" +msgstr "Biztonsági mentés" -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 -#, python-brace-format +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 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}" +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/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 msgctxt "@info:title" -msgid "Error" -msgstr "Hiba" +msgid "Build Volume" +msgstr "Építési térfogat" -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 -msgctxt "@action:button" -msgid "Skip" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "Bezár" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 -msgctxt "@action:button" -msgid "Next" -msgstr "Következő" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 -msgctxt "@action:button" -msgid "Finish" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "Hozzáad" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Elvet" - -#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 -#, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "Csoport #{group_nr}" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Külső fal" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "Belső falak" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Skin" -msgstr "Héj" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Infill" -msgstr "Kitöltés" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Támasz kitöltés" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Támasz interface" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Support" -msgstr "Támasz" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Szoknya" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "Elsődleges torony" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 -msgctxt "@tooltip" -msgid "Travel" -msgstr "Átmozgás" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Visszahúzás" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 -msgctxt "@tooltip" -msgid "Other" -msgstr "Egyéb" - -#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 -#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 -msgctxt "@text:window" -msgid "The release notes could not be opened." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "A Cura nem tud elindulni" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

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

      \n" @@ -474,32 +221,32 @@ msgstr "" "

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

      \n" " " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 msgctxt "@action:button" msgid "Send crash report to Ultimaker" msgstr "Hibajelentés küldése az Ultimaker -nek" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Hibajelentés részletei" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Konfigurációs mappa megnyitása" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/CrashHandler.py:171 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Összeomlás jelentés" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190 +#: /home/trin/Gedeeld/Projects/Cura/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" @@ -510,1259 +257,573 @@ 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/clamboo/Desktop/Cura/cura/CrashHandler.py:198 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Rendszer információ" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Ismeretlen" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura verzió" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Felület" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Qt verzió" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "PyQt verzió" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 msgctxt "@label" -msgid "Not yet initialized
      " -msgstr "Még nincs inicializálva
      " +msgid "Not yet initialized" +msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
    • OpenGL Version: {version}
    • " msgstr "
    • OpenGL Verzió: {version}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
    • OpenGL Vendor: {vendor}
    • " msgstr "
    • OpenGL terjesztő: {vendor}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
    • OpenGL Renderer: {renderer}
    • " msgstr "
    • OpenGL Renderer: {renderer}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Hibakövetés" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "Naplók" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "Jelentés küldés" -#: /home/clamboo/Desktop/Cura/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." +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:531 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "Gépek betöltése ..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +msgctxt "@info:progress" +msgid "Setting up preferences..." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 -msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." -msgstr "Az Ultimaker fiókkiszolgáló elérhetetlen." +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "" -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "Felület beállítása..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "Interfészek betöltése..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#, 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 +#, 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 msgctxt "@info:title" -msgid "Log-in failed" -msgstr "" +msgid "Warning" +msgstr "Figyelem" -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "" +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 +#, 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/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 -msgctxt "@message" -msgid "Timeout when authenticating with the account server." -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 +msgctxt "@info:title" +msgid "Error" +msgstr "Hiba" -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 -msgctxt "@message" -msgid "Could not read response." -msgstr "Nincs olvasható válasz." - -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "Tárgyak többszörözése és elhelyezése" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "Tárgyak elhelyezése" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Tárgy elhelyezése" -#: /home/clamboo/Desktop/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/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "Nincs olvasható válasz." -#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" +#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 -msgctxt "@label" -msgid "Nozzle" -msgstr "Fúvóka" +#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 -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/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/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info" +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 msgctxt "@info:title" -msgid "Settings updated" -msgstr "Beállítások frissítve" +msgid "Log-in failed" +msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "Extruder(ek) kikapcsolva" +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." +msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@text:error" +msgid "The response from Digital Factory is missing important information." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 msgctxt "@title:window" msgid "File Already Exists" msgstr "A fájl már létezik" -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "Érvénytelen fájl URL:" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Sikeres export" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Egyedi profil" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: /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 msgctxt "@label" -msgid "Per Model Settings" -msgstr "Modellenkénti beállítások" +msgid "Nozzle" +msgstr "Fúvóka" -#: /home/clamboo/Desktop/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/cura/Settings/MachineManager.py:857 +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/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Cura Profil" - -#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3D Fájl" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 msgctxt "@info:title" -msgid "Backups" -msgstr "Biztonsági mentések" +msgid "Settings updated" +msgstr "Beállítások frissítve" -#: /home/clamboo/Desktop/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/cura/Settings/MachineManager.py:1480 +msgctxt "@info:title" +msgid "Extruder(s) Disabled" +msgstr "Extruder(ek) kikapcsolva" -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Finish" msgstr "" -#: /home/clamboo/Desktop/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/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 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Elvet" -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Bitonsági mentések kezelése" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Gép beállítások" - -#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#, python-brace-format msgctxt "@label" -msgid "Support Blocker" -msgstr "Támasz blokkoló" +msgid "Group #{group_nr}" +msgstr "Csoport #{group_nr}" -#: /home/clamboo/Desktop/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/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Külső fal" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Cserélhető meghajtó" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "Belső falak" -#: /home/clamboo/Desktop/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/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "Héj" -#: /home/clamboo/Desktop/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/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "Kitöltés" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/clamboo/Desktop/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/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Támasz kitöltés" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 -#, 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/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Támasz interface" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 -msgctxt "@info:title" -msgid "Saving" -msgstr "Mentés" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "Támasz" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 -#, 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/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Szoknya" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 -#, 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/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "Elsődleges torony" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 -#, 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/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "Átmozgás" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 -#, 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/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Visszahúzás" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 -msgctxt "@info:title" -msgid "File Saved" -msgstr "Fájl Mentve" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +msgctxt "@tooltip" +msgid "Other" +msgstr "Egyéb" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:37 +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@action:button" -msgid "Eject" -msgstr "Leválaszt" +msgid "Next" +msgstr "Következő" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "{0} meghajtó leválasztása" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Hardver biztonságos eltávolítása" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 -#, 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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Firmware frissítés" - -#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Cura 15.04 profil" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Ajánlott" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Egyedi" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 -#, 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." - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 -msgctxt "@info:title" -msgid "Open Project File" -msgstr "Projekt fájl megnyitása" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is suddenly inaccessible: {1}." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 -#, 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/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 -msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "3MF fájl" - -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 -#: /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Ultimaker formátumcsomag" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "G-code Fájl" - -#: /home/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "Előnézet" - -#: /home/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Röntgen nézet" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Réteg feldolgozás" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 -msgctxt "@info:title" -msgid "Information" -msgstr "Információ" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 -msgctxt "@message:title" -msgid "Slicing failed" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 -msgctxt "@message:button" -msgid "Report a bug" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 -msgctxt "@message:description" -msgid "Report a bug on Ultimaker Cura's issue tracker." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 -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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "Nem lehet szeletelni" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 -#, 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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 -#, 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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 -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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 -#, 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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 -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/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "AMF fájl" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "Utólagos műveletek" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "G-kód módosítás" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "USB nyomtatás" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Nyomtatás USB-ről" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Nyomtatás USB-ről" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 -msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Csatlakozás USB-n" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 -msgctxt "@message" -msgid "Print in Progress" -msgstr "Nyomtatás folyamatban" - -#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "Előkészítés" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "G-kód elemzés" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "G-kód részletek" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 -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/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "G fájl" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG kép" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG kép" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG kép" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP kép" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF kép" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "Tárgyasztal szint" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "Válassz frissítést" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:286 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:67 msgctxt "@action:button" -msgid "How to update" -msgstr "Hogyan frissíts" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 -msgctxt "@text" -msgid "Unable to read example data file." +msgid "Skip" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 +#: /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 msgctxt "@action:button" -msgid "Sync" +msgid "Close" +msgstr "Bezár" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +msgctxt "@action:button" +msgid "Please sync the material profiles with your printers before starting to print." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 -msgctxt "@button" -msgid "Decline and remove from account" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +msgctxt "@action:button" +msgid "New materials installed" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +msgctxt "@action:button" +msgid "Sync materials" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "Elfogadás" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Kiegészítő licencszerződés" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "Szimuláció nézet" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 -msgctxt "@info:title" -msgid "No layers to show" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "Réteg nézet" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Hálózati nyomtatás" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Csatlakozva hálózaton keresztül" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "holnap" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "ma" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "Hálózati csatlakozás" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "Nyomtatási hiba" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Adatok elküldve" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 -msgctxt "@info:title" -msgid "Update your printer" -msgstr "Frissítse a nyomtatót" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "Nyomtatási feladat küldése" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "Hálózati hiba" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "Nem csoport" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 -msgctxt "@action" -msgid "Configure group" -msgstr "Csoport konfiguráció" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 -msgctxt "@info:title" -msgid "Are you ready for cloud printing?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 -msgctxt "@action" -msgid "Get started" -msgstr "Kezdjük el" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 -msgctxt "@action" +#: /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 +msgctxt "@action:button" msgid "Learn more" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 -msgctxt "@action:button" -msgid "Print via cloud" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +msgctxt "@message:text" +msgid "Could not save material archive to {}:" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 -msgctxt "@properties:tooltip" -msgid "Print via cloud" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +msgctxt "@message:title" +msgid "Failed to save material archive" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 -msgctxt "@info:status" -msgid "Connected via cloud" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +msgctxt "@text" +msgid "Unknown error." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 -msgctxt "@action:button" -msgid "Monitor print" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 -msgctxt "@action:tooltip" -msgid "Track the print in Ultimaker Digital Factory" -msgstr "" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 -#, python-brace-format -msgctxt "info:status Filled in with printer name and printer model." -msgid "Adding printer {name} ({model}) from your account" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 -msgctxt "info:name" -msgid "Ultimaker Digital Factory" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 -msgctxt "@title:window" -msgid "Remove printers?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 -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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA digitális eszközcsere" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "glTF Bináris" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF beágyazott JSON" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Stanford háromszög formátum" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Felület nézet" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Hiba a 3mf fájl írásakor." - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MF fájl" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Cura projekt 3MF fájl" - -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "Monitor" - -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" msgid "3D Model Assistant" msgstr "3D-s modellsegéd" -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" msgid "" @@ -1776,1533 +837,1922 @@ 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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 -msgctxt "@label" -msgid "Mesh Type" -msgstr "Háló típus" +#: /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." -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "Normál mód" +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "Projekt fájl megnyitása" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "Támaszként nyomtassa" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" +#: /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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" +#: /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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" +#: /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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" +#: /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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Beállítások kiválasztása" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "A modellek egyéni beállításainak kiválasztása" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Szűrés..." - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Mindent mutat" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cura biztonsági mentések" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Cura verzió" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Gépek" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Alapanyagok" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Profilok" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Beépülők" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Többet szeretnél?" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Biztonsági mentés most" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Automatikus biztonsági mentés" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "Visszaállítás" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Biztonsági mentés törlés" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Helyreállítás biztonsági mentésből" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 -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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 -msgctxt "@button" -msgid "Sign in" -msgstr "Bejelentkezés" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Biztonsági mentéseim" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -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/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Nyomtató beállítás" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (Szélesség)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Mélység)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Magasság)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 -msgctxt "@label" -msgid "Build plate shape" -msgstr "Tárgyasztal alakja" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 -msgctxt "@label" -msgid "Origin at center" -msgstr "Origó középen" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 -msgctxt "@label" -msgid "Heated bed" -msgstr "Fűtött asztal" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 -msgctxt "@label" -msgid "Heated build volume" -msgstr "Fűtött nyomtatási tér" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 -msgctxt "@label" -msgid "G-code flavor" -msgstr "G-kód illesztés" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Nyomtatófej beállítások" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -msgctxt "@label" -msgid "X min" -msgstr "X min" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -msgctxt "@label" -msgid "Y min" -msgstr "Y min" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -msgctxt "@label" -msgid "X max" -msgstr "X max" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -msgctxt "@label" -msgid "Y max" -msgstr "Y max" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "Gantry Height" -msgstr "Szán magasság" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Extruderek száma" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "G-kód kezdés" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "G-kód zárás" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Fűvóka beállítások" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 -msgctxt "@label" -msgid "Nozzle size" -msgstr "Fúvóka méret" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Nyomtatószál átmérő" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Fúvóka X eltolás" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Fúvóka Y eltolás" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Hűtőventilátorok száma" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "Extruder G-kód kezdés" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "Extruder G-kód zárás" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:212 msgctxt "@title:tab" -msgid "Printer" -msgstr "Nyomtató" +msgid "Recommended" +msgstr "Ajánlott" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" +#: /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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 -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/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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 -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/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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 +#: /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 "Automatically upgrade Firmware" -msgstr "Automatikus firmware frissítés" +msgid "Sync" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 +#: /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 "Upload custom Firmware" -msgstr "Egyedi firmware feltöltése" +msgid "Eject" +msgstr "Leválaszt" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 +#: /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 "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." +msgid "Support Blocker" +msgstr "Támasz blokkoló" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -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/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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 +#: /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 "Select custom firmware" -msgstr "Egyedi firmware kiválasztása" +msgid "Remove printers?" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Firmware frissítés" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 +#, python-brace-format msgctxt "@label" -msgid "Updating firmware." -msgstr "A firmware frissítése." +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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:489 msgctxt "@label" -msgid "Firmware update completed." -msgstr "Firmware frissítés kész." +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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +#: /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 "Firmware update failed due to an unknown error." -msgstr "A firmware frissítés meghiúsult ismeretlen hiba miatt." +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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -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/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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -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/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "Nyomtatás folyamatban" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -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/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "X3D Fájl" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 msgctxt "@action:ComboBox Update/override existing profile" msgid "Update existing" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:64 msgctxt "@action:ComboBox Save settings in a new profile" msgid "Create new" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Nyomtató beállítások" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Profil beállítások" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 msgctxt "@action:label" msgid "Derivative from" msgstr "Származék" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 -msgctxt "@action:label" -msgid "Material settings" -msgstr "Alapanyag beállítások" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 msgctxt "@action:label" msgid "Mode" msgstr "Mód" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 msgctxt "@action:label" msgid "Visible settings:" msgstr "Látható beállítások:" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 %2 -ből" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 msgctxt "@action:button" msgid "Open" msgstr "Megnyitás" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Utó művelet beépülő" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Utó művelet szkript" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "Adjon hozzá egy szkriptet" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 -msgctxt "@label" -msgid "Settings" -msgstr "Beállítások" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 +msgctxt "@action:button" +msgid "Open project anyway" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 -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/3MFReader/WorkspaceDialog.qml:529 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /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 "Convert Image..." -msgstr "Kép konvertálás..." +msgid "Cura Backups" +msgstr "Cura biztonsági mentések" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 -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/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "Biztonsági mentéseim" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "Az alap magassága a tárgyasztaltól mm -ben." +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "Az egyes pixelek legnagyobb távolsága \"Base.\"" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 msgctxt "@action:label" msgid "Base (mm)" msgstr "Alap (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate." -msgstr "A szélesség mm -ben a tárgyasztalon." +msgid "The base height from the build plate in millimeters." +msgstr "Az alap magassága a tárgyasztaltól mm -ben." -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 msgctxt "@action:label" msgid "Width (mm)" msgstr "Szélesség (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "A mélység mm-ben a tárgyasztalon" +msgid "The width in millimeters on the build plate" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 msgctxt "@action:label" msgid "Depth (mm)" msgstr "Mélység (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 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." +msgid "The depth in millimeters on the build plate" +msgstr "A mélység mm-ben a tárgyasztalon" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "A világosabb a magasabb" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 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 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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:224 msgctxt "@item:inlistbox" msgid "Linear" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 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 "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "A kép simításának mértéke." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 msgctxt "@action:label" msgid "Smoothing" msgstr "Simítás" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /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/clamboo/Desktop/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" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "Fűthető tárgyasztal (eredeti vagy utólag épített)" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Tálca szintezés" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -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." - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -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." - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Tálca szintezés indítása" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Mozgás a következő pozícióba" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "További információ a névtelen adatgyűjtésről" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -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:" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Nem szeretnék részt venni az adatgyűjtésben" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Anonim adatok küldésének engedélyezése" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" -msgid "Marketplace" -msgstr "Áruház" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -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." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "Telepítés" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -msgctxt "@action:button" -msgid "Installed" -msgstr "Telepítve" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 -msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 -msgctxt "@label" -msgid "Search materials" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "Kompatibilitás" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "Gép" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "Tárgyasztal" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "Támasz" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "Minőség" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "Technikai adatlap" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "Biztonsági adatlap" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "Nyomtatási útmutató" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "Weboldal" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -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" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "Anyagtekercsek vásárlása" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "Frissítés" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "Frissítés" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "Frissítve" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "Vissza" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 msgctxt "@title:tab" -msgid "Plugins" -msgstr "Kiegészítők" +msgid "Printer" +msgstr "Nyomtató" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Alapanyagok" +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "Telepítve" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 msgctxt "@label" -msgid "Will install upon restarting" -msgstr "Telepítés után újraindul" +msgid "Nozzle size" +msgstr "Fúvóka méret" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -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" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Downgrade" -msgstr "Leminősítés" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "Eltávolítás" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /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 "Community Contributions" -msgstr "Közösségi hozzájárulások" +msgid "mm" +msgstr "mm" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 msgctxt "@label" -msgid "Community Plugins" -msgstr "Közösségi bővítmények" +msgid "Compatible material diameter" +msgstr "Nyomtatószál átmérő" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 msgctxt "@label" -msgid "Generic Materials" -msgstr "Általános anyagok" +msgid "Nozzle offset X" +msgstr "Fúvóka X eltolás" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "Csomagok beolvasása..." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 msgctxt "@label" -msgid "Website" -msgstr "Weboldal" +msgid "Nozzle offset Y" +msgstr "Fúvóka Y eltolás" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 msgctxt "@label" -msgid "Email" -msgstr "Email" +msgid "Cooling Fan Number" +msgstr "Hűtőventilátorok száma" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -msgctxt "@description" -msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 -msgctxt "@label" -msgid "Version" -msgstr "Verzió" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:389 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "G-kód kezdés" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 -msgctxt "@label" -msgid "Last updated" -msgstr "Utosó frissíté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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 -msgctxt "@label" -msgid "Brand" -msgstr "Márka" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 -msgctxt "@label" -msgid "Downloads" -msgstr "Letöltések" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 -msgctxt "@info" -msgid "No material has been installed." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -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." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 msgctxt "@title" msgid "Changes from your account" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 msgctxt "@button" msgid "Dismiss" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 msgctxt "@label" msgid "The following packages will be added:" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "Eltávolítás jóváhagyása" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -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." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "Alapanyagok" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "Profilok" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "Jóváhagy" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "Szín séma" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Alapanyag szín" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Vonal típus" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Kompatibilis mód" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "Átmozgás" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "Segítők" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "Héj" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "Kitöltés" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Csak a felső rétegek megjelenítése" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "Mutasson 5 felső réteget részletesen" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Felső / Alsó" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Belső fal" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "min" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "max" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Nyomtató kezelés" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -msgctxt "@label" -msgid "Glass" -msgstr "Üveg" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" -msgid "Loading..." -msgstr "Betöltés..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Elérhetetlen" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Elérhetetlen" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "Készenlét" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Előkészítés..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 -msgctxt "@label" -msgid "Untitled" -msgstr "Felirat nélküli" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "Névtelen" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "A konfiguráció változtatásokat igényel" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "Részletek" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Elérhetetlen nyomtató" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "Az első elérhető" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "Nyomtatási Sor" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Kezelés a böngészőben" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "Nyomtatások" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "Teljes nyomtatási idő" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "Várakozom" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Nyomtatás hálózaton" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 -msgctxt "@action:button" -msgid "Print" -msgstr "Nyomtatás" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 -msgctxt "@label" -msgid "Printer selection" -msgstr "Nyomtató kiválasztás" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Konfiguráció változások" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "Felülírás" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Változtasd meg az %1 anyagot %2 -ről %3 -ra." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "Alumínium" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Finished" -msgstr "Befejezve" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Megszakítás..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Megszakítva" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Failed" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Várakozás..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Paused" -msgstr "Várakozás" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Folytatás..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 -msgctxt "@label:status" -msgid "Action required" -msgstr "Beavatkozás szükséges" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Befejezve %1 a %2 -ből" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Csatlakozás hálózati nyomtatóhoz" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Válaszd ki a nyomtatódat az alábbi listából:" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "Szerkeszt" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 -msgctxt "@action:button" -msgid "Remove" -msgstr "Eltávolít" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Frissít" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "Típus" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "Frimware verzió" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "Cím" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "Csatlakozás" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Hibás IP cím" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:47 msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Kérlek adj meg egy érvényes IP címet." +msgid "Please read and agree with the plugin licence." +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Nyomtató cím" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 +#: /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 "Enter the IP address of your printer on the network." -msgstr "Írd be a nyomtató hálózati IP címét." +msgid "You need to accept the license to install the package" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "Lépj a tetjére" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Törlés" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "Folytat" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Enable" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Várakozás..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Disable" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Folytatás..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 +msgctxt "@button" +msgid "Downgrading..." +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "Várakozás" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 +msgctxt "@button" +msgid "Downgrade" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Megszakítás..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 +msgctxt "@button" +msgid "Installing..." +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Megszakít" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250 +msgctxt "@button" +msgid "Install" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -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/Marketplace/resources/qml/PackageCardHeader.qml:254 +msgctxt "@button" +msgid "Uninstall" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Tedd a nyomtatási sor elejére" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Updating..." +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -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/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Update" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Nyomtatási feladat törlés" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -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/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Nyomtatás megszakítás" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /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" @@ -3315,782 +2765,2830 @@ msgstr "" "- Ellenőrizd, hogy a nyomtató csatlakozik a hálózathoz\n" "- Ellenőrizd, hogy fel vagy-e jelentkezve a felhőbe." -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:147 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "Nézd meg az online felhasználói kézikönyvet" -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /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/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 msgctxt "@label" -msgid "Object list" -msgstr "Objektum lista" +msgid "Mesh Type" +msgstr "Háló típus" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Print as support" +msgstr "Támaszként nyomtassa" + +#: /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 "Marketplace" -msgstr "Piactér" +msgid "Select settings" +msgstr "Beállítások kiválasztása" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "&Fájl" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "S&zerkesztés" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "&Nézet" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "&Beállítások" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "K&iterjesztések" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "P&referenciák" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "&Segítség" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 msgctxt "@title:window" -msgid "New project" -msgstr "Új projekt" +msgid "Select Settings to Customize for this model" +msgstr "A modellek egyéni beállításainak kiválasztása" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 -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/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Szűrés..." -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 -msgctxt "@label:PrintjobStatus" -msgid "Slicing..." -msgstr "Szeletelés..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Mindent mutat" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 -msgctxt "@label:PrintjobStatus" -msgid "Unable to slice" -msgstr "Nem szeletelhető" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "Utó művelet beépülő" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Processing" -msgstr "Feldolgozás" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Slice" -msgstr "Szeletelés" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 msgctxt "@label" -msgid "Start the slicing process" -msgstr "Szeletelés indítása" +msgid "Post Processing Scripts" +msgstr "Utó művelet szkript" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 -msgctxt "@button" -msgid "Cancel" -msgstr "Elvet" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +msgctxt "@action" +msgid "Add a script" +msgstr "Adjon hozzá egy szkriptet" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 msgctxt "@label" -msgid "Time estimation" -msgstr "Időbecslés" +msgid "Settings" +msgstr "Beállítások" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 -msgctxt "@label" -msgid "Material estimation" -msgstr "Anyag becslés" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 -msgctxt "@label" -msgid "No time estimation available" -msgstr "Nincs időbecslés" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 -msgctxt "@label" -msgid "No cost estimation available" -msgstr "Nincs költségbecslés" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "Előnézet" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "Nyomtató hozzáadása" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Hálózati nyomtató hozzáadása" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Helyi nyomtató hozzáadása" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 -msgctxt "@label" -msgid "Add a Cloud printer" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:459 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +#: /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 "Waiting for Cloud response" +msgid "Color scheme" +msgstr "Szín séma" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Vonal típus" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:112 +msgctxt "@label:listbox" +msgid "Speed" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 -msgctxt "@label" -msgid "No printers found in your account?" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:116 +msgctxt "@label:listbox" +msgid "Layer Thickness" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 -msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:120 +msgctxt "@label:listbox" +msgid "Line Width" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:124 +msgctxt "@label:listbox" +msgid "Flow" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:164 msgctxt "@label" -msgid "Add printer by IP address" -msgstr "Nyomtató hozzáadása IP címmel" +msgid "Compatibility Mode" +msgstr "Kompatibilis mód" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 +msgctxt "@label" +msgid "Travels" +msgstr "Átmozgás" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 +msgctxt "@label" +msgid "Helpers" +msgstr "Segítők" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Infill" +msgstr "Kitöltés" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 +msgctxt "@label" +msgid "Starts" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "Hozzáad" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 msgctxt "@label" -msgid "Could not connect to device." -msgstr "Nem sikerült csatlakozni az eszközhöz." +msgid "Only Show Top Layers" +msgstr "Csak a felső rétegek megjelenítése" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "" +msgid "Show 5 Detailed Layers On Top" +msgstr "Mutasson 5 felső réteget részletesen" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 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." +msgid "Top / Bottom" +msgstr "Felső / Alsó" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 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." +msgid "Inner Wall" +msgstr "Belső fal" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 -msgctxt "@button" -msgid "Back" -msgstr "Vissza" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 +msgctxt "@label" +msgid "min" +msgstr "min" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" +#: /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 "További információ a névtelen adatgyűjtésről" + +#: /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 "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 +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 +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" + +#: /home/trin/Gedeeld/Projects/Cura/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." + +#: /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." + +#: /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" + +#: /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" + +#: /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" + +#: /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)" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@action:button" +msgid "Remove" +msgstr "Eltávolít" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@label" +msgid "Address" +msgstr "Cím" + +#: /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 "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 +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 +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 +msgctxt "@action:button" msgid "Connect" msgstr "Csatlakozás" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "Felhasználói Szerződés" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Hibás IP cím" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "Elutasítás és bezárás" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Üdvözöljük az Ultimaker Cura-ban" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +#: /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 follow these steps to set up Ultimaker Cura. This will only take a few moments." +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 +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 +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 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "Konfiguráció változások" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +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 +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 +msgctxt "@label" +msgid "Move to top" +msgstr "Lépj a tetjére" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 +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 +msgctxt "@label" +msgid "Resume" +msgstr "Folytat" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 +msgctxt "@label" +msgid "Pausing..." +msgstr "Várakozás..." + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 +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 +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 +msgctxt "@label" +msgid "Abort" +msgstr "Megszakít" + +#: /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 "Biztos, hogy a %1 a nyomtatási sor elejére akarod mozgatni?" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 +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 +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 +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 +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 +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/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "Kezdj hozzá" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:335 +msgctxt "@label:status" +msgid "Loading..." +msgstr "Betöltés..." -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +#: /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 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "Elérhetetlen nyomtató" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label:status" +msgid "Finished" +msgstr "Befejezve" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:status" +msgid "Failed" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:status" +msgid "Paused" +msgstr "Várakozás" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:status" +msgid "Action required" +msgstr "Beavatkozás szükséges" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Queued" +msgstr "Nyomtatási Sor" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:63 +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 +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 +msgctxt "@label" +msgid "Print jobs" +msgstr "Nyomtatások" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:107 +msgctxt "@label" +msgid "Total print time" +msgstr "Teljes nyomtatási idő" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:116 +msgctxt "@label" +msgid "Waiting for" +msgstr "Várakozom" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Print" +msgstr "Nyomtatás" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 msgctxt "@label" msgid "Sign in to the Ultimaker platform" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" +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 "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" -msgid "Skip" +msgid "Create a free Ultimaker account" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 -msgctxt "@text" -msgid "Create a free Ultimaker Account" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 +msgctxt "@label" +msgid "Checking..." msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 msgctxt "@label" -msgid "Manufacturer" +msgid "Account synced" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 msgctxt "@label" -msgid "Profile author" +msgid "Something went wrong..." msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 -msgctxt "@label" -msgid "Printer name" -msgstr "Nyomtató név" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 -msgctxt "@text" -msgid "Please name your printer" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 +msgctxt "@button" +msgid "Install pending updates" msgstr "" -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "Frissítés" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "Nyomtató hozzáadása IP címmel" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 +msgctxt "@button" +msgid "Check for account updates" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" -msgid "Troubleshooting" -msgstr "Hibaelhárítás" +msgid "No time estimation available" +msgstr "Nincs időbecslés" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Segítsen nekünk az Ultimaker Cura fejlesztésében" +msgid "No cost estimation available" +msgstr "Nincs költségbecslés" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -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/ActionPanel/OutputProcessWidget.qml:127 +msgctxt "@button" +msgid "Preview" +msgstr "Előnézet" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "Géptípusok" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "Anyagfelhasználás" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "Szeletek száma" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "Nyomtatási beállítások" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "Több információ" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Material estimation" +msgstr "Anyag becslés" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:PrintjobStatus" +msgid "Unable to slice" +msgstr "Nem szeletelhető" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +msgctxt "@button" +msgid "Processing" +msgstr "Feldolgozás" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +msgctxt "@button" +msgid "Slice" +msgstr "Szeletelés" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Cancel" +msgstr "Elvet" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:inmenu menubar:edit" +msgid "&Undo" +msgstr "&Visszavon" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 +msgctxt "@action:inmenu menubar:edit" +msgid "&Redo" +msgstr "&Újra" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "3D View" +msgstr "3D nézet" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "Top View" +msgstr "Felülnézet" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 +msgctxt "@action:inmenu menubar:view" +msgid "Bottom View" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "Right Side View" +msgstr "Jobb oldalnézet" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:printer" +msgid "&Add Printer..." +msgstr "&Nyomtató hozzáadása..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 +msgctxt "@action:inmenu menubar:printer" +msgid "Manage Pr&inters..." +msgstr "Nyomtatók kezelése..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 +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." +msgid "Add more materials from Marketplace" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 +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 +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 +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 +msgctxt "@action:inmenu menubar:profile" +msgid "Manage Profiles..." +msgstr "Profilok kezelése..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 +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 +msgctxt "@action:inmenu menubar:help" +msgid "Report a &Bug" +msgstr "Hibajelentés" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 +msgctxt "@action:inmenu menubar:help" msgid "What's New" +msgstr "Újdonságok" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 +msgctxt "@action:inmenu menubar:help" +msgid "About..." +msgstr "Rólunk..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 +msgctxt "@action:inmenu menubar:edit" +msgid "Delete Selected" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "Üres" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 +msgctxt "@action:inmenu menubar:edit" +msgid "Center Selected" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 +msgctxt "@action:inmenu menubar:edit" +msgid "Multiply Selected" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 +msgctxt "@action:inmenu" +msgid "Delete Model" +msgstr "Modell törlés" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 +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 +msgctxt "@action:inmenu menubar:edit" +msgid "&Group Models" +msgstr "&Csoportosítás" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 +msgctxt "@action:inmenu menubar:edit" +msgid "Ungroup Models" +msgstr "Csoport bontása" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 +msgctxt "@action:inmenu menubar:edit" +msgid "&Merge Models" +msgstr "&Modellek keverése" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 +msgctxt "@action:inmenu" +msgid "&Multiply Model..." +msgstr "&Modell többszörözés..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Mindent kijelöl" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 +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 +msgctxt "@action:inmenu menubar:file" +msgid "Reload All Models" +msgstr "Mindent újratölt" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models" +msgstr "Minden modell rendezése" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Kijelöltek rendezése" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 +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 +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 +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 +msgctxt "@action:inmenu menubar:file" +msgid "&New Project..." +msgstr "Új projekt..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 +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 +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 +msgctxt "@label:button" +msgid "My printers" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Extend Ultimaker Cura with plugins and material profiles." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +msgctxt "@tooltip:button" +msgid "Become a 3D printing expert with Ultimaker e-learning." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +msgctxt "@tooltip:button" +msgid "Learn how to get started with Ultimaker Cura." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 +msgctxt "@label" +msgid "Hex" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 +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 +msgctxt "@title:tab" +msgid "General" +msgstr "Általános" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +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 +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 +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 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Profilok" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +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 +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 +msgctxt "@title:window" +msgid "Open file(s)" +msgstr "Fájl(ok) megnyitása" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +msgctxt "@window:title" +msgid "Install Package" +msgstr "Csomag telepítése" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Fájl(ok) megnyitása" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +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 +msgctxt "@title:window" +msgid "Add Printer" +msgstr "Nyomtató hozzáadása" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +msgctxt "@title:window" +msgid "What's New" +msgstr "Újdonságok" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 msgctxt "@label" msgid "version: %1" msgstr "verzió: %1" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 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/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 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 "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/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" msgid "Graphical user interface" msgstr "Grafikai felhasználói interfész" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 msgctxt "@label" msgid "Application framework" msgstr "Alkalmazás keretrendszer" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 msgctxt "@label" msgid "G-code generator" msgstr "G-kód generátor" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 msgctxt "@label" msgid "Interprocess communication library" msgstr "Folyamatközi kommunikációs könyvtár" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" -msgid "Programming language" -msgstr "Programozási nyelv" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" -msgid "GUI framework" -msgstr "GUI keretrendszer" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" -msgid "GUI framework bindings" -msgstr "GUI keretrendszer függőségek" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" -msgid "C/C++ Binding library" -msgstr "C/C++ függőségek könyvtár" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 -msgctxt "@label" -msgid "Data interchange format" -msgstr "Adat csere formátum" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 -msgctxt "@label" -msgid "Support library for scientific computing" -msgstr "Támogató könyvtár a tudományos számítások számára" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" -msgid "Support library for faster math" -msgstr "Támogató könyvtár a gyorsabb matematikához" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" -msgid "Support library for handling STL files" -msgstr "Támogató könyvtár az STL fájlok kezeléséhez" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" -msgid "Support library for handling planar objects" -msgstr "Támogató könyvtár a sík objektumok kezeléséhez" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" -msgid "Support library for handling triangular meshes" -msgstr "Támogató könyvtár a háromszög hálók kezeléséhez" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" -msgid "Support library for handling 3MF files" -msgstr "Támogató könyvtár a 3MF fájlok kezeléséhez" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 -msgctxt "@label" -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/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 -msgctxt "@label" -msgid "Serial communication library" -msgstr "Soros kommunikációs könyvtár" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 -msgctxt "@label" -msgid "ZeroConf discovery library" -msgstr "ZeroConf felderítő könyvtár" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" -msgid "Polygon clipping library" -msgstr "Poligon daraboló könyvtár" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@Label" -msgid "Static type checker for Python" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@Label" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 -msgctxt "@Label" -msgid "Python Error tracking library" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 -msgctxt "@label" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 msgctxt "@label" msgid "Python bindings for libnest2d" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 msgctxt "@label" -msgid "Support library for system keyring access" +msgid "Polygon packing library, developed by Prusa Research" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 msgctxt "@label" -msgid "Python extensions for Microsoft Windows" -msgstr "" +msgid "Support library for handling 3MF files" +msgstr "Támogató könyvtár a 3MF fájlok kezeléséhez" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 +msgctxt "@label" +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" +msgid "Programming language" +msgstr "Programozási nyelv" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +msgctxt "@label" +msgid "GUI framework" +msgstr "GUI keretrendszer" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label" +msgid "GUI framework bindings" +msgstr "GUI keretrendszer függőségek" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label" +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" +msgid "Data interchange format" +msgstr "Adat csere formátum" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 msgctxt "@label" msgid "Font" msgstr "Betűtípus" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 msgctxt "@label" -msgid "SVG icons" -msgstr "SVG ikonok" +msgid "Polygon clipping library" +msgstr "Poligon daraboló könyvtár" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +msgctxt "@label" +msgid "JSON parser" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label" +msgid "Utility functions, including an image loader" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label" +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" +msgid "Root Certificates for validating SSL trustworthiness" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +msgctxt "@label" +msgid "Compatibility between Python 2 and 3" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label" +msgid "Support library for system keyring access" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +msgctxt "@label" +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" +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" +msgid "Python bindings for Clipper" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label" +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" +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" +msgid "Python Error tracking library" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label" +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" +msgid "ZeroConf discovery library" +msgstr "ZeroConf felderítő könyvtár" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 +msgctxt "@label" +msgid "Universal build system configuration" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 +msgctxt "@label" +msgid "Dependency and package manager" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label" +msgid "Packaging Python-applications" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 msgctxt "@label" msgid "Linux cross-distribution application deployment" msgstr "Linux kereszt-disztribúciós alkalmazás telepítése" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Fájl(ok) megnyitása" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 -msgctxt "@action:button" -msgid "Import all as models" -msgstr "Importáljunk mindent modellekként" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 -msgctxt "@title:window" -msgid "Save Project" -msgstr "Projekt mentése" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Extruder %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & alapanyag" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 -msgctxt "@action:label" -msgid "Material" -msgstr "Alapanyag" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 -msgctxt "@action:button" -msgid "Save" -msgstr "Mentés" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 -msgctxt "@title:window" -msgid "Discard or Keep changes" -msgstr "Változtatások megtartása vagy eldobása" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 -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'." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:178 +msgctxt "@label" +msgid "Generating Windows installers" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 -msgctxt "@title:column" -msgid "Profile settings" -msgstr "Profil beállítások" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 -msgctxt "@title:column" -msgid "Current changes" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 -msgctxt "@option:discardOrKeep" -msgid "Always ask me this" -msgstr "Mindig kérdezz" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 -msgctxt "@option:discardOrKeep" -msgid "Discard and never ask again" -msgstr "Eldobás és ne kérdezze újra" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 -msgctxt "@option:discardOrKeep" -msgid "Keep and never ask again" -msgstr "Megtartás és ne kérdezze újra" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 -msgctxt "@action:button" -msgid "Discard changes" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 -msgctxt "@action:button" -msgid "Keep changes" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 msgctxt "@title:window" msgid "Open project file" msgstr "Projekt fájl megnyitása" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:83 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/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:90 msgctxt "@text:window" msgid "Remember my choice" msgstr "Emlékezzen a választásra" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 msgctxt "@action:button" msgid "Open as project" msgstr "Megnyitás projektként" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 msgctxt "@action:button" msgid "Import models" msgstr "Modellek importálása" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 -msgctxt "@label" -msgid "Active print" -msgstr "Aktív nyomtatás" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 +msgctxt "@title:window" +msgid "Discard or Keep changes" +msgstr "Változtatások megtartása vagy eldobása" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 -msgctxt "@label" -msgid "Job Name" -msgstr "Feladat név" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 -msgctxt "@label" -msgid "Printing Time" -msgstr "Nyomtatási idő" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 -msgctxt "@label" -msgid "Estimated time left" -msgstr "Becsült hátralévő idő" - -#: /home/clamboo/Desktop/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." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:49 +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/clamboo/Desktop/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." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +msgctxt "@title:column" +msgid "Profile settings" +msgstr "Profil beállítások" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +msgctxt "@title:column" +msgid "Current changes" msgstr "" -#: /home/clamboo/Desktop/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." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:104 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:799 +msgctxt "@option:discardOrKeep" +msgid "Always ask me this" +msgstr "Mindig kérdezz" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +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 +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 +msgctxt "@action:button" +msgid "Discard changes" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +msgctxt "@action:button" +msgid "Keep changes" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 +#: /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?" +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 +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 +msgctxt "@title:window" +msgid "Save Project" +msgstr "Projekt mentése" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:175 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Extruder %1" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & alapanyag" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +msgctxt "@action:label" +msgid "Material" +msgstr "Alapanyag" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +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 +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 +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 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "&Beállítások" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Marketplace" +msgstr "Piactér" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Marketplace" +msgstr "Piactér" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@label" +msgid "Select configuration" +msgstr "Konfiguráció kiválasztása" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Enabled" +msgstr "Bekapcsolt" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +msgctxt "@label" +msgid "Material" +msgstr "Alapanyag" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +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 +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 +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 +msgctxt "@label" +msgid "Number of Copies" +msgstr "Másolatok száma" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "K&iterjesztések" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:menu menubar:toplevel" +msgid "&Help" +msgstr "&Segítség" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "Kedvencek" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "Open File(s)..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:settings" +msgid "&Printer" +msgstr "&Nyomtató" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Local printers" +msgstr "Helyi nyomtatók" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@action:inmenu" +msgid "Collapse All Categories" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "&View" +msgstr "&Nézet" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "Camera view" +msgstr "Kamera nézet" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "Merőleges" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "Nyomtatás..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "Felfüggsztve" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Abort Print" +msgstr "Nyomtatás megszakítás" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Is printed as support." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@action:button" +msgid "Defaults" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +msgctxt "@label" +msgid "Interface" +msgstr "Interfész" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +msgctxt "@heading" +msgid "-- incomplete --" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +msgctxt "@label" +msgid "Currency:" +msgstr "Pénznem:" + +#: /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." +msgid "Theme*:" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +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 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "Automatikus szeletelés" + +#: /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." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "A nézetablak viselkedése" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +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 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "Túlnyúlás kijelzése" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +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 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:541 +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 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +msgid "Perspective" +msgstr "Perspetívikus" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +msgid "Orthographic" +msgstr "Merőleges" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +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 +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 +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619 +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 +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 +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 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "Nagy modellek átméretezése" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "Mindig kérdezz" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +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 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "Importálja a modelleket" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +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 +msgctxt "@label" +msgid "Profiles" +msgstr "Profilok" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +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 +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 +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 +msgctxt "@label" +msgid "Privacy" +msgstr "Magán" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +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 +msgctxt "@label" +msgid "Updates" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +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 +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 +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 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +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 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +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 +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Rename" +msgstr "Átnevezés" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Import" +msgstr "Import" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Alapanyag importálás" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Alapanyag export" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 msgctxt "@button" -msgid "Add printer" -msgstr "Nyomtató hozzáadása" +msgid "Why do I need to sync material profiles?" +msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 msgctxt "@button" -msgid "Manage printers" -msgstr "Nyomtatók kezelése" +msgid "Start" +msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +msgctxt "@title:header" +msgid "Sign in" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +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 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +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 +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 +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 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +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 +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 +msgctxt "@button" +msgid "Refresh List" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +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 +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 +msgctxt "@button" +msgid "Sync" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +msgctxt "@button" +msgid "Syncing" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +msgctxt "@title:header" +msgid "No printers found" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +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 +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 +msgctxt "@button" +msgid "Refresh" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +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." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:663 +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:664 +msgctxt "@text" +msgid "Save the .umm file on a USB stick." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:665 +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 +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 +msgctxt "@button" +msgid "Back" +msgstr "Vissza" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +msgctxt "@button" +msgid "Export material archive" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 msgctxt "@label" -msgid "Connected printers" -msgstr "Csatlakoztatott nyomtatók" +msgid "Display Name" +msgstr "Megjelenítendő név" -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171 msgctxt "@label" -msgid "Preset printers" -msgstr "Előre beállított nyomtatók" +msgid "Brand" +msgstr "Márka" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Color" +msgstr "Szín" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Properties" +msgstr "Tulajdonságok" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Diameter" +msgstr "Átmérő" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Filament weight" +msgstr "Nyomtatószál súly" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Cost per Meter" +msgstr "Költség / méter" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Unlink Material" +msgstr "Alapanyag leválasztása" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Adhesion Information" +msgstr "Tapadási információ" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" msgid "Print settings" msgstr "Nyomtatási beállítások" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -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/Preferences/ProfilesPage.qml:59 +msgctxt "@label" +msgid "Profiles compatible with active printer:" +msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:label" +msgid "Some settings from current profile were overwritten." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:140 +msgctxt "@action:button" +msgid "Update profile." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Általános beállítások" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Profil exportálás" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +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 +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 +msgctxt "@label" +msgid "Active print" +msgstr "Aktív nyomtatás" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +msgctxt "@label" +msgid "Job Name" +msgstr "Feladat név" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +msgctxt "@label" +msgid "Printing Time" +msgstr "Nyomtatási idő" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" msgid "Profile" msgstr "Profil" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -4101,1752 +5599,132 @@ msgstr "" "\n" "Kattints, hogy megnyisd a profil menedzsert." -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 msgctxt "@label:header" msgid "Custom profiles" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "A jelenlegi változások elvetése" +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:142 msgctxt "@button" msgid "Recommended" msgstr "Ajánlott" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:156 msgctxt "@button" msgid "Custom" msgstr "Egyéni" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 msgctxt "@label:Should be short" msgid "On" msgstr "Be" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 msgctxt "@label:Should be short" msgid "Off" msgstr "Ki" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 msgctxt "@label" msgid "Experimental" msgstr "Tapasztalati" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 -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] "" -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." +msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 -msgctxt "@label" -msgid "Profiles" -msgstr "Profilok" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +msgctxt "@info" +msgid "custom profile is overriding some settings." +msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 -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." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 +msgctxt "@info" +msgid "Some settings were changed." +msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 -msgctxt "@label" -msgid "Support" -msgstr "Támasz" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 -msgctxt "@label" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such 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/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 -msgctxt "@label" -msgid "Gradual infill" -msgstr "Fokozatos kitöltés" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 -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é." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 msgctxt "@label" msgid "Adhesion" msgstr "Letapadás" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 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/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "Hálózati nyomtatók" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "Helyi nyomtatók" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "Alapanyag" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "Kedvencek" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "Generikus" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:198 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:" +msgid "Gradual infill" +msgstr "Fokozatos kitöltés" -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 -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/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:236 msgctxt "@label" -msgid "Number of Copies" -msgstr "Másolatok száma" +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é." -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "Kiválasztás exportálása..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "Konfigurációk" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "Egyéni" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:26 msgctxt "@label" -msgid "Printer" -msgstr "Nyomtató" +msgid "Resolution" +msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 msgctxt "@label" -msgid "Enabled" -msgstr "Bekapcsolt" +msgid "Support" +msgstr "Támasz" -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 msgctxt "@label" -msgid "Material" -msgstr "Alapanyag" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such 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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 -msgctxt "@tooltip" -msgid "The configuration of this extruder is not allowed, and prohibits slicing." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +msgctxt "@error" +msgid "Configuration not supported" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 -msgctxt "@tooltip" -msgid "There are no profiles matching the configuration of this extruder." +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 -msgctxt "@label" -msgid "Select configuration" -msgstr "Konfiguráció kiválasztása" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 -msgctxt "@label" -msgid "Configurations" -msgstr "Konfigurációk" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "Piactér" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 +msgctxt "@button:label" +msgid "Learn more" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "&Nyomtató" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Alapanyag" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Beállítva aktív extruderként" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Extruder engedélyezése" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Extruder letiltása" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "Legutóbbi fájlok" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "Láthatósági beállítások" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "Beállítások láthatóságának kezelése..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "&Kamera helyzet" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "Kamera nézet" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "Perspektívikus" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "Merőleges" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "&Tárgyasztal" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 -msgctxt "@label" -msgid "View type" -msgstr "Nézet típus" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 -msgctxt "@label" -msgid "Is printed as support." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "" -msgstr[1] "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Profilok" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 -msgctxt "@action:button" -msgid "Activate" -msgstr "Aktivál" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "Létrehozás" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "Másolás" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 -msgctxt "@action:button" -msgid "Rename" -msgstr "Átnevezés" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -msgctxt "@action:button" -msgid "Import" -msgstr "Import" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -msgctxt "@action:button" -msgid "Export" -msgstr "Export" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Profil készítés" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "Adjon nevet ehhez a profilhoz." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Profil másolása" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Eltávolítás megerősítése" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Profil átnevezés" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Profil importálás" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Profil exportálás" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "Nyomtató: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -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" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Általános beállítások" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 -msgctxt "@title:tab" -msgid "General" -msgstr "Általános" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 -msgctxt "@label" -msgid "Interface" -msgstr "Interfész" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 -msgctxt "@label" -msgid "Currency:" -msgstr "Pénznem:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 -msgctxt "@label" -msgid "Theme:" -msgstr "Téma:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Automatikus újraszeletelés, ha a beállítások megváltoznak." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Automatikus szeletelés" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "A nézetablak viselkedése" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Túlnyúlás kijelzése" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Kamera középre, mikor az elem ki van választva" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Fordítsa meg a kamera zoom irányát." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "Nagyítás az egér mozgás irányában" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "A modellek egymástól való távtartásának biztosítása" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "Modellek automatikus tárgyasztalra illesztése" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "Figyelmeztető üzenet megjelenítése g-kód olvasóban." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "Figyelmeztető üzenet a g-code olvasóban" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "Kényszerítsük a réteget kompatibilitási módba ?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "Milyen fípusú fényképezőgépet használunk?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 -msgid "Perspective" -msgstr "Perspetívikus" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 -msgid "Orthographic" -msgstr "Merőleges" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Fájlok megnyitása és mentése" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 -msgctxt "@info:tooltip" -msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 -msgctxt "@info:tooltip" -msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 -msgctxt "@option:check" -msgid "Clear buildplate before loading model into the single instance" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Nagy modellek átméretezése" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Extrém kicsi modellek átméretezése" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "Betöltés után a modellek legyenek kiválasztva?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "Modell kiválasztása betöltés után" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "Gépnév előtagként a feladatnévben" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "Mutassuk az összegzést a projekt mentésekor?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "Összegzés megjelenítése projekt mentésekor" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "Alapértelmezett viselkedés a projektfájl megnyitásakor" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "Alapértelmezett viselkedés a projektfájl megnyitásakor: " - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "Mindig kérdezz" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Projektként való megnyitás" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Importálja a modelleket" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "Megváltozott beállítások elvetése" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "Megváltozott beállítások alkalmazása az új profilba" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 -msgctxt "@label" -msgid "Privacy" -msgstr "Magán" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "Név nélküli információ küldés" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 -msgctxt "@action:button" -msgid "More information" -msgstr "Több információ" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 -msgctxt "@label" -msgid "Updates" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Keressen frissítéseket az induláskor" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 -msgctxt "@info:tooltip" -msgid "When checking for updates, only check for stable releases." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 -msgctxt "@option:radio" -msgid "Stable releases only" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 -msgctxt "@info:tooltip" -msgid "When checking for updates, check for both stable and for beta releases." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 -msgctxt "@option:radio" -msgid "Stable and Beta releases" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 -msgctxt "@option:check" -msgid "Get notifications for plugin updates" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "Információ" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "Új átmérő megerősítése" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "Megjelenítendő név" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "Alapanyag típus" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "Szín" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "Tulajdonságok" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "Sűrűség" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "Átmérő" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "Nyomtatószál költség" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "Nyomtatószál súly" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "Nyomtatószál hossz" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Költség / méter" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "Alapanyag leválasztása" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "Leírás" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Tapadási információ" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "Létrehoz" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Másolat" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "Nyomtató" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Alapanyag importálás" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Sikeres alapanyag import %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Alapanyag export" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Sikeres alapanyag export %1 -ba" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 -msgctxt "@title:window" -msgid "Sync materials with printers" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 -msgctxt "@title:header" -msgid "Sync materials with printers" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 -msgctxt "@text" -msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 -msgctxt "@button" -msgid "Start" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 -msgctxt "@button" -msgid "Why do I need to sync material profiles?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 -msgctxt "@title:header" -msgid "Sign in" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 -msgctxt "@button" -msgid "Sync materials with USB" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 -msgctxt "@title:header" -msgid "The following printers will receive the new material profiles:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 -msgctxt "@title:header" -msgid "Something went wrong when sending the materials to the printers." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 -msgctxt "@title:header" -msgid "Material profiles successfully synced with the following printers:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 -msgctxt "@button" -msgid "Troubleshooting" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 -msgctxt "@text Asking the user whether printers are missing in a list." -msgid "Printers missing?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 -msgctxt "@text" -msgid "Make sure all your printers are turned ON and connected to Digital Factory." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 -msgctxt "@button" -msgid "Refresh List" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 -msgctxt "@button" -msgid "Try again" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Done" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 -msgctxt "@button" -msgid "Sync" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 -msgctxt "@button" -msgid "Syncing" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 -msgctxt "@title:header" -msgid "No printers found" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 -msgctxt "@button" -msgid "Learn how to connect your printer to Digital Factory" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 -msgctxt "@button" -msgid "Refresh" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 -msgctxt "@title:header" -msgid "Sync material profiles via USB" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 -msgctxt "@text" -msgid "Click the export material archive button." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 -msgctxt "@text" -msgid "Save the .umm file on a USB stick." -msgstr "" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 -msgctxt "@button" -msgid "How to load new material profiles to my printer" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Export material archive" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Láthatóság beállítása" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Mindent ellenőrizni" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 -msgctxt "@title:tab" -msgid "Printers" -msgstr "Nyomtatók" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Számított" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 msgctxt "@title:column" msgid "Setting" msgstr "Beállítás" -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 msgctxt "@title:column" msgid "Profile" msgstr "Profil" -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 msgctxt "@title:column" msgid "Current" msgstr "Jelenlegi" -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:39 +msgctxt "@title:column Unit of measurement" msgid "Unit" -msgstr "Egység" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "Nincs nyomtatóhoz csatlakoztatva" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "A nyomtató nem fogadja a parancsokat" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "Karbantartás alatt. Ellenőrizze a nyomtatót" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "Elveszett a kapcsolat a nyomtatóval" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "Nyomtatás..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "Felfüggsztve" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "Előkészítés..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Távolítsa el a tárgyat" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "Nyomtatás megszakítás" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "Biztosan meg akarod szakítani a nyomtatást?" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 -msgctxt "@label:button" -msgid "My printers" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 -msgctxt "@tooltip:button" -msgid "Monitor printers in Ultimaker Digital Factory." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/SearchBar.qml:17 +msgctxt "@placeholder" +msgid "Search" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 -msgctxt "@tooltip:button" -msgid "Create print projects in Digital Library." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 -msgctxt "@label:button" -msgid "Print jobs" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 -msgctxt "@tooltip:button" -msgid "Monitor print jobs and reprint from your print history." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 -msgctxt "@tooltip:button" -msgid "Extend Ultimaker Cura with plugins and material profiles." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 -msgctxt "@tooltip:button" -msgid "Become a 3D printing expert with Ultimaker e-learning." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 -msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 -msgctxt "@tooltip:button" -msgid "Learn how to get started with Ultimaker Cura." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 -msgctxt "@label:button" -msgid "Ask a question" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 -msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 -msgctxt "@label:button" -msgid "Report a bug" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 -msgctxt "@tooltip:button" -msgid "Let developers know that something is going wrong." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 -msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "Nyomtató vezérlés" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "Léptetőgomb pozíció" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Léptetőgomb távolság" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "G-kód küldés" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "Extruder" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "Ennek a fejnek a jelenlegi hőmérséklete." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Elvet" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Előfűtés" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Az alapanyag színe ennél az extrudernél." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Az alapanyag ebben az extruderben." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "A fúvóka be van építve az extruderbe." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "A nyomtató nincs csatlakoztatva." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "Tárgyasztal" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -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/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -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/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "Bejelentkezés" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 -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 "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 -msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 -msgctxt "@button" -msgid "Sign Out" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 -msgctxt "@label" -msgid "Checking..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 -msgctxt "@label" -msgid "Account synced" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 -msgctxt "@label" -msgid "Something went wrong..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 -msgctxt "@button" -msgid "Install pending updates" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 -msgctxt "@button" -msgid "Check for account updates" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "Névtelen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 -msgctxt "@label" -msgid "No items to select from" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "Mutassa az online hibaelhárítási útmutatót" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 -msgctxt "@action:inmenu" -msgid "Toggle Full Screen" -msgstr "Teljes képernyőre váltás" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 -msgctxt "@action:inmenu" -msgid "Exit Full Screen" -msgstr "Kilépés a teljes képernyőn" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 -msgctxt "@action:inmenu menubar:edit" -msgid "&Undo" -msgstr "&Visszavon" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 -msgctxt "@action:inmenu menubar:edit" -msgid "&Redo" -msgstr "&Újra" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 -msgctxt "@action:inmenu menubar:file" -msgid "&Quit" -msgstr "Kilép" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 -msgctxt "@action:inmenu menubar:view" -msgid "3D View" -msgstr "3D nézet" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 -msgctxt "@action:inmenu menubar:view" -msgid "Front View" -msgstr "Előlnézet" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 -msgctxt "@action:inmenu menubar:view" -msgid "Top View" -msgstr "Felülnézet" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 -msgctxt "@action:inmenu menubar:view" -msgid "Bottom View" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 -msgctxt "@action:inmenu menubar:view" -msgid "Left Side View" -msgstr "Bal oldalnézet" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 -msgctxt "@action:inmenu menubar:view" -msgid "Right Side View" -msgstr "Jobb oldalnézet" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 -msgctxt "@action:inmenu" -msgid "Configure Cura..." -msgstr "Cura beállítása..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 -msgctxt "@action:inmenu menubar:printer" -msgid "&Add Printer..." -msgstr "&Nyomtató hozzáadása..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 -msgctxt "@action:inmenu menubar:printer" -msgid "Manage Pr&inters..." -msgstr "Nyomtatók kezelése..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 -msgctxt "@action:inmenu" -msgid "Manage Materials..." -msgstr "Anyagok kezelése..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu" -msgid "Add more materials from Marketplace" -msgstr "" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 -msgctxt "@action:inmenu menubar:profile" -msgid "&Discard current changes" -msgstr "&Jelenlegi változtatások eldobása" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 -msgctxt "@action:inmenu menubar:profile" -msgid "Manage Profiles..." -msgstr "Profilok kezelése..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 -msgctxt "@action:inmenu menubar:help" -msgid "Show Online &Documentation" -msgstr "Online &Dokumentumok megjelenítése" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 -msgctxt "@action:inmenu menubar:help" -msgid "Report a &Bug" -msgstr "Hibajelentés" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 -msgctxt "@action:inmenu menubar:help" -msgid "What's New" -msgstr "Újdonságok" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 -msgctxt "@action:inmenu menubar:help" -msgid "About..." -msgstr "Rólunk..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 -msgctxt "@action:inmenu menubar:edit" -msgid "Delete Selected" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 -msgctxt "@action:inmenu menubar:edit" -msgid "Center Selected" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 -msgctxt "@action:inmenu menubar:edit" -msgid "Multiply Selected" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 -msgctxt "@action:inmenu" -msgid "Delete Model" -msgstr "Modell törlés" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 -msgctxt "@action:inmenu" -msgid "Ce&nter Model on Platform" -msgstr "&Középső modell a platformon" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 -msgctxt "@action:inmenu menubar:edit" -msgid "&Group Models" -msgstr "&Csoportosítás" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 -msgctxt "@action:inmenu menubar:edit" -msgid "Ungroup Models" -msgstr "Csoport bontása" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 -msgctxt "@action:inmenu menubar:edit" -msgid "&Merge Models" -msgstr "&Modellek keverése" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 -msgctxt "@action:inmenu" -msgid "&Multiply Model..." -msgstr "&Modell többszörözés..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 -msgctxt "@action:inmenu menubar:edit" -msgid "Select All Models" -msgstr "Mindent kijelöl" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 -msgctxt "@action:inmenu menubar:edit" -msgid "Clear Build Plate" -msgstr "Tárgyasztal törlése" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 -msgctxt "@action:inmenu menubar:file" -msgid "Reload All Models" -msgstr "Mindent újratölt" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "Minden modell elrendezése a tárgyasztalon" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models" -msgstr "Minden modell rendezése" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange Selection" -msgstr "Kijelöltek rendezése" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Positions" -msgstr "Minden modellpozíció visszaállítása" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Transformations" -msgstr "Minden modelltranszformáció visszaállítása" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 -msgctxt "@action:inmenu menubar:file" -msgid "&Open File(s)..." -msgstr "Fájl(ok) megnyitása..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 -msgctxt "@action:inmenu menubar:file" -msgid "&New Project..." -msgstr "Új projekt..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 -msgctxt "@action:inmenu menubar:help" -msgid "Show Configuration Folder" -msgstr "Konfigurációs mappa megjelenítése" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 -msgctxt "@action:menu" -msgid "Configure setting visibility..." -msgstr "Beállítások láthatóságának beállítása..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "&Piactér" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 -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/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 -msgctxt "@label Header for list of settings." -msgid "Affects" -msgstr "Befolyásolások" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 -msgctxt "@label Header for list of settings." -msgid "Affected By" -msgstr "Befolyásolja" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 -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/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 -msgctxt "@label" -msgid "This setting is resolved from conflicting extruder-specific values:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 -msgctxt "@label" -msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." -msgstr "" -"Ennek a beállításnak az értéke eltér a profilban megadottól.\n" -"\n" -"Kattintson a profil értékének visszaállításához." - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 -msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"Ez az érték általában kalulálva van, de jelenleg abszolút értékre van beállítva \n" -"\n" -"Kattintson, hogy visszaállítsuk a kalkulált értéket." - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 -msgctxt "@label:textbox" -msgid "Search settings" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 -msgctxt "@action:menu" -msgid "Copy value to all extruders" -msgstr "Értékek másolása minden extruderre" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 -msgctxt "@action:menu" -msgid "Copy all changed values to all extruders" -msgstr "Minden változott érték másolása minden extruderre" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 -msgctxt "@action:menu" -msgid "Hide this setting" -msgstr "Beállítás elrejtése" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 -msgctxt "@action:menu" -msgid "Don't show this setting" -msgstr "Ne jelenítsd meg ezt a beállítást" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 -msgctxt "@action:menu" -msgid "Keep this setting visible" -msgstr "Beállítás látható marad" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5857,141 +5735,358 @@ msgstr "" "\n" "Kattints, hogy ezek a beállítások láthatók legyenek." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "Ez a csomag újraindítás után fog települni." +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/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 -msgctxt "@title:tab" -msgid "Settings" -msgstr "Beállítások" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +msgctxt "@label Header for list of settings." +msgid "Affects" +msgstr "Befolyásolások" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 -msgctxt "@label %1 is the application name" -msgid "Are you sure you want to exit %1?" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +msgctxt "@label" +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"Ennek a beállításnak az értéke eltér a profilban megadottól.\n" +"\n" +"Kattintson a profil értékének visszaállításához." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:334 +msgctxt "@label" +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"Ez az érték általában kalulálva van, de jelenleg abszolút értékre van beállítva \n" +"\n" +"Kattintson, hogy visszaállítsuk a kalkulált értéket." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +msgctxt "@label:textbox" +msgid "Search settings" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 -msgctxt "@window:title" -msgid "Install Package" -msgstr "Csomag telepítése" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:395 +msgctxt "@action:menu" +msgid "Copy value to all extruders" +msgstr "Értékek másolása minden extruderre" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Fájl(ok) megnyitása" +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 -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/Settings/SettingView.qml:440 +msgctxt "@action:menu" +msgid "Hide this setting" +msgstr "Beállítás elrejtése" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 -msgctxt "@title:window" -msgid "Add Printer" +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info:tooltip" +msgid "3D View" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +msgctxt "@info:tooltip" +msgid "Front View" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Add a Cloud printer" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "No printers found in your account?" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Add printer manually" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +msgctxt "@label" +msgid "Manufacturer" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 +msgctxt "@label" +msgid "Profile author" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 -msgctxt "@title:window" -msgid "What's New" -msgstr "Újdonságok" +#: /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" -#: PerObjectSettingsTool/plugin.json -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Biztosítja a modellenkénti beállításokat." +#: /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" -#: PerObjectSettingsTool/plugin.json -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Modellenkénti beállítás-eszköz" +#: /home/trin/Gedeeld/Projects/Cura/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ó." -#: 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." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 +msgctxt "@label" +msgid "Refresh" +msgstr "Frissítés" -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura profil olvasó" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 +msgctxt "@label" +msgid "Add printer by IP" +msgstr "Nyomtató hozzáadása IP címmel" -#: 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ó" - -#: 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" - -#: 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" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:184 +msgctxt "@label" +msgid "Add cloud printer" msgstr "" -#: SupportEraser/plugin.json +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:220 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "Hibaelhárítás" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 +msgctxt "@button" +msgid "Add" +msgstr "Hozzáad" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Can't connect to your Ultimaker printer?" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Connect" +msgstr "Csatlakozás" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +msgctxt "@label" +msgid "Release Notes" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:175 +msgctxt "@text" +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 +msgctxt "@button" +msgid "Skip" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +msgctxt "@text" +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 +msgctxt "@label" +msgid "Empty" +msgstr "Üres" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "What's New" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:18 +msgctxt "@label" +msgid "No items to select from" +msgstr "" + +#: ModelChecker/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" +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." -#: SupportEraser/plugin.json +#: ModelChecker/plugin.json msgctxt "name" -msgid "Support Eraser" -msgstr "Támasz törlő" - -#: 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" - -#: 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ő" - -#: 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ó" +msgid "Model Checker" +msgstr "Modell-ellenőrző" #: 3MFReader/plugin.json msgctxt "description" @@ -6003,65 +6098,15 @@ msgctxt "name" msgid "3MF Reader" msgstr "3MF olvasó" -#: UFPWriter/plugin.json +#: 3MFWriter/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." +msgid "Provides support for writing 3MF files." +msgstr "Támogatást nyújt a 3MF fájlok írásához." -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "name" -msgid "UFP Writer" -msgstr "UFP Író" - -#: 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 "" - -#: 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ó" - -#: 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" - -#: 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" - -#: 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" +msgid "3MF Writer" +msgstr "3MF író" #: AMFReader/plugin.json msgctxt "description" @@ -6073,25 +6118,35 @@ msgctxt "name" msgid "AMF Reader" msgstr "AMF Olvasó" -#: GCodeGzReader/plugin.json +#: CuraDrive/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." +msgid "Backup and restore your configuration." +msgstr "Konfiguráció biztonsági másolat készítése és visszaállítása." -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Tömörített G-kód olvasó" +msgid "Cura Backups" +msgstr "Cura biztonsági mentések" -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/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" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Biztosítja a kapcsolatot a CuraEngine szeletelő motorhoz." -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "Utólagos feldolgozás" +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" @@ -6103,65 +6158,15 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Cura profil író" -#: USBPrinting/plugin.json +#: DigitalLibrary/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." +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "" -#: USBPrinting/plugin.json +#: DigitalLibrary/plugin.json msgctxt "name" -msgid "USB printing" -msgstr "USB nyomtatá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" - -#: 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ó" - -#: 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ó" - -#: 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" - -#: 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ó" +msgid "Ultimaker Digital Library" +msgstr "" #: FirmwareUpdateChecker/plugin.json msgctxt "description" @@ -6173,45 +6178,55 @@ msgctxt "name" msgid "Firmware Update Checker" msgstr "Frimrware frissítés ellenőrző" -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/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ó." +msgid "Provides a machine actions for updating firmware." +msgstr "Gépi funkciókat biztosít a firmware frissítéséhez." -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Slice info" -msgstr "Szeletelési infó" +msgid "Firmware Updater" +msgstr "Firmware frissítő" -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/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." +msgid "Reads g-code from a compressed archive." +msgstr "Olvassa be a g-kódot egy tömörített archívumból." -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "Alapanyag profilok" +msgid "Compressed G-code Reader" +msgstr "Tömörített G-kód olvasó" -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/plugin.json msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "" +msgid "Writes g-code to a compressed archive." +msgstr "G-kódot ír egy tömörített archívumba." -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/plugin.json msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "" +msgid "Compressed G-code Writer" +msgstr "Tömörített G-kód író" -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "Keressen, kezeljen és telepítsen új Cura csomagokat." +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." -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "Eszköztár" +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" @@ -6223,245 +6238,155 @@ 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 Simulation view." -msgstr "Szimulációs nézetet biztosít." +msgid "Provides the preview of sliced layerdata." +msgstr "" #: SimulationView/plugin.json msgctxt "name" msgid "Simulation View" msgstr "Szimulációs nézet" -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "" +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ó." -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/plugin.json msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "" +msgid "Slice info" +msgstr "Szeletelési infó" -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/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." +msgid "Provides a normal solid mesh view." +msgstr "Felületi háló nézetet biztosít." -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/plugin.json msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "A 2.5-es verzió frissítése 2.6-ra" +msgid "Solid View" +msgstr "Felület nézet" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "" +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" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/plugin.json msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -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/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/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/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/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/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/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/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 "" - -#: 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/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/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/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/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/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/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/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/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/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" - -#: 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" +msgid "Support Eraser" +msgstr "Támasz törlő" #: TrimeshReader/plugin.json msgctxt "description" @@ -6483,45 +6408,561 @@ msgctxt "name" msgid "UFP Reader" msgstr "UFP Olvasó" -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Felületi háló nézetet biztosít." +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Támogatást nyújt az Ultimaker formátumú csomagok írásához." -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "name" -msgid "Solid View" -msgstr "Felület nézet" +msgid "UFP Writer" +msgstr "UFP Író" -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Támogatást nyújt a 3MF fájlok írásához." +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.)" -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "name" -msgid "3MF Writer" -msgstr "3MF író" +msgid "Ultimaker machine actions" +msgstr "Ultimaker gépi funkciók" -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Monitor nézetet biztosít a Cura -ban." +msgid "Manages network connections to Ultimaker networked printers." +msgstr "Kezeli a hálózati csatlakozásokat az Ultimaker hálózati nyomtatókhoz." -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "name" -msgid "Monitor Stage" -msgstr "Monitor nézet" +msgid "Ultimaker Network Connection" +msgstr "Ultimaker hálózati kapcsolat" -#: ModelChecker/plugin.json +#: USBPrinting/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." +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." -#: ModelChecker/plugin.json +#: USBPrinting/plugin.json msgctxt "name" -msgid "Model Checker" -msgstr "Modell-ellenőrző" +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." diff --git a/resources/i18n/hu_HU/fdmextruder.def.json.po b/resources/i18n/hu_HU/fdmextruder.def.json.po index f25f2b26c3..5b3067ca95 100644 --- a/resources/i18n/hu_HU/fdmextruder.def.json.po +++ b/resources/i18n/hu_HU/fdmextruder.def.json.po @@ -1,12 +1,12 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0000\n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" "PO-Revision-Date: 2020-03-24 09:27+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: AT-VLOG\n" diff --git a/resources/i18n/hu_HU/fdmprinter.def.json.po b/resources/i18n/hu_HU/fdmprinter.def.json.po index 3b2f0fa1df..e23177fba2 100644 --- a/resources/i18n/hu_HU/fdmprinter.def.json.po +++ b/resources/i18n/hu_HU/fdmprinter.def.json.po @@ -1,12 +1,12 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 11:59+0000\n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" "PO-Revision-Date: 2020-03-24 09:43+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: AT-VLOG\n" @@ -467,8 +467,8 @@ msgstr "A nyomtatófej és ventillátor ábrázolása" #: fdmprinter.def.json 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)." +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" @@ -740,6 +740,16 @@ 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" @@ -960,6 +970,56 @@ 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" @@ -991,14 +1051,24 @@ msgid "Optimize the order in which walls are printed so as to reduce the number 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 "outer_inset_first label" -msgid "Outer Before Inner Walls" -msgstr "Külső falak a belsők előtt" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "" #: fdmprinter.def.json -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 "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" @@ -1011,84 +1081,54 @@ msgid "Prints an extra wall at every other layer. This way infill gets caught be 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 "travel_compensate_overlapping_walls_enabled label" -msgid "Compensate Wall Overlaps" -msgstr "Fali átlapolások kompenzálása" +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "" #: fdmprinter.def.json -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 "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 "travel_compensate_overlapping_walls_0_enabled label" -msgid "Compensate Outer Wall Overlaps" -msgstr "Kompenzálja a külső fal átfedéseit" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "" #: fdmprinter.def.json -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 "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 "travel_compensate_overlapping_walls_x_enabled label" -msgid "Compensate Inner Wall Overlaps" -msgstr "Kompenzálja a belső fal átfedéseit" +msgctxt "wall_split_middle_threshold label" +msgid "Split Middle Line Threshold" +msgstr "" #: fdmprinter.def.json -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 "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 "wall_min_flow label" -msgid "Minimum Wall Flow" -msgstr "Minimális fal adagolás" +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "" #: fdmprinter.def.json -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 "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_min_flow_retract label" -msgid "Prefer Retract" -msgstr "Visszahúzás preferálása" +msgctxt "wall_add_middle_threshold label" +msgid "Add Middle Line Threshold" +msgstr "" #: fdmprinter.def.json -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 "fill_perimeter_gaps label" -msgid "Fill Gaps Between Walls" -msgstr "Falak közötti rések kitöltése" - -#: fdmprinter.def.json -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 "fill_perimeter_gaps option nowhere" -msgid "Nowhere" -msgstr "Seholsem" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option everywhere" -msgid "Everywhere" -msgstr "Mindenhol" - -#: fdmprinter.def.json -msgctxt "filter_out_tiny_gaps label" -msgid "Filter Out Tiny Gaps" -msgstr "Apró hézagok kiszűrése" - -#: fdmprinter.def.json -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 "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" @@ -1100,6 +1140,26 @@ 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" @@ -2199,6 +2259,26 @@ 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" @@ -2710,24 +2790,14 @@ msgid "The first few layers are printed slower than the rest of the model, to ge 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_enabled label" -msgid "Equalize Filament Flow" -msgstr "Adagolás kiegyenlítés" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "" #: fdmprinter.def.json -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 "speed_equalize_flow_max label" -msgid "Maximum Speed for Flow Equalization" -msgstr "Maximális adagolás kompenzáció sebesség" - -#: fdmprinter.def.json -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 "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" @@ -2739,6 +2809,16 @@ 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" @@ -2929,6 +3009,16 @@ 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" @@ -4464,6 +4554,46 @@ 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" @@ -4628,6 +4758,16 @@ 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" @@ -5128,6 +5268,16 @@ 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" @@ -6420,6 +6570,36 @@ 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 "" + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +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" +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 "command_line_settings label" msgid "Command Line Settings" @@ -6480,6 +6660,98 @@ 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)." + +#~ msgctxt "outer_inset_first label" +#~ msgid "Outer Before Inner Walls" +#~ msgstr "Külső falak a belsők előtt" + +#~ 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 "travel_compensate_overlapping_walls_enabled label" +#~ msgid "Compensate Wall Overlaps" +#~ msgstr "Fali átlapolások kompenzálása" + +#~ 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 "travel_compensate_overlapping_walls_0_enabled label" +#~ msgid "Compensate Outer Wall Overlaps" +#~ msgstr "Kompenzálja a külső fal átfedéseit" + +#~ 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 "travel_compensate_overlapping_walls_x_enabled label" +#~ msgid "Compensate Inner Wall Overlaps" +#~ msgstr "Kompenzálja a belső fal átfedéseit" + +#~ 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 "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 "wall_min_flow_retract label" +#~ msgid "Prefer Retract" +#~ msgstr "Visszahúzás preferálása" + +#~ 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 "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 "fill_perimeter_gaps option nowhere" +#~ msgid "Nowhere" +#~ msgstr "Seholsem" + +#~ msgctxt "fill_perimeter_gaps option everywhere" +#~ msgid "Everywhere" +#~ msgstr "Mindenhol" + +#~ 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 "speed_equalize_flow_enabled label" +#~ msgid "Equalize Filament Flow" +#~ msgstr "Adagolás kiegyenlítés" + +#~ 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 "speed_equalize_flow_max label" +#~ msgid "Maximum Speed for Flow Equalization" +#~ msgstr "Maximális adagolás kompenzáció sebesség" + +#~ 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 "machine_max_feedrate_e label" #~ msgid "Maximum Feedrate" #~ msgstr "Adagolás maximum" diff --git a/resources/i18n/it_IT/cura.po b/resources/i18n/it_IT/cura.po index 5187971b46..5d44db8cb2 100644 --- a/resources/i18n/it_IT/cura.po +++ b/resources/i18n/it_IT/cura.po @@ -1,465 +1,190 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0100\n" -"PO-Revision-Date: 2021-09-07 07:57+0200\n" -"Last-Translator: Lionbridge \n" -"Language-Team: Italian , Italian \n" +"POT-Creation-Date: 2022-06-21 12:50+0200\n" +"PO-Revision-Date: 2022-07-15 11:14+0200\n" +"Last-Translator: \n" +"Language-Team: \n" "Language: it_IT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 3.0\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Poedit 3.1.1\n" -#: /home/clamboo/Desktop/Cura/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/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "Sconosciuto" -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 -msgctxt "@info:title" -msgid "Backup" -msgstr "Backup" +#: /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/clamboo/Desktop/Cura/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/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Stampanti disponibili in rete" -#: /home/clamboo/Desktop/Cura/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/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Non sottoposto a override" -#: /home/clamboo/Desktop/Cura/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/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/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 -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/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/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 -msgctxt "@action:button" -msgid "New materials installed" -msgstr "Nuovi materiali installati" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 -msgctxt "@action:button" -msgid "Sync materials with printers" -msgstr "Sincronizza materiali" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 -msgctxt "@action:button" -msgid "Learn more" -msgstr "Ulteriori informazioni" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 -msgctxt "@message:text" -msgid "Could not save material archive to {}:" -msgstr "Impossibile salvare archivio materiali in {}:" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 -msgctxt "@message:title" -msgid "Failed to save material archive" -msgstr "Impossibile salvare archivio materiali" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 -msgctxt "@text" -msgid "Unknown error." -msgstr "Errore sconosciuto." - -#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 -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/clamboo/Desktop/Cura/cura/BuildVolume.py:102 -msgctxt "@info:title" -msgid "Build Volume" -msgstr "Volume di stampa" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Non sottoposto a override" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "Sconosciuto" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Stampanti disponibili in rete" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Tutti i file (*)" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Visivo" +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Calcolato" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Bozza" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 -msgctxt "@label" -msgid "Custom Material" -msgstr "Materiale personalizzato" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 -msgctxt "@label" -msgid "Custom" -msgstr "Personalizzata" - -#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 +#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "Login non riuscito" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Ricerca nuova posizione per gli oggetti" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 msgctxt "@info:title" msgid "Finding Location" msgstr "Ricerca posizione" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Impossibile individuare posizione" -#: /home/clamboo/Desktop/Cura/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/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 -msgctxt "@text:error" -msgid "Failed to connect to Digital Factory." -msgstr "Impossibile connettersi a Digital Factory." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "Caricamento macchine in corso..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "Impostazione delle preferenze..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "Inizializzazione Active Machine in corso..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "Inizializzazione gestore macchina in corso..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "Inizializzazione volume di stampa in corso..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "Impostazione scena in corso..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "Caricamento interfaccia in corso..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "Inizializzazione motore in corso..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 +#: /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 msgctxt "@info:title" -msgid "Warning" -msgstr "Avvertenza" +msgid "Backup" +msgstr "Backup" -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 -#, python-brace-format +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 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}" +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/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 msgctxt "@info:title" -msgid "Error" -msgstr "Errore" +msgid "Build Volume" +msgstr "Volume di stampa" -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 -msgctxt "@action:button" -msgid "Skip" -msgstr "Salta" - -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "Chiudi" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 -msgctxt "@action:button" -msgid "Next" -msgstr "Avanti" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 -msgctxt "@action:button" -msgid "Finish" -msgstr "Fine" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "Aggiungi" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Annulla" - -#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 -#, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "Gruppo #{group_nr}" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Parete esterna" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "Pareti interne" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Skin" -msgstr "Rivestimento esterno" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Infill" -msgstr "Riempimento" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Riempimento del supporto" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Interfaccia supporto" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Support" -msgstr "Supporto" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Skirt" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "Torre di innesco" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 -msgctxt "@tooltip" -msgid "Travel" -msgstr "Spostamenti" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Retrazioni" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 -msgctxt "@tooltip" -msgid "Other" -msgstr "Altro" - -#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 -#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 -msgctxt "@text:window" -msgid "The release notes could not be opened." -msgstr "Impossibile aprire le note sulla versione." - -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Impossibile avviare Cura" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

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

      \n" @@ -474,32 +199,32 @@ msgstr "" "

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

      \n" " " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 msgctxt "@action:button" msgid "Send crash report to Ultimaker" msgstr "Inviare il rapporto su crash a Ultimaker" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Mostra il rapporto su crash dettagliato" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Mostra cartella di configurazione" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Backup e reset configurazione" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Rapporto su crash" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190 +#: /home/trin/Gedeeld/Projects/Cura/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" @@ -507,644 +232,774 @@ msgid "" " " msgstr "" "

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

      \n" -"

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

      \n" +"

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

      \n" " " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Informazioni di sistema" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Sconosciuto" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Versione Cura" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Lingua Cura" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "Lingua sistema operativo" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Piattaforma" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Versione Qt" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "Versione PyQt" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 msgctxt "@label" -msgid "Not yet initialized
      " -msgstr "Non ancora inizializzato
      " +msgid "Not yet initialized" +msgstr "Non ancora inizializzato" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
    • OpenGL Version: {version}
    • " msgstr "
    • Versione OpenGL: {version}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
    • OpenGL Vendor: {vendor}
    • " msgstr "
    • Fornitore OpenGL: {vendor}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
    • OpenGL Renderer: {renderer}
    • " msgstr "
    • Renderer OpenGL: {renderer}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Analisi errori" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "Registri" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "Invia report" -#: /home/clamboo/Desktop/Cura/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/CuraApplication.py:531 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "Caricamento macchine in corso..." -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 -msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." -msgstr "Impossibile raggiungere il server account Ultimaker." +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "Impostazione delle preferenze..." -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "Inizializzazione Active Machine in corso..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "Inizializzazione gestore macchina in corso..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "Inizializzazione volume di stampa in corso..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "Impostazione scena in corso..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "Caricamento interfaccia in corso..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "Inizializzazione motore in corso..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#, 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 +#, 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 msgctxt "@info:title" -msgid "Log-in failed" -msgstr "Log in non riuscito" +msgid "Warning" +msgstr "Avvertenza" -#: /home/clamboo/Desktop/Cura/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/CuraApplication.py:1810 +#, 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/clamboo/Desktop/Cura/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/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 +msgctxt "@info:title" +msgid "Error" +msgstr "Errore" -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 -msgctxt "@message" -msgid "Could not read response." -msgstr "Impossibile leggere la risposta." - -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "Moltiplicazione e collocazione degli oggetti" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "Sistemazione oggetti" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Sistemazione oggetto" -#: /home/clamboo/Desktop/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/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "Impossibile leggere la risposta." -#: /home/clamboo/Desktop/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/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "Lo stato fornito non è corretto." -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 -msgctxt "@label" -msgid "Nozzle" -msgstr "Ugello" +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 -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/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/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info" +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 msgctxt "@info:title" -msgid "Settings updated" -msgstr "Impostazioni aggiornate" +msgid "Log-in failed" +msgstr "Log in non riuscito" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "Estrusore disabilitato" +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 msgctxt "@title:window" msgid "File Already Exists" msgstr "Il file esiste già" -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "File URL non valido:" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Esportazione riuscita" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Profilo {0} importato correttamente." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Profilo personalizzato" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Il profilo è privo del tipo di qualità." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "Non ci sono ancora stampanti attive." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Impossibile aggiungere il profilo." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: /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 msgctxt "@label" -msgid "Per Model Settings" -msgstr "Impostazioni per modello" +msgid "Nozzle" +msgstr "Ugello" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "Configura impostazioni per modello" +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +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/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Profilo Cura" - -#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "File X3D" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 msgctxt "@info:title" -msgid "Backups" -msgstr "Backup" +msgid "Settings updated" +msgstr "Impostazioni aggiornate" -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Creazione del backup in corso..." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Caricamento backup in corso..." - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "Caricamento backup completato." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Gestione backup" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Impostazioni macchina" - -#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "Blocco supporto" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Unità rimovibile" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "Salva su unità rimovibile" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "Salva su unità rimovibile {0}" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 msgctxt "@info:title" -msgid "Saving" -msgstr "Salvataggio in corso" +msgid "Extruder(s) Disabled" +msgstr "Estrusore disabilitato" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "Impossibile salvare su unità rimovibile {0}: {1}" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "Salvato su unità rimovibile {0} come {1}" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 -msgctxt "@info:title" -msgid "File Saved" -msgstr "File salvato" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" -msgid "Eject" -msgstr "Rimuovi" +msgid "Add" +msgstr "Aggiungi" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Annulla" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 #, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "Rimuovi il dispositivo rimovibile {0}" +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "Gruppo #{group_nr}" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 -#, 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/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Parete esterna" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "Pareti interne" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "Rivestimento esterno" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "Riempimento" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Riempimento del supporto" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Interfaccia supporto" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "Supporto" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Skirt" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "Torre di innesco" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "Spostamenti" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Retrazioni" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Close" +msgstr "Chiudi" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "Nuovi materiali installati" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Learn more" +msgstr "Ulteriori informazioni" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "Impossibile salvare archivio materiali" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +msgctxt "@text" +msgid "Unknown error." +msgstr "Errore sconosciuto." + +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Rimozione sicura dell'hardware" +msgid "3D Model Assistant" +msgstr "Assistente modello 3D" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 #, 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à." +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 "" +"

      La stampa di uno o più modelli 3D può non avvenire in modo ottimale a causa della dimensioni modello e della configurazione materiale:

      \n" +"

      {model_names}

      \n" +"

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

      \n" +"

      Visualizza la guida alla qualità di stampa

      " -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Aggiornamento firmware" - -#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Profili Cura 15.04" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Consigliata" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Personalizzata" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 +#: /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." -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 msgctxt "@info:title" msgid "Open Project File" msgstr "Apri file progetto" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 +#: /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 "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." + +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:392 +msgctxt "@info:title" +msgid "Material profiles not installed" +msgstr "Profili del materiale non installati" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:405 +msgctxt "@action:button" +msgid "Install Materials" +msgstr "Installa materiali" + +#: /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/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "Impossibile scrivere nel file UFP:" +#: /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/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 -#: /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Pacchetto formato Ultimaker" +#: /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/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "File G-Code" +#: /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/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "Anteprima" +#: /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/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Vista ai raggi X" +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:238 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "Errore scrittura file 3MF." -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Elaborazione dei livelli" +#: /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 "Non è stato possibile memorizzare le informazioni del pacchetto di materiale nel file di progetto: {material}. Questo progetto potrebbe non aprirsi correttamente su altri sistemi." -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:283 msgctxt "@info:title" -msgid "Information" -msgstr "Informazioni" +msgid "Failed to save material package information" +msgstr "Impossibile salvare le informazioni del pacchetto di materiale" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 msgctxt "@message:title" msgid "Slicing failed" msgstr "Sezionamento non riuscito" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 msgctxt "@message:button" msgid "Report a bug" msgstr "Segnala un errore" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 msgctxt "@info:status" msgid "" "Please review settings and check if your models:\n" @@ -1157,436 +1012,497 @@ msgstr "" "- Sono assegnati a un estrusore abilitato\n" "- Non sono tutti impostati come maglie modificatore" -#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "File AMF" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "File G-Code compresso" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "Post-elaborazione" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "Modifica codice G" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "Stampa USB" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Stampa tramite USB" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Stampa tramite USB" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Connesso tramite USB" +msgid "Processing Layers" +msgstr "Elaborazione dei livelli" -#: /home/clamboo/Desktop/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 "Stampa tramite USB in corso, la chiusura di Cura interrompe la stampa. Confermare?" - -#: /home/clamboo/Desktop/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 "Stampa ancora in corso. Cura non può avviare un'altra stampa tramite USB finché la precedente non è stata completata." - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 -msgctxt "@message" -msgid "Print in Progress" -msgstr "Stampa in corso" - -#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "Prepara" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "Parsing codice G" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 msgctxt "@info:title" -msgid "G-code Details" -msgstr "Dettagli codice G" +msgid "Information" +msgstr "Informazioni" -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 -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/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 msgctxt "@item:inlistbox" -msgid "G File" -msgstr "File G" +msgid "Cura Profile" +msgstr "Profilo Cura" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "Immagine JPG" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "Immagine JPEG" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "Immagine PNG" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "Immagine BMP" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "Immagine GIF" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "Livella piano di stampa" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "Seleziona aggiornamenti" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 msgctxt "@info" msgid "Could not access update information." msgstr "Non è possibile accedere alle informazioni di aggiornamento." -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#: /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}." -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#: /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" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 msgctxt "@action:button" msgid "How to update" msgstr "Modalità di aggiornamento" -#: /home/clamboo/Desktop/Cura/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/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Aggiornamento firmware" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 -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/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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Sincronizzazione in corso..." +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +#: /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 "Changes detected from your Ultimaker account" -msgstr "Modifiche rilevate dal tuo account Ultimaker" +msgid "G-code Details" +msgstr "Dettagli codice G" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 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?" +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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 -msgctxt "@action:button" -msgid "Sync" -msgstr "Sincronizza" +#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "File G" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Rifiuta e rimuovi dall'account" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "Impossibile scaricare i plugin {}" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "Non accetto" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "Accetta" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Accordo di licenza plugin" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +#: /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/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +#: /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 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "Controlla" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "Configura impostazioni per modello" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +msgctxt "@item:inmenu" +msgid "Post Processing" +msgstr "Post-elaborazione" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@item:inmenu" +msgid "Prepare" +msgstr "Prepara" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 +msgctxt "@item:inmenu" +msgid "Preview" +msgstr "Anteprima" + +#: /home/trin/Gedeeld/Projects/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 +#, 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 +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 +#, 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 +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 +#, 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 +#, 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 +#, 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 +#, 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 +msgctxt "@info:title" +msgid "File Saved" +msgstr "File salvato" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +msgctxt "@action:button" +msgid "Eject" +msgstr "Rimuovi" + +#: /home/trin/Gedeeld/Projects/Cura/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 +#, 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 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "Rimozione sicura dell'hardware" + +#: /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 "Espulsione non riuscita {0}. È possibile che un altro programma stia utilizzando l’unità." + +#: /home/trin/Gedeeld/Projects/Cura/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." -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 msgctxt "@info:title" msgid "Simulation View" msgstr "Vista simulazione" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:133 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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 msgctxt "@info:title" msgid "No layers to show" msgstr "Nessun layer da visualizzare" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +#: /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 "Non mostrare nuovamente questo messaggio" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Visualizzazione strato" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "Stampa sulla rete" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "Impossibile leggere il file di dati di esempio." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Stampa sulla rete" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Collegato alla rete" +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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "domani" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 +msgctxt "@info:title" +msgid "Model Errors" +msgstr "Errori modello" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "oggi" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Solid view" +msgstr "Visualizzazione compatta" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 +msgctxt "@label" +msgid "Support Blocker" +msgstr "Blocco supporto" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 Triangle Format" + +#: /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 "Pacchetto formato 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 "Impossibile scrivere nel file UFP:" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" -msgid "Connect via Network" -msgstr "Collega tramite rete" +msgid "Level build plate" +msgstr "Livella piano di stampa" -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "Errore di stampa" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Dati inviati" - -#: /home/clamboo/Desktop/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 "Si sta tentando di connettersi a una stampante che non esegue Ultimaker Connect. Aggiornare la stampante con il firmware più recente." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 -msgctxt "@info:title" -msgid "Update your printer" -msgstr "Aggiornare la stampante" - -#: /home/clamboo/Desktop/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 "La coda dei processi di stampa è piena. La stampante non può accettare un nuovo processo." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "Coda piena" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "Invio di un processo di stampa" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/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 ha rilevato dei profili di materiale non ancora installati sulla stampante host del gruppo {0}." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "Invio dei materiali alla stampante" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "Errore di rete" - -#: /home/clamboo/Desktop/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 "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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "Non host del gruppo" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 msgctxt "@action" -msgid "Configure group" -msgstr "Configurare il gruppo" +msgid "Select upgrades" +msgstr "Seleziona aggiornamenti" -#: /home/clamboo/Desktop/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 "" -"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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 -msgctxt "@action" -msgid "Get started" -msgstr "Per iniziare" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 -msgctxt "@action" -msgid "Learn more" -msgstr "Ulteriori informazioni" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 msgctxt "@action:button" msgid "Print via cloud" msgstr "Stampa tramite cloud" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Stampa tramite cloud" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Collegato tramite cloud" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 msgctxt "@action:button" msgid "Monitor print" msgstr "Monitora stampa" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 msgctxt "@action:tooltip" msgid "Track the print in Ultimaker Digital Factory" msgstr "Traccia la stampa in Ultimaker Digital Factory" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#: /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 "Codice di errore sconosciuto durante il caricamento del processo di stampa: {0}" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 +#: /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" @@ -1594,71 +1510,70 @@ msgid_plural "... and {0} others" msgstr[0] "... e {0} altra" msgstr[1] "... e altre {0}" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:361 msgctxt "@action:button" msgid "Remove printers" msgstr "Rimuovere le stampanti" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 +#: /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} sarà rimossa fino alla prossima sincronizzazione account." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 +#: /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 "Per rimuovere definitivamente {printer_name}, visitare {digital_factory_link}" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 +#: /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 "Rimuovere temporaneamente {printer_name}?" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 msgctxt "@title:window" msgid "Remove printers?" msgstr "Rimuovere le stampanti?" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 #, python-brace-format msgctxt "@label" msgid "" @@ -1674,7 +1589,7 @@ msgstr[1] "" "Si stanno per rimuovere {0} stampanti da Cura. Questa azione non può essere annullata.\n" "Continuare?" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +#: /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" @@ -1683,1638 +1598,1063 @@ msgstr "" "Si stanno per rimuovere tutte le stampanti da Cura. Questa azione non può essere annullata. \n" "Continuare?" -#: /home/clamboo/Desktop/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 "Open Compressed Triangle Mesh" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA Digital Asset Exchange" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "glTF Binary" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF Embedded JSON" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Stanford Triangle Format" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Compressed COLLADA Digital Asset Exchange" - -#: /home/clamboo/Desktop/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 "Le aree evidenziate indicano superfici mancanti o estranee. Correggi il modello e aprilo nuovamente in Cura." - -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "Errori modello" - -#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Visualizzazione compatta" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Errore scrittura file 3MF." - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "Plug-in Writer 3MF danneggiato." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "File 3MF" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "File 3MF Progetto Cura" - -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "Controlla" - -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 -msgctxt "@info:title" -msgid "3D Model Assistant" -msgstr "Assistente modello 3D" - -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 #, 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

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

      La stampa di uno o più modelli 3D può non avvenire in modo ottimale a causa della dimensioni modello e della configurazione materiale:

      \n" -"

      {model_names}

      \n" -"

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

      \n" -"

      Visualizza la guida alla qualità di stampa

      " +"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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action" +msgid "Get started" +msgstr "Per iniziare" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +msgctxt "@action" +msgid "Learn more" +msgstr "Ulteriori informazioni" + +#: /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 "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 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "Aggiornare la stampante" + +#: /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 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 +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 +#, 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 +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 +msgctxt "@action" +msgid "Configure group" +msgstr "Configurare il gruppo" + +#: /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 "Attendere che sia stato inviato il processo corrente." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info:title" +msgid "Network error" +msgstr "Errore di rete" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "Coda piena" + +#: /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 "Processo di stampa inviato con successo alla stampante." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "Stampa sulla rete" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "Collegato alla rete" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "domani" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "oggi" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "Stampa USB" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "Stampa tramite USB" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" -msgid "Mesh Type" -msgstr "Tipo di maglia" +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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "Modello normale" +#: /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 "Stampa ancora in corso. Cura non può avviare un'altra stampa tramite USB finché la precedente non è stata completata." -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "Stampa come supporto" +#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "Stampa in corso" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Modificare le impostazioni per le sovrapposizioni" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Non supportano le sovrapposizioni" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 +#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Solo maglia di riempimento" +msgid "X3D File" +msgstr "File X3D" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 +#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Ritaglio mesh" +msgid "X-Ray view" +msgstr "Vista ai raggi X" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Seleziona impostazioni" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Seleziona impostazioni di personalizzazione per questo modello" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtro..." - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Mostra tutto" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Backup Cura" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Versione Cura" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Macchine" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Materiali" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Profili" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Plugin" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Ulteriori informazioni?" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Esegui backup adesso" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Backup automatico" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "Ripristina" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Cancella backup" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Ripristina backup" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 -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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 -msgctxt "@button" -msgid "Sign in" -msgstr "Accedi" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "I miei backup" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -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/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Impostazioni della stampante" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (Larghezza)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Profondità)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Altezza)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 -msgctxt "@label" -msgid "Build plate shape" -msgstr "Forma del piano di stampa" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 -msgctxt "@label" -msgid "Origin at center" -msgstr "Origine al centro" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 -msgctxt "@label" -msgid "Heated bed" -msgstr "Piano riscaldato" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 -msgctxt "@label" -msgid "Heated build volume" -msgstr "Volume di stampa riscaldato" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 -msgctxt "@label" -msgid "G-code flavor" -msgstr "Versione codice G" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Impostazioni della testina di stampa" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -msgctxt "@label" -msgid "X min" -msgstr "X min" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -msgctxt "@label" -msgid "Y min" -msgstr "Y min" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -msgctxt "@label" -msgid "X max" -msgstr "X max" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -msgctxt "@label" -msgid "Y max" -msgstr "Y max" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "Gantry Height" -msgstr "Altezza gantry" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Numero di estrusori" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Applica offset estrusore a gcode" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "Codice G avvio" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "Codice G fine" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Impostazioni ugello" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 -msgctxt "@label" -msgid "Nozzle size" -msgstr "Dimensione ugello" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Diametro del materiale compatibile" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Scostamento X ugello" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Scostamento Y ugello" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Numero ventola di raffreddamento" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "Codice G avvio estrusore" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "Codice G fine estrusore" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "Stampante" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Aggiornamento firmware" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Aggiorna automaticamente il firmware" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Carica il firmware personalizzato" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Seleziona il firmware personalizzato" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Aggiornamento del firmware" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Updating firmware." -msgstr "Aggiornamento firmware." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Aggiornamento del firmware completato." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "Aggiornamento firmware non riuscito a causa di un errore sconosciuto." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "Aggiornamento firmware non riuscito a causa di un errore di comunicazione." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "Aggiornamento firmware non riuscito per firmware mancante." - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 msgctxt "@title:window" msgid "Open Project" msgstr "Apri progetto" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 msgctxt "@action:ComboBox Update/override existing profile" msgid "Update existing" msgstr "Aggiorna esistente" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Impostazioni della stampante" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Impostazioni profilo" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 msgctxt "@action:label" msgid "Derivative from" msgstr "Derivato da" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 -msgctxt "@action:label" -msgid "Material settings" -msgstr "Impostazioni materiale" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 msgctxt "@action:label" msgid "Mode" msgstr "Modalità" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 msgctxt "@action:label" msgid "Visible settings:" msgstr "Impostazioni visibili:" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 su %2" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 msgctxt "@action:button" msgid "Open" msgstr "Apri" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "Apri il progetto comunque" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:529 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "Installa materiale mancante" + +#: /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 "Post Processing Plugin" -msgstr "Plug-in di post-elaborazione" +msgid "Cura Backups" +msgstr "Backup Cura" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 +#: /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 "Salva progetto Cura e stampa file" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "Salva progetto Cura" + +#: /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 "Post Processing Scripts" -msgstr "Script di post-elaborazione" +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/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "Aggiungi uno script" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 msgctxt "@label" -msgid "Settings" -msgstr "Impostazioni" +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/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Modificare gli script di post-elaborazione attivi." +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Aggiorna automaticamente il firmware" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 -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/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Carica il firmware personalizzato" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /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 "Convert Image..." -msgstr "Converti immagine..." +msgid "Select custom firmware" +msgstr "Seleziona il firmware personalizzato" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 -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/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Aggiornamento del firmware" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "L'altezza della base dal piano di stampa in millimetri." +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "La distanza massima di ciascun pixel da \"Base.\"" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 msgctxt "@action:label" msgid "Base (mm)" msgstr "Base (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate." -msgstr "La larghezza in millimetri sul piano di stampa." +msgid "The base height from the build plate in millimeters." +msgstr "L'altezza della base dal piano di stampa in millimetri." -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 msgctxt "@action:label" msgid "Width (mm)" msgstr "Larghezza (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "La profondità in millimetri sul piano di stampa" +msgid "The width in millimeters on the build plate" +msgstr "La larghezza in millimetri sul piano di stampa" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 msgctxt "@action:label" msgid "Depth (mm)" msgstr "Profondità (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 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." +msgid "The depth in millimeters on the build plate" +msgstr "La profondità in millimetri sul piano di stampa" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "Più scuro è più alto" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "Più chiaro è più alto" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 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." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "Traslucenza" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 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." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "Trasmittanza di 1 mm (%)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "La quantità di smoothing (levigatura) da applicare all'immagine." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 msgctxt "@action:label" msgid "Smoothing" msgstr "Smoothing" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /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/clamboo/Desktop/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" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "Piano di stampa riscaldato (kit ufficiale o integrato)" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Livellamento del piano di stampa" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Avvio livellamento del piano di stampa" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Spostamento alla posizione successiva" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Maggiori informazioni sulla raccolta di dati anonimi" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -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/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Non desidero inviare dati anonimi" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Consenti l'invio di dati anonimi" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" -msgid "Marketplace" -msgstr "Mercato" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -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." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "Chiudere %1" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "Installazione" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -msgctxt "@action:button" -msgid "Installed" -msgstr "Installa" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "Premium" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 -msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "Vai al Marketplace web" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 -msgctxt "@label" -msgid "Search materials" -msgstr "Cerca materiali" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "Compatibilità" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "Macchina" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "Piano di stampa" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "Supporto" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "Qualità" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "Scheda dati tecnici" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "Scheda dati di sicurezza" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "Linee guida di stampa" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "Sito web" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -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" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "Acquista bobine di materiale" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "Aggiorna" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "Aggiornamento in corso" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "Aggiornamento eseguito" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "Indietro" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 msgctxt "@title:tab" -msgid "Plugins" -msgstr "Plugin" +msgid "Printer" +msgstr "Stampante" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materiali" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Impostazioni ugello" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "Installa" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 msgctxt "@label" -msgid "Will install upon restarting" -msgstr "L'installazione sarà eseguita al riavvio" +msgid "Nozzle size" +msgstr "Dimensione ugello" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "Log in deve essere aggiornato" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Downgrade" -msgstr "Downgrade" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "Disinstalla" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /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 "Community Contributions" -msgstr "Contributi della comunità" +msgid "mm" +msgstr "mm" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 msgctxt "@label" -msgid "Community Plugins" -msgstr "Plugin della comunità" +msgid "Compatible material diameter" +msgstr "Diametro del materiale compatibile" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 msgctxt "@label" -msgid "Generic Materials" -msgstr "Materiali generici" +msgid "Nozzle offset X" +msgstr "Scostamento X ugello" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "Recupero dei pacchetti..." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 msgctxt "@label" -msgid "Website" -msgstr "Sito web" +msgid "Nozzle offset Y" +msgstr "Scostamento Y ugello" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 msgctxt "@label" -msgid "Email" -msgstr "E-mail" +msgid "Cooling Fan Number" +msgstr "Numero ventola di raffreddamento" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -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" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "Codice G avvio estrusore" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 +#: /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 "Version" -msgstr "Versione" +msgid "X (Width)" +msgstr "X (Larghezza)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 msgctxt "@label" -msgid "Last updated" -msgstr "Ultimo aggiornamento" +msgid "Y (Depth)" +msgstr "Y (Profondità)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 msgctxt "@label" -msgid "Brand" -msgstr "Marchio" +msgid "Z (Height)" +msgstr "Z (Altezza)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 msgctxt "@label" -msgid "Downloads" -msgstr "Download" +msgid "Build plate shape" +msgstr "Forma del piano di stampa" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "Plugin installati" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "Non è stato installato alcun plugin." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "Materiali installati" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 -msgctxt "@info" -msgid "No material has been installed." -msgstr "Non è stato installato alcun materiale." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "Plugin inseriti nel bundle" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "Materiali inseriti nel bundle" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -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." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "È necessario accettare la licenza per installare il pacchetto" +msgid "Origin at center" +msgstr "Origine al centro" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 msgctxt "@button" msgid "Dismiss" msgstr "Rimuovi" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "Conferma disinstalla" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "Installa materiali mancanti" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -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." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "Accordo di licenza plugin" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "Materiali" +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "Profili" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "Accetto" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "Conferma" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 +msgctxt "@header" +msgid "Manage packages" +msgstr "Gestisci pacchetti" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "Schema colori" +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Colore materiale" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "Gestisci pacchetti" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Tipo di linea" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Velocità" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Spessore layer" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Larghezza della linea" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Flusso" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Modalità di compatibilità" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "Spostamenti" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "Helper" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "Guscio" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "Riempimento" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "Avvia" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Mostra solo strati superiori" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "Mostra 5 strati superiori in dettaglio" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Superiore / Inferiore" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Parete interna" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "min" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "max" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Gestione stampanti" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -msgctxt "@label" -msgid "Glass" -msgstr "Vetro" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" msgid "Loading..." msgstr "Caricamento in corso..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Non disponibile" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "Plugin" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Non raggiungibile" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "Materiali" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "Ferma" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193 +msgctxt "@info" +msgid "Search in the browser" +msgstr "Cerca nel browser" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Preparazione in corso..." +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "Stampa in corso" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 +#: /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 "Untitled" -msgstr "Senza titolo" +msgid "You need to accept the license to install the package" +msgstr "È necessario accettare la licenza per installare il pacchetto" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anonimo" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Richiede modifiche di configurazione" +#: /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 "Per mezzo di" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "Dettagli" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Enable" +msgstr "Abilita" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Stampante non disponibile" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Disable" +msgstr "Disabilita" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "Primo disponibile" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 +msgctxt "@button" +msgid "Downgrading..." +msgstr "Downgrade in corso..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "Coda di stampa" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 +msgctxt "@button" +msgid "Downgrade" +msgstr "Downgrade" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Gestisci nel browser" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 +msgctxt "@button" +msgid "Installing..." +msgstr "Installazione in corso..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -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/Marketplace/resources/qml/PackageCardHeader.qml:250 +msgctxt "@button" +msgid "Install" +msgstr "Installazione" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "Processi di stampa" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254 +msgctxt "@button" +msgid "Uninstall" +msgstr "Disinstalla" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "Tempo di stampa totale" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Updating..." +msgstr "Aggiornamento in corso..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "In attesa" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Stampa sulla rete" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 -msgctxt "@action:button" -msgid "Print" -msgstr "Stampa" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 -msgctxt "@label" -msgid "Printer selection" -msgstr "Selezione stampante" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Modifiche configurazione" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "Override" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Cambia materiale %1 da %2 a %3." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "Caricare %3 come materiale %1 (Operazione non annullabile)." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Cambia print core %1 da %2 a %3." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "Cambia piano di stampa a %1 (Operazione non annullabile)." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "Alluminio" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Finished" -msgstr "Terminato" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Interr. in corso..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Interrotto" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Failed" -msgstr "Non riuscita" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Messa in pausa..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Paused" -msgstr "In pausa" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Ripresa in corso..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 -msgctxt "@label:status" -msgid "Action required" -msgstr "Richiede un'azione" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Finisce %1 a %2" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Collega alla stampante in rete" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Selezionare la stampante dall’elenco seguente:" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "Modifica" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 -msgctxt "@action:button" -msgid "Remove" -msgstr "Rimuovi" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Update" msgstr "Aggiorna" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -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/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "Dettagli pacchetto" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "Tipo" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "Indietro" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "Versione firmware" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "Descrizione" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "Indirizzo" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:110 +msgctxt "@header" +msgid "Compatible printers" +msgstr "Stampanti compatibili" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -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/Marketplace/resources/qml/PackagePage.qml:134 +msgctxt "@info" +msgid "No compatibility information" +msgstr "Nessuna informazione sulla compatibilità" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -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/Marketplace/resources/qml/PackagePage.qml:152 +msgctxt "@header" +msgid "Compatible support materials" +msgstr "Materiali di supporto compatibili" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -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/Marketplace/resources/qml/PackagePage.qml:176 +msgctxt "@info No materials" +msgid "None" +msgstr "Nessuno" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "Collega" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Indirizzo IP non valido" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +#: /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 "Please enter a valid IP address." -msgstr "Inserire un indirizzo IP valido." +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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Indirizzo stampante" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 -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/Marketplace/resources/qml/VerifiedIcon.qml:22 +msgctxt "@info" +msgid "Ultimaker Certified Material" +msgstr "Materiale certificato Ultimaker" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "Sposta in alto" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 +msgctxt "@info" +msgid "Ultimaker Verified Package" +msgstr "Pacchetto verificato Ultimaker" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Cancella" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "Riprendi" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Messa in pausa..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Ripresa in corso..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "Pausa" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Interr. in corso..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Interrompi" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Sposta il processo di stampa in alto" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Cancella processo di stampa" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Interrompi la stampa" - -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" msgid "" "Please make sure your printer has a connection:\n" @@ -3327,2169 +2667,654 @@ msgstr "" "- Controllare se la stampante è collegata alla rete.\n" "- Controllare se è stato effettuato l'accesso per rilevare le stampanti collegate al cloud." -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /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/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /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/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /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/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "Visualizzazione 3D" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "Visualizzazione frontale" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "Visualizzazione superiore" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "Vista sinistra" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "Vista destra" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 msgctxt "@label" -msgid "Object list" -msgstr "Elenco oggetti" +msgid "Mesh Type" +msgstr "Tipo di maglia" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 +#: /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 "Marketplace" -msgstr "Mercato" +msgid "Select settings" +msgstr "Seleziona impostazioni" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "&File" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "&Modifica" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "&Visualizza" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "&Impostazioni" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "Es&tensioni" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "P&referenze" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "&Help" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 msgctxt "@title:window" -msgid "New project" -msgstr "Nuovo progetto" +msgid "Select Settings to Customize for this model" +msgstr "Seleziona impostazioni di personalizzazione per questo modello" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 -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/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filtro..." -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 -msgctxt "@label:PrintjobStatus" -msgid "Slicing..." -msgstr "Sezionamento in corso..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Mostra tutto" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 -msgctxt "@label:PrintjobStatus" -msgid "Unable to slice" -msgstr "Sezionamento impossibile" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "Plug-in di post-elaborazione" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Processing" -msgstr "Elaborazione in corso" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Slice" -msgstr "Sezionamento" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 msgctxt "@label" -msgid "Start the slicing process" -msgstr "Avvia il processo di sezionamento" +msgid "Post Processing Scripts" +msgstr "Script di post-elaborazione" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 -msgctxt "@button" -msgid "Cancel" -msgstr "Annulla" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +msgctxt "@action" +msgid "Add a script" +msgstr "Aggiungi uno script" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 msgctxt "@label" -msgid "Time estimation" -msgstr "Stima del tempo" +msgid "Settings" +msgstr "Impostazioni" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +#: /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 "Material estimation" -msgstr "Stima del materiale" +msgid "Color scheme" +msgstr "Schema colori" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Colore materiale" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Tipo di linea" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: /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 "No time estimation available" -msgstr "Nessuna stima di tempo disponibile" +msgid "Compatibility Mode" +msgstr "Modalità di compatibilità" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 msgctxt "@label" -msgid "No cost estimation available" -msgstr "Nessuna stima di costo disponibile" +msgid "Travels" +msgstr "Spostamenti" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "Anteprima" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 msgctxt "@label" -msgid "Add a printer" -msgstr "Aggiungi una stampante" +msgid "Helpers" +msgstr "Helper" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 msgctxt "@label" -msgid "Add a networked printer" -msgstr "Aggiungi una stampante in rete" +msgid "Shell" +msgstr "Guscio" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +#: /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 "Add a non-networked printer" -msgstr "Aggiungi una stampante non in rete" +msgid "Infill" +msgstr "Riempimento" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "Aggiungere una stampante cloud" +msgid "Starts" +msgstr "Avvia" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "In attesa della risposta del cloud" +msgid "Only Show Top Layers" +msgstr "Mostra solo strati superiori" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 msgctxt "@label" -msgid "No printers found in your account?" -msgstr "Non sono presenti stampanti nel cloud?" +msgid "Show 5 Detailed Layers On Top" +msgstr "Mostra 5 strati superiori in dettaglio" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 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:" +msgid "Top / Bottom" +msgstr "Superiore / Inferiore" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "Aggiungere la stampante manualmente" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 msgctxt "@label" -msgid "Add printer by IP address" -msgstr "Aggiungi stampante per indirizzo IP" +msgid "Inner Wall" +msgstr "Parete interna" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "Inserire l'indirizzo IP della stampante." - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "Aggiungi" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 msgctxt "@label" -msgid "Could not connect to device." -msgstr "Impossibile connettersi al dispositivo." +msgid "min" +msgstr "min" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Non è possibile effettuare la connessione alla stampante Ultimaker?" +msgid "max" +msgstr "max" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +#: /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 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "Livellamento del piano di stampa" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 msgctxt "@label" -msgid "The printer at this address has not responded yet." +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 +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 +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 +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" + +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 -msgctxt "@button" -msgid "Back" -msgstr "Indietro" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +msgctxt "@action:button" msgid "Connect" msgstr "Collega" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "Contratto di licenza" +#: /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/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "Rifiuta e chiudi" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Benvenuto in Ultimaker Cura" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +#: /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 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." +msgid "Please enter a valid IP address." +msgstr "Inserire un indirizzo IP valido." -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "Per iniziare" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Indirizzo stampante" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +#: /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 +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 msgctxt "@label" msgid "Sign in to the Ultimaker platform" msgstr "Accedi alla piattaforma Ultimaker" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "Aggiungi impostazioni materiale e plugin dal Marketplace" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -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" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 -msgctxt "@button" -msgid "Skip" -msgstr "Salta" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Crea un account Ultimaker gratuito" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 -msgctxt "@label" -msgid "Manufacturer" -msgstr "Produttore" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 -msgctxt "@label" -msgid "Profile author" -msgstr "Autore profilo" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 -msgctxt "@label" -msgid "Printer name" -msgstr "Nome stampante" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 -msgctxt "@text" -msgid "Please name your printer" -msgstr "Dare un nome alla stampante" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "Aggiorna" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "Aggiungi stampante per IP" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "Aggiungere una stampante cloud" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "Ricerca e riparazione dei guasti" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Aiutaci a migliorare Ultimaker Cura" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "Tipi di macchine" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "Utilizzo dei materiali" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "Numero di sezionamenti" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "Impostazioni di stampa" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "Ulteriori informazioni" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 -msgctxt "@label" -msgid "What's New" -msgstr "Scopri le novità" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "Vuoto" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "Note sulla versione" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 -msgctxt "@title:window The argument is the application name." -msgid "About %1" -msgstr "Informazioni su %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 -msgctxt "@label" -msgid "version: %1" -msgstr "versione: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 -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 "" -"Cura è stato sviluppato da Ultimaker B.V. in cooperazione con la comunità.\n" -"Cura è orgogliosa di utilizzare i seguenti progetti open source:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 -msgctxt "@label" -msgid "Graphical user interface" -msgstr "Interfaccia grafica utente" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" -msgid "Application framework" -msgstr "Struttura applicazione" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" -msgid "G-code generator" -msgstr "Generatore codice G" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" -msgid "Interprocess communication library" -msgstr "Libreria di comunicazione intra-processo" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" -msgid "Programming language" -msgstr "Lingua di programmazione" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" -msgid "GUI framework" -msgstr "Struttura GUI" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" -msgid "GUI framework bindings" -msgstr "Vincoli struttura GUI" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" -msgid "C/C++ Binding library" -msgstr "Libreria vincoli C/C++" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 -msgctxt "@label" -msgid "Data interchange format" -msgstr "Formato scambio dati" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 -msgctxt "@label" -msgid "Support library for scientific computing" -msgstr "Libreria di supporto per calcolo scientifico" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" -msgid "Support library for faster math" -msgstr "Libreria di supporto per calcolo rapido" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" -msgid "Support library for handling STL files" -msgstr "Libreria di supporto per gestione file STL" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" -msgid "Support library for handling planar objects" -msgstr "Libreria di supporto per gestione oggetti planari" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" -msgid "Support library for handling triangular meshes" -msgstr "Libreria di supporto per gestione maglie triangolari" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" -msgid "Support library for handling 3MF files" -msgstr "Libreria di supporto per gestione file 3MF" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 -msgctxt "@label" -msgid "Support library for file metadata and streaming" -msgstr "Libreria di supporto per metadati file e streaming" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 -msgctxt "@label" -msgid "Serial communication library" -msgstr "Libreria di comunicazione seriale" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 -msgctxt "@label" -msgid "ZeroConf discovery library" -msgstr "Libreria scoperta ZeroConf" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" -msgid "Polygon clipping library" -msgstr "Libreria ritaglio poligono" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@Label" -msgid "Static type checker for Python" -msgstr "Controllo di tipo statico per Python" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@Label" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "Certificati di origine per la convalida dell'affidabilità SSL" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 -msgctxt "@Label" -msgid "Python Error tracking library" -msgstr "Libreria per la traccia degli errori Python" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 -msgctxt "@label" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "Libreria di impacchettamento dei poligoni sviluppata da Prusa Research" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -msgctxt "@label" -msgid "Python bindings for libnest2d" -msgstr "Vincoli Python per libnest2d" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" -msgid "Support library for system keyring access" -msgstr "Libreria di supporto per accesso a keyring sistema" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" -msgid "Python extensions for Microsoft Windows" -msgstr "Estensioni Python per Microsoft Windows" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" -msgid "Font" -msgstr "Font" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" -msgid "SVG icons" -msgstr "Icone SVG" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" -msgid "Linux cross-distribution application deployment" -msgstr "Apertura applicazione distribuzione incrociata Linux" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Apri file" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 -msgctxt "@action:button" -msgid "Import all as models" -msgstr "Importa tutto come modelli" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 -msgctxt "@title:window" -msgid "Save Project" -msgstr "Salva progetto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Estrusore %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & materiale" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 -msgctxt "@action:label" -msgid "Material" -msgstr "Materiale" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "Non mostrare il riepilogo di progetto alla ripetizione di salva" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 -msgctxt "@action:button" -msgid "Save" -msgstr "Salva" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 -msgctxt "@title:window" -msgid "Discard or Keep changes" -msgstr "Elimina o mantieni modifiche" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 -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'." - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 -msgctxt "@title:column" -msgid "Profile settings" -msgstr "Impostazioni profilo" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 -msgctxt "@title:column" -msgid "Current changes" -msgstr "Modifiche correnti" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 -msgctxt "@option:discardOrKeep" -msgid "Always ask me this" -msgstr "Chiedi sempre" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 -msgctxt "@option:discardOrKeep" -msgid "Discard and never ask again" -msgstr "Elimina e non chiedere nuovamente" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 -msgctxt "@option:discardOrKeep" -msgid "Keep and never ask again" -msgstr "Mantieni e non chiedere nuovamente" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 -msgctxt "@action:button" -msgid "Discard changes" -msgstr "Elimina modifiche" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 -msgctxt "@action:button" -msgid "Keep changes" -msgstr "Mantieni modifiche" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 -msgctxt "@title:window" -msgid "Open project file" -msgstr "Apri file progetto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "Ricorda la scelta" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 -msgctxt "@action:button" -msgid "Open as project" -msgstr "Apri come progetto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 -msgctxt "@action:button" -msgid "Import models" -msgstr "Importa i modelli" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 -msgctxt "@label" -msgid "Active print" -msgstr "Stampa attiva" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 -msgctxt "@label" -msgid "Job Name" -msgstr "Nome del processo" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 -msgctxt "@label" -msgid "Printing Time" -msgstr "Tempo di stampa" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 -msgctxt "@label" -msgid "Estimated time left" -msgstr "Tempo residuo stimato" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Add printer" -msgstr "Aggiungi stampante" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 -msgctxt "@button" -msgid "Manage printers" -msgstr "Gestione stampanti" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "Stampanti collegate" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "Stampanti preimpostate" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 -msgctxt "@label" -msgid "Print settings" -msgstr "Impostazioni di stampa" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -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/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 -msgctxt "@label" -msgid "Profile" -msgstr "Profilo" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 -msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "" -"Alcuni valori di impostazione/esclusione sono diversi dai valori memorizzati nel profilo.\n" -"\n" -"Fare clic per aprire la gestione profili." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 -msgctxt "@label:header" -msgid "Custom profiles" -msgstr "Profili personalizzati" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "Elimina le modifiche correnti" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "Consigliata" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "Personalizzata" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "Inserita" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "Disinserita" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" -msgstr "Sperimentale" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 -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" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 -msgctxt "@label" -msgid "Profiles" -msgstr "Profili" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 -msgctxt "@label" -msgid "Support" -msgstr "Supporto" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 -msgctxt "@label" -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 -msgctxt "@label" -msgid "Gradual infill" -msgstr "Riempimento graduale" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 -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/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "Adesione" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 -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/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "Salva progetto..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "Stampanti abilitate per la rete" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "Stampanti locali" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "Materiale" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "Preferiti" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "Generale" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 -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/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "Moltiplica modello selezionato" -msgstr[1] "Moltiplica modelli selezionati" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "Numero di copie" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "&Salva progetto..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "&Esporta..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "Esporta selezione..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "Configurazioni" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "Personalizzata" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "Stampante" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "Abilitato" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "Materiale" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 -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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 -msgctxt "@tooltip" -msgid "There are no profiles matching the configuration of this extruder." -msgstr "Nessun profilo corrispondente alla configurazione di questo estrusore." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 -msgctxt "@label" -msgid "Select configuration" -msgstr "Seleziona configurazione" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 -msgctxt "@label" -msgid "Configurations" -msgstr "Configurazioni" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "Mercato" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "Apri file..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "S&tampante" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "Ma&teriale" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Imposta come estrusore attivo" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Abilita estrusore" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Disabilita estrusore" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "Ap&ri recenti" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "Impostazioni visibili" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "Comprimi tutte le categorie" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "Gestisci Impostazione visibilità..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "&Posizione fotocamera" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "Visualizzazione fotocamera" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "Prospettiva" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "Ortogonale" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "P&iano di stampa" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 -msgctxt "@label" -msgid "View type" -msgstr "Visualizza tipo" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 -msgctxt "@label" -msgid "Is printed as support." -msgstr "Viene stampato come supporto." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 -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/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "La sovrapposizione del riempimento con questo modello è stata modificata." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "Le sovrapposizioni con questo modello non sono supportate." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Profili" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 -msgctxt "@action:button" -msgid "Activate" -msgstr "Attiva" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "Crea" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "Duplica" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 -msgctxt "@action:button" -msgid "Rename" -msgstr "Rinomina" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -msgctxt "@action:button" -msgid "Import" -msgstr "Importa" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -msgctxt "@action:button" -msgid "Export" -msgstr "Esporta" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Crea profilo" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "Indica un nome per questo profilo." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Duplica profilo" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Conferma rimozione" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Rinomina profilo" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Importa profilo" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Esporta profilo" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "Stampante: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "Aggiorna il profilo con le impostazioni/esclusioni correnti" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "Le impostazioni correnti corrispondono al profilo selezionato." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Impostazioni globali" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 -msgctxt "@title:tab" -msgid "General" -msgstr "Generale" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 -msgctxt "@label" -msgid "Interface" -msgstr "Interfaccia" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 -msgctxt "@label" -msgid "Currency:" -msgstr "Valuta:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 -msgctxt "@label" -msgid "Theme:" -msgstr "Tema:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Seziona automaticamente alla modifica delle impostazioni." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Seziona automaticamente" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "Comportamento del riquadro di visualizzazione" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Visualizza sbalzo" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "Visualizzare gli errori del modello" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Centratura fotocamera alla selezione dell'elemento" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Inverti la direzione dello zoom della fotocamera." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "Lo zoom si muove nella direzione del mouse?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "Zoom verso la direzione del mouse" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "Assicurarsi che i modelli siano mantenuti separati" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "Rilascia automaticamente i modelli sul piano di stampa" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "Visualizza il messaggio di avvertimento sul lettore codice G." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "Messaggio di avvertimento sul lettore codice G" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "Lo strato deve essere forzato in modalità di compatibilità?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "Forzare la modalità di compatibilità visualizzazione strato (riavvio necessario)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "Aprire Cura nel punto in cui è stato chiuso?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "Ripristinare la posizione della finestra all'avvio" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "Quale tipo di rendering della fotocamera è necessario utilizzare?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "Rendering fotocamera:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 -msgid "Perspective" -msgstr "Prospettiva" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 -msgid "Orthographic" -msgstr "Ortogonale" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Apertura e salvataggio file" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Utilizzare una singola istanza di Cura" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Ridimensiona i modelli troppo grandi" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Ridimensiona i modelli eccessivamente piccoli" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "I modelli devono essere selezionati dopo essere stati caricati?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "Selezionare i modelli dopo il caricamento" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "Aggiungi al nome del processo un prefisso macchina" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "Visualizza una finestra di riepilogo quando si salva un progetto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "Comportamento predefinito all'apertura di un file progetto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "Comportamento predefinito all'apertura di un file progetto: " - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "Chiedi sempre" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Apri sempre come progetto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Importa sempre i modelli" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "Elimina sempre le impostazioni modificate" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "Trasferisci sempre le impostazioni modificate a un nuovo profilo" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 -msgctxt "@label" -msgid "Privacy" -msgstr "Privacy" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "Invia informazioni di stampa (anonime)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 -msgctxt "@action:button" -msgid "More information" -msgstr "Ulteriori informazioni" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 -msgctxt "@label" -msgid "Updates" -msgstr "Aggiornamenti" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Controlla aggiornamenti all’avvio" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 -msgctxt "@option:radio" -msgid "Stable releases only" -msgstr "Solo versioni stabili" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 -msgctxt "@option:radio" -msgid "Stable and Beta releases" -msgstr "Versioni stabili e beta" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 -msgctxt "@option:check" -msgid "Get notifications for plugin updates" -msgstr "Ricevi notifiche di aggiornamenti plugin" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "Informazioni" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "Conferma modifica diametro" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "Visualizza nome" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "Tipo di materiale" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "Colore" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "Proprietà" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "Densità" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "Diametro" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "Costo del filamento" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "Peso del filamento" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "Lunghezza del filamento" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Costo al metro" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "Scollega materiale" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "Descrizione" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Informazioni sull’aderenza" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "Crea" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Duplica" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "Sincronizza con le stampanti" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "Stampante" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Importa materiale" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "Impossibile importare materiale {1}: %2" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Materiale importato correttamente %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Esporta materiale" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Materiale esportato correttamente su %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 -msgctxt "@title:window" -msgid "Sync materials with printers" -msgstr "Sincronizza materiali con stampanti" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 -msgctxt "@title:header" -msgid "Sync materials with printers" -msgstr "Sincronizza materiali con stampanti" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 -msgctxt "@button" -msgid "Start" -msgstr "Avvio" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 -msgctxt "@button" -msgid "Why do I need to sync material profiles?" -msgstr "Cosa occorre per sincronizzare i profili del materiale?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 -msgctxt "@title:header" -msgid "Sign in" -msgstr "Accedi" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 -msgctxt "@button" -msgid "Sync materials with USB" -msgstr "Sincronizza materiali con USB" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 -msgctxt "@title:header" -msgid "The following printers will receive the new material profiles:" -msgstr "Le stampanti seguenti riceveranno i nuovi profili del materiale:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 -msgctxt "@button" -msgid "Troubleshooting" -msgstr "Ricerca e riparazione dei guasti" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 -msgctxt "@text Asking the user whether printers are missing in a list." -msgid "Printers missing?" -msgstr "Mancano stampanti?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 -msgctxt "@button" -msgid "Refresh List" -msgstr "Aggiorna elenco" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 -msgctxt "@button" -msgid "Try again" -msgstr "Riprova" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Done" -msgstr "Eseguito" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 -msgctxt "@button" -msgid "Sync" -msgstr "Sincronizza" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 -msgctxt "@button" -msgid "Syncing" -msgstr "Sincronizzazione" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 -msgctxt "@title:header" -msgid "No printers found" -msgstr "Nessuna stampante trovata" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 -msgctxt "@button" -msgid "Learn how to connect your printer to Digital Factory" -msgstr "Scopri come collegare la stampante a Digital Factory" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 -msgctxt "@button" -msgid "Refresh" -msgstr "Aggiorna" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 -msgctxt "@title:header" -msgid "Sync material profiles via USB" -msgstr "Sincronizza profili del materiale tramite USB" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 -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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 -msgctxt "@button" -msgid "How to load new material profiles to my printer" -msgstr "Come caricare nuovi profili del materiale nella stampante" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Export material archive" -msgstr "Esporta archivio materiali" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "Esporta tutti i materiali" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Impostazione visibilità" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Controlla tutto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 -msgctxt "@title:tab" -msgid "Printers" -msgstr "Stampanti" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Calcolato" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "Impostazione" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "Profilo" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "Corrente" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "Unità" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "Non collegato ad una stampante" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "La stampante non accetta comandi" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "In manutenzione. Controllare la stampante" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "Persa connessione con la stampante" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "Stampa in corso..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "In pausa" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "Preparazione in corso..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Rimuovere la stampa" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "Interrompi la stampa" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "Sei sicuro di voler interrompere la stampa?" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 -msgctxt "@label:button" -msgid "My printers" -msgstr "Le mie stampanti" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 -msgctxt "@label:button" -msgid "Print jobs" -msgstr "Processi di stampa" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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." - -#: /home/clamboo/Desktop/Cura/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." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 -msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "Supporto Ultimaker" - -#: /home/clamboo/Desktop/Cura/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." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 -msgctxt "@label:button" -msgid "Ask a question" -msgstr "Fai una domanda" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 -msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "Consulta la community di Ultimaker." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 -msgctxt "@label:button" -msgid "Report a bug" -msgstr "Segnala un errore" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 -msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "Visita il sito Web Ultimaker." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "Comando stampante" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "Posizione Jog" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Distanza Jog" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "Invia codice G" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "Estrusore" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "La temperatura corrente di questa estremità calda." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "La temperatura di preriscaldo dell’estremità calda." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Annulla" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Pre-riscaldo" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Il colore del materiale di questo estrusore." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Il materiale di questo estrusore." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "L’ugello inserito in questo estrusore." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "La stampante non è collegata." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "Piano di stampa" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -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/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "La temperatura di preriscaldo del piano." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -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/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "Accedi" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 msgctxt "@text" msgid "" "- Add material profiles and plug-ins from the Marketplace\n" @@ -5500,375 +3325,2253 @@ msgstr "" "- 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/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" msgid "Create a free Ultimaker account" msgstr "Crea un account Ultimaker gratuito" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "Ultimo aggiornamento: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Account Ultimaker" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 -msgctxt "@button" -msgid "Sign Out" -msgstr "Esci" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "Verifica in corso..." -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "Account sincronizzato" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "Si è verificato un errore..." -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "Installare gli aggiornamenti in attesa" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "Verificare gli aggiornamenti dell'account" -#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "Senza titolo" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "Ultimo aggiornamento: %1" -#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "Account Ultimaker" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "Esci" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" -msgid "No items to select from" -msgstr "Nessun elemento da selezionare da" +msgid "No time estimation available" +msgstr "Nessuna stima di tempo disponibile" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Preview" +msgstr "Anteprima" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Material estimation" +msgstr "Stima del materiale" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:PrintjobStatus" +msgid "Unable to slice" +msgstr "Sezionamento impossibile" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Slice" +msgstr "Sezionamento" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Cancel" +msgstr "Annulla" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "Mostra la Guida ricerca e riparazione dei guasti online" +msgid "Show Online Troubleshooting" +msgstr "Mostra ricerca e riparazione dei guasti online" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "Attiva/disattiva schermo intero" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "Esci da schermo intero" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "&Annulla" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "Ri&peti" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "&Esci" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "Visualizzazione 3D" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Visualizzazione frontale" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "Visualizzazione superiore" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "Vista inferiore" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "Visualizzazione lato sinistro" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "Visualizzazione lato destro" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "Configura Cura..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "&Aggiungi stampante..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "Gestione stampanti..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Gestione materiali..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu" +#: /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." msgid "Add more materials from Marketplace" msgstr "Aggiungere altri materiali da Marketplace" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 msgctxt "@action:inmenu menubar:profile" msgid "&Update profile with current settings/overrides" msgstr "&Aggiorna il profilo con le impostazioni/esclusioni correnti" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "&Elimina le modifiche correnti" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." msgstr "&Crea profilo dalle impostazioni/esclusioni correnti..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "Gestione profili..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Mostra documentazione &online" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "Se&gnala un errore" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "Scopri le novità" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "Informazioni..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "Cancella selezionati" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "Centra selezionati" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "Moltiplica selezionati" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Elimina modello" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "C&entra modello su piattaforma" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "&Raggruppa modelli" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Separa modelli" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "&Unisci modelli" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "Mo<iplica modello..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "Seleziona tutti i modelli" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "Cancellare piano di stampa" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "Ricarica tutti i modelli" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "Sistema tutti i modelli su tutti i piani di stampa" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Sistema tutti i modelli" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Sistema selezione" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Reimposta tutte le posizioni dei modelli" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "Reimposta tutte le trasformazioni dei modelli" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "&Apri file..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&Nuovo Progetto..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Mostra cartella di configurazione" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Configura visibilità delle impostazioni..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "&Mercato" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "Le mie stampanti" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "Processi di stampa" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +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 +msgctxt "@tooltip:button" +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 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "Supporto Ultimaker" + +#: /home/trin/Gedeeld/Projects/Cura/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." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "Consulta la community di Ultimaker." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "Visita il sito Web Ultimaker." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 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." +msgid "Hex" +msgstr "Esagonale" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 -msgctxt "@label Header for list of settings." -msgid "Affects" -msgstr "Influisce su" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 -msgctxt "@label Header for list of settings." -msgid "Affected By" -msgstr "Influenzato da" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 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." +msgid "This package will be installed after restarting." +msgstr "Questo pacchetto sarà installato dopo il riavvio." -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 -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/Cura.qml:463 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +msgctxt "@title:tab" +msgid "General" +msgstr "Generale" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +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 +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 +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 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Profili" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +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 +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 +msgctxt "@title:window" +msgid "Open file(s)" +msgstr "Apri file" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +msgctxt "@window:title" +msgid "Install Package" +msgstr "Installa il pacchetto" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Apri file" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +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 +msgctxt "@title:window" +msgid "Add Printer" +msgstr "Aggiungi stampante" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +msgctxt "@title:window" +msgid "What's New" +msgstr "Scopri le novità" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" +msgid "version: %1" +msgstr "versione: %1" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +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 +msgctxt "@info:credit" msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." +"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura proudly uses the following open source projects:" msgstr "" -"Questa impostazione ha un valore diverso dal profilo.\n" -"\n" -"Fare clic per ripristinare il valore del profilo." +"Cura è stato sviluppato da Ultimaker B.V. in cooperazione con la comunità.\n" +"Cura è orgogliosa di utilizzare i seguenti progetti open source:" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"Questa impostazione normalmente viene calcolata, ma attualmente ha impostato un valore assoluto.\n" -"\n" -"Fare clic per ripristinare il valore calcolato." +msgid "Graphical user interface" +msgstr "Interfaccia grafica utente" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +msgctxt "@label" +msgid "Application framework" +msgstr "Struttura applicazione" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label" +msgid "G-code generator" +msgstr "Generatore codice G" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label" +msgid "Interprocess communication library" +msgstr "Libreria di comunicazione intra-processo" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label" +msgid "Python bindings for libnest2d" +msgstr "Vincoli Python per libnest2d" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 +msgctxt "@label" +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" +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" +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" +msgid "Programming language" +msgstr "Lingua di programmazione" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +msgctxt "@label" +msgid "GUI framework" +msgstr "Struttura GUI" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label" +msgid "GUI framework bindings" +msgstr "Vincoli struttura GUI" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label" +msgid "C/C++ Binding library" +msgstr "Libreria vincoli C/C++" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label" +msgid "Data interchange format" +msgstr "Formato scambio dati" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label" +msgid "Font" +msgstr "Font" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +msgctxt "@label" +msgid "Polygon clipping library" +msgstr "Libreria ritaglio poligono" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +msgctxt "@label" +msgid "JSON parser" +msgstr "Analizzatore JSON" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label" +msgid "Utility functions, including an image loader" +msgstr "Funzioni di utilità, tra cui un caricatore di immagini" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label" +msgid "Utility library, including Voronoi generation" +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" +msgid "Root Certificates for validating SSL trustworthiness" +msgstr "Certificati di origine per la convalida dell'affidabilità SSL" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +msgctxt "@label" +msgid "Compatibility between Python 2 and 3" +msgstr "Compatibilità tra Python 2 e 3" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label" +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" +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" +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" +msgid "Python bindings for Clipper" +msgstr "Vincoli Python per Clipper" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label" +msgid "Serial communication library" +msgstr "Libreria di comunicazione seriale" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label" +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" +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" +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" +msgid "ZeroConf discovery library" +msgstr "Libreria scoperta ZeroConf" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 +msgctxt "@label" +msgid "Universal build system configuration" +msgstr "Configurazione universale del sistema di build" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 +msgctxt "@label" +msgid "Dependency and package manager" +msgstr "Gestore della dipendenza e del pacchetto" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label" +msgid "Packaging Python-applications" +msgstr "Pacchetto applicazioni Python" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label" +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" +msgid "Generating Windows installers" +msgstr "Generazione installatori Windows" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "Ricorda la scelta" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +msgctxt "@action:button" +msgid "Open as project" +msgstr "Apri come progetto" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +msgctxt "@action:button" +msgid "Import models" +msgstr "Importa i modelli" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 "" +"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'." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +msgctxt "@title:column" +msgid "Profile settings" +msgstr "Impostazioni profilo" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +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 +msgctxt "@option:discardOrKeep" +msgid "Always ask me this" +msgstr "Chiedi sempre" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +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 +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 +msgctxt "@action:button" +msgid "Discard changes" +msgstr "Elimina modifiche" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +msgctxt "@action:button" +msgid "Keep changes" +msgstr "Mantieni modifiche" + +#: /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?" +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 +msgctxt "@action:button" +msgid "Import all as models" +msgstr "Importa tutto come modelli" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Estrusore %1" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & materiale" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +msgctxt "@action:label" +msgid "Material" +msgstr "Materiale" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +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 +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 +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 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "&Impostazioni" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Marketplace" +msgstr "Mercato" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Marketplace" +msgstr "Mercato" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@label" +msgid "Select configuration" +msgstr "Seleziona configurazione" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Enabled" +msgstr "Abilitato" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +msgctxt "@label" +msgid "Material" +msgstr "Materiale" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +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 +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 +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 +msgctxt "@label" +msgid "Number of Copies" +msgstr "Numero di copie" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "Es&tensioni" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "&Salva progetto..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "Esporta selezione..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "Materiale" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "Generale" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "P&referenze" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label:category menu label" +msgid "Local printers" +msgstr "Stampanti locali" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "Impostazioni visibili" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "Gestisci Impostazione visibilità..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "&Posizione fotocamera" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "Prospettiva" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "Stampa in corso..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "In pausa" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "Preparazione in corso..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Abort Print" +msgstr "Interrompi la stampa" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Is printed as support." +msgstr "Viene stampato come supporto." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Defaults" +msgstr "Valori predefiniti" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +msgctxt "@label" +msgid "Interface" +msgstr "Interfaccia" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +msgctxt "@heading" +msgid "-- incomplete --" +msgstr "-- incompleto --" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +msgctxt "@label" +msgid "Currency:" +msgstr "Valuta:" + +#: /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." +msgid "Theme*:" +msgstr "Tema*:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +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 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "Seziona automaticamente" + +#: /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." +msgstr "*Per rendere effettive le modifiche è necessario riavviare l'applicazione." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "Comportamento del riquadro di visualizzazione" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +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 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "Visualizza sbalzo" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +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 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "Visualizzare gli errori del modello" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "Rendering fotocamera:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +msgid "Perspective" +msgstr "Prospettiva" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +msgid "Orthographic" +msgstr "Ortogonale" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "Apertura e salvataggio file" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +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 +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 +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 +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 +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 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "Ridimensiona i modelli troppo grandi" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "Chiedi sempre" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +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 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "Importa sempre i modelli" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +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 +msgctxt "@label" +msgid "Profiles" +msgstr "Profili" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +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 +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 +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 +msgctxt "@label" +msgid "Privacy" +msgstr "Privacy" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +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 +msgctxt "@label" +msgid "Updates" +msgstr "Aggiornamenti" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +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 +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 +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 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "Solo versioni stabili" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +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 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "Versioni stabili e beta" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Rename" +msgstr "Rinomina" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Import" +msgstr "Importa" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Importa materiale" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Esporta materiale" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +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 +msgctxt "@button" +msgid "Start" +msgstr "Avvio" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +msgctxt "@title:header" +msgid "Sign in" +msgstr "Accedi" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +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 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "Sincronizza materiali con USB" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +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 +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 +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 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "Ricerca e riparazione dei guasti" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +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 +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 +msgctxt "@button" +msgid "Refresh List" +msgstr "Aggiorna elenco" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +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 +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 +msgctxt "@button" +msgid "Sync" +msgstr "Sincronizza" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +msgctxt "@button" +msgid "Syncing" +msgstr "Sincronizzazione" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +msgctxt "@title:header" +msgid "No printers found" +msgstr "Nessuna stampante trovata" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +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 +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 +msgctxt "@button" +msgid "Refresh" +msgstr "Aggiorna" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +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 +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 +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 +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 +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 +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 +msgctxt "@button" +msgid "Back" +msgstr "Indietro" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +msgctxt "@button" +msgid "Export material archive" +msgstr "Esporta archivio materiali" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "Esporta tutti i materiali" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Display Name" +msgstr "Visualizza nome" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Material Type" +msgstr "Tipo di materiale" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title" +msgid "Material color picker" +msgstr "Selettore colore materiale" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Density" +msgstr "Densità" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Filament Cost" +msgstr "Costo del filamento" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Filament length" +msgstr "Lunghezza del filamento" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Unlink Material" +msgstr "Scollega materiale" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Adhesion Information" +msgstr "Informazioni sull’aderenza" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Print settings" +msgstr "Impostazioni di stampa" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@action:button" +msgid "Update profile." +msgstr "Aggiornare il profilo." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "Elimina le modifiche correnti" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Impostazioni globali" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Esporta profilo" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "Impostazione visibilità" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" -msgid "Search settings" -msgstr "Impostazioni ricerca" +msgid "Check all" +msgstr "Controlla tutto" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 -msgctxt "@action:menu" -msgid "Copy value to all extruders" -msgstr "Copia valore su tutti gli estrusori" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "Estrusore" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 -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/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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 -msgctxt "@action:menu" -msgid "Hide this setting" -msgstr "Nascondi questa impostazione" +#: /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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 -msgctxt "@action:menu" -msgid "Don't show this setting" -msgstr "Nascondi questa impostazione" +#: /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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 -msgctxt "@action:menu" -msgid "Keep this setting visible" -msgstr "Mantieni visibile questa impostazione" +#: /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/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 +#: /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 +msgctxt "@label" +msgid "Active print" +msgstr "Stampa attiva" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +msgctxt "@label" +msgid "Job Name" +msgstr "Nome del processo" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +msgctxt "@label" +msgid "Printing Time" +msgstr "Tempo di stampa" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Profile" +msgstr "Profilo" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 +msgctxt "@tooltip" +msgid "" +"Some setting/override values are different from the values stored in the profile.\n" +"\n" +"Click to open the profile manager." +msgstr "" +"Alcuni valori di impostazione/esclusione sono diversi dai valori memorizzati nel profilo.\n" +"\n" +"Fare clic per aprire la gestione profili." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@label:Should be short" +msgid "On" +msgstr "Inserita" + +#: /home/trin/Gedeeld/Projects/Cura/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" + +#: /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 "il profilo personalizzato è attivo e sono state sovrascritte alcune impostazioni." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +msgctxt "@info" +msgid "custom profile is overriding some settings." +msgstr "il profilo personalizzato sta sovrascrivendo alcune impostazioni." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 +msgctxt "@info" +msgid "Some settings were changed." +msgstr "Alcune impostazioni sono state modificate." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +msgctxt "@label" +msgid "Adhesion" +msgstr "Adesione" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +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 +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" +msgstr "Risoluzione" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +msgctxt "@label" +msgid "Support" +msgstr "Supporto" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +msgctxt "@label" +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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +msgctxt "@error" +msgid "Configuration not supported" +msgstr "Configurazione non supportata" + +#: /home/trin/Gedeeld/Projects/Cura/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 "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 +msgctxt "@button:label" +msgid "Learn more" +msgstr "Ulteriori informazioni" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +msgctxt "@title:column" +msgid "Setting" +msgstr "Impostazione" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +msgctxt "@title:column" +msgid "Profile" +msgstr "Profilo" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +msgctxt "@title:column" +msgid "Current" +msgstr "Corrente" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@placeholder" +msgid "Search" +msgstr "Cerca" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5879,141 +5582,359 @@ msgstr "" "\n" "Fare clic per rendere visibili queste impostazioni." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "Questo pacchetto sarà installato dopo il riavvio." +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/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 -msgctxt "@title:tab" -msgid "Settings" -msgstr "Impostazioni" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +msgctxt "@label Header for list of settings." +msgid "Affects" +msgstr "Influisce su" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "Chiusura di %1" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +msgctxt "@label Header for list of settings." +msgid "Affected By" +msgstr "Influenzato da" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 -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/Settings/SettingItem.qml:190 +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/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 -msgctxt "@window:title" -msgid "Install Package" -msgstr "Installa il pacchetto" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +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/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Apri file" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +msgctxt "@label" +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"Questa impostazione ha un valore diverso dal profilo.\n" +"\n" +"Fare clic per ripristinare il valore del profilo." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 -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/Settings/SettingItem.qml:334 +msgctxt "@label" +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"Questa impostazione normalmente viene calcolata, ma attualmente ha impostato un valore assoluto.\n" +"\n" +"Fare clic per ripristinare il valore calcolato." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 -msgctxt "@title:window" -msgid "Add Printer" -msgstr "Aggiungi stampante" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +msgctxt "@label:textbox" +msgid "Search settings" +msgstr "Impostazioni ricerca" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 -msgctxt "@title:window" +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:menu" +msgid "Hide this setting" +msgstr "Nascondi questa impostazione" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:menu" +msgid "Keep this setting visible" +msgstr "Mantieni visibile questa impostazione" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:25 +msgctxt "@info:tooltip" +msgid "3D View" +msgstr "Visualizzazione 3D" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +msgctxt "@info:tooltip" +msgid "Front View" +msgstr "Visualizzazione frontale" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "Visualizzazione superiore" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "Vista sinistra" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "Vista destra" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "Visualizza tipo" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@button" +msgid "Add printer manually" +msgstr "Aggiungere la stampante manualmente" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +msgctxt "@label" +msgid "Manufacturer" +msgstr "Produttore" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Printer name" +msgstr "Nome stampante" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Refresh" +msgstr "Aggiorna" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "Ricerca e riparazione dei guasti" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Add" +msgstr "Aggiungi" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +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 +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 +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 +msgctxt "@button" +msgid "Connect" +msgstr "Collega" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +msgctxt "@button" +msgid "Skip" +msgstr "Salta" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +msgctxt "@text" +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 +msgctxt "@label" +msgid "Empty" +msgstr "Vuoto" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" msgid "What's New" msgstr "Scopri le novità" -#: PerObjectSettingsTool/plugin.json +#: /home/trin/Gedeeld/Projects/Cura/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 "Provides the Per Model Settings." -msgstr "Fornisce le impostazioni per modello." +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." -#: PerObjectSettingsTool/plugin.json +#: ModelChecker/plugin.json msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Utilità impostazioni per modello" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" +msgid "Model Checker" +msgstr "Controllo modello" #: 3MFReader/plugin.json msgctxt "description" @@ -6025,65 +5946,15 @@ msgctxt "name" msgid "3MF Reader" msgstr "Lettore 3MF" -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Fornisce il supporto per la scrittura di pacchetti formato Ultimaker." +msgid "Provides support for writing 3MF files." +msgstr "Fornisce il supporto per la scrittura di file 3MF." -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "name" -msgid "UFP Writer" -msgstr "Writer UFP" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" +msgid "3MF Writer" +msgstr "Writer 3MF" #: AMFReader/plugin.json msgctxt "description" @@ -6095,25 +5966,35 @@ msgctxt "name" msgid "AMF Reader" msgstr "Lettore 3MF" -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Legge il codice G da un archivio compresso." +msgid "Backup and restore your configuration." +msgstr "Effettua il backup o ripristina la configurazione." -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Lettore codice G compresso" +msgid "Cura Backups" +msgstr "Backup Cura" -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/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" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Fornisce il collegamento al back-end di sezionamento CuraEngine." -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "Post-elaborazione" +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" @@ -6125,65 +6006,15 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Writer profilo Cura" -#: USBPrinting/plugin.json +#: DigitalLibrary/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." +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." -#: USBPrinting/plugin.json +#: DigitalLibrary/plugin.json msgctxt "name" -msgid "USB printing" -msgstr "Stampa USB" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" #: FirmwareUpdateChecker/plugin.json msgctxt "description" @@ -6195,45 +6026,55 @@ msgctxt "name" msgid "Firmware Update Checker" msgstr "Controllo aggiornamento firmware" -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/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." +msgid "Provides a machine actions for updating firmware." +msgstr "Fornisce azioni macchina per l’aggiornamento del firmware." -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Slice info" -msgstr "Informazioni su sezionamento" +msgid "Firmware Updater" +msgstr "Aggiornamento firmware" -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/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." +msgid "Reads g-code from a compressed archive." +msgstr "Legge il codice G da un archivio compresso." -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "Profili del materiale" +msgid "Compressed G-code Reader" +msgstr "Lettore codice G compresso" -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/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." +msgid "Writes g-code to a compressed archive." +msgstr "Scrive il codice G in un archivio compresso." -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/plugin.json msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" +msgid "Compressed G-code Writer" +msgstr "Writer codice G compresso" -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "Trova, gestisce ed installa nuovi pacchetti Cura." +msgid "Provides support for importing profiles from g-code files." +msgstr "Fornisce supporto per l'importazione di profili da file G-Code." -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "Casella degli strumenti" +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" @@ -6245,245 +6086,155 @@ 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 Simulation view." -msgstr "Fornisce la vista di simulazione." +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" -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/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." +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Invia informazioni su sezionamento anonime Può essere disabilitato tramite le preferenze." -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/plugin.json msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Aggiornamento della versione da 4.5 a 4.6" +msgid "Slice info" +msgstr "Informazioni su sezionamento" -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/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." +msgid "Provides a normal solid mesh view." +msgstr "Fornisce una normale visualizzazione a griglia compatta." -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/plugin.json msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Aggiornamento della versione da 2.5 a 2.6" +msgid "Solid View" +msgstr "Visualizzazione compatta" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/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." +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" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/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/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/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/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/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/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/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/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/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" - -#: 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/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/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/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/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/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/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/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/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/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" - -#: 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" +msgid "Support Eraser" +msgstr "Cancellazione supporto" #: TrimeshReader/plugin.json msgctxt "description" @@ -6505,45 +6256,645 @@ msgctxt "name" msgid "UFP Reader" msgstr "Lettore UFP" -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Fornisce una normale visualizzazione a griglia compatta." +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Fornisce il supporto per la scrittura di pacchetti formato Ultimaker." -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "name" -msgid "Solid View" -msgstr "Visualizzazione compatta" +msgid "UFP Writer" +msgstr "Writer UFP" -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Fornisce il supporto per la scrittura di file 3MF." +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.)" -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "name" -msgid "3MF Writer" -msgstr "Writer 3MF" +msgid "Ultimaker machine actions" +msgstr "Azioni della macchina Ultimaker" -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Fornisce una fase di controllo in Cura." +msgid "Manages network connections to Ultimaker networked printers." +msgstr "Gestisce le connessioni di rete alle stampanti Ultimaker in rete." -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "name" -msgid "Monitor Stage" -msgstr "Fase di controllo" +msgid "Ultimaker Network Connection" +msgstr "Connessione di rete Ultimaker" -#: ModelChecker/plugin.json +#: USBPrinting/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." +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." -#: ModelChecker/plugin.json +#: USBPrinting/plugin.json msgctxt "name" -msgid "Model Checker" -msgstr "Controllo modello" +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." diff --git a/resources/i18n/it_IT/fdmextruder.def.json.po b/resources/i18n/it_IT/fdmextruder.def.json.po index e5b21c43ed..6f0b31d2db 100644 --- a/resources/i18n/it_IT/fdmextruder.def.json.po +++ b/resources/i18n/it_IT/fdmextruder.def.json.po @@ -1,20 +1,19 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0000\n" -"PO-Revision-Date: 2021-04-16 14:58+0200\n" -"Last-Translator: Bothof \n" -"Language-Team: Italian\n" -"Language: it_IT\n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.4.1\n" #: fdmextruder.def.json msgctxt "machine_settings label" diff --git a/resources/i18n/it_IT/fdmprinter.def.json.po b/resources/i18n/it_IT/fdmprinter.def.json.po index 12c2f38a5f..3e1475c345 100644 --- a/resources/i18n/it_IT/fdmprinter.def.json.po +++ b/resources/i18n/it_IT/fdmprinter.def.json.po @@ -1,20 +1,19 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 11:59+0000\n" -"PO-Revision-Date: 2021-04-16 14:58+0200\n" -"Last-Translator: Lionbridge \n" -"Language-Team: Italian , Italian \n" -"Language: it_IT\n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.4.1\n" #: fdmprinter.def.json msgctxt "machine_settings label" @@ -56,7 +55,9 @@ 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." +msgstr "" +"I comandi codice G da eseguire all’avvio, separati da \n" +"." #: fdmprinter.def.json msgctxt "machine_end_gcode label" @@ -68,7 +69,9 @@ 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." +msgstr "" +"I comandi codice G da eseguire alla fine, separati da \n" +"." #: fdmprinter.def.json msgctxt "material_guid label" @@ -462,8 +465,8 @@ msgstr "Poligono testina macchina e ventola" #: fdmprinter.def.json 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)." +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" @@ -735,6 +738,16 @@ 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" @@ -955,6 +968,56 @@ 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" @@ -986,14 +1049,24 @@ msgid "Optimize the order in which walls are printed so as to reduce the number 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 "outer_inset_first label" -msgid "Outer Before Inner Walls" -msgstr "Pareti esterne prima di quelle interne" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Ordinamento parete" #: fdmprinter.def.json -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 "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" @@ -1006,84 +1079,54 @@ msgid "Prints an extra wall at every other layer. This way infill gets caught be 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 "travel_compensate_overlapping_walls_enabled label" -msgid "Compensate Wall Overlaps" -msgstr "Compensazione di sovrapposizioni di pareti" +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Larghezza minima della linea perimetrale" #: fdmprinter.def.json -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 "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 "travel_compensate_overlapping_walls_0_enabled label" -msgid "Compensate Outer Wall Overlaps" -msgstr "Compensazione di sovrapposizioni pareti esterne" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Larghezza minima della linea perimetrale pari" #: fdmprinter.def.json -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 "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 "travel_compensate_overlapping_walls_x_enabled label" -msgid "Compensate Inner Wall Overlaps" -msgstr "Compensazione di sovrapposizioni pareti interne" +msgctxt "wall_split_middle_threshold label" +msgid "Split Middle Line Threshold" +msgstr "Dividi soglia linea intermedia" #: fdmprinter.def.json -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_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 "wall_min_flow label" -msgid "Minimum Wall Flow" -msgstr "Flusso minimo della parete" +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Larghezza minima della linea perimetrale dispari" #: fdmprinter.def.json -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 "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_min_flow_retract label" -msgid "Prefer Retract" -msgstr "Preferire retrazione" +msgctxt "wall_add_middle_threshold label" +msgid "Add Middle Line Threshold" +msgstr "Aggiungi soglia linea intermedia" #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps label" -msgid "Fill Gaps Between Walls" -msgstr "Riempimento degli interstizi tra le pareti" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps description" -msgid "Fills the gaps between walls where no walls fit." -msgstr "Riempie gli spazi dove non è possibile inserire pareti." - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option nowhere" -msgid "Nowhere" -msgstr "In nessun punto" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option everywhere" -msgid "Everywhere" -msgstr "In tutti i possibili punti" - -#: fdmprinter.def.json -msgctxt "filter_out_tiny_gaps label" -msgid "Filter Out Tiny Gaps" -msgstr "Esclusione spazi minimi" - -#: fdmprinter.def.json -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 "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" @@ -1095,6 +1138,26 @@ 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" @@ -1728,10 +1791,7 @@ 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." +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" @@ -2045,8 +2105,7 @@ 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." +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" @@ -2056,8 +2115,7 @@ 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." +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" @@ -2199,6 +2257,26 @@ 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" @@ -2710,24 +2788,14 @@ msgid "The first few layers are printed slower than the rest of the model, to ge 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_enabled label" -msgid "Equalize Filament Flow" -msgstr "Equalizzazione del flusso del filamento" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Rapporto di equalizzazione del flusso" #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_max label" -msgid "Maximum Speed for Flow Equalization" -msgstr "Velocità massima per l’equalizzazione del flusso" - -#: fdmprinter.def.json -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 "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" @@ -2739,6 +2807,17 @@ 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 "Abilita Accelerazione spostamenti" + +#: 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 "Utilizza un tasso di accelerazione separato per i movimenti di spostamento. Se disabilitata, i movimenti di spostamento utilizzeranno il valore di accelerazione" +" della linea stampata alla destinazione." + #: fdmprinter.def.json msgctxt "acceleration_print label" msgid "Print Acceleration" @@ -2929,6 +3008,17 @@ 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 "Abilita jerk spostamenti" + +#: 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 "Utilizza un tasso di jerk distinto per i movimenti di spostamento. Se disabilitato, i movimenti di spostamento utilizzeranno il valore di jerk della linea" +" stampata alla destinazione." + #: fdmprinter.def.json msgctxt "jerk_print label" msgid "Print Jerk" @@ -4464,6 +4554,46 @@ 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" @@ -4628,6 +4758,16 @@ 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" @@ -5128,6 +5268,16 @@ 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" @@ -6422,6 +6572,36 @@ 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 "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "Alterna direzioni parete" + +#: 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 "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" + +#: 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 "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Conteggio parete base del raft" + +#: 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 "command_line_settings label" msgid "Command Line Settings" @@ -6482,6 +6662,98 @@ 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." diff --git a/resources/i18n/ja_JP/cura.po b/resources/i18n/ja_JP/cura.po index c2e95fefa5..3b8a803160 100644 --- a/resources/i18n/ja_JP/cura.po +++ b/resources/i18n/ja_JP/cura.po @@ -1,415 +1,211 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0100\n" -"PO-Revision-Date: 2022-01-10 11:54+0100\n" -"Last-Translator: Lionbridge \n" -"Language-Team: Japanese , Japanese \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" "Language: ja_JP\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 3.0\n" -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:115 -msgctxt "@info:backup_failed" -msgid "Could not create archive from user data directory: {}" -msgstr "ユーザーデータディレクトリからアーカイブを作成できません: {}" - -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 -msgctxt "@info:title" -msgid "Backup" -msgstr "バックアップ" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/Backups/Backup.py:158 -msgctxt "@info:backup_failed" -msgid "The following error occurred while trying to restore a Cura backup:" -msgstr "Curaのバックアップのリストア中に次のエラーが発生しました:" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 -msgctxt "@action:button" -msgid "Please sync the material profiles with your printers before starting to print." -msgstr "プリントを開始する前に、材料プロファイルをプリンターと同期させてください。" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 -msgctxt "@action:button" -msgid "New materials installed" -msgstr "新しい材料がインストールされました" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 -msgctxt "@action:button" -msgid "Sync materials with printers" -msgstr "材料をプリンターと同期" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 -msgctxt "@action:button" -msgid "Learn more" -msgstr "詳しく見る" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 -msgctxt "@message:text" -msgid "Could not save material archive to {}:" -msgstr "材料アーカイブを{}に保存できませんでした:" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 -msgctxt "@message:title" -msgid "Failed to save material archive" -msgstr "材料アーカイブの保存に失敗しました" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 -msgctxt "@text" -msgid "Unknown error." -msgstr "不明なエラー。" - -#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 -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/clamboo/Desktop/Cura/cura/BuildVolume.py:102 -msgctxt "@info:title" -msgid "Build Volume" -msgstr "造形サイズ" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "上書きできません" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 msgctxt "@label" msgid "Unknown" msgstr "不明" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 msgctxt "@label" msgid "Available networked printers" msgstr "ネットワークで利用可能なプリンター" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "全てのファイル" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "ビジュアル" +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "計算された" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "ドラフト" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 -msgctxt "@label" -msgid "Custom Material" -msgstr "カスタムフィラメント" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 -msgctxt "@label" -msgid "Custom" -msgstr "カスタム" - -#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 +#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "ログインに失敗しました" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "造形物のために新しい位置を探索中" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 msgctxt "@info:title" msgid "Finding Location" msgstr "位置確認" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "全ての造形物の造形サイズに対し、適切な位置が確認できません" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 msgctxt "@info:title" msgid "Can't Find Location" msgstr "位置を確保できません" -#: /home/clamboo/Desktop/Cura/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/Backups/Backup.py:115 +msgctxt "@info:backup_failed" +msgid "Could not create archive from user data directory: {}" +msgstr "ユーザーデータディレクトリからアーカイブを作成できません: {}" -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 -msgctxt "@text:error" -msgid "Failed to load the archive of materials to sync it with printers." -msgstr "材料のアーカイブを読み込んでプリンターと同期するのに失敗しました。" - -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 -msgctxt "@text:error" -msgid "The response from Digital Factory appears to be corrupted." -msgstr "Digital Factoryからの応答が破損しているようです。" - -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 -msgctxt "@text:error" -msgid "The response from Digital Factory is missing important information." -msgstr "Digital Factoryからの応答に重要な情報がありません。" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 -msgctxt "@text:error" -msgid "Failed to connect to Digital Factory." -msgstr "Digital Factoryに接続するのに失敗しました。" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "プリンターを読み込み中..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "プレファレンスをセットアップ中..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "アクティブなプリンターを初期化中..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "プリンターマネージャーを初期化中..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "ビルドボリュームを初期化中..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "シーンをセットアップ中..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "インターフェイスを読み込み中..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "エンジンを初期化中..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 +#: /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 msgctxt "@info:title" -msgid "Warning" -msgstr "警告" +msgid "Backup" +msgstr "バックアップ" -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 -#, python-brace-format +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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:" + +#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 msgctxt "@info:status" -msgid "Can't open any other file if G-code is loading. Skipped importing {0}" -msgstr "G-codeを読み込み中は他のファイルを開くことができません。{0}の取り込みをスキップしました。" +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/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 msgctxt "@info:title" -msgid "Error" -msgstr "エラー" +msgid "Build Volume" +msgstr "造形サイズ" -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 -msgctxt "@action:button" -msgid "Skip" -msgstr "スキップ" - -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "閉める" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 -msgctxt "@action:button" -msgid "Next" -msgstr "次" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 -msgctxt "@action:button" -msgid "Finish" -msgstr "終わる" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "追加" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 -msgctxt "@action:button" -msgid "Cancel" -msgstr "キャンセル" - -#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 -#, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "グループ #{group_nr}" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "アウターウォール" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "インナーウォール" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Skin" -msgstr "スキン" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Infill" -msgstr "インフィル" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "サポートイルフィル" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "サポートインターフェイス" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Support" -msgstr "サポート" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "スカート" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "プライムタワー" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 -msgctxt "@tooltip" -msgid "Travel" -msgstr "移動" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "退却" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 -msgctxt "@tooltip" -msgid "Other" -msgstr "他" - -#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 -msgctxt "@text:window" -msgid "The release notes could not be opened." -msgstr "リリースノートを開くことができませんでした。" - -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Curaを開始できません" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

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

      \n" @@ -424,32 +220,32 @@ msgstr "" "

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

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

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

      \n" " " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "システム情報" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "不明" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Curaバージョン" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Cura言語" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "OS言語" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "プラットフォーム" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Qtバージョン" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "PyQtバージョン" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 msgctxt "@label" -msgid "Not yet initialized
      " -msgstr "初期化されていません
      " +msgid "Not yet initialized" +msgstr "初期化されていません" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
    • OpenGL Version: {version}
    • " msgstr "
    • OpenGLバージョン: {version}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
    • OpenGL Vendor: {vendor}
    • " msgstr "
    • OpenGLベンダー: {vendor}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
    • OpenGL Renderer: {renderer}
    • " msgstr "
    • OpenGLレンダラー: {renderer}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "エラー・トレースバック" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "ログ" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "レポート送信" -#: /home/clamboo/Desktop/Cura/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/CuraApplication.py:531 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "プリンターを読み込み中..." -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 -msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." -msgstr "Ultimaker アカウントサーバーに到達できません。" +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "プレファレンスをセットアップ中..." -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "アクティブなプリンターを初期化中..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "プリンターマネージャーを初期化中..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "ビルドボリュームを初期化中..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "シーンをセットアップ中..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "インターフェイスを読み込み中..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "エンジンを初期化中..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#, 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 +#, 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 msgctxt "@info:title" -msgid "Log-in failed" -msgstr "ログインに失敗しました" +msgid "Warning" +msgstr "警告" -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "指定された状態が正しくありません。" +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 +#, 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/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 -msgctxt "@message" -msgid "Timeout when authenticating with the account server." -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 +msgctxt "@info:title" +msgid "Error" +msgstr "エラー" -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 -msgctxt "@message" -msgid "Please give the required permissions when authorizing this application." -msgstr "このアプリケーションの許可において必要な権限を与えてください。" - -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 -msgctxt "@message" -msgid "Something unexpected happened when trying to log in, please try again." -msgstr "ログイン時に予期しないエラーが発生しました。やり直してください。" - -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 -msgctxt "@message" -msgid "Could not read response." -msgstr "応答を読み取れません。" - -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "造形データを増やす、配置する" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "造形データを配置" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "造形データを配置" -#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "サポート対象外" +#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "応答を読み取れません。" -#: /home/clamboo/Desktop/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/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "指定された状態が正しくありません。" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 -msgctxt "@label" -msgid "Nozzle" -msgstr "ノズル" +#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "アカウントサーバーでの認証中にタイムアウトしました。" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 -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/OAuth2/AuthorizationRequestHandler.py:97 +msgctxt "@message" +msgid "Please give the required permissions when authorizing this application." +msgstr "このアプリケーションの許可において必要な権限を与えてください。" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info" +msgid "Unable to reach the Ultimaker account server." +msgstr "Ultimaker アカウントサーバーに到達できません。" + +#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:278 msgctxt "@info:title" -msgid "Settings updated" -msgstr "設定が更新されました" +msgid "Log-in failed" +msgstr "ログインに失敗しました" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "エクストルーダーを無効にしました" +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." +msgstr "材料のアーカイブを作成してプリンターと同期するのに失敗しました。" -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 msgctxt "@title:window" msgid "File Already Exists" msgstr "すでに存在するファイルです" -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "無効なファイルのURL:" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "書き出し完了" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: /home/trin/Gedeeld/Projects/Cura/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}" +msgstr "{0}からプロファイルの取り込に失敗しました:{1}" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: /home/trin/Gedeeld/Projects/Cura/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}からプロファイルの取り込に失敗しました:" +msgstr "{0}からプロファイルの取り込に失敗しました:" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: /home/trin/Gedeeld/Projects/Cura/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}からプロファイルの取り込みに失敗しました:" +msgstr "{0}からプロファイルの取り込みに失敗しました:" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "プロファイル{0}の取り込みが完了しました。" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "ファイル{0}には、正しいプロファイルが含まれていません。" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "カスタムプロファイル" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "プロファイルはクオリティータイプが不足しています。" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "アクティブなプリンターはありません。" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "プロファイルを追加できません。" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: /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 msgctxt "@label" -msgid "Per Model Settings" -msgstr "各モデル設定" +msgid "Nozzle" +msgstr "ノズル" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "各モデル構成設定" +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +msgctxt "@info:message Followed by a list of settings." +msgid "Settings have been changed to match the current availability of extruders:" +msgstr "現在利用可能な次のエクストルーダーに合わせて設定が変更されました:" -#: /home/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Curaプロファイル" - -#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3Dファイル" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "バックアップのリストア中にエラーが発生しました。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 msgctxt "@info:title" -msgid "Backups" -msgstr "バックアップ" +msgid "Settings updated" +msgstr "設定が更新されました" -#: /home/clamboo/Desktop/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/cura/Settings/MachineManager.py:1480 +msgctxt "@info:title" +msgid "Extruder(s) Disabled" +msgstr "エクストルーダーを無効にしました" -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "バックアップを作成しています..." +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 +msgctxt "@action:button" +msgid "Add" +msgstr "追加" -#: /home/clamboo/Desktop/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/cura/UI/AddPrinterPagesModel.py:26 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:290 +msgctxt "@action:button" +msgid "Finish" +msgstr "終わる" -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -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 +msgctxt "@action:button" +msgid "Cancel" +msgstr "キャンセル" -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "バックアップのアップロードを完了しました。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "バックアップが最大ファイルサイズを超えています。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "バックアップを管理する" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "プリンターの設定" - -#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#, python-brace-format msgctxt "@label" -msgid "Support Blocker" -msgstr "サポートブロッカー" +msgid "Group #{group_nr}" +msgstr "グループ #{group_nr}" -#: /home/clamboo/Desktop/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/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "アウターウォール" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "リムーバブルドライブ" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "インナーウォール" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "リムーバブルドライブに保存" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "スキン" -#: /home/clamboo/Desktop/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/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "インフィル" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 /home/clamboo/Desktop/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/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "サポートイルフィル" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 -#, 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/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "サポートインターフェイス" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 -msgctxt "@info:title" -msgid "Saving" -msgstr "保存中" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "サポート" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 -#, 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/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "スカート" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 -#, 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/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "プライムタワー" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "リムーバブルドライブ{0}に保存することができませんでした: {1}" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "移動" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "リムーバブルドライブ{0}に {1}として保存" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "退却" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 -msgctxt "@info:title" -msgid "File Saved" -msgstr "ファイル保存" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +msgctxt "@tooltip" +msgid "Other" +msgstr "他" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:37 +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@action:button" -msgid "Eject" -msgstr "取り出す" +msgid "Next" +msgstr "次" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "リムーバブルデバイス{0}を取り出す" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "{0}取り出し完了。デバイスを安全に取り外せます。" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "ハードウェアを安全に取り外します" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "{0}取り出し失敗。他のプログラムがデバイスを使用しているため。" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "ファームウェアアップデート" - -#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Cura 15.04 プロファイル" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "推奨" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "カスタム" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 -#, 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} があります。マシンをインポートできません。代わりにモデルをインポートします。" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 -msgctxt "@info:title" -msgid "Open Project File" -msgstr "プロジェクトファイルを開く" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 -#, 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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "プロジェクトファイルを開けません" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "プロジェクトファイル{0}は破損しています:{1}。" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 -#, 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/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 -msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "3MF ファイル" - -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "UFPファイルに書き込めません:" - -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Ultimakerフォーマットパッケージ" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "G-codeファイル" - -#: /home/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "プレビュー" - -#: /home/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "透視ビューイング" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "レイヤーを処理しています" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 -msgctxt "@info:title" -msgid "Information" -msgstr "インフォメーション" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 -msgctxt "@message:title" -msgid "Slicing failed" -msgstr "スライスに失敗しました" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 -msgctxt "@message:button" -msgid "Report a bug" -msgstr "バグを報告" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 -msgctxt "@message:description" -msgid "Report a bug on Ultimaker Cura's issue tracker." -msgstr "Ultimaker Curaの問題追跡ツールでバグを報告してください。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "選ばれたプリンターまたは選ばれたプリント構成が異なるため進行中の材料にてスライスを完了できません。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "スライスできません" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "現在の設定でスライスが完了できません。以下の設定にエラーがあります: {0}" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 -#, 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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "プライムタワーまたはプライム位置が無効なためスライスできません。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "無効な Extruder %s に関連付けられている造形物があるため、スライスできません。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 -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/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "AMF ファイル" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "圧縮G-codeファイル" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "後処理" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "G-codeを修正" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "USBプリンティング" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "USBを使ってプリントする" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "USBを使ってプリントする" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 -msgctxt "@info:status" -msgid "Connected via USB" -msgstr "USBにて接続する" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 -msgctxt "@message" -msgid "Print in Progress" -msgstr "現在印刷中" - -#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "準備する" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "G-codeを解析" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "G-codeの詳細" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 -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/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "Gファイル" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG画像" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG画像" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG画像" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP画像" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF画像" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "ビルドプレートを調整する" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "アップグレードを選択する" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "GCodeGzWriter はテキストモードをサポートしていません。" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 -msgctxt "@info" -msgid "Could not access update information." -msgstr "必要なアップデートの情報にアクセスできません。" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:286 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:67 msgctxt "@action:button" -msgid "How to update" -msgstr "アップデートの仕方" +msgid "Skip" +msgstr "スキップ" -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 -msgctxt "@text" -msgid "Unable to read example data file." -msgstr "サンプルのデータファイルを読み取ることができません。" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "変更を有効にするために{}を終了して再始動する必要があります。" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "同期中..." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "Ultimakerアカウントから変更が検出されました" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "材料パッケージとソフトウェアパッケージをアカウントと同期しますか?" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 +#: /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 msgctxt "@action:button" -msgid "Sync" -msgstr "同期" +msgid "Close" +msgstr "閉める" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "拒否してアカウントから削除" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +msgctxt "@action:button" +msgid "Please sync the material profiles with your printers before starting to print." +msgstr "プリントを開始する前に、材料プロファイルをプリンターと同期させてください。" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "{}プラグインのダウンロードに失敗しました" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "新しい材料がインストールされました" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "拒否する" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +msgctxt "@action:button" +msgid "Sync materials" +msgstr "材料を同期" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "同意する" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "プラグインライセンス同意書" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "GCodeWriter は非テキストモードはサポートしていません。" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "エクスポートする前にG-codeの準備をしてください。" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "Curaはワイヤープリンティングが有効な場合は正確にレイヤーを表示しません。" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "シミュレーションビュー" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "最初にスライスする必要があるため、何も表示されません。" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 -msgctxt "@info:title" -msgid "No layers to show" -msgstr "表示するレイヤーがありません" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "今後このメッセージを表示しない" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "レイヤービュー" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "ネットワーク上のプリント" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "ネットワークのプリント" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "ネットワーク上で接続" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "翌日" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "本日" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "ネットワーク上にて接続" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "現在のジョブが送信されるまで待機してください。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "印刷エラー" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "プリントジョブは正常にプリンターに送信されました。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "データを送信しました" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 -msgctxt "@info:title" -msgid "Update your printer" -msgstr "プリンターの更新" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "キューがいっぱい" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "印刷ジョブ送信中" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "プリントジョブをプリンターにアップロードしています。" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "プリンターに材料を送信しています" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "データをプリンタにアップロードできませんでした。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "ネットワークエラー" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "グループホストではありません" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 -msgctxt "@action" -msgid "Configure group" -msgstr "グループの設定" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 -msgctxt "@info:title" -msgid "Are you ready for cloud printing?" -msgstr "クラウドプリンティングの準備はできていますか?" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 -msgctxt "@action" -msgid "Get started" -msgstr "はじめに" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 -msgctxt "@action" +#: /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 +msgctxt "@action:button" msgid "Learn more" msgstr "詳しく見る" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 -msgctxt "@action:button" -msgid "Print via cloud" -msgstr "クラウドからプリントする" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +msgctxt "@message:text" +msgid "Could not save material archive to {}:" +msgstr "材料アーカイブを{}に保存できませんでした:" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 -msgctxt "@properties:tooltip" -msgid "Print via cloud" -msgstr "クラウドからプリントする" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "材料アーカイブの保存に失敗しました" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 -msgctxt "@info:status" -msgid "Connected via cloud" -msgstr "クラウド経由で接続" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +msgctxt "@text" +msgid "Unknown error." +msgstr "不明なエラー。" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 -msgctxt "@action:button" -msgid "Monitor print" -msgstr "プリントをモニタリング" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 -msgctxt "@action:tooltip" -msgid "Track the print in Ultimaker Digital Factory" -msgstr "Ultimaker Digital Factoryでプリントを追跡" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "Digital Factoryからプリンターが追加されました:" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 -msgctxt "info:name" -msgid "Ultimaker Digital Factory" -msgstr "Ultimaker Digital Factory" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "接続を確立するには、{website_link}にアクセスしてください" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "プリンターの構成を維持" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "プリンターを取り除く" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 -msgctxt "@title:window" -msgid "Remove printers?" -msgstr "プリンターを削除しますか?" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 -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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA Digital Asset Exchange" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "glTFバイナリ" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF埋め込みJSON" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Stanford Triangle Format" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "圧縮COLLADA Digital Asset Exchange" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "モデルエラー" - -#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "ソリッドビュー" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "3Mf ファイルの書き込みエラー。" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "3MFリーダーのプラグインが破損しています。" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "まだ書き込んでいないワークスペースがありません。まずはプリンターを追加してください。" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "この作業スペースに書き込む権限がありません。" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MFファイル" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Curaが3MF fileを算出します" - -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "モニター" - -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" msgid "3D Model Assistant" msgstr "3Dモデルアシスタント" -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" msgid "" @@ -1700,1473 +836,1925 @@ msgstr "" "

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

      \n" "

      印字品質ガイドを見る

      " -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 -msgctxt "@label" -msgid "Mesh Type" -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." +msgstr "プロジェクトファイル {0} に不明なマシンタイプ {1} があります。マシンをインポートできません。代わりにモデルをインポートします。" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "標準モデル" +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "プロジェクトファイルを開く" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -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 "プロジェクトファイル{0}はこのバージョンのUltimaker Curaでは認識できないプロファイルを使用して作成されています。" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "メッシュ切断" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 -msgctxt "@action:button" -msgid "Select settings" -msgstr "設定を選択する" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "このモデルをカスタマイズする設定を選択する" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "フィルター..." - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "すべて表示する" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cura バックアップ" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Cura バージョン" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "プリンタ" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "材料" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "プロファイル" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "プラグイン" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "詳しく知りたい?" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "今すぐバックアップする" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "自動バックアップ" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "リストア" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "バックアップの削除" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "このバックアップを削除しますか?これは取り消しできません。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "バックアップのリストア" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Cura のバックアップおよび同期を設定します。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 -msgctxt "@button" -msgid "Sign in" -msgstr "サインイン" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "マイ バックアップ" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "現在バックアップは存在しません。[今すぐバックアップする] を使用して作成してください。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -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/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "プリンターの設定" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 -msgctxt "@label" -msgid "X (Width)" -msgstr "X(幅)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (奥行き)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (高さ)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 -msgctxt "@label" -msgid "Build plate shape" -msgstr "ビルドプレート形" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 -msgctxt "@label" -msgid "Origin at center" -msgstr "センターを出します" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 -msgctxt "@label" -msgid "Heated bed" -msgstr "ヒーテッドドベッド" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 -msgctxt "@label" -msgid "Heated build volume" -msgstr "加熱式ビルドボリューム" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 -msgctxt "@label" -msgid "G-code flavor" -msgstr "G-codeフレーバー" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "プリントヘッド設定" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -msgctxt "@label" -msgid "X min" -msgstr "X分" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -msgctxt "@label" -msgid "Y min" -msgstr "Y分" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -msgctxt "@label" -msgid "X max" -msgstr "最大X" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -msgctxt "@label" -msgid "Y max" -msgstr "最大Y" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "Gantry Height" -msgstr "ガントリーの高さ" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "エクストルーダーの数" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "エクストルーダーのオフセットをGCodeに適用します" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "G-Codeの開始" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "G-codeの終了" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "ノズル設定" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 -msgctxt "@label" -msgid "Nozzle size" -msgstr "ノズルサイズ" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "適合する材料直径" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "ノズルオフセットX" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "ノズルオフセットY" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "冷却ファンの番号" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "エクストルーダーがG-Codeを開始する" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "エクストルーダーがG-Codeを終了する" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:212 msgctxt "@title:tab" -msgid "Printer" -msgstr "プリンター" +msgid "Recommended" +msgstr "推奨" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" +#: /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 "このプロジェクトで使用される材料にはCuraで利用できないいくつかの材料コードが使用されているため、望ましくないプリント結果になる可能性があります。Marketplaceから材料パッケージ一式をインストールすることを強くお勧めします。" + +#: /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 "材料パッケージ情報をプロジェクトファイル({material})に保存できませんでした。このプロジェクトは、他のシステムでは正しく開けない可能性があります。" + +#: /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 +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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 -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/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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 -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/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "GCodeGzWriter はテキストモードをサポートしていません。" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 +#: /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 "Automatically upgrade Firmware" -msgstr "自動でファームウェアをアップグレード" +msgid "Sync" +msgstr "同期" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 +#: /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 "Upload custom Firmware" -msgstr "カスタムファームウェアをアップロードする" +msgid "Eject" +msgstr "取り出す" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 +#: /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 "Firmware can not be updated because there is no connection with the printer." -msgstr "プリンターと接続されていないため、ファームウェアをアップデートできません。" +msgid "Support Blocker" +msgstr "サポートブロッカー" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -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/SupportEraser/__init__.py:13 +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "サポートが印刷されないボリュームを作成します。" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 +#: /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バイナリ" + +#: /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 "Stanford Triangle Format" + +#: /home/trin/Gedeeld/Projects/Cura/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フォーマットパッケージ" + +#: /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 "Select custom firmware" -msgstr "カスタムファームウェアを選択する" +msgid "Remove printers?" +msgstr "プリンターを削除しますか?" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "ファームウェアアップデート" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 +#, python-brace-format msgctxt "@label" -msgid "Updating firmware." -msgstr "ファームウェアアップデート中。" +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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:489 msgctxt "@label" -msgid "Firmware update completed." -msgstr "ファームウェアアップデート完了。" +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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +#: /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 "" +"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 +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 "Firmware update failed due to an unknown error." -msgstr "不特定なエラーの発生によりファームウェアアップデート失敗しました。" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "USBプリントを実行しています。Cura を閉じるとこのプリントも停止します。実行しますか?" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -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 "現在印刷中です。Curaは、前の印刷が完了するまでUSBを介した次の印刷を開始できません。" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "インプット/アウトプットエラーによりファームウェアアップデート失敗しました。" +#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "現在印刷中" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "ファームウェアが見つからず、ファームウェアアップデート失敗しました。" +#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "X3Dファイル" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 msgctxt "@action:ComboBox Update/override existing profile" msgid "Update existing" msgstr "既存を更新する" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:64 msgctxt "@action:ComboBox Save settings in a new profile" msgid "Create new" msgstr "新しいものを作成する" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "プリンターの設定" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "プロファイル設定" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 +#: /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 "プロファイル内にない" -# Can’t edit the Japanese text -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 msgctxt "@action:label" msgid "Derivative from" msgstr "次から引き出す" -# can’t inset the japanese text -# %1: print quality profile name -# %2: number of overridden ssettings -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 -msgctxt "@action:label" -msgid "Material settings" -msgstr "フィラメント設定" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 msgctxt "@action:label" msgid "Mode" msgstr "モード" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 msgctxt "@action:label" msgid "Visible settings:" msgstr "ビジブル設定:" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%2のうち%1" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 msgctxt "@action:button" msgid "Open" msgstr "開く" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 +#: /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 "Post Processing Plugin" -msgstr "プラグイン処理後" +msgid "Cura Backups" +msgstr "Cura バックアップ" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 +#: /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 "Curaプロジェクトとプリントファイルを保存する" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "Curaプロジェクトを保存する" + +#: /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 "Post Processing Scripts" -msgstr "スクリプトの処理後" +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/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "スクリプトを加える" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 msgctxt "@label" -msgid "Settings" -msgstr "設定" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "配達時のファームウェアで動かすことはできますが、新しいバージョンの方がより改善され、便利なフィーチャーがついてきます。" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "処理したアクティブなスクリプトを変更します。" +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "自動でファームウェアをアップグレード" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 -msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "次のスクリプトがアクティブです:" +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "カスタムファームウェアをアップロードする" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /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 "Convert Image..." -msgstr "画像を変換する..." +msgid "Select custom firmware" +msgstr "カスタムファームウェアを選択する" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 -msgctxt "@info:tooltip" -msgid "The maximum distance of each pixel from \"Base.\"" -msgstr "“ベース”から各ピクセルへの最大距離。" +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "ファームウェアアップデート" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "ミリメートルでビルドプレートからベースの高さ。" +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "“ベース”から各ピクセルへの最大距離。" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 msgctxt "@action:label" msgid "Base (mm)" msgstr "ベース(mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate." -msgstr "ビルドプレート上の幅ミリメートル。" +msgid "The base height from the build plate in millimeters." +msgstr "ミリメートルでビルドプレートからベースの高さ。" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 msgctxt "@action:label" msgid "Width (mm)" msgstr "幅(mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "ビルドプレート上の奥行きミリメートル" +msgid "The width in millimeters on the build plate" +msgstr "ビルドプレート上の幅(ミリメートル)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 msgctxt "@action:label" msgid "Depth (mm)" msgstr "深さ(mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 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 モデルの厚い位置に対応する必要があります。" +msgid "The depth in millimeters on the build plate" +msgstr "ビルドプレート上の奥行きミリメートル" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "暗いほうを高く" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "薄いほうを高く" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 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 "リトフェインの場合、半透明性を示す単純な対数モデルを利用できます。高さマップの場合、ピクセル値は高さに比例します。" +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "半透明性" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 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ミリメートルのプリントを貫通する光の割合。この値を小さくすると、画像の暗い領域ではコントラストが増し、明るい領域ではコントラストが減少します。" +msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." +msgstr "リトフェインの場合、半透明性を示す単純な対数モデルを利用できます。高さマップの場合、ピクセル値は高さに比例します。" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "1mm透過率(%)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "画像に適応したスムージング量。" +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 msgctxt "@action:label" msgid "Smoothing" msgstr "スムージング" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "このUltimaker Originalに施されたアップグレートを選択する" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "ヒーティッドビルドプレート(オフィシャルキットまたはセルフビルド)" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "ビルドプレートのレベリング" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "ビルドプレートのレベリングを開始する" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "次のポジションに移動" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "匿名データの収集に関する詳細" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -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/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "匿名データは送信しない" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "匿名データの送信を許可する" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" -msgid "Marketplace" -msgstr "マーケットプレース" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -msgctxt "@info" -msgid "You will need to restart Cura before changes in packages have effect." -msgstr "パッケージへの変更を有効にするためにCuraを再起動する必要があります。" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "%1を終了する" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "インストール" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -msgctxt "@action:button" -msgid "Installed" -msgstr "インストールした" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "プレミアム" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 -msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "ウェブマーケットプレイスに移動" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 -msgctxt "@label" -msgid "Search materials" -msgstr "材料を検索" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "互換性" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" msgstr "プリンター" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "ビルドプレート" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "ノズル設定" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "サポート" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "品質" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "技術データシート" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "安全データシート" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "印刷ガイドライン" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "ウェブサイト" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to install or update" -msgstr "インストールまたはアップデートにはログインが必要です" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "材料スプールの購入" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "アップデート" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "更新中" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "更新済み" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "戻る" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 -msgctxt "@title:tab" -msgid "Plugins" -msgstr "プラグイン" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 -msgctxt "@title:tab" -msgid "Materials" -msgstr "マテリアル" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "インストールした" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 msgctxt "@label" -msgid "Will install upon restarting" -msgstr "再起動時にインストール" +msgid "Nozzle size" +msgstr "ノズルサイズ" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "アップデートにはログインが必要です" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Downgrade" -msgstr "ダウングレード" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "アンインストール" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /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 "Community Contributions" -msgstr "地域貢献" +msgid "mm" +msgstr "mm" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 msgctxt "@label" -msgid "Community Plugins" -msgstr "コミュニティプラグイン" +msgid "Compatible material diameter" +msgstr "適合する材料直径" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 msgctxt "@label" -msgid "Generic Materials" -msgstr "汎用材料" +msgid "Nozzle offset X" +msgstr "ノズルオフセットX" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "パッケージ取得中..." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 msgctxt "@label" -msgid "Website" -msgstr "ウェブサイト" +msgid "Nozzle offset Y" +msgstr "ノズルオフセットY" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 msgctxt "@label" -msgid "Email" -msgstr "電子メール" +msgid "Cooling Fan Number" +msgstr "冷却ファンの番号" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -msgctxt "@description" -msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -msgstr "検証済みのUltimaker Cura Enterprise用プラグインおよび材料を入手するにはサインインしてください" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "エクストルーダーがG-Codeを開始する" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 +#: /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 "Version" -msgstr "バージョン" +msgid "X (Width)" +msgstr "X(幅)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 msgctxt "@label" -msgid "Last updated" -msgstr "最終更新日" +msgid "Y (Depth)" +msgstr "Y (奥行き)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 msgctxt "@label" -msgid "Brand" -msgstr "ブランド" +msgid "Z (Height)" +msgstr "Z (高さ)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 msgctxt "@label" -msgid "Downloads" -msgstr "ダウンロード" +msgid "Build plate shape" +msgstr "ビルドプレート形" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "インストールされたプラグイン" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "プラグインはインストールされていません。" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "インストールされた材料" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 -msgctxt "@info" -msgid "No material has been installed." -msgstr "材料はインストールされていません。" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "バンドルされたプラグイン" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "バンドルされた材料" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -msgctxt "@info" -msgid "Could not connect to the Cura Package database. Please check your connection." -msgstr "Curaパッケージデータベースに接続できません。接続を確認してください。" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "パッケージをインストールするにはライセンスに同意する必要があります" +msgid "Origin at center" +msgstr "センターを出します" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 msgctxt "@button" msgid "Dismiss" msgstr "無視" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 msgctxt "@label" msgid "The following packages will be added:" msgstr "次のパッケージが追加されます:" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "アンインストール確認" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "未ダウンロードの材料をインストールする" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -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 "使用中の材料またはプロファイルをアンインストールしようとしています。確定すると以下の材料/プロファイルをデフォルトにリセットします。" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "プラグインライセンス同意書" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "プロファイル" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "承認する" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "確認" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 +msgctxt "@header" +msgid "Manage packages" +msgstr "パッケージの管理" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "フィラメントの色" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "パッケージの管理" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "ラインタイプ" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "スピード" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "レイヤーの厚さ" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "ライン幅" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "フロー" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "コンパティビリティモード" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "移動" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "ヘルプ" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "外郭" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "インフィル" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "開始" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "トップのレイヤーを表示する" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "トップの5レイヤーの詳細を表示する" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "トップ/ボトム" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "インナーウォール" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "最小" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "最大" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "プリンター管理" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -msgctxt "@label" -msgid "Glass" -msgstr "ガラス" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "キューをリモートで管理するには、プリンターのファームウェアを更新してください。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" msgid "Loading..." msgstr "読み込み中..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "利用不可" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "プラグイン" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "到達不能" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "材料" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "アイドル" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193 +msgctxt "@info" +msgid "Search in the browser" +msgstr "ブラウザでの検索" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Preparing..." -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 -msgctxt "@label" -msgid "Untitled" -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "匿名" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "構成の変更が必要です" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "詳細" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "利用できないプリンター" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "次の空き" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "順番を待つ" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "ブラウザで管理する" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "キューに印刷ジョブがありません。追加するには、スライスしてジョブを送信します。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "プリントジョブ" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "合計印刷時間" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "待ち時間" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 -msgctxt "@title:window" -msgid "Print over network" -msgstr "ネットワーク上のプリント" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 -msgctxt "@action:button" -msgid "Print" -msgstr "プリント" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 -msgctxt "@label" -msgid "Printer selection" -msgstr "プリンターの選択" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "構成の変更" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "上書き" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "プリンター %1 が割り当てられましたが、ジョブには不明な材料構成があります。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "材料 %1 を %2 から %3 に変更します。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "%3 を 材料 %1 にロードします(これは上書きできません)。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "プリントコア %1 を %2 から %3 に変更します。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "ビルドプレートを %1 に変更します(これは上書きできません)。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "上書きは、既存のプリンタ構成で指定された設定を使用します。これにより、印刷が失敗する場合があります。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "アルミニウム" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Finished" -msgstr "終了" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "中止しています..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Aborted" -msgstr "中止しました" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Failed" -msgstr "失敗" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "一時停止しています..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Paused" -msgstr "一時停止" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "再開しています..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 -msgctxt "@label:status" -msgid "Action required" -msgstr "アクションが必要です" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "%1 を %2 に終了します" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "ネットワーク上で繋がったプリンターに接続" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "以下のリストからプリンタを選択します:" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "編集" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 -msgctxt "@action:button" -msgid "Remove" -msgstr "取り除く" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" -msgstr "更新" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "お持ちのプリンターがリストにない場合、ネットワーク・プリンティング・トラブルシューティング・ガイドを読んでください" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "タイプ" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "ファームウェアバージョン" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "アドレス" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "このプリンターは、プリンターのグループをホストするために設定されていません。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "このプリンターは %1 プリンターのループのホストプリンターです。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "このアドレスのプリンターは応答していません。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "接続" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "無効なIPアドレス" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:12 msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "有効なIPアドレスを入力してください。" +msgid "Select and install material profiles optimised for your Ultimaker 3D printers." +msgstr "Ultimaker 3Dプリンターに最適な材料プロファイルを選択してインストールします。" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "プリンターアドレス" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "ネットワーク内のプリンターのIPアドレスを入力してください。" +msgid "You need to accept the license to install the package" +msgstr "パッケージをインストールするにはライセンスに同意する必要があります" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "再開" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Enable" +msgstr "有効にする" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "一時停止しています..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Disable" +msgstr "無効にする" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "再開しています..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 +msgctxt "@button" +msgid "Downgrading..." +msgstr "ダウングレード中..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "一時停止" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 +msgctxt "@button" +msgid "Downgrade" +msgstr "ダウングレード" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "中止しています..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 +msgctxt "@button" +msgid "Installing..." +msgstr "インストール中..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "中止" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250 +msgctxt "@button" +msgid "Install" +msgstr "インストール" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -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/Marketplace/resources/qml/PackageCardHeader.qml:254 +msgctxt "@button" +msgid "Uninstall" +msgstr "アンインストール" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "印刷ジョブを最上位に移動する" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Updating..." +msgstr "更新中..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -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/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Update" +msgstr "アップデート" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "印刷ジョブの削除" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "パッケージの詳細" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -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/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "戻る" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "プリント中止" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "記述" -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /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" @@ -3178,2133 +2766,679 @@ msgstr "" "- プリンタの電源が入っているか確認します。\n" "- プリンタがネットワークに接続されているかどうかを確認します。- クラウドに接続されたプリンタを検出するためにサインインしているかどうかを確認します。" -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:113 msgctxt "@info" msgid "Please connect your printer to the network." msgstr "プリンターをネットワークに接続してください。" -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:147 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "ユーザーマニュアルをオンラインで見る" -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /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/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 -msgctxt "@info:tooltip" -msgid "Some things could be problematic in this print. Click to see tips for adjustment." -msgstr "このプリントの何かが問題です。クリックして調整のヒントをご覧ください。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "3Dビュー" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "フロントビュー" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "トップビュー" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "左ビュー" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "右ビュー" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 msgctxt "@label" -msgid "Object list" -msgstr "オブジェクトリスト" +msgid "Mesh Type" +msgstr "メッシュタイプ" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 +#: /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 "Marketplace" -msgstr "マーケットプレース" +msgid "Select settings" +msgstr "設定を選択する" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "&ファイル" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "このモデルをカスタマイズする設定を選択する" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -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/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "&ビュー" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "すべて表示する" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "&設定" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "プラグイン処理後" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "拡張子" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 +msgctxt "@label" +msgid "Post Processing Scripts" +msgstr "スクリプトの処理後" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "プレファレンス" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +msgctxt "@action" +msgid "Add a script" +msgstr "スクリプトを加える" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" +#: /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/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 +#: /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 "New project" -msgstr "新しいプロジェクト" +msgid "More information on anonymous data collection" +msgstr "匿名データの収集に関する詳細" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 -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/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/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 -msgctxt "@label:PrintjobStatus" -msgid "Slicing..." -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/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 -msgctxt "@label:PrintjobStatus" -msgid "Unable to slice" -msgstr "スライスできません" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "匿名データの送信を許可する" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Processing" -msgstr "処理" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "ビルドプレートのレベリング" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Slice" -msgstr "スライス" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 msgctxt "@label" -msgid "Start the slicing process" -msgstr "スライス処理の開始" +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/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 -msgctxt "@button" -msgid "Cancel" -msgstr "キャンセル" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 msgctxt "@label" -msgid "Time estimation" -msgstr "時間予測" +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/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "ビルドプレートのレベリングを開始する" + +#: /home/trin/Gedeeld/Projects/Cura/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 "Material estimation" -msgstr "材料予測" +msgid "Please select any upgrades made to this Ultimaker Original" +msgstr "このUltimaker Originalに施されたアップグレートを選択する" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 msgctxt "@label" -msgid "No time estimation available" -msgstr "時間予測がありません" +msgid "Heated Build Plate (official kit or self-built)" +msgstr "ヒーティッドビルドプレート(オフィシャルキットまたはセルフビルド)" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: /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 "No cost estimation available" -msgstr "コスト予測がありません" +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/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "プレビュー" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 msgctxt "@label" -msgid "Add a printer" -msgstr "プリンターの追加" +msgid "Select your printer from the list below:" +msgstr "以下のリストからプリンタを選択します:" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +#: /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 "Add a networked printer" -msgstr "ネットワークプリンターの追加" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "お持ちのプリンターがリストにない場合、ネットワーク・プリンティング・トラブルシューティング・ガイドを読んでください" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +#: /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 "Add a non-networked printer" -msgstr "非ネットワークプリンターの追加" +msgid "Type" +msgstr "タイプ" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: /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 "Add a Cloud printer" -msgstr "クラウドプリンターを追加" +msgid "Firmware version" +msgstr "ファームウェアバージョン" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +#: /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 "Waiting for Cloud response" -msgstr "クラウドの応答を待機しています" +msgid "Address" +msgstr "アドレス" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 msgctxt "@label" -msgid "No printers found in your account?" -msgstr "アカウントにプリンターが見つかりませんか?" +msgid "This printer is not set up to host a group of printers." +msgstr "このプリンターは、プリンターのグループをホストするために設定されていません。" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" -msgstr "アカウントの以下のプリンターがCuraに追加されました:" +msgid "This printer is the host for a group of %1 printers." +msgstr "このプリンターは %1 プリンターのループのホストプリンターです。" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "プリンタを手動で追加する" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 msgctxt "@label" -msgid "Add printer by IP address" -msgstr "IP アドレスでプリンターを追加" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "プリンターのIPアドレスを入力します。" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "追加" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 -msgctxt "@label" -msgid "Could not connect to device." -msgstr "デバイスに接続できません。" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 -msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Ultimakerプリンターに接続できませんか?" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 -msgctxt "@label" -msgid "The printer at this address has not responded yet." +msgid "The printer at this address has not yet responded." msgstr "このアドレスのプリンターは応答していません。" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 -msgctxt "@button" -msgid "Back" -msgstr "戻る" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +msgctxt "@action:button" msgid "Connect" msgstr "接続" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "ユーザー用使用許諾契約" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "無効なIPアドレス" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "拒否して閉じる" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Ultimaker Cura にようこそ" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +#: /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 follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "" -"以下の手順で\n" -"Ultimaker Cura を設定してください。数秒で完了します。" +msgid "Please enter a valid IP address." +msgstr "有効なIPアドレスを入力してください。" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "はじめに" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "プリンターアドレス" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +#: /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 +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 msgctxt "@label" msgid "Sign in to the Ultimaker platform" msgstr "Ultimakerのプラットフォームにサインイン" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "マーケットプレイスから材料設定とプラグインを追加" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "材料設定とプラグインのバックアップと同期" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "Ultimakerコミュニティで48,000人以上のユーザーとアイデアを共有してアドバイスをもらう" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 -msgctxt "@button" -msgid "Skip" -msgstr "スキップ" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "無料のUltimakerアカウントを作成" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 -msgctxt "@label" -msgid "Manufacturer" -msgstr "製造元" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 -msgctxt "@label" -msgid "Profile author" -msgstr "プロファイル作成者" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 -msgctxt "@label" -msgid "Printer name" -msgstr "プリンター名" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 -msgctxt "@text" -msgid "Please name your printer" -msgstr "プリンターに名前を付けてください" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 -msgctxt "@label" -msgid "There is no printer found over your network." -msgstr "ネットワークにプリンターはありません。" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "更新" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "IP でプリンターを追加" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "クラウドプリンターを追加" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "トラブルシューティング" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Ultimaker Cura の改善にご協力ください" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Ultimaker Cura は、印刷品質とユーザーエクスペリエンスを向上させるために以下の匿名データを収集します:" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "プリンターのタイプ" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "材料の利用状況" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "スライスの数" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "プリント設定" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Ultimaker Cura が収集したデータには個人データは含まれません。" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "詳細" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 -msgctxt "@label" -msgid "What's New" -msgstr "新情報" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "空にする" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "リリースノート" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 -msgctxt "@title:window The argument is the application name." -msgid "About %1" -msgstr "%1について" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 -msgctxt "@label" -msgid "version: %1" -msgstr "バージョン: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 -msgctxt "@label" -msgid "End-to-end solution for fused filament 3D printing." -msgstr "熱溶解積層型3Dプリンティングのエンドtoエンドソリューション。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 -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 "CuraはUltimakerB.Vのコミュニティの協力によって開発され、Curaはオープンソースで使えることを誇りに思います:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 -msgctxt "@label" -msgid "Graphical user interface" -msgstr "グラフィックユーザーインターフェイス" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" -msgid "Application framework" -msgstr "アプリケーションフレームワーク" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" -msgid "G-code generator" -msgstr "G-codeの生成" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" -msgid "Interprocess communication library" -msgstr "インタープロセスコミュニケーションライブラリー" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" -msgid "Programming language" -msgstr "プログラミング用語" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" -msgid "GUI framework" -msgstr "GUIフレームワーク" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" -msgid "GUI framework bindings" -msgstr "GUIフレームワークバインディング" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" -msgid "C/C++ Binding library" -msgstr "C/C++ バインディングライブラリー" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 -msgctxt "@label" -msgid "Data interchange format" -msgstr "データインターフェイスフォーマット" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 -msgctxt "@label" -msgid "Support library for scientific computing" -msgstr "サイエンスコンピューティングを操作するためのライブラリーサポート" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" -msgid "Support library for faster math" -msgstr "ファターマスを操作するためのライブラリーサポート" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" -msgid "Support library for handling STL files" -msgstr "STLファイルを操作するためのライブラリーサポート" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" -msgid "Support library for handling planar objects" -msgstr "平面対象物を操作するためのライブラリーサポート" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" -msgid "Support library for handling triangular meshes" -msgstr "参画メッシュを操作するためのライブラリーサポート" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" -msgid "Support library for handling 3MF files" -msgstr "3MFファイルを操作するためのライブラリーサポート" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 -msgctxt "@label" -msgid "Support library for file metadata and streaming" -msgstr "ファイルメタデータとストリーミングのためのライブラリーサポート" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 -msgctxt "@label" -msgid "Serial communication library" -msgstr "シリアルコミュニケーションライブラリー" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 -msgctxt "@label" -msgid "ZeroConf discovery library" -msgstr "ZeroConfディスカバリーライブラリー" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" -msgid "Polygon clipping library" -msgstr "ポリゴンクリッピングライブラリー" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@Label" -msgid "Static type checker for Python" -msgstr "Python用の静的型チェッカー" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@Label" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "SSLの信頼性を検証するためのルート証明書" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 -msgctxt "@Label" -msgid "Python Error tracking library" -msgstr "Pythonエラー追跡ライブラリー" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 -msgctxt "@label" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "Prusa Research開発のポリゴンパッキングライブラリー" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -msgctxt "@label" -msgid "Python bindings for libnest2d" -msgstr "libnest2dのPythonバインディング" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" -msgid "Support library for system keyring access" -msgstr "システムキーリングアクセスを操作するためのライブラリーサポート" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" -msgid "Python extensions for Microsoft Windows" -msgstr "Microsoft Windows用のPython拡張機能" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" -msgid "Font" -msgstr "フォント" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" -msgid "SVG icons" -msgstr "SVGアイコン" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" -msgid "Linux cross-distribution application deployment" -msgstr "Linux 分散アプリケーションの開発" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "ファイルを開く" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 -msgctxt "@action:button" -msgid "Import all as models" -msgstr "すべてをモデルとして取り入れる" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 -msgctxt "@title:window" -msgid "Save Project" -msgstr "プロジェクトを保存" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "エクストルーダー%1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1とフィラメント" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 -msgctxt "@action:label" -msgid "Material" -msgstr "材料" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "保存中のプロジェクトサマリーを非表示にする" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 -msgctxt "@action:button" -msgid "Save" -msgstr "保存" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 -msgctxt "@title:window" -msgid "Discard or Keep changes" -msgstr "変更を取り消すか保存するか" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 -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'からデフォルトの設定を読み込むこともできます。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 -msgctxt "@title:column" -msgid "Profile settings" -msgstr "プロファイル設定" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 -msgctxt "@title:column" -msgid "Current changes" -msgstr "現在の変更" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 -msgctxt "@option:discardOrKeep" -msgid "Always ask me this" -msgstr "毎回確認する" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 -msgctxt "@option:discardOrKeep" -msgid "Discard and never ask again" -msgstr "取り消し、再度確認しない" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 -msgctxt "@option:discardOrKeep" -msgid "Keep and never ask again" -msgstr "キープし、再度確認しない" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 -msgctxt "@action:button" -msgid "Discard changes" -msgstr "変更を破棄" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 -msgctxt "@action:button" -msgid "Keep changes" -msgstr "変更を維持" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 -msgctxt "@title:window" -msgid "Open project file" -msgstr "プロジェクトを開く" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "選択を記憶させる" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 -msgctxt "@action:button" -msgid "Open as project" -msgstr "プロジェクトを開く" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 -msgctxt "@action:button" -msgid "Import models" -msgstr "モデルを取り込む" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 -msgctxt "@label" -msgid "Active print" -msgstr "プリントをアクティベートする" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 -msgctxt "@label" -msgid "Job Name" -msgstr "ジョブネーム" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 -msgctxt "@label" -msgid "Printing Time" -msgstr "プリント時間" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 -msgctxt "@label" -msgid "Estimated time left" -msgstr "残り時間" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "クラウド接続は現在利用できません。インターネット接続を確認してください。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Add printer" -msgstr "プリンターの追加" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 -msgctxt "@button" -msgid "Manage printers" -msgstr "プリンター管理" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "キャンセルしたプリンター" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "プリンターのプリセット" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 -msgctxt "@label" -msgid "Print settings" -msgstr "プリント設定" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -msgctxt "@label shown when we load a Gcode file" -msgid "Print setup disabled. G-code file can not be modified." -msgstr "印刷設定は無効にされました。G-code ファイルは変更できません。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 -msgctxt "@label" -msgid "Profile" -msgstr "プロファイル" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 -msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "" -"いくらかの設定プロファイルにある値とことなる場合無効にします。\n" -"プロファイルマネージャーをクリックして開いてください。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 -msgctxt "@label:header" -msgid "Custom profiles" -msgstr "カスタムプロファイル" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "今の変更を破棄する" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "推奨" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "カスタム" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "オン" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "オフ" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" -msgstr "実験" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 -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プロファイルがありません。代わりにデフォルトの目的が使用されます" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 -msgctxt "@label" -msgid "Profiles" -msgstr "プロファイル" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 -msgctxt "@tooltip" -msgid "You have modified some profile settings. If you want to change these go to custom mode." -msgstr "プロファイルの設定がいくつか変更されました。変更を有効にするにはカスタムモードに移動してください。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 -msgctxt "@label" -msgid "Support" -msgstr "サポート" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 -msgctxt "@label" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "オーバーハングがあるモデルにサポートを生成します。このサポート構造なしでは、プリント中にオーバーハングのパーツが崩壊してしまいます。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 -msgctxt "@label" -msgid "Gradual infill" -msgstr "インフィル半減" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "グラデュアルインフィルはトップに向かうに従ってインフィルの量を増やします。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "密着性" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 -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/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "プロジェクトを保存..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "ネットワーク対応プリンター" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "ローカルプリンター" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "材料" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "お気に入り" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "汎用" - -# can’t enter japanese texts -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 -msgctxt "@label" -msgid "Print Selected Model With:" -msgid_plural "Print Selected Models With:" -msgstr[0] "選択したモデルで印刷:" - -# can’t eneter japanese texts -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "選択した複数のモデル" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "コピーの数" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "プロジェクトを保存... (&S)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "エクスポート... (&E)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "選択エクスポート..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "構成" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "カスタム" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "プリンター" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "有効" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "フィラメント" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "この材料の組み合わせの接着に接着材を使用する。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 -msgctxt "@tooltip" -msgid "The configuration of this extruder is not allowed, and prohibits slicing." -msgstr "このエクストルーダーの構成が許可されておらず、スライスを妨げています。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 -msgctxt "@tooltip" -msgid "There are no profiles matching the configuration of this extruder." -msgstr "このエクストルーダーの構成に一致するプロファイルがありません。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 -msgctxt "@label" -msgid "Select configuration" -msgstr "構成の選択" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 -msgctxt "@label" -msgid "Configurations" -msgstr "構成" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "プリンタから利用可能な構成を読み込んでいます..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 -msgctxt "@label" -msgid "The configurations are not available because the printer is disconnected." -msgstr "プリンタが接続されていないため、構成は利用できません。" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "マーケットプレース" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "ファイルを開く..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "&プリンター" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&フィラメント" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "アクティブエクストルーダーとしてセットする" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "エクストルーダーを有効にする" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "エクストルーダーを無効にする" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "最近開いたファイルを開く" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "ビジブル設定" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "すべてのカテゴリを折りたたむ" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "視野のセッティングを管理する..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "カメラ位置 (&C)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "カメラビュー" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "パースペクティブ表示" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "平行投影表示" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "ビルドプレート (&B)" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 -msgctxt "@label" -msgid "View type" -msgstr "タイプ表示" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 -msgctxt "@label" -msgid "Is printed as support." -msgstr "サポートとしてプリントされます。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "このモデルに重なる他のモデルは修正されます。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "このモデルとのインフィル交差は修正されます。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "このモデルとの重なりはサポートされません。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "%1個の設定を上書きします。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "プロファイル" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 -msgctxt "@action:button" -msgid "Activate" -msgstr "アクティベート" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "作成する" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "複製" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 -msgctxt "@action:button" -msgid "Rename" -msgstr "名を変える" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -msgctxt "@action:button" -msgid "Import" -msgstr "取り込む" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -msgctxt "@action:button" -msgid "Export" -msgstr "書き出す" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "プロファイルを作る" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "このプロファイルの名前を指定してください。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "プロファイルを複製する" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "モデルを取り除きました" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "%1を取り外しますか?この作業はやり直しが効きません!" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "プロファイル名を変える" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "プロファイルを取り込む" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "プロファイルを書き出す" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "プリンター:%1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "プロファイルを現在のセッティング" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "設定は選択したプロファイルにマッチしています。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "グローバル設定" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 -msgctxt "@title:tab" -msgid "General" -msgstr "一般" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 -msgctxt "@label" -msgid "Interface" -msgstr "インターフェイス" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 -msgctxt "@label" -msgid "Currency:" -msgstr "通貨:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 -msgctxt "@label" -msgid "Theme:" -msgstr "テーマ:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 -msgctxt "@label" -msgid "You will need to restart the application for these changes to have effect." -msgstr "それらの変更を有効にするためにはアプリケーションを再起動しなけらばなりません。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "セッティングを変更すると自動にスライスします。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "自動的にスライスする" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "ビューポイント機能" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 -msgctxt "@info:tooltip" -msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." -msgstr "赤でサポートができないエリアをハイライトしてください。サポートがない場合、正確にプリントができない場合があります。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "ディスプレイオーバーハング" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "モデルエラーを表示" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 -msgctxt "@info:tooltip" -msgid "Moves the camera so the model is in the center of the view when a model is selected" -msgstr "モデルの選択時にモデルがカメラの中心に見えるようにカメラを移動する" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "アイテムを選択するとカメラが中心にきます" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "Curaのデフォルトのズーム機能は変更できるべきか?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "カメラのズーム方向を反転する。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "ズームはマウスの方向に動くべきか?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -msgctxt "@info:tooltip" -msgid "Zooming towards the mouse is not supported in the orthographic perspective." -msgstr "マウスに対するズームは、正射投影ではサポートされていません。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "マウスの方向にズームする" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved so that they no longer intersect?" -msgstr "交差を避けるためにプラットホーム上のモデルを移動するべきですか?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "モデルの距離が離れているように確認する" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved down to touch the build plate?" -msgstr "プラットホーム上のモデルはブルドプレートに触れるように下げるべきか?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "自動的にモデルをビルドプレートに落とす" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "G-codeリーダーに注意メッセージを表示します。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "G-codeリーダーに注意メッセージ" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "レイヤーはコンパティビリティモードに強制されるべきか?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "レイヤービューコンパティビリティモードを強制する。(再起動が必要)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "Curaを終了した場所で開くようにしますか?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "開始時にウィンドウの位置を復元" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "どのような種類のカメラレンダリングを使用する必要がありますか?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "カメラレンダリング:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 -msgid "Perspective" -msgstr "パースペクティブ表示" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 -msgid "Orthographic" -msgstr "平行投影表示" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "ファイルを開くまた保存" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 -msgctxt "@info:tooltip" -msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "デスクトップまたは外部アプリケーションから開いたファイルをCuraの同じインスタンスで開く必要がありますか?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Curaの単一インスタンスを使用" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 -msgctxt "@info:tooltip" -msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" -msgstr "Curaの単一インスタンスに新しいモデルをロードする前に、ビルドプレートをクリアする必要はありますか?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 -msgctxt "@option:check" -msgid "Clear buildplate before loading model into the single instance" -msgstr "モデルを単一のインスタンスにロードする前にビルドプレートをクリア" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 -msgctxt "@info:tooltip" -msgid "Should models be scaled to the build volume if they are too large?" -msgstr "モデルがビルドボリュームに対して大きすぎる場合はスケールされるべきか?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "大きなモデルをスケールする" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "極端に小さなモデルをスケールアップする" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "モデルはロード後に選択しますか?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "ロード後にモデルを選択" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 -msgctxt "@info:tooltip" -msgid "Should a prefix based on the printer name be added to the print job name automatically?" -msgstr "プリンター名の敬称はプリントジョブの名前に自動的に加えられるべきか?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "プリンターの敬称をジョブネームに加える" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "プロジェクトファイルを保存時にサマリーを表示するべきか?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "プロジェクトを保存時にダイアログサマリーを表示する" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "プロジェクトファイルを開く際のデフォルト機能" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "プロジェクトファイル開く際のデフォルト機能: " - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "毎回確認する" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "常にプロジェクトとして開く" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "常にモデルを取り込む" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 -msgctxt "@window:text" -msgid "Default behavior for changed setting values when switching to a different profile: " -msgstr "プロファイル交換時に設定値を変更するためのデフォルト処理: " - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "常に変更した設定を廃棄する" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "常に変更した設定を新しいプロファイルに送信する" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 -msgctxt "@label" -msgid "Privacy" -msgstr "プライバシー" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 -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アドレス、個人的な情報は送信されたり保存されたりはしません。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "(不特定な) プリントインフォメーションを送信" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 -msgctxt "@action:button" -msgid "More information" -msgstr "詳細" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 -msgctxt "@label" -msgid "Updates" -msgstr "アップデート" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 -msgctxt "@info:tooltip" -msgid "Should Cura check for updates when the program is started?" -msgstr "Curaのプログラム開始時にアップデートがあるかチェックしますか?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "スタート時にアップデートあるかどうかのチェック" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 -msgctxt "@info:tooltip" -msgid "When checking for updates, only check for stable releases." -msgstr "アップデートを確認する際に、安定版リリースのみを確認します。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 -msgctxt "@option:radio" -msgid "Stable releases only" -msgstr "安定版リリースのみ" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 -msgctxt "@info:tooltip" -msgid "When checking for updates, check for both stable and for beta releases." -msgstr "アップデートを確認する際に、安定版とベータ版の両方のリリースを確認します。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 -msgctxt "@option:radio" -msgid "Stable and Beta releases" -msgstr "安定版およびベータ版リリース" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 -msgctxt "@option:check" -msgid "Get notifications for plugin updates" -msgstr "プラグインのアップデートを通知" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "インフォメーション" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "直径変更の確認" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "ディスプレイ名" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "フィラメントタイプ" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "色" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "プロパティ" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "密度" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "直径" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "フィラメントコスト" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "フィラメントの重さ" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "フィラメントの長さ" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "毎メーターコスト" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -msgctxt "@label" -msgid "This material is linked to %1 and shares some of its properties." -msgstr "このフィラメントは %1にリンクすプロパティーを共有する。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "フィラメントをリンクを外す" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "記述" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "接着のインフォメーション" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "作成する" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "複製" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "プリンターと同期する" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "プリンター" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "フィラメントを取り込む" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "%1フィラメントを取り込むことができない: %2" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "フィラメント%1の取り込みに成功しました" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "フィラメントを書き出す" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "フィラメントの書き出しに失敗しました %1: %2" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "フィラメントの%1への書き出しが完了ました" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 -msgctxt "@title:window" -msgid "Sync materials with printers" -msgstr "材料をプリンターと同期" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 -msgctxt "@title:header" -msgid "Sync materials with printers" -msgstr "材料をプリンターと同期" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 -msgctxt "@text" -msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." -msgstr "簡単な数ステップの手順に従うことで、すべての材料プロファイルをプリンターと同期できるようになります。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 -msgctxt "@button" -msgid "Start" -msgstr "開始" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 -msgctxt "@button" -msgid "Why do I need to sync material profiles?" -msgstr "材料プロファイルを同期する必要があるのはなぜですか?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 -msgctxt "@title:header" -msgid "Sign in" -msgstr "サインイン" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 -msgctxt "@button" -msgid "Sync materials with USB" -msgstr "材料をUSBで同期" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 -msgctxt "@title:header" -msgid "The following printers will receive the new material profiles:" -msgstr "以下のプリンターは新しい材料プロファイルを受け取ります:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 -msgctxt "@title:header" -msgid "Something went wrong when sending the materials to the printers." -msgstr "材料をプリンターに送信する際に問題が発生しました。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 -msgctxt "@title:header" -msgid "Material profiles successfully synced with the following printers:" -msgstr "材料プロファイルが以下のプリンターと正常に同期されました:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 -msgctxt "@button" -msgid "Troubleshooting" -msgstr "トラブルシューティング" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 -msgctxt "@text Asking the user whether printers are missing in a list." -msgid "Printers missing?" -msgstr "プリンターがありませんか?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 -msgctxt "@text" -msgid "Make sure all your printers are turned ON and connected to Digital Factory." -msgstr "すべてのプリンターの電源が入っていて、Digital Factoryに接続されていることを確認してください。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 -msgctxt "@button" -msgid "Refresh List" -msgstr "リストを更新" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 -msgctxt "@button" -msgid "Try again" -msgstr "やり直してください" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Done" -msgstr "完了" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 -msgctxt "@button" -msgid "Sync" -msgstr "同期" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 -msgctxt "@button" -msgid "Syncing" -msgstr "スライス" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 -msgctxt "@title:header" -msgid "No printers found" -msgstr "プリンターが見つかりません" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 -msgctxt "@button" -msgid "Learn how to connect your printer to Digital Factory" -msgstr "Digital Factoryにプリンターを接続する方法について詳しく見る" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 -msgctxt "@button" -msgid "Refresh" -msgstr "更新" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 -msgctxt "@title:header" -msgid "Sync material profiles via USB" -msgstr "材料プロファイルをUSB経由で同期する" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 -msgctxt "@text" -msgid "Click the export material archive button." -msgstr "材料アーカイブのエクスポートボタンをクリックします。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 -msgctxt "@text" -msgid "Save the .umm file on a USB stick." -msgstr ".ummファイルをUSBメモリーに保存します。" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 -msgctxt "@button" -msgid "How to load new material profiles to my printer" -msgstr "新しい材料プロファイルをプリンターに読み込む方法" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Export material archive" -msgstr "材料アーカイブのエクスポート" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "すべての材料を書き出す" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "視野設定" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "全てを調べる" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 -msgctxt "@title:tab" -msgid "Printers" -msgstr "プリンター" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "計算された" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "設定" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "プロファイル" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "現在" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "ユニット" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "プリンターにつながっていません" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "今プリンタはコマンドを処理できません" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "メンテナンス。プリンターをチェックしてください" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "プリンターへの接続が切断されました" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "プリント中..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "一時停止しました" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "準備中..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "造形物を取り出してください" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "プリント中止" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "本当にプリントを中止してもいいですか?" - -# can’t enter japanese -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 -msgctxt "@label:button" -msgid "My printers" -msgstr "マイプリンター" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 -msgctxt "@tooltip:button" -msgid "Monitor printers in Ultimaker Digital Factory." -msgstr "Ultimaker Digital Factoryでプリンターをモニタリングします。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 -msgctxt "@tooltip:button" -msgid "Create print projects in Digital Library." -msgstr "Digital Libraryでプリントプロジェクトを作成します。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 -msgctxt "@label:button" -msgid "Print jobs" -msgstr "プリントジョブ" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 -msgctxt "@tooltip:button" -msgid "Monitor print jobs and reprint from your print history." -msgstr "プリントジョブをモニタリングしてプリント履歴から再プリントします。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 -msgctxt "@tooltip:button" -msgid "Extend Ultimaker Cura with plugins and material profiles." -msgstr "Ultimaker Curaをプラグインと材料プロファイルで拡張します。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 -msgctxt "@tooltip:button" -msgid "Become a 3D printing expert with Ultimaker e-learning." -msgstr "Ultimaker eラーニングで3Dプリンティングのエキスパートになります。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 -msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "Ultimakerのサポート" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 -msgctxt "@tooltip:button" -msgid "Learn how to get started with Ultimaker Cura." -msgstr "Ultimaker Curaの使用を開始する方法を確認します。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 -msgctxt "@label:button" -msgid "Ask a question" -msgstr "質問をする" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 -msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "Ultimaker Communityをご参照ください。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 -msgctxt "@label:button" -msgid "Report a bug" -msgstr "バグを報告" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 -msgctxt "@tooltip:button" -msgid "Let developers know that something is going wrong." -msgstr "問題が発生していることを開発者にお知らせください。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 -msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "Ultimakerウェブサイトをご確認ください。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "プリンターコントロール" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "ジョグの位置" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "ジョグの距離" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "G-codeの送信" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "エクストルーダー" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "このホットエンドの現在の温度です。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "ホットエンドをプリヒートする温度です。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "キャンセル" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "プレヒート" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "エクストルーダーのマテリアルの色。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "エクストルーダー入ったフィラメント。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "ノズルが入ったエクストルーダー。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "このプリンターはつながっていません。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "ビルドプレート" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "現在のヒーティッドベッドの温度。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "ベッドのプリヒート温度。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -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/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "サインイン" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 msgctxt "@text" msgid "" "- Add material profiles and plug-ins from the Marketplace\n" @@ -5315,372 +3449,2281 @@ msgstr "" "- 材料プロファイルとプラグインのバックアップと同期\n" "- Ultimakerコミュニティで48,000人以上のユーザーとアイデアを共有してアドバイスをもらう" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" msgid "Create a free Ultimaker account" msgstr "無料のUltimakerアカウントを作成" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "最終更新:%1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Ultimakerアカウント" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 -msgctxt "@button" -msgid "Sign Out" -msgstr "サインアウト" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "確認しています..." -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "アカウント同期" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "問題が発生しました..." -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "保留中の更新をインストール" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "アカウントの更新を確認" -#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "無題" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "最終更新:%1" -#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "Ultimakerアカウント" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "サインアウト" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" -msgid "No items to select from" -msgstr "選択するアイテムがありません" +msgid "No time estimation available" +msgstr "時間予測がありません" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Preview" +msgstr "プレビュー" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +msgctxt "@label" +msgid "Time estimation" +msgstr "時間予測" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107 +msgctxt "@label" +msgid "Material estimation" +msgstr "材料予測" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +msgctxt "@label:PrintjobStatus" +msgid "Slicing..." +msgstr "スライス中..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Processing" +msgstr "処理" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +msgctxt "@button" +msgid "Slice" +msgstr "スライス" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Cancel" +msgstr "キャンセル" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "オンラインでトラブルシューティングガイドを表示する" +msgid "Show Online Troubleshooting" +msgstr "オンライントラブルシューティングを表示" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "留め金 フルスクリーン" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "全画面表示を終了する" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "&取り消す" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "&やりなおす" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "&やめる" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "3Dビュー" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "フロントビュー" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "トップビュー" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "底面図" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "左サイドビュー" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "右サイドビュー" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "Curaを構成する..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "&プリンターを追加する..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "プリンターを管理する..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "フィラメントを管理する..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu" +#: /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." msgid "Add more materials from Marketplace" msgstr "マーケットプレイスから材料を追加" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 msgctxt "@action:inmenu menubar:profile" msgid "&Update profile with current settings/overrides" msgstr "&現在の設定/無効にプロファイルをアップデートする" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "&変更を破棄する" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." msgstr "&今の設定/無効からプロファイルを作成する..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "プロファイルを管理する..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "オンラインドキュメントを表示する" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "報告&バグ" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "新情報" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "アバウト..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "選択内容を削除" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "選択内容を中央に移動" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "選択内容を増倍" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "モデルを消去する" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "プラットホームの中心にモデルを配置" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "&モデルグループ" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "モデルを非グループ化" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "モ&デルの合体" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "&モデルを増倍する..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "すべてのモデル選択" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "ビルドプレート上のクリア" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "すべてのモデルを読み込む" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "すべてのモデルをすべてのビルドプレートに配置" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "すべてのモデルをアレンジする" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "選択をアレンジする" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "すべてのモデルのポジションをリセットする" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "すべてのモデル&変更点をリセットする" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "&ファイルを開く(s)..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&新しいプロジェクト..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "コンフィグレーションのフォルダーを表示する" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "視野のセッティングを構成する..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "&マーケットプレース" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "マイプリンター" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "Digital Libraryでプリントプロジェクトを作成します。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "プリントジョブ" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Extend Ultimaker Cura with plugins and material profiles." +msgstr "Ultimaker Curaをプラグインと材料プロファイルで拡張します。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +msgctxt "@tooltip:button" +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 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "Ultimakerのサポート" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +msgctxt "@tooltip:button" +msgid "Learn how to get started with Ultimaker Cura." +msgstr "Ultimaker Curaの使用を開始する方法を確認します。" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "Ultimaker Communityをご参照ください。" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "問題が発生していることを開発者にお知らせください。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "Ultimakerウェブサイトをご確認ください。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 msgctxt "@label" -msgid "This setting is not used because all the settings that it influences are overridden." -msgstr "影響を与えるすべての設定がオーバーライドされるため、この設定は使用されません。" +msgid "Hex" +msgstr "六角" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 -msgctxt "@label Header for list of settings." -msgid "Affects" -msgstr "影響" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 -msgctxt "@label Header for list of settings." -msgid "Affected By" -msgstr "次によって影響を受ける" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 msgctxt "@label" -msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." -msgstr "この設定は常に全てのエクストルーダーに共有されています。ここですべてのエクストルーダーの数値を変更できます。" +msgid "This package will be installed after restarting." +msgstr "このパッケージは再起動後にインストールされます。" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 -msgctxt "@label" -msgid "This setting is resolved from conflicting extruder-specific values:" -msgstr "この設定はエクストルーダー固有の競合する値から取得します:" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:463 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +msgctxt "@title:tab" +msgid "General" +msgstr "一般" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +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 +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 +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 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "プロファイル" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +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 +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 +msgctxt "@title:window" +msgid "Open file(s)" +msgstr "ファイルを開く" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +msgctxt "@window:title" +msgid "Install Package" +msgstr "パッケージをインストール" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "ファイルを開く(s)" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +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 +msgctxt "@title:window" +msgid "Add Printer" +msgstr "プリンターを追加する" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +msgctxt "@title:window" +msgid "What's New" +msgstr "新情報" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" +msgid "version: %1" +msgstr "バージョン: %1" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +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 +msgctxt "@info:credit" msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." -msgstr "" -"この設定にプロファイルと異なった値があります。\n" -"プロファイルの値を戻すためにクリックしてください。" +"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura proudly uses the following open source projects:" +msgstr "CuraはUltimakerB.Vのコミュニティの協力によって開発され、Curaはオープンソースで使えることを誇りに思います:" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"このセッティングは通常計算されます、今は絶対値に固定されています。\n" -"計算された値に変更するためにクリックを押してください。" +msgid "Graphical user interface" +msgstr "グラフィックユーザーインターフェイス" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +msgctxt "@label" +msgid "Application framework" +msgstr "アプリケーションフレームワーク" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label" +msgid "G-code generator" +msgstr "G-codeの生成" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label" +msgid "Interprocess communication library" +msgstr "インタープロセスコミュニケーションライブラリー" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label" +msgid "Python bindings for libnest2d" +msgstr "libnest2dのPythonバインディング" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 +msgctxt "@label" +msgid "Polygon packing library, developed by Prusa Research" +msgstr "Prusa Research開発のポリゴンパッキングライブラリー" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 +msgctxt "@label" +msgid "Support library for handling 3MF files" +msgstr "3MFファイルを操作するためのライブラリーサポート" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 +msgctxt "@label" +msgid "Support library for file metadata and streaming" +msgstr "ファイルメタデータとストリーミングのためのライブラリーサポート" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 +msgctxt "@label" +msgid "Programming language" +msgstr "プログラミング用語" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +msgctxt "@label" +msgid "GUI framework" +msgstr "GUIフレームワーク" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label" +msgid "GUI framework bindings" +msgstr "GUIフレームワークバインディング" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label" +msgid "C/C++ Binding library" +msgstr "C/C++ バインディングライブラリー" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label" +msgid "Data interchange format" +msgstr "データインターフェイスフォーマット" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label" +msgid "Font" +msgstr "フォント" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +msgctxt "@label" +msgid "Polygon clipping library" +msgstr "ポリゴンクリッピングライブラリー" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +msgctxt "@label" +msgid "JSON parser" +msgstr "JSON解析プログラム" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label" +msgid "Utility functions, including an image loader" +msgstr "画像ローダーなどを含むユーティリティ機能" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label" +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" +msgid "Root Certificates for validating SSL trustworthiness" +msgstr "SSLの信頼性を検証するためのルート証明書" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +msgctxt "@label" +msgid "Compatibility between Python 2 and 3" +msgstr "Python2および3との互換性" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label" +msgid "Support library for system keyring access" +msgstr "システムキーリングアクセスを操作するためのライブラリーサポート" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +msgctxt "@label" +msgid "Support library for faster math" +msgstr "ファターマスを操作するためのライブラリーサポート" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +msgctxt "@label" +msgid "Support library for handling STL files" +msgstr "STLファイルを操作するためのライブラリーサポート" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:166 +msgctxt "@label" +msgid "Python bindings for Clipper" +msgstr "ClipperのPythonバインディング" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label" +msgid "Serial communication library" +msgstr "シリアルコミュニケーションライブラリー" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label" +msgid "Support library for scientific computing" +msgstr "サイエンスコンピューティングを操作するためのライブラリーサポート" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:169 +msgctxt "@Label" +msgid "Python Error tracking library" +msgstr "Pythonエラー追跡ライブラリー" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label" +msgid "Support library for handling triangular meshes" +msgstr "参画メッシュを操作するためのライブラリーサポート" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:171 +msgctxt "@label" +msgid "ZeroConf discovery library" +msgstr "ZeroConfディスカバリーライブラリー" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 +msgctxt "@label" +msgid "Universal build system configuration" +msgstr "ユニバーサルビルドシステム設定" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 +msgctxt "@label" +msgid "Dependency and package manager" +msgstr "パッケージ管理システム" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label" +msgid "Packaging Python-applications" +msgstr "Pythonアプリケーションのパッケージ化" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label" +msgid "Linux cross-distribution application deployment" +msgstr "Linux 分散アプリケーションの開発" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:178 +msgctxt "@label" +msgid "Generating Windows installers" +msgstr "Windowsインストーラーの生成" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "選択を記憶させる" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +msgctxt "@action:button" +msgid "Open as project" +msgstr "プロジェクトを開く" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +msgctxt "@action:button" +msgid "Import models" +msgstr "モデルを取り込む" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 "" +"一部のプロファイル設定がカスタマイズされています。\n" +"これらの変更された設定をプロファイルの切り替え後も維持しますか?\n" +"変更を破棄して'%1'からデフォルトの設定を読み込むこともできます。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +msgctxt "@title:column" +msgid "Profile settings" +msgstr "プロファイル設定" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +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 +msgctxt "@option:discardOrKeep" +msgid "Always ask me this" +msgstr "毎回確認する" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +msgctxt "@option:discardOrKeep" +msgid "Discard and never ask again" +msgstr "取り消し、再度確認しない" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:106 +msgctxt "@option:discardOrKeep" +msgid "Keep and never ask again" +msgstr "キープし、再度確認しない" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:136 +msgctxt "@action:button" +msgid "Discard changes" +msgstr "変更を破棄" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +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?" +msgstr "選択したファイルの中に複数のプロジェクトが存在します。1ファイルのみ一度に開けます。ファイルからモデルを先に取り込むことをお勧めします。続けますか?" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:window" +msgid "Save Project" +msgstr "プロジェクトを保存" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:175 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "エクストルーダー%1" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1とフィラメント" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +msgctxt "@action:label" +msgid "Material" +msgstr "材料" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +msgctxt "@action:label" +msgid "Don't show project summary on save again" +msgstr "保存中のプロジェクトサマリーを非表示にする" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:296 +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 +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 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "&設定" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87 +msgctxt "@title:window" +msgid "New project" +msgstr "新しいプロジェクト" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Marketplace" +msgstr "マーケットプレース" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +msgctxt "@header" +msgid "Configurations" +msgstr "構成" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Marketplace" +msgstr "マーケットプレース" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@label" +msgid "Select configuration" +msgstr "構成の選択" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 +msgctxt "@label" +msgid "Configurations" +msgstr "構成" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Enabled" +msgstr "有効" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +msgctxt "@label" +msgid "Material" +msgstr "フィラメント" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "この材料の組み合わせの接着に接着材を使用する。" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Number of Copies" +msgstr "コピーの数" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "拡張子" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "プロジェクトを保存... (&S)" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "選択エクスポート..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "材料" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "汎用" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "プレファレンス" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "ネットワーク対応プリンター" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "最近開いたファイルを開く" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "ビジブル設定" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "視野のセッティングを管理する..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "カメラ位置 (&C)" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "パースペクティブ表示" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59 +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "平行投影表示" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "今プリンタはコマンドを処理できません" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:MonitorStatus" +msgid "Lost connection with the printer" +msgstr "プリンターへの接続が切断されました" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:142 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "プリント中..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "一時停止しました" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "準備中..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:150 +msgctxt "@label:MonitorStatus" +msgid "Please remove the print" +msgstr "造形物を取り出してください" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:318 +msgctxt "@label" +msgid "Abort Print" +msgstr "プリント中止" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Is printed as support." +msgstr "サポートとしてプリントされます。" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "このモデルとのインフィル交差は修正されます。" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@action:button" +msgid "Defaults" +msgstr "デフォルト" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +msgctxt "@label" +msgid "Interface" +msgstr "インターフェイス" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +msgctxt "@heading" +msgid "-- incomplete --" +msgstr "-- 未完了 --" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +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." +msgid "Theme*:" +msgstr "テーマ*:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +msgctxt "@info:tooltip" +msgid "Slice automatically when changing settings." +msgstr "セッティングを変更すると自動にスライスします。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:328 +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." +msgstr "*これらの変更を有効にするには、アプリケーションを再始動する必要があります。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "ビューポイント機能" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +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 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "ディスプレイオーバーハング" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +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 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "モデルエラーを表示" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +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 +msgctxt "@action:button" +msgid "Center camera when item is selected" +msgstr "アイテムを選択するとカメラが中心にきます" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:411 +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 +msgctxt "@action:button" +msgid "Invert the direction of camera zoom." +msgstr "カメラのズーム方向を反転する。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +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 +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 +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "マウスの方向にズームする" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:463 +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 +msgctxt "@option:check" +msgid "Ensure models are kept apart" +msgstr "モデルの距離が離れているように確認する" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:477 +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 +msgctxt "@option:check" +msgid "Automatically drop models to the build plate" +msgstr "自動的にモデルをビルドプレートに落とす" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:494 +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 +msgctxt "@option:check" +msgid "Caution message in g-code reader" +msgstr "G-codeリーダーに注意メッセージ" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:511 +msgctxt "@info:tooltip" +msgid "Should layer be forced into compatibility mode?" +msgstr "レイヤーはコンパティビリティモードに強制されるべきか?" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:516 +msgctxt "@option:check" +msgid "Force layer view compatibility mode (restart required)" +msgstr "レイヤービューコンパティビリティモードを強制する。(再起動が必要)" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:526 +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 +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "開始時にウィンドウの位置を復元" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:541 +msgctxt "@info:tooltip" +msgid "What type of camera rendering should be used?" +msgstr "どのような種類のカメラレンダリングを使用する必要がありますか?" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "カメラレンダリング:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +msgid "Perspective" +msgstr "パースペクティブ表示" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +msgid "Orthographic" +msgstr "平行投影表示" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "ファイルを開くまた保存" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +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 +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "Curaの単一インスタンスを使用" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619 +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 +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 +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 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "大きなモデルをスケールする" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +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 +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "極端に小さなモデルをスケールアップする" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:665 +msgctxt "@info:tooltip" +msgid "Should models be selected after they are loaded?" +msgstr "モデルはロード後に選択しますか?" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "ロード後にモデルを選択" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:680 +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 +msgctxt "@option:check" +msgid "Add machine prefix to job name" +msgstr "プリンターの敬称をジョブネームに加える" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:695 +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 +msgctxt "@option:check" +msgid "Show summary dialog when saving project" +msgstr "プロジェクトを保存時にダイアログサマリーを表示する" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:709 +msgctxt "@info:tooltip" +msgid "Default behavior when opening a project file" +msgstr "プロジェクトファイルを開く際のデフォルト機能" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:717 +msgctxt "@window:text" +msgid "Default behavior when opening a project file: " +msgstr "プロジェクトファイル開く際のデフォルト機能: " + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:732 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "毎回確認する" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +msgctxt "@option:openProject" +msgid "Always open as a project" +msgstr "常にプロジェクトとして開く" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "常にモデルを取り込む" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +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 +msgctxt "@label" +msgid "Profiles" +msgstr "プロファイル" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +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 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "常に変更した設定を廃棄する" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:801 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "常に変更した設定を新しいプロファイルに送信する" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:835 +msgctxt "@label" +msgid "Privacy" +msgstr "プライバシー" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +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アドレス、個人的な情報は送信されたり保存されたりはしません。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "(不特定な) プリントインフォメーションを送信" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:876 +msgctxt "@label" +msgid "Updates" +msgstr "アップデート" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +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 +msgctxt "@option:check" +msgid "Check for updates on start" +msgstr "スタート時にアップデートあるかどうかのチェック" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:904 +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 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "安定版リリースのみ" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +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 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "安定版およびベータ版リリース" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +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!" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:941 +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "プラグインのアップデートを通知" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Rename" +msgstr "名を変える" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Import" +msgstr "取り込む" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@title:window" +msgid "Import Material" +msgstr "フィラメントを取り込む" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Material" +msgstr "フィラメントを書き出す" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "材料をプリンターと同期" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Why do I need to sync material profiles?" +msgstr "材料プロファイルを同期する必要があるのはなぜですか?" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 +msgctxt "@button" +msgid "Start" +msgstr "開始" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +msgctxt "@title:header" +msgid "Sign in" +msgstr "サインイン" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +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 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "材料をUSBで同期" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +msgctxt "@title:header" +msgid "The following printers will receive the new material profiles:" +msgstr "The following printers will receive the new material profiles:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:198 +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 +msgctxt "@title:header" +msgid "Material profiles successfully synced with the following printers:" +msgstr "Material profiles successfully synced with the following 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 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "トラブルシューティング" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +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 +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 +msgctxt "@button" +msgid "Refresh List" +msgstr "リストを更新" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +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 +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 +msgctxt "@button" +msgid "Sync" +msgstr "同期" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +msgctxt "@button" +msgid "Syncing" +msgstr "スライス" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +msgctxt "@title:header" +msgid "No printers found" +msgstr "プリンターが見つかりません" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +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 +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 +msgctxt "@button" +msgid "Refresh" +msgstr "更新" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +msgctxt "@title:header" +msgid "Sync material profiles via USB" +msgstr "材料プロファイルをUSB経由で同期する" + +#: /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." +msgstr "以下の手順に従って、新しい材料プロファイルをプリンターに読み込みます。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:663 +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "材料アーカイブのエクスポートボタンをクリックします。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:664 +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 +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 +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 +msgctxt "@button" +msgid "Back" +msgstr "戻る" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +msgctxt "@button" +msgid "Export material archive" +msgstr "材料アーカイブのエクスポート" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "すべての材料を書き出す" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Display Name" +msgstr "ディスプレイ名" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171 +msgctxt "@label" +msgid "Brand" +msgstr "ブランド" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Color" +msgstr "色" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Properties" +msgstr "プロパティ" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:286 +msgctxt "@label" +msgid "Density" +msgstr "密度" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:319 +msgctxt "@label" +msgid "Diameter" +msgstr "直径" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Filament weight" +msgstr "フィラメントの重さ" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Cost per Meter" +msgstr "毎メーターコスト" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Unlink Material" +msgstr "フィラメントをリンクを外す" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:485 +msgctxt "@label" +msgid "Description" +msgstr "記述" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Print settings" +msgstr "プリント設定" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:tooltip" +msgid "Create new profile from current settings/overrides" +msgstr "現在の設定/上書きから新しいプロファイルを作成します" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Update profile." +msgstr "プロフィールを更新します。" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "今の変更を破棄する" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:label" +msgid "Your current settings match the selected profile." +msgstr "設定は選択したプロファイルにマッチしています。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:175 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "グローバル設定" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +msgctxt "@title:window" +msgid "Create Profile" +msgstr "プロファイルを作る" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "プロファイルを書き出す" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:382 +msgctxt "@title:window" +msgid "Duplicate Profile" +msgstr "プロファイルを複製する" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "視野設定" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" -msgid "Search settings" -msgstr "検索設定" +msgid "Check all" +msgstr "全てを調べる" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 -msgctxt "@action:menu" -msgid "Copy value to all extruders" -msgstr "すべてのエクストルーダーの値をコピーする" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "エクストルーダー" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 -msgctxt "@action:menu" -msgid "Copy all changed values to all extruders" -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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 -msgctxt "@action:menu" -msgid "Hide this setting" -msgstr "この設定を非表示にする" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "このホットエンドの現在の温度です。" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 -msgctxt "@action:menu" -msgid "Don't show this setting" -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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 -msgctxt "@action:menu" -msgid "Keep this setting visible" -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/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 +#: /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 +msgctxt "@label" +msgid "Active print" +msgstr "プリントをアクティベートする" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +msgctxt "@label" +msgid "Job Name" +msgstr "ジョブネーム" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +msgctxt "@label" +msgid "Printing Time" +msgstr "プリント時間" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:180 +msgctxt "@label" +msgid "Estimated time left" +msgstr "残り時間" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 +msgctxt "@label" +msgid "Profile" +msgstr "プロファイル" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 +msgctxt "@tooltip" +msgid "" +"Some setting/override values are different from the values stored in the profile.\n" +"\n" +"Click to open the profile manager." +msgstr "" +"いくらかの設定プロファイルにある値とことなる場合無効にします。\n" +"プロファイルマネージャーをクリックして開いてください。" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@label:Should be short" +msgid "On" +msgstr "オン" + +#: /home/trin/Gedeeld/Projects/Cura/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." +msgstr "カスタムプロファイルが稼働し、一部の設定を上書きしました。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +msgctxt "@info" +msgid "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." +msgstr "一部の設定が変更されました。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +msgctxt "@label" +msgid "Adhesion" +msgstr "密着性" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +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 +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" +msgstr "解像度" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +msgctxt "@label" +msgid "Support" +msgstr "サポート" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +msgctxt "@label" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "オーバーハングがあるモデルにサポートを生成します。このサポート構造なしでは、プリント中にオーバーハングのパーツが崩壊してしまいます。" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 "選択した/%1材料の設定で利用可能なプロファイルがありません。設定を変更してください。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 +msgctxt "@button:label" +msgid "Learn more" +msgstr "詳細を見る" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +msgctxt "@title:column" +msgid "Setting" +msgstr "設定" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +msgctxt "@title:column" +msgid "Profile" +msgstr "プロファイル" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +msgctxt "@title:column" +msgid "Current" +msgstr "現在" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:39 +msgctxt "@title:column Unit of measurement" +msgid "Unit" +msgstr "ユニット" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/SearchBar.qml:17 +msgctxt "@placeholder" +msgid "Search" +msgstr "検索" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5690,140 +5733,358 @@ msgstr "" "いくらかの非表示設定は通常の計算された値と異なる値を使用します。\n" "表示されるようにクリックしてください。" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "このパッケージは再起動後にインストールされます。" +msgid "This setting is not used because all the settings that it influences are overridden." +msgstr "影響を与えるすべての設定がオーバーライドされるため、この設定は使用されません。" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 -msgctxt "@title:tab" -msgid "Settings" -msgstr "設定" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +msgctxt "@label Header for list of settings." +msgid "Affects" +msgstr "影響" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "%1を閉じています" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +msgctxt "@label Header for list of settings." +msgid "Affected By" +msgstr "次によって影響を受ける" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 -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/Settings/SettingItem.qml:190 +msgctxt "@label" +msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." +msgstr "この設定は常に全てのエクストルーダーに共有されています。ここですべてのエクストルーダーの数値を変更できます。" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 -msgctxt "@window:title" -msgid "Install Package" -msgstr "パッケージをインストール" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +msgctxt "@label" +msgid "This setting is resolved from conflicting extruder-specific values:" +msgstr "この設定はエクストルーダー固有の競合する値から取得します:" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "ファイルを開く(s)" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +msgctxt "@label" +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"この設定にプロファイルと異なった値があります。\n" +"プロファイルの値を戻すためにクリックしてください。" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 -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/Settings/SettingItem.qml:334 +msgctxt "@label" +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"このセッティングは通常計算されます、今は絶対値に固定されています。\n" +"計算された値に変更するためにクリックを押してください。" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 -msgctxt "@title:window" -msgid "Add Printer" -msgstr "プリンターを追加する" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +msgctxt "@label:textbox" +msgid "Search settings" +msgstr "検索設定" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 -msgctxt "@title:window" +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:menu" +msgid "Copy all changed values to all extruders" +msgstr "すべてのエクストルーダーに対して変更された値をコピーする" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:menu" +msgid "Don't show this setting" +msgstr "この設定を表示しない" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:tooltip" +msgid "3D View" +msgstr "3Dビュー" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +msgctxt "@info:tooltip" +msgid "Front View" +msgstr "フロントビュー" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "トップビュー" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "左ビュー" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "右ビュー" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "タイプ表示" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "クラウドの応答を待機しています" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:186 +msgctxt "@button" +msgid "Add printer manually" +msgstr "プリンタを手動で追加する" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +msgctxt "@label" +msgid "Manufacturer" +msgstr "製造元" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 +msgctxt "@label" +msgid "Profile author" +msgstr "プロファイル作成者" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 +msgctxt "@label" +msgid "Printer name" +msgstr "プリンター名" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "ネットワークにプリンターはありません。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 +msgctxt "@label" +msgid "Refresh" +msgstr "更新" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "トラブルシューティング" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "プリンターのIPアドレスを入力します。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 +msgctxt "@button" +msgid "Add" +msgstr "追加" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Can't connect to your Ultimaker printer?" +msgstr "Ultimakerプリンターに接続できませんか?" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Connect" +msgstr "接続" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +msgctxt "@label" +msgid "Release Notes" +msgstr "リリースノート" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "材料設定とプラグインのバックアップと同期" + +#: /home/trin/Gedeeld/Projects/Cura/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人以上のユーザーとアイデアを共有してアドバイスをもらう" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +msgctxt "@button" +msgid "Skip" +msgstr "スキップ" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +msgctxt "@text" +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 +msgctxt "@label" +msgid "Empty" +msgstr "空にする" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +msgctxt "@label" +msgid "User Agreement" +msgstr "ユーザー用使用許諾契約" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" msgid "What's New" msgstr "新情報" -#: PerObjectSettingsTool/plugin.json +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:18 +msgctxt "@label" +msgid "No items to select from" +msgstr "選択するアイテムがありません" + +#: ModelChecker/plugin.json msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "各モデル設定を与える。" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "プリント問題の可能性のあるモデルをプリント構成を確認し、解決案を提示してください。" -#: PerObjectSettingsTool/plugin.json +#: ModelChecker/plugin.json msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "各モデル設定ツール" - -#: 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プロファイルリーダー" - -#: X3DReader/plugin.json -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "X3Dファイルを読むこむためのサポートを供給する。" - -#: X3DReader/plugin.json -msgctxt "name" -msgid "X3D Reader" -msgstr "X3Dリーダー" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "構成をバックアップしてリストアします。" - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -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 "プリンターの設定アクション" - -#: 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 "サポート消去機能" - -#: 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 "取り外し可能なドライブアウトプットデバイスプラグイン" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "ファームウェアアップデートのためのマシン操作を提供します。" - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -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プロファイルリーダー" +msgid "Model Checker" +msgstr "モデルチェッカー" #: 3MFReader/plugin.json msgctxt "description" @@ -5835,65 +6096,15 @@ msgctxt "name" msgid "3MF Reader" msgstr "3MFリーダー" -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Ultimakerフォーマットパッケージへの書き込みをサポートします。" +msgid "Provides support for writing 3MF files." +msgstr "3MFファイルを読むこむためのサポートを供給する。" -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "name" -msgid "UFP Writer" -msgstr "UFPライター" - -#: 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 "監視ロガー" - -#: 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プロファイルリーダー" - -#: PreviewStage/plugin.json -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Curaでプレビューステージを提供します。" - -#: PreviewStage/plugin.json -msgctxt "name" -msgid "Preview Stage" -msgstr "プレビューステージ" - -#: XRayView/plugin.json -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "透視ビューイング。" - -#: XRayView/plugin.json -msgctxt "name" -msgid "X-Ray View" -msgstr "透視ビュー" - -#: 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エンジンバックエンド" +msgid "3MF Writer" +msgstr "3MFリーダー" #: AMFReader/plugin.json msgctxt "description" @@ -5905,25 +6116,35 @@ msgctxt "name" msgid "AMF Reader" msgstr "AMFリーダー" -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "圧縮ファイルからG-codeを読み取ります。" +msgid "Backup and restore your configuration." +msgstr "構成をバックアップしてリストアします。" -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "圧縮G-codeリーダー" +msgid "Cura Backups" +msgstr "Cura バックアップ" -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/plugin.json msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "後処理のためにユーザーが作成したスクリプト用拡張子" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "CuraEngineスライシングバックエンドにリンクを供給する。" -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "後処理" +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" @@ -5935,65 +6156,15 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Curaプロファイルライター" -#: USBPrinting/plugin.json +#: DigitalLibrary/plugin.json msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "G-codeを承認し、プリンターに送信する。またプラグインはファームウェアをアップデートできます。" +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にファイルを保存したりできるようにします。" -#: USBPrinting/plugin.json +#: DigitalLibrary/plugin.json msgctxt "name" -msgid "USB printing" -msgstr "USBプリンティング" - -#: PrepareStage/plugin.json -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Curaで準備ステージを提供します。" - -#: PrepareStage/plugin.json -msgctxt "name" -msgid "Prepare Stage" -msgstr "ステージの準備" - -#: 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リーダー" - -#: 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 "画像リーダー" - -#: 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プリンターのアクション" - -#: 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ライター" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" #: FirmwareUpdateChecker/plugin.json msgctxt "description" @@ -6005,45 +6176,55 @@ msgctxt "name" msgid "Firmware Update Checker" msgstr "ファームウェアアップデートチェッカー" -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "不特定なスライス情報を提出。プレファレンスの中で無効になる可能性もある。" +msgid "Provides a machine actions for updating firmware." +msgstr "ファームウェアアップデートのためのマシン操作を提供します。" -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Slice info" -msgstr "スライスインフォメーション" +msgid "Firmware Updater" +msgstr "ファームウェアアップデーター" -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/plugin.json msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "XMLベースフィラメントのプロファイルを読み書きするための機能を供給する。" +msgid "Reads g-code from a compressed archive." +msgstr "圧縮ファイルからG-codeを読み取ります。" -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "フィラメントプロファイル" +msgid "Compressed G-code Reader" +msgstr "圧縮G-codeリーダー" -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/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にファイルを保存したりできるようにします。" +msgid "Writes g-code to a compressed archive." +msgstr "圧縮ファイルにG-codeを書き込みます。" -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/plugin.json msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" +msgid "Compressed G-code Writer" +msgstr "圧縮G-codeライター" -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "新しいCuraパッケージを検索、管理、インストールします。" +msgid "Provides support for importing profiles from g-code files." +msgstr "g-codeファイルからプロファイルを読み込むサポートを供給する。" -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "ツールボックス" +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" @@ -6055,245 +6236,155 @@ 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 Simulation view." -msgstr "シミュレーションビューを提供します。" +msgid "Provides the preview of sliced layerdata." +msgstr "スライスされたレイヤーデータのプレビューを提供します。" #: SimulationView/plugin.json msgctxt "name" msgid "Simulation View" msgstr "シミュレーションビュー" -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Cura 4.5からCura 4.6に設定をアップグレードします。" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "不特定なスライス情報を提出。プレファレンスの中で無効になる可能性もある。" -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/plugin.json msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "バージョン4.5から4.6へのアップグレード" +msgid "Slice info" +msgstr "スライスインフォメーション" -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Cura 2.5 からCura 2.6のコンフィグレーションアップグレート。" +msgid "Provides a normal solid mesh view." +msgstr "ノーマルなソリットメッシュビューを供給する。" -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/plugin.json msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "2.5から2.6にバージョンアップグレート" +msgid "Solid View" +msgstr "ソリッドビュー" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/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に更新します。" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "特定箇所のサポートを印刷するブロックを消去するメッシュを作成する" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/plugin.json msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "4.6.0から4.6.2へのバージョン更新" - -#: 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/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/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/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/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/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/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/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へのアップグレード" - -#: 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/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/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/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/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/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/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/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/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/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 にバージョンアップグレート" - -#: 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ネットワーク接続" +msgid "Support Eraser" +msgstr "サポート消去機能" #: TrimeshReader/plugin.json msgctxt "description" @@ -6315,45 +6406,644 @@ msgctxt "name" msgid "UFP Reader" msgstr "UFP リーダー" -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "ノーマルなソリットメッシュビューを供給する。" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Ultimakerフォーマットパッケージへの書き込みをサポートします。" -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "name" -msgid "Solid View" -msgstr "ソリッドビュー" +msgid "UFP Writer" +msgstr "UFPライター" -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "3MFファイルを読むこむためのサポートを供給する。" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Ultimakerのプリンターのアクションを供給する(ベッドレベリングウィザード、アップグレードの選択、他)" -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "name" -msgid "3MF Writer" -msgstr "3MFリーダー" +msgid "Ultimaker machine actions" +msgstr "Ultimkerプリンターのアクション" -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Curaでモニターステージを提供します。" +msgid "Manages network connections to Ultimaker networked printers." +msgstr "Ultimakerのネットワーク接属できるプリンターのネットワーク接続を管理します。" -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "name" -msgid "Monitor Stage" -msgstr "モニターステージ" +msgid "Ultimaker Network Connection" +msgstr "Ultimakerネットワーク接続" -#: ModelChecker/plugin.json +#: USBPrinting/plugin.json msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "プリント問題の可能性のあるモデルをプリント構成を確認し、解決案を提示してください。" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "G-codeを承認し、プリンターに送信する。またプラグインはファームウェアをアップデートできます。" -#: ModelChecker/plugin.json +#: USBPrinting/plugin.json msgctxt "name" -msgid "Model Checker" -msgstr "モデルチェッカー" +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." @@ -8776,10 +9466,6 @@ msgstr "モデルチェッカー" #~ 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 "グローバル" diff --git a/resources/i18n/ja_JP/fdmextruder.def.json.po b/resources/i18n/ja_JP/fdmextruder.def.json.po index 42c81946c1..ab84fac3be 100644 --- a/resources/i18n/ja_JP/fdmextruder.def.json.po +++ b/resources/i18n/ja_JP/fdmextruder.def.json.po @@ -1,20 +1,20 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0000\n" -"PO-Revision-Date: 2021-04-16 14:59+0200\n" -"Last-Translator: Bothof \n" -"Language-Team: Japanese\n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"PO-Revision-Date: 2022-07-15 11:12+0200\n" +"Last-Translator: \n" +"Language-Team: LANGUAGE\n" "Language: ja_JP\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.4.1\n" +"X-Generator: Poedit 3.1.1\n" #: fdmextruder.def.json msgctxt "machine_settings label" diff --git a/resources/i18n/ja_JP/fdmprinter.def.json.po b/resources/i18n/ja_JP/fdmprinter.def.json.po index 21d5de8580..8140193034 100644 --- a/resources/i18n/ja_JP/fdmprinter.def.json.po +++ b/resources/i18n/ja_JP/fdmprinter.def.json.po @@ -1,28 +1,25 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 11:59+0000\n" -"PO-Revision-Date: 2021-04-16 15:00+0200\n" -"Last-Translator: Lionbridge \n" -"Language-Team: Japanese , Japanese \n" -"Language: ja_JP\n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE\n" +"Language: \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 2.4.1\n" #: fdmprinter.def.json msgctxt "machine_settings label" msgid "Machine" msgstr "プリンター" -# msgstr "プリンター" #: fdmprinter.def.json msgctxt "machine_settings description" msgid "Machine specific settings" @@ -33,7 +30,6 @@ msgctxt "machine_name label" msgid "Machine Type" msgstr "プリンターのタイプ" -# msgstr "プリンタータイプ" #: fdmprinter.def.json msgctxt "machine_name description" msgid "The name of your 3D printer model." @@ -44,7 +40,6 @@ msgctxt "machine_show_variants label" msgid "Show Machine Variants" msgstr "プリンターのバリエーションの表示" -# 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." @@ -60,7 +55,9 @@ msgctxt "machine_start_gcode description" msgid "" "G-code commands to be executed at the very start - separated by \n" "." -msgstr "最初に実行するG-codeコマンドは、\nで区切ります。" +msgstr "" +"最初に実行するG-codeコマンドは、\n" +"で区切ります。" #: fdmprinter.def.json msgctxt "machine_end_gcode label" @@ -72,7 +69,9 @@ msgctxt "machine_end_gcode description" msgid "" "G-code commands to be executed at the very end - separated by \n" "." -msgstr "最後に実行するG-codeコマンドは、\nで区切ります。" +msgstr "" +"最後に実行するG-codeコマンドは、\n" +"で区切ります。" #: fdmprinter.def.json msgctxt "material_guid label" @@ -99,7 +98,6 @@ msgctxt "material_bed_temp_wait label" msgid "Wait for Build Plate Heatup" msgstr "ビルドプレート加熱待ち時間" -# 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." @@ -110,7 +108,6 @@ msgctxt "material_print_temp_wait label" msgid "Wait for Nozzle Heatup" msgstr "ノズル加熱待ち時間" -# msgstr "ノズル加熱の待機" #: fdmprinter.def.json msgctxt "material_print_temp_wait description" msgid "Whether to wait until the nozzle temperature is reached at the start." @@ -121,7 +118,6 @@ msgctxt "material_print_temp_prepend label" msgid "Include Material Temperatures" msgstr "マテリアル温度を含む" -# 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." @@ -132,7 +128,6 @@ msgctxt "material_bed_temp_prepend label" msgid "Include Build Plate Temperature" msgstr "ビルドプレート温度を含む" -# 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." @@ -143,7 +138,6 @@ msgctxt "machine_width label" msgid "Machine Width" msgstr "プリンターの幅" -# msgstr "プリンターの幅" #: fdmprinter.def.json msgctxt "machine_width description" msgid "The width (X-direction) of the printable area." @@ -154,19 +148,16 @@ msgctxt "machine_depth label" msgid "Machine Depth" msgstr "プリンターの奥行" -# msgstr "プリンターの奥行き" #: fdmprinter.def.json msgctxt "machine_depth description" msgid "The depth (Y-direction) of the printable area." msgstr "造形可能領域の幅(Y方向)。" -# msgstr "楕円形" #: fdmprinter.def.json msgctxt "machine_height label" msgid "Machine Height" msgstr "プリンターの高さ" -# msgstr "プリンターの高さ" #: fdmprinter.def.json msgctxt "machine_height description" msgid "The height (Z-direction) of the printable area." @@ -177,7 +168,6 @@ msgctxt "machine_shape label" msgid "Build Plate Shape" msgstr "ビルドプレートの形状" -# msgstr "ビルドプレートの形" #: fdmprinter.def.json msgctxt "machine_shape description" msgid "The shape of the build plate without taking unprintable areas into account." @@ -188,7 +178,6 @@ msgctxt "machine_shape option rectangular" msgid "Rectangular" msgstr "長方形" -# msgstr "長方形" #: fdmprinter.def.json msgctxt "machine_shape option elliptic" msgid "Elliptic" @@ -219,7 +208,6 @@ msgctxt "machine_heated_bed label" msgid "Has Heated Build Plate" msgstr "加熱式ビルドプレートあり" -# msgstr "加熱したビルドプレート" #: fdmprinter.def.json msgctxt "machine_heated_bed description" msgid "Whether the machine has a heated build plate present." @@ -250,7 +238,6 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "中心位置" -# 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." @@ -261,7 +248,6 @@ msgctxt "machine_extruder_count label" msgid "Number of Extruders" msgstr "エクストルーダーの数" -# 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." @@ -282,7 +268,6 @@ msgctxt "machine_nozzle_tip_outer_diameter label" msgid "Outer Nozzle Diameter" msgstr "ノズル外径" -# msgstr "ノズル外径" #: fdmprinter.def.json msgctxt "machine_nozzle_tip_outer_diameter description" msgid "The outer diameter of the tip of the nozzle." @@ -293,7 +278,6 @@ msgctxt "machine_nozzle_head_distance label" msgid "Nozzle Length" msgstr "ノズル長さ" -# 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." @@ -304,7 +288,6 @@ msgctxt "machine_nozzle_expansion_angle label" msgid "Nozzle Angle" msgstr "ノズル角度" -# 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." @@ -315,7 +298,6 @@ msgctxt "machine_heat_zone_length label" msgid "Heat Zone Length" msgstr "ノズル加熱長さ" -# 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." @@ -376,7 +358,6 @@ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" msgid "Marlin" msgstr "Marlin" -# msgstr "Marlin" #: fdmprinter.def.json msgctxt "machine_gcode_flavor option RepRap (Volumetric)" msgid "Marlin (Volumetric)" @@ -387,37 +368,31 @@ msgctxt "machine_gcode_flavor option RepRap (RepRap)" msgid "RepRap" msgstr "RepRap" -# msgstr "RepRap" #: fdmprinter.def.json msgctxt "machine_gcode_flavor option UltiGCode" msgid "Ultimaker 2" msgstr "Ultimaker 2" -# msgstr "Ultimaker 2" #: fdmprinter.def.json msgctxt "machine_gcode_flavor option Griffin" msgid "Griffin" msgstr "Griffin" -# msgstr "Griffin" #: fdmprinter.def.json msgctxt "machine_gcode_flavor option Makerbot" msgid "Makerbot" msgstr "Makerbot" -# msgstr "Makerbot" #: fdmprinter.def.json msgctxt "machine_gcode_flavor option BFB" msgid "Bits from Bytes" msgstr "Bits from Bytes" -# msgstr "Bits from Bytes" #: fdmprinter.def.json msgctxt "machine_gcode_flavor option MACH3" msgid "Mach3" msgstr "Mach3" -# msgstr "Mach3" #: fdmprinter.def.json msgctxt "machine_gcode_flavor option Repetier" msgid "Repetier" @@ -490,8 +465,8 @@ msgstr "プリントヘッドとファンポリゴン" #: fdmprinter.def.json msgctxt "machine_head_with_fans_polygon description" -msgid "A 2D silhouette of the print head (fan caps included)." -msgstr "プリントヘッドの2Dシルエット(ファンキャップが含まれています)。" +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" @@ -508,7 +483,6 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "ノズル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\"." @@ -764,12 +738,21 @@ 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 "品質" -# 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)" @@ -780,7 +763,6 @@ msgctxt "layer_height label" msgid "Layer Height" msgstr "レイヤー高さ" -# 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." @@ -891,7 +873,6 @@ msgctxt "support_roof_line_width label" msgid "Support Roof Line Width" msgstr "サポートルーフのライン幅" -# msgstr "サポートルーフライン幅" #: fdmprinter.def.json msgctxt "support_roof_line_width description" msgid "Width of a single support roof line." @@ -902,7 +883,6 @@ msgctxt "support_bottom_line_width label" msgid "Support Floor Line Width" msgstr "サポートフロアのライン幅" -# msgstr "サポートフロアライン幅" #: fdmprinter.def.json msgctxt "support_bottom_line_width description" msgid "Width of a single support floor line." @@ -923,7 +903,6 @@ msgctxt "initial_layer_line_width_factor label" msgid "Initial Layer Line Width" msgstr "初期レイヤーのライン幅" -# 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." @@ -934,7 +913,6 @@ msgctxt "shell label" msgid "Walls" msgstr "ウォール" -# msgstr "外郭" #: fdmprinter.def.json msgctxt "shell description" msgid "Shell" @@ -955,7 +933,6 @@ msgctxt "wall_0_extruder_nr label" msgid "Outer Wall Extruder" msgstr "外壁用エクストルーダー" -# 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." @@ -966,7 +943,6 @@ msgctxt "wall_x_extruder_nr label" msgid "Inner Wall Extruder" msgstr "内壁用エクストルーダー" -# 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." @@ -987,18 +963,66 @@ msgctxt "wall_line_count label" msgid "Wall Line Count" msgstr "ウォールライン数" -# 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 "外壁移動距離" -# 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." @@ -1025,14 +1049,24 @@ msgid "Optimize the order in which walls are printed so as to reduce the number msgstr "撤回と移動距離を減らすために、壁のプリント順序を最適化します。ほとんどの部品がこの設定を有効にしている方が良い印刷結果につながりますが、実際には時間がかかることがありますので、最適化の有無に関わらず印刷時間を比較してください。ビルドプレートの接着タイプにブリムを選択すると最初のレイヤーは最適化されません。" #: fdmprinter.def.json -msgctxt "outer_inset_first label" -msgid "Outer Before Inner Walls" -msgstr "外壁優先" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "ウォール順序" #: fdmprinter.def.json -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 "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" @@ -1045,96 +1079,85 @@ msgid "Prints an extra wall at every other layer. This way infill gets caught be msgstr "すべてのレイヤーごとに予備の壁を印刷します。このようにして、インフィルは余分な壁の間に挟まれ、より強い印刷物が得られる。" #: fdmprinter.def.json -msgctxt "travel_compensate_overlapping_walls_enabled label" -msgid "Compensate Wall Overlaps" -msgstr "壁補正" +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "最小ウォールライン幅" #: fdmprinter.def.json -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 "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 "travel_compensate_overlapping_walls_0_enabled label" -msgid "Compensate Outer Wall Overlaps" -msgstr "外壁補正" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "最小偶数ウォールライン幅" #: fdmprinter.def.json -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 "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 "travel_compensate_overlapping_walls_x_enabled label" -msgid "Compensate Inner Wall Overlaps" -msgstr "内壁補正" +msgctxt "wall_split_middle_threshold label" +msgid "Split Middle Line Threshold" +msgstr "中央ライン分割しきい値" #: fdmprinter.def.json -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_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 "wall_min_flow label" -msgid "Minimum Wall Flow" -msgstr "最小壁フロー" +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "最小奇数ウォールライン幅" #: fdmprinter.def.json -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 "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_min_flow_retract label" -msgid "Prefer Retract" -msgstr "引き戻し優先" +msgctxt "wall_add_middle_threshold label" +msgid "Add Middle Line Threshold" +msgstr "中央ライン追加しきい値" #: fdmprinter.def.json -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 "有効にすると、フローが最小フローしきい値を下回っている壁を置き換える移動量より多い場合は、引き戻しを使用します。" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps label" -msgid "Fill Gaps Between Walls" -msgstr "隙間充填" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps description" -msgid "Fills the gaps between walls where no walls fit." -msgstr "壁が入らない壁の隙間を埋める。" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option nowhere" -msgid "Nowhere" -msgstr "対象外" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option everywhere" -msgid "Everywhere" -msgstr "全対象" - -#: fdmprinter.def.json -msgctxt "filter_out_tiny_gaps label" -msgid "Filter Out Tiny Gaps" -msgstr "小さなギャップのフィルターアウト" - -#: fdmprinter.def.json -msgctxt "filter_out_tiny_gaps description" -msgid "Filter out tiny gaps to reduce blobs on outside of model." -msgstr "モデル外部の塊を減らすために小さなギャップをフィルターアウトします。" +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 "薄壁印刷" -# 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" @@ -1150,7 +1173,6 @@ msgctxt "xy_offset_layer_0 label" msgid "Initial Layer Horizontal Expansion" msgstr "初期層水平展開" -# 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\"." @@ -1246,7 +1268,6 @@ msgctxt "z_seam_position option left" msgid "Left" msgstr "左" -# msgstr "最も鋭利な角" #: fdmprinter.def.json msgctxt "z_seam_x label" msgid "Z Seam X" @@ -1284,19 +1305,16 @@ msgctxt "z_seam_corner option z_seam_corner_none" msgid "None" msgstr "なし" -# msgstr "なし" #: fdmprinter.def.json msgctxt "z_seam_corner option z_seam_corner_inner" msgid "Hide Seam" msgstr "シーム非表示" -# msgstr "シームを非表示にする" #: fdmprinter.def.json msgctxt "z_seam_corner option z_seam_corner_outer" msgid "Expose Seam" msgstr "シーム表示" -# msgstr "シームを表示する" #: fdmprinter.def.json msgctxt "z_seam_corner option z_seam_corner_any" msgid "Hide or Expose Seam" @@ -1307,13 +1325,11 @@ msgctxt "z_seam_corner option z_seam_corner_weighted" msgid "Smart Hiding" msgstr "スマート・シーム" -# msgstr "シームを非表示または表示する" #: fdmprinter.def.json msgctxt "z_seam_relative label" msgid "Z Seam Relative" msgstr "相対Zシーム" -# 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." @@ -1334,7 +1350,6 @@ msgctxt "roofing_extruder_nr label" msgid "Top Surface Skin Extruder" msgstr "上部表面用エクストルーダー" -# 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." @@ -1345,7 +1360,6 @@ msgctxt "roofing_layer_count label" msgid "Top Surface Skin Layers" msgstr "上部表面レイヤー" -# 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." @@ -1356,7 +1370,6 @@ msgctxt "top_bottom_extruder_nr label" msgid "Top/Bottom Extruder" msgstr "上部/底面エクストルーダー" -# 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." @@ -1442,7 +1455,6 @@ msgctxt "top_bottom_pattern option concentric" msgid "Concentric" msgstr "同心円" -# msgstr "同心" #: fdmprinter.def.json msgctxt "top_bottom_pattern option zigzag" msgid "Zig Zag" @@ -1518,7 +1530,6 @@ msgctxt "skin_outline_count label" msgid "Extra Skin Wall Count" msgstr "外側表面の数" -# 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." @@ -1539,7 +1550,6 @@ msgctxt "ironing_only_highest_layer label" msgid "Iron Only Highest Layer" msgstr "最上層のみアイロン" -# 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." @@ -1550,7 +1560,6 @@ msgctxt "ironing_pattern label" msgid "Ironing Pattern" msgstr "アイロンパターン" -# msgstr "アイロン時のパターン" #: fdmprinter.def.json msgctxt "ironing_pattern description" msgid "The pattern to use for ironing top surfaces." @@ -1561,7 +1570,6 @@ msgctxt "ironing_pattern option concentric" msgid "Concentric" msgstr "同心円" -# msgstr "同心" #: fdmprinter.def.json msgctxt "ironing_pattern option zigzag" msgid "Zig Zag" @@ -1577,13 +1585,11 @@ 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 "アイロンラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。" -# msgstr "ジグザグ" #: fdmprinter.def.json msgctxt "ironing_line_spacing label" msgid "Ironing Line Spacing" msgstr "アイロン線のスペース" -# msgstr "アイロンラインの線隔" #: fdmprinter.def.json msgctxt "ironing_line_spacing description" msgid "The distance between the lines of ironing." @@ -1594,7 +1600,6 @@ msgctxt "ironing_flow label" msgid "Ironing Flow" msgstr "アイロンフロー" -# 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." @@ -1605,7 +1610,6 @@ msgctxt "ironing_inset label" msgid "Ironing Inset" msgstr "アイロンインセット" -# 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." @@ -1616,7 +1620,6 @@ msgctxt "speed_ironing label" msgid "Ironing Speed" msgstr "アイロン速度" -# msgstr "アイロン時のスピード" #: fdmprinter.def.json msgctxt "speed_ironing description" msgid "The speed at which to pass over the top surface." @@ -1627,7 +1630,6 @@ msgctxt "acceleration_ironing label" msgid "Ironing Acceleration" msgstr "アイロン加速度" -# msgstr "アイロン時の加速" #: fdmprinter.def.json msgctxt "acceleration_ironing description" msgid "The acceleration with which ironing is performed." @@ -1638,7 +1640,6 @@ msgctxt "jerk_ironing label" msgid "Ironing Jerk" msgstr "アイロンジャーク" -# msgstr "ジャークをアイロンする" #: fdmprinter.def.json msgctxt "jerk_ironing description" msgid "The maximum instantaneous velocity change while performing ironing." @@ -1669,7 +1670,6 @@ msgctxt "skin_preshrink label" msgid "Skin Removal Width" msgstr "表面除去幅" -# 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." @@ -1680,7 +1680,6 @@ msgctxt "top_skin_preshrink label" msgid "Top Skin Removal Width" msgstr "上面除去幅" -# 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." @@ -1691,7 +1690,6 @@ msgctxt "bottom_skin_preshrink label" msgid "Bottom Skin Removal Width" msgstr "底面除去幅" -# 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." @@ -1712,7 +1710,6 @@ msgctxt "top_skin_expand_distance label" msgid "Top Skin Expand Distance" msgstr "上面展開距離" -# 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." @@ -1723,7 +1720,6 @@ msgctxt "bottom_skin_expand_distance label" msgid "Bottom Skin Expand Distance" msgstr "底面展開距離" -# 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." @@ -1754,7 +1750,6 @@ msgctxt "infill label" msgid "Infill" msgstr "インフィル" -# msgstr "インフィル" #: fdmprinter.def.json msgctxt "infill description" msgid "Infill" @@ -1765,7 +1760,6 @@ msgctxt "infill_extruder_nr label" msgid "Infill Extruder" msgstr "インフィルエクストルーダー" -# msgstr "インフィルエクストルーダー" #: fdmprinter.def.json msgctxt "infill_extruder_nr description" msgid "The extruder train used for printing infill. This is used in multi-extrusion." @@ -1836,13 +1830,11 @@ msgctxt "infill_pattern option tetrahedral" msgid "Octet" msgstr "オクテット" -# msgstr "オクテット" #: fdmprinter.def.json msgctxt "infill_pattern option quarter_cubic" msgid "Quarter Cubic" msgstr "クォーターキュービック" -# msgstr "クォーターキュービック" #: fdmprinter.def.json msgctxt "infill_pattern option concentric" msgid "Concentric" @@ -1858,7 +1850,6 @@ msgctxt "infill_pattern option cross" msgid "Cross" msgstr "クロス" -# msgstr "クロス" #: fdmprinter.def.json msgctxt "infill_pattern option cross_3d" msgid "Cross 3D" @@ -1874,7 +1865,6 @@ msgctxt "infill_pattern option lightning" msgid "Lightning" msgstr "ライトニング" -# msgstr "クロス3D" #: fdmprinter.def.json msgctxt "zig_zaggify_infill label" msgid "Connect Infill Lines" @@ -1900,7 +1890,6 @@ msgctxt "infill_angles label" msgid "Infill Line Directions" msgstr "インフィルラインの向き" -# 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)." @@ -1985,7 +1974,6 @@ msgctxt "infill_overlap_mm label" msgid "Infill Overlap" msgstr "インフィル公差" -# 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." @@ -1996,7 +1984,6 @@ msgctxt "infill_wipe_dist label" msgid "Infill Wipe Distance" msgstr "インフィル移動距離" -# msgstr "インフィルWipe距離" #: 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." @@ -2274,6 +2261,26 @@ 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" @@ -2639,7 +2646,6 @@ msgctxt "speed_roofing label" msgid "Top Surface Skin Speed" msgstr "最上面速度" -# msgstr "トップサーフェススキンの速度" #: fdmprinter.def.json msgctxt "speed_roofing description" msgid "The speed at which top surface skin layers are printed." @@ -2690,7 +2696,6 @@ msgctxt "speed_support_roof label" msgid "Support Roof Speed" msgstr "サポートルーフ速度" -# 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." @@ -2701,7 +2706,6 @@ msgctxt "speed_support_bottom label" msgid "Support Floor Speed" msgstr "サポートフロア速度" -# 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." @@ -2788,24 +2792,14 @@ msgid "The first few layers are printed slower than the rest of the model, to ge msgstr "最初の数層は印刷失敗の可能性を軽減させるために、設定した印刷スピードよりも遅く印刷されます。" #: fdmprinter.def.json -msgctxt "speed_equalize_flow_enabled label" -msgid "Equalize Filament Flow" -msgstr "フィラメント均一速度" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "フロー均一化率" #: fdmprinter.def.json -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 "通常より細いラインを高速プリントするので、時間当たりのフィラメント押出量は同じです。薄いモデル部品は、設定よりも細い線幅でプリントすることが要求される場合があり、本設定はそのような線の速度を変更します。" - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_max label" -msgid "Maximum Speed for Flow Equalization" -msgstr "均一フローの最大速度" - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_max description" -msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -msgstr "吐出を均一にするための調整時の最高スピード。" +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "押出幅に基づく速度の補正係数。0%では、移動速度が一定のプリント速度に保たれます。100%では、フロー(mm³/s単位)が一定になるように移動速度が調整されます。つまり、通常のライン幅の半分のラインは2倍の速さでプリントされ、幅が2倍のラインは半分の速さでプリントされます。100%より大きな値を設定すると、幅広のラインを押し出すのに必要な高い圧力を補うことができます。" #: fdmprinter.def.json msgctxt "acceleration_enabled label" @@ -2817,6 +2811,16 @@ 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" @@ -2872,7 +2876,6 @@ msgctxt "acceleration_roofing label" msgid "Top Surface Skin Acceleration" msgstr "最上面加速度" -# msgstr "トップ表面スキンの加速度" #: fdmprinter.def.json msgctxt "acceleration_roofing description" msgid "The acceleration with which top surface skin layers are printed." @@ -2923,7 +2926,6 @@ msgctxt "acceleration_support_roof label" msgid "Support Roof Acceleration" msgstr "サポートルーフ加速度" -# 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." @@ -2934,7 +2936,6 @@ msgctxt "acceleration_support_bottom label" msgid "Support Floor Acceleration" msgstr "サポートフロア加速度" -# 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." @@ -3010,6 +3011,16 @@ 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" @@ -3065,7 +3076,6 @@ msgctxt "jerk_roofing label" msgid "Top Surface Skin Jerk" msgstr "最上面ジャーク" -# msgstr "トップサーフェススキンジャーク" #: fdmprinter.def.json msgctxt "jerk_roofing description" msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." @@ -3116,7 +3126,6 @@ msgctxt "jerk_support_roof label" msgid "Support Roof Jerk" msgstr "サポートルーフジャーク" -# msgstr "サポートルーフのジャーク" #: fdmprinter.def.json msgctxt "jerk_support_roof description" msgid "The maximum instantaneous velocity change with which the roofs of support are printed." @@ -3127,7 +3136,6 @@ msgctxt "jerk_support_bottom label" msgid "Support Floor Jerk" msgstr "サポートフロアジャーク" -# msgstr "サポートフロアのジャーク" #: fdmprinter.def.json msgctxt "jerk_support_bottom description" msgid "The maximum instantaneous velocity change with which the floors of support are printed." @@ -3603,7 +3611,6 @@ msgctxt "support_enable label" msgid "Generate Support" msgstr "サポート開始" -# 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." @@ -3654,7 +3661,6 @@ msgctxt "support_roof_extruder_nr label" msgid "Support Roof Extruder" msgstr "サポートルーフエクストルーダー" -# 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." @@ -3665,7 +3671,6 @@ msgctxt "support_bottom_extruder_nr label" msgid "Support Floor Extruder" msgstr "サポートフロアエクストルーダー" -# 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." @@ -3836,7 +3841,6 @@ 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 "サポートライン両端を接続します。この設定を有効にすると、より確実なサポートで抽出不足を解消しますが、材料の費用がかさみます。" -# msgstr "クロス" #: fdmprinter.def.json msgctxt "support_connect_zigzags label" msgid "Connect Support ZigZags" @@ -4002,7 +4006,6 @@ msgctxt "support_bottom_stair_step_width label" msgid "Support Stair Step Maximum Width" msgstr "サポート階段最大幅" -# 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." @@ -4043,7 +4046,6 @@ msgctxt "support_infill_sparse_thickness label" msgid "Support Infill Layer Thickness" msgstr "サポートインフィルレイヤー厚さ" -# 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." @@ -4054,7 +4056,6 @@ msgctxt "gradual_support_infill_steps label" msgid "Gradual Support Infill Steps" msgstr "サポートインフィル半減回数" -# 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." @@ -4065,7 +4066,6 @@ msgctxt "gradual_support_infill_step_height label" msgid "Gradual Support Infill Step Height" msgstr "サポートインフィル半減前の高さ" -# 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." @@ -4096,7 +4096,6 @@ msgctxt "support_roof_enable label" msgid "Enable Support Roof" msgstr "サポートルーフを有効にする" -# 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." @@ -4107,7 +4106,6 @@ msgctxt "support_bottom_enable label" msgid "Enable Support Floor" msgstr "サポートフロアを有効にする" -# 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." @@ -4138,7 +4136,6 @@ msgctxt "support_bottom_height label" msgid "Support Floor Thickness" msgstr "サポートフロア厚さ" -# 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." @@ -4169,7 +4166,6 @@ msgctxt "support_roof_density label" msgid "Support Roof Density" msgstr "サポートルーフ密度" -# 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." @@ -4180,7 +4176,6 @@ msgctxt "support_roof_line_distance label" msgid "Support Roof Line Distance" msgstr "サポートルーフライン距離" -# 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." @@ -4191,7 +4186,6 @@ msgctxt "support_bottom_density label" msgid "Support Floor Density" msgstr "サポートフロア密度" -# 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." @@ -4247,7 +4241,6 @@ msgctxt "support_roof_pattern label" msgid "Support Roof Pattern" msgstr "サポートルーフパターン" -# msgstr "ルーフのサポートのパターン" #: fdmprinter.def.json msgctxt "support_roof_pattern description" msgid "The pattern with which the roofs of the support are printed." @@ -4258,37 +4251,31 @@ msgctxt "support_roof_pattern option lines" msgid "Lines" msgstr "ライン" -# msgstr "線" #: fdmprinter.def.json msgctxt "support_roof_pattern option grid" msgid "Grid" msgstr "グリッド" -# msgstr "グリッド" #: fdmprinter.def.json msgctxt "support_roof_pattern option triangles" msgid "Triangles" msgstr "トライアングル" -# msgstr "三角形" #: fdmprinter.def.json msgctxt "support_roof_pattern option concentric" msgid "Concentric" msgstr "同心円" -# msgstr "同心3D" #: fdmprinter.def.json msgctxt "support_roof_pattern option zigzag" msgid "Zig Zag" msgstr "ジグザグ" -# msgstr "ジグザグ" #: fdmprinter.def.json msgctxt "support_bottom_pattern label" msgid "Support Floor Pattern" msgstr "サポートフロアパターン" -# msgstr "サポートフロアパターン" #: fdmprinter.def.json msgctxt "support_bottom_pattern description" msgid "The pattern with which the floors of the support are printed." @@ -4299,25 +4286,21 @@ msgctxt "support_bottom_pattern option lines" msgid "Lines" msgstr "ライン" -# msgstr "線" #: fdmprinter.def.json msgctxt "support_bottom_pattern option grid" msgid "Grid" msgstr "グリッド" -# msgstr "グリッド" #: fdmprinter.def.json msgctxt "support_bottom_pattern option triangles" msgid "Triangles" msgstr "トライアングル" -# msgstr "三角形" #: fdmprinter.def.json msgctxt "support_bottom_pattern option concentric" msgid "Concentric" msgstr "同心円" -# msgstr "コンセントリック3D" #: fdmprinter.def.json msgctxt "support_bottom_pattern option zigzag" msgid "Zig Zag" @@ -4433,7 +4416,6 @@ 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 "サポートを超えた直後にスキン領域に印字するときに使用するファン速度を割合で示します。高速ファンを使用すると、サポートが取り外しやすくなります。" -# msgstr "ジグザグ" #: fdmprinter.def.json msgctxt "support_use_towers label" msgid "Use Towers" @@ -4479,7 +4461,6 @@ msgctxt "support_mesh_drop_down label" msgid "Drop Down Support Mesh" msgstr "サポートメッシュの下処理" -# 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." @@ -4510,7 +4491,6 @@ msgctxt "prime_blob_enable label" msgid "Enable Prime Blob" msgstr "プライムボルブを有効にする" -# 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." @@ -4551,25 +4531,21 @@ msgctxt "adhesion_type option skirt" msgid "Skirt" msgstr "スカート" -# msgstr "スカート" #: fdmprinter.def.json msgctxt "adhesion_type option brim" msgid "Brim" msgstr "ブリム" -# msgstr "ブリム" #: fdmprinter.def.json msgctxt "adhesion_type option raft" msgid "Raft" msgstr "ラフト" -# msgstr "ラフト" #: fdmprinter.def.json msgctxt "adhesion_type option none" msgid "None" msgstr "なし" -# msgstr "なし" #: fdmprinter.def.json msgctxt "adhesion_extruder_nr label" msgid "Build Plate Adhesion Extruder" @@ -4580,6 +4556,46 @@ 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" @@ -4744,6 +4760,16 @@ 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" @@ -5244,6 +5270,16 @@ 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" @@ -5299,7 +5335,6 @@ msgctxt "cutting_mesh label" msgid "Cutting Mesh" msgstr "メッシュ切断" -# 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." @@ -5310,7 +5345,6 @@ msgctxt "mold_enabled label" msgid "Mold" msgstr "型" -# 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." @@ -5331,7 +5365,6 @@ msgctxt "mold_roof_height label" msgid "Mold Roof Height" msgstr "型ルーフ高さ" -# msgstr "モールドの屋根の高さ" #: fdmprinter.def.json msgctxt "mold_roof_height description" msgid "The height above horizontal parts in your model which to print mold." @@ -5342,7 +5375,6 @@ msgctxt "mold_angle label" msgid "Mold Angle" msgstr "型角度" -# 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." @@ -5463,7 +5495,6 @@ msgctxt "roofing_line_width label" msgid "Top Surface Skin Line Width" msgstr "最上面のライン幅" -# msgstr "上表面スキンの線幅" #: fdmprinter.def.json msgctxt "roofing_line_width description" msgid "Width of a single line of the areas at the top of the print." @@ -5474,7 +5505,6 @@ msgctxt "roofing_pattern label" msgid "Top Surface Skin Pattern" msgstr "上部表面パターン" -# msgstr "上層表面スキンパターン" #: fdmprinter.def.json msgctxt "roofing_pattern description" msgid "The pattern of the top most layers." @@ -5485,13 +5515,11 @@ msgctxt "roofing_pattern option lines" msgid "Lines" msgstr "直線" -# msgstr "線" #: fdmprinter.def.json msgctxt "roofing_pattern option concentric" msgid "Concentric" msgstr "同心円" -# msgstr "同心" #: fdmprinter.def.json msgctxt "roofing_pattern option zigzag" msgid "Zig Zag" @@ -5507,13 +5535,11 @@ 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 "上面のラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。" -# msgstr "ジグザグ" #: fdmprinter.def.json msgctxt "roofing_angles label" msgid "Top Surface Skin Line Directions" msgstr "最上面のラインの向き" -# 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)." @@ -5564,7 +5590,6 @@ msgctxt "support_skip_some_zags label" msgid "Break Up Support In Chunks" msgstr "接続部分のサポート分割" -# 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." @@ -5575,7 +5600,6 @@ msgctxt "support_skip_zag_per_mm label" msgid "Support Chunk Size" msgstr "サポート分割サイズ" -# 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." @@ -5586,7 +5610,6 @@ msgctxt "support_zag_skip_count label" msgid "Support Chunk Line Count" msgstr "サポート分割ライン数" -# 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." @@ -5717,7 +5740,6 @@ msgctxt "cross_infill_pocket_size label" msgid "Cross 3D Pocket Size" msgstr "3Dクロスポケットのサイズ" -# 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." @@ -6550,6 +6572,36 @@ 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 "レイヤーやインセットについて1つおきに適用されるウォールの代替の向き。金属プリンティングの場合など、応力が蓄積される可能性がある材料に有用です。" + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +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" +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 "command_line_settings label" msgid "Command Line Settings" @@ -6610,6 +6662,98 @@ 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 で区切ります。" diff --git a/resources/i18n/ko_KR/cura.po b/resources/i18n/ko_KR/cura.po index 47212666b9..3af8f757de 100644 --- a/resources/i18n/ko_KR/cura.po +++ b/resources/i18n/ko_KR/cura.po @@ -1,415 +1,211 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0100\n" -"PO-Revision-Date: 2022-01-10 11:57+0100\n" -"Last-Translator: Lionbridge \n" -"Language-Team: Korean , Jinbum Kim , Korean \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" "Language: ko_KR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 3.0\n" -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:115 -msgctxt "@info:backup_failed" -msgid "Could not create archive from user data directory: {}" -msgstr "사용자 데이터 디렉터리에서 압축 파일을 만들 수 없습니다: {}" - -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 -msgctxt "@info:title" -msgid "Backup" -msgstr "백업" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/Backups/Backup.py:158 -msgctxt "@info:backup_failed" -msgid "The following error occurred while trying to restore a Cura backup:" -msgstr "다음의 오류는 Cura 백업을 복원하려고 시도하는 동안 발생했습니다:" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 -msgctxt "@action:button" -msgid "Please sync the material profiles with your printers before starting to print." -msgstr "프린트를 시작하기 전에 재료 프로파일을 프린터와 동기화하십시오." - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 -msgctxt "@action:button" -msgid "New materials installed" -msgstr "새로운 재료가 설치됨" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 -msgctxt "@action:button" -msgid "Sync materials with printers" -msgstr "재료를 프린터와 동기화" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 -msgctxt "@action:button" -msgid "Learn more" -msgstr "자세히 알아보기" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 -msgctxt "@message:text" -msgid "Could not save material archive to {}:" -msgstr "재료 아카이브를 {}에 저장할 수 없음:" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 -msgctxt "@message:title" -msgid "Failed to save material archive" -msgstr "재료 아카이브를 저장하는 데 실패함" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 -msgctxt "@text" -msgid "Unknown error." -msgstr "알 수 없는 오류입니다." - -#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 -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/clamboo/Desktop/Cura/cura/BuildVolume.py:102 -msgctxt "@info:title" -msgid "Build Volume" -msgstr "출력물 크기" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "재정의되지 않음" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 msgctxt "@label" msgid "Unknown" msgstr "알 수 없는" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 msgctxt "@label" msgid "Available networked printers" msgstr "사용 가능한 네트워크 프린터" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "모든 파일 (*)" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "뛰어난 외관" +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "계산된" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "초안" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 -msgctxt "@label" -msgid "Custom Material" -msgstr "사용자 정의 소재" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 -msgctxt "@label" -msgid "Custom" -msgstr "사용자 정의" - -#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 +#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "로그인 실패" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "객체의 새 위치 찾기" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 msgctxt "@info:title" msgid "Finding Location" msgstr "위치 찾기" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "모든 개체가 출력할 수 있는 최대 사이즈 내에 위치할 수 없습니다" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 msgctxt "@info:title" msgid "Can't Find Location" msgstr "위치를 찾을 수 없음" -#: /home/clamboo/Desktop/Cura/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/Backups/Backup.py:115 +msgctxt "@info:backup_failed" +msgid "Could not create archive from user data directory: {}" +msgstr "사용자 데이터 디렉터리에서 압축 파일을 만들 수 없습니다: {}" -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 -msgctxt "@text:error" -msgid "Failed to load the archive of materials to sync it with printers." -msgstr "프린터와 동기화할 재료의 아카이브 로드에 실패했습니다." - -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 -msgctxt "@text:error" -msgid "The response from Digital Factory appears to be corrupted." -msgstr "Digital Factory의 응답이 손상된 것 같습니다." - -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 -msgctxt "@text:error" -msgid "The response from Digital Factory is missing important information." -msgstr "Digital Factory의 응답에 중요한 정보가 누락되었습니다." - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 -msgctxt "@text:error" -msgid "Failed to connect to Digital Factory." -msgstr "Digital Factory 연결에 실패했습니다." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "기기로드 중 ..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "환경 설정을 설정하는 중..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "활성 기기 초기화 중..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "패키지 관리자 초기화 중..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "출력 사이즈 초기화 중..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "장면 설정 중..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "인터페이스 로드 중 ..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "엔진 초기화 중..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 +#: /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 msgctxt "@info:title" -msgid "Warning" -msgstr "경고" +msgid "Backup" +msgstr "백업" -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 -#, python-brace-format +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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:" + +#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100 msgctxt "@info:status" -msgid "Can't open any other file if G-code is loading. Skipped importing {0}" -msgstr "G-코드가 로드되어 있으면 다른 파일을 열 수 없습니다. {0} 가져 오기를 건너 뛰었습니다." +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/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 msgctxt "@info:title" -msgid "Error" -msgstr "오류" +msgid "Build Volume" +msgstr "출력물 크기" -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 -msgctxt "@action:button" -msgid "Skip" -msgstr "건너뛰기" - -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "닫기" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 -msgctxt "@action:button" -msgid "Next" -msgstr "다음" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 -msgctxt "@action:button" -msgid "Finish" -msgstr "종료" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "추가" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 -msgctxt "@action:button" -msgid "Cancel" -msgstr "취소" - -#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 -#, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "그룹 #{group_nr}" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "외벽" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "내벽" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Skin" -msgstr "스킨" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Infill" -msgstr "내부채움" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "내부채움 서포트" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "지원하는 인터페이스" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Support" -msgstr "서포트" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "스커트" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "프라임 타워" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 -msgctxt "@tooltip" -msgid "Travel" -msgstr "움직임 경로" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "리트랙션" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 -msgctxt "@tooltip" -msgid "Other" -msgstr "다른" - -#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 -msgctxt "@text:window" -msgid "The release notes could not be opened." -msgstr "릴리즈 노트를 열 수 없습니다." - -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "큐라를 시작할 수 없습니다" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

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

      \n" @@ -418,38 +214,38 @@ msgid "" "

      Please send us this Crash Report to fix the problem.

      \n" " " msgstr "" -"

      죄송합니다, Ultimaker Cura가 정상적이지 않습니다. \n" -"                    

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

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

      문제를 해결하기 위해이 오류 보고서를 보내주십시오. \n" -" " +"

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

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

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

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

      치명적인 오류가 발생했습니다. 문제를 해결할 수 있도록 이 충돌 보고서를 보내주십시오

      \n" -"

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

      \n" +"

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

      \n" " " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "시스템 정보" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "알 수 없음" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura 버전" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Cura 언어" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "OS 언어" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "플랫폼" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Qt 버전" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "PyQt 버전" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 msgctxt "@label" -msgid "Not yet initialized
      " -msgstr "아직 초기화되지 않음
      " +msgid "Not yet initialized" +msgstr "아직 초기화되지 않음" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
    • OpenGL Version: {version}
    • " msgstr "
    • OpenGL 버전: {version}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
    • OpenGL Vendor: {vendor}
    • " msgstr "
    • OpenGL 공급업체: {vendor}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
    • OpenGL Renderer: {renderer}
    • " msgstr "
    • OpenGL Renderer: {renderer}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "오류 추적" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "로그" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "보고서 전송" -#: /home/clamboo/Desktop/Cura/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/CuraApplication.py:531 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "기기로드 중 ..." -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 -msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." -msgstr "Ultimaker 계정 서버에 도달할 수 없음." +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "환경 설정을 설정하는 중..." -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "활성 기기 초기화 중..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "패키지 관리자 초기화 중..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "출력 사이즈 초기화 중..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "장면 설정 중..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "인터페이스 로드 중 ..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "엔진 초기화 중..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#, 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 +#, 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 msgctxt "@info:title" -msgid "Log-in failed" -msgstr "로그인 실패" +msgid "Warning" +msgstr "경고" -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "입력한 상태가 올바르지 않습니다." +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 +#, 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/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 -msgctxt "@message" -msgid "Timeout when authenticating with the account server." -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 +msgctxt "@info:title" +msgid "Error" +msgstr "오류" -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 -msgctxt "@message" -msgid "Please give the required permissions when authorizing this application." -msgstr "이 응용 프로그램을 인증할 때 필요한 권한을 제공하십시오." - -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 -msgctxt "@message" -msgid "Something unexpected happened when trying to log in, please try again." -msgstr "로그인을 시도할 때 예기치 못한 문제가 발생했습니다. 다시 시도하십시오." - -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 -msgctxt "@message" -msgid "Could not read response." -msgstr "응답을 읽을 수 없습니다." - -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "객체를 증가시키고 배치" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "개체 배치 중" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "개체 배치 중" -#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "지원되지 않음" +#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "응답을 읽을 수 없습니다." -#: /home/clamboo/Desktop/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/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "입력한 상태가 올바르지 않습니다." -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 -msgctxt "@label" -msgid "Nozzle" -msgstr "노즐" +#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "계정 서버 인증 시간이 초과되었습니다." -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 -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/OAuth2/AuthorizationRequestHandler.py:97 +msgctxt "@message" +msgid "Please give the required permissions when authorizing this application." +msgstr "이 응용 프로그램을 인증할 때 필요한 권한을 제공하십시오." -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info" +msgid "Unable to reach the Ultimaker account server." +msgstr "Ultimaker 계정 서버에 도달할 수 없음." + +#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:278 msgctxt "@info:title" -msgid "Settings updated" -msgstr "설정이 업데이트되었습니다" +msgid "Log-in failed" +msgstr "로그인 실패" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "익스트루더 비활성화됨" +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." +msgstr "프린터와 동기화할 재료의 아카이브 저장에 실패했습니다." -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 msgctxt "@title:window" msgid "File Already Exists" msgstr "파일이 이미 있습니다" -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "유효하지 않은 파일 URL:" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "내보내기 완료" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "프로파일 {0}을(를) 성공적으로 가져왔습니다." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "파일 {0}에 유효한 프로파일이 포함되어 있지 않습니다." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "사용자 정의 프로파일" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "프로파일에 품질 타입이 누락되었습니다." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "아직 활성화된 프린터가 없습니다." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "프로파일을 추가할 수 없습니다." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: /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 msgctxt "@label" -msgid "Per Model Settings" -msgstr "모델 별 설정" +msgid "Nozzle" +msgstr "노즐" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "모델 별 설정 구성" +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +msgctxt "@info:message Followed by a list of settings." +msgid "Settings have been changed to match the current availability of extruders:" +msgstr "익스트루더의 현재 가용성과 일치하도록 설정이 변경되었습니다:" -#: /home/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Cura 프로파일" - -#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3D 파일" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "백업 복원 시도 중 오류가 있었습니다." - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 msgctxt "@info:title" -msgid "Backups" -msgstr "백업" +msgid "Settings updated" +msgstr "설정이 업데이트되었습니다" -#: /home/clamboo/Desktop/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/cura/Settings/MachineManager.py:1480 +msgctxt "@info:title" +msgid "Extruder(s) Disabled" +msgstr "익스트루더 비활성화됨" -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "백업 생성 중..." +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 +msgctxt "@action:button" +msgid "Add" +msgstr "추가" -#: /home/clamboo/Desktop/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/cura/UI/AddPrinterPagesModel.py:26 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:290 +msgctxt "@action:button" +msgid "Finish" +msgstr "종료" -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -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 +msgctxt "@action:button" +msgid "Cancel" +msgstr "취소" -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "백업이 업로드를 완료했습니다." - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "백업이 최대 파일 크기를 초과했습니다." - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "백업 관리" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "기기 설정" - -#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#, python-brace-format msgctxt "@label" -msgid "Support Blocker" -msgstr "서포트 차단기" +msgid "Group #{group_nr}" +msgstr "그룹 #{group_nr}" -#: /home/clamboo/Desktop/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/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "외벽" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "이동식 드라이브" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "내벽" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "이동식 드라이브에 저장" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "스킨" -#: /home/clamboo/Desktop/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/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "내부채움" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 /home/clamboo/Desktop/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/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "내부채움 서포트" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 -#, 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/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "지원하는 인터페이스" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 -msgctxt "@info:title" -msgid "Saving" -msgstr "저장" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "서포트" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 -#, 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/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "스커트" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 -#, 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/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "프라임 타워" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "이동식 드라이브 {0}: {1} 에 저장할 수 없습니다 :" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "움직임 경로" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "이동식 드라이브 {0}에 {1}로 저장되었습니다." +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "리트랙션" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 -msgctxt "@info:title" -msgid "File Saved" -msgstr "파일이 저장됨" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +msgctxt "@tooltip" +msgid "Other" +msgstr "다른" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:37 +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@action:button" -msgid "Eject" -msgstr "꺼내기" +msgid "Next" +msgstr "다음" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "이동식 장치 {0} 꺼내기" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "{0}가 배출됐습니다. 이제 드라이브를 안전하게 제거 할 수 있습니다." - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "하드웨어 안전하게 제거" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "{0}를 배출하지 못했습니다. 다른 프로그램이 드라이브를 사용 중일 수 있습니다." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "펌웨어 업데이트" - -#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Cura 15.04 프로파일" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "추천" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "사용자 정의" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 -#, 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}이(가) 포함되어 있습니다. 기기를 가져올 수 없습니다. 대신 모델을 가져옵니다." - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 -msgctxt "@info:title" -msgid "Open Project File" -msgstr "프로젝트 파일 열기" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 -#, 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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "프로젝트 파일 열 수 없음" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "프로젝트 파일 {0}이 손상됨: {1}." - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 -#, 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/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 -msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "3MF 파일" - -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "UFP 파일에 쓸 수 없음:" - -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Ultimaker 포맷 패키지" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "G-code 파일" - -#: /home/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "미리 보기" - -#: /home/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "엑스레이 뷰" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "레이어 처리 중" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 -msgctxt "@info:title" -msgid "Information" -msgstr "정보" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 -msgctxt "@message:title" -msgid "Slicing failed" -msgstr "슬라이싱 실패" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 -msgctxt "@message:button" -msgid "Report a bug" -msgstr "버그 보고" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 -msgctxt "@message:description" -msgid "Report a bug on Ultimaker Cura's issue tracker." -msgstr "Ultimaker Cura의 이슈 트래커에 버그 보고." - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "선택한 소재 또는 구성과 호환되지 않기 때문에 현재 소재로 슬라이스 할 수 없습니다." - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "슬라이스 할 수 없습니다" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "현재 설정으로 슬라이스 할 수 없습니다. 다음 설정에는 오류가 있습니다 : {0}" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 -#, 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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "프라임 타워 또는 위치가 유효하지 않아 슬라이스 할 수 없습니다." - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "비활성화된 익스트루더 %s(와)과 연결된 개체가 있기 때문에 슬라이스할 수 없습니다." - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 -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/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "AMF 파일" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "압축된 G-code 파일" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "후 처리" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "G 코드 수정" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "USB 프린팅" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "USB를 통해 프린팅" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "USB를 통해 프린팅" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 -msgctxt "@info:status" -msgid "Connected via USB" -msgstr "USB를 통해 연결" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 -msgctxt "@message" -msgid "Print in Progress" -msgstr "프린트 진행 중" - -#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "준비" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "G 코드 파싱" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "G-코드 세부 정보" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 -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/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "G 파일" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG 이미지" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG 이미지" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG 이미지" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP 이미지" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF 이미지" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "레벨 빌드 플레이트" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "업그레이드 선택" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "GCodeGzWriter는 텍스트 모드는 지원하지 않습니다." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 -msgctxt "@info" -msgid "Could not access update information." -msgstr "업데이트 정보에 액세스 할 수 없습니다." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:286 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:67 msgctxt "@action:button" -msgid "How to update" -msgstr "업데이트하는 방법" +msgid "Skip" +msgstr "건너뛰기" -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 -msgctxt "@text" -msgid "Unable to read example data file." -msgstr "예시 데이터 파일을 읽을 수 없습니다." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "변경 사항이 적용되기 전에 {}을(를) 멈추고 다시 시작해야 합니다." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "동기화 중..." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "Ultimaker 계정에서 변경 사항이 감지되었습니다" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "귀하의 계정으로 재료와 소프트웨어 패키지를 동기화하시겠습니까?" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 +#: /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 msgctxt "@action:button" -msgid "Sync" -msgstr "동기화" +msgid "Close" +msgstr "닫기" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "계정에서 거절 및 제거" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +msgctxt "@action:button" +msgid "Please sync the material profiles with your printers before starting to print." +msgstr "프린트를 시작하기 전에 재료 프로파일을 프린터와 동기화하십시오." -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "{}개의 플러그인을 다운로드하지 못했습니다" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "새로운 재료가 설치됨" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "거절" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +msgctxt "@action:button" +msgid "Sync materials" +msgstr "재료 동기화" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "동의" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "플러그인 사용 계약" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "GCodeWriter는 텍스트가 아닌 모드는 지원하지 않습니다." - -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "내보내기 전에 G-code를 준비하십시오." - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "와이어 프린팅이 활성화되어 있을 때 Cura는 레이어를 정확하게 표시하지 않습니다." - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "시뮬레이션 뷰" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "먼저 슬라이스해야 하기 때문에 아무것도 표시되지 않습니다." - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 -msgctxt "@info:title" -msgid "No layers to show" -msgstr "표시할 레이어 없음" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "다시 메시지 표시 안 함" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "레이어 뷰" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "네트워크를 통해 프린팅" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "네트워크를 통해 프린팅" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "네트워크를 통해 연결됨" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "내일" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "오늘" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "네트워크를 통해 연결" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "현재 작업이 전송될 때까지 기다려주십시오." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "프린트 오류" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "출력 작업이 프린터에 성공적으로 보내졌습니다." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "데이터 전송 됨" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 -msgctxt "@info:title" -msgid "Update your printer" -msgstr "프린터 업데이트" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "대기열 가득 참" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "인쇄 작업 전송" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "프린트 작업을 프린터로 업로드하고 있습니다." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "재료를 프린터로 전송 중" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "데이터를 프린터로 업로드할 수 없음." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "네트워크 오류" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "그룹 호스트 아님" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 -msgctxt "@action" -msgid "Configure group" -msgstr "그룹 설정" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 -msgctxt "@info:title" -msgid "Are you ready for cloud printing?" -msgstr "클라우드 프린팅이 준비되었습니까?" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 -msgctxt "@action" -msgid "Get started" -msgstr "시작하기" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 -msgctxt "@action" +#: /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 +msgctxt "@action:button" msgid "Learn more" msgstr "자세히 알아보기" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 -msgctxt "@action:button" -msgid "Print via cloud" -msgstr "Cloud를 통해 프린팅" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +msgctxt "@message:text" +msgid "Could not save material archive to {}:" +msgstr "재료 아카이브를 {}에 저장할 수 없음:" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 -msgctxt "@properties:tooltip" -msgid "Print via cloud" -msgstr "Cloud를 통해 프린팅" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "재료 아카이브를 저장하는 데 실패함" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 -msgctxt "@info:status" -msgid "Connected via cloud" -msgstr "Cloud를 통해 연결됨" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +msgctxt "@text" +msgid "Unknown error." +msgstr "알 수 없는 오류입니다." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 -msgctxt "@action:button" -msgid "Monitor print" -msgstr "프린트 모니터링" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 -msgctxt "@action:tooltip" -msgid "Track the print in Ultimaker Digital Factory" -msgstr "Ultimaker Digital Factory에서 프린트 추적" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "Digital Factory에서 프린터 추가:" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 -msgctxt "info:name" -msgid "Ultimaker Digital Factory" -msgstr "Ultimaker Digital Factory" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "연결을 설정하려면 {website_link}에 방문하십시오." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "프린터 구성 유지" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "프린터 제거" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 -msgctxt "@title:window" -msgid "Remove printers?" -msgstr "프린터를 제거하시겠습니까?" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 -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/clamboo/Desktop/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 "Open Compressed Triangle Mesh" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA Digital Asset Exchange" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "glTF Binary" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF Embedded JSON" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Stanford Triangle Format" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Compressed COLLADA Digital Asset Exchange" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "모델 에러" - -#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "솔리드 뷰" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "3MF 파일 작성 중 오류." - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "3MF 기록기 플러그인이 손상되었습니다." - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "작성할 작업 환경이 없습니다. 프린터를 먼저 추가하십시오." - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "여기서 작업 환경을 작성할 권한이 없습니다." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MF 파일" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Cura 프로젝트 3MF 파일" - -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "모니터" - -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" msgid "3D Model Assistant" msgstr "3D 모델 도우미" -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" msgid "" @@ -1700,1469 +836,1925 @@ msgstr "" "

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

      \n" "

      인쇄 품질 가이드 보기

      " -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 -msgctxt "@label" -msgid "Mesh Type" -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." +msgstr "프로젝트 파일 {0}에 알 수 없는 기기 유형 {1}이(가) 포함되어 있습니다. 기기를 가져올 수 없습니다. 대신 모델을 가져옵니다." -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "일반 모델" +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "프로젝트 파일 열기" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -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 "프로젝트 파일 {0}이(가) 이 버전의 Ultimaker Cura에서 확인할 수 없는 프로파일을 사용하였습니다." -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "커팅 메쉬" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 -msgctxt "@action:button" -msgid "Select settings" -msgstr "설정 선택" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "이 모델에 맞게 사용자 정의 설정을 선택하십시오" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "필터..." - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "모두 보이기" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cura 백업" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Cura 버전" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "기기" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "재료" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "프로파일" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "플러그인" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "무엇을 더 하시겠습니까?" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "지금 백업" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "자동 백업" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "복원" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "백업 삭제" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "이 백업을 삭제하시겠습니까? 이 작업을 완료할 수 없습니다." - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "백업 복원" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Cura 설정을 백업, 동기화하십시오." - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 -msgctxt "@button" -msgid "Sign in" -msgstr "로그인" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "내 백업" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "현재 백업이 없습니다. ‘지금 백업’ 버튼을 사용하여 생성하십시오." - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -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/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "프린터 설정" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (너비)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (깊이)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (높이)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 -msgctxt "@label" -msgid "Build plate shape" -msgstr "빌드 플레이트 모양" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 -msgctxt "@label" -msgid "Origin at center" -msgstr "중앙이 원점" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 -msgctxt "@label" -msgid "Heated bed" -msgstr "히트 베드" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 -msgctxt "@label" -msgid "Heated build volume" -msgstr "히팅 빌드 사이즈" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 -msgctxt "@label" -msgid "G-code flavor" -msgstr "Gcode 유형" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "프린트헤드 설정" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -msgctxt "@label" -msgid "X min" -msgstr "X 최소값" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -msgctxt "@label" -msgid "Y min" -msgstr "Y 최소값" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -msgctxt "@label" -msgid "X max" -msgstr "X 최대값" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -msgctxt "@label" -msgid "Y max" -msgstr "Y 최대값" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "Gantry Height" -msgstr "갠트리 높이" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "익스트루더의 수" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "익스트루더 오프셋을 GCode에 적용" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "시작 GCode" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "End GCode" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "노즐 설정" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 -msgctxt "@label" -msgid "Nozzle size" -msgstr "노즐 크기" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "호환되는 재료의 직경" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "노즐 오프셋 X" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "노즐 오프셋 Y" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "냉각 팬 번호" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "익스트루더 시작 Gcode" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "익스트루더 종료 Gcode" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:212 msgctxt "@title:tab" -msgid "Printer" -msgstr "프린터" +msgid "Recommended" +msgstr "추천" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" +#: /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 "이 프로젝트에 사용된 재료는 Cura에서 지원하지 않는 재료로 원하지 않는 3D 출력물을 생산할 수도 있습니다. Marketplace의 전체 재료 패키지를 설치하는 것을 권장합니다." + +#: /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 "프로젝트 파일에 재료 패키지 정보를 저장할 수 없습니다: {material}. 이 프로젝트는 다른 시스템에서 제대로 열리지 않을 수 있습니다." + +#: /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 +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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 -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/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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 -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/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "GCodeGzWriter는 텍스트 모드는 지원하지 않습니다." -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 +#: /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 "Automatically upgrade Firmware" -msgstr "펌웨어 자동 업그레이드" +msgid "Sync" +msgstr "동기화" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 +#: /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 코드 수정" + +#: /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 "Upload custom Firmware" -msgstr "사용자 정의 펌웨어 업로드" +msgid "Eject" +msgstr "꺼내기" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 +#: /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 "Firmware can not be updated because there is no connection with the printer." -msgstr "프린터와 연결되지 않아 펌웨어를 업데이트할 수 없습니다." +msgid "Support Blocker" +msgstr "서포트 차단기" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -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/SupportEraser/__init__.py:13 +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "서포트가 프린팅되지 않는 볼륨을 만듭니다." -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 +#: /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 "Open Compressed Triangle Mesh" + +#: /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 Triangle Format" + +#: /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 "Cloud를 통해 프린팅" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +msgctxt "@properties:tooltip" +msgid "Print via cloud" +msgstr "Cloud를 통해 프린팅" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +msgctxt "@info:status" +msgid "Connected via cloud" +msgstr "Cloud를 통해 연결됨" + +#: /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] "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 +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 "Select custom firmware" -msgstr "사용자 정의 펌웨어 선택" +msgid "Remove printers?" +msgstr "프린터를 제거하시겠습니까?" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "펌웨어 업데이트" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 +#, python-brace-format msgctxt "@label" -msgid "Updating firmware." -msgstr "펌웨어 업데이트 중." +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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:489 msgctxt "@label" -msgid "Firmware update completed." -msgstr "펌웨어 업데이트가 완료되었습니다." +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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +#: /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 "" +"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 +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 "Firmware update failed due to an unknown error." -msgstr "알 수 없는 오류로 인해 펌웨어 업데이트에 실패했습니다." +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "USB 인쇄가 진행 중입니다. Cura를 닫으면 인쇄도 중단됩니다. 계속하시겠습니까?" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -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 "프린트가 아직 진행 중입니다. Cura는 이전 프린트가 완료될 때까지는 USB를 통해 다른 프린트를 시작할 수 없습니다." -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "입/출력 오류로 인해 펌웨어 업데이트에 실패했습니다." +#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "프린트 진행 중" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "펌웨어 누락으로 인해 펌웨어 업데이트에 실패했습니다." +#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "X3D 파일" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 msgctxt "@action:ComboBox Update/override existing profile" msgid "Update existing" msgstr "기존 업데이트" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:64 msgctxt "@action:ComboBox Save settings in a new profile" msgid "Create new" msgstr "새로 만들기" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "프린터 설정" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "프로파일 설정" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 msgctxt "@action:label" msgid "Derivative from" msgstr "Derivative from" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 -msgctxt "@action:label" -msgid "Material settings" -msgstr "재료 설정" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 msgctxt "@action:label" msgid "Mode" msgstr "종류" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 msgctxt "@action:label" msgid "Visible settings:" msgstr "표시 설정 :" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 msgctxt "@action:label" msgid "%1 out of %2" msgstr "1 out of %2" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 msgctxt "@action:button" msgid "Open" msgstr "열기" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 +#: /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 "Post Processing Plugin" -msgstr "후처리 플러그인" +msgid "Cura Backups" +msgstr "Cura 백업" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 +#: /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 "Cura 프로젝트 저장하고 파일 프린팅하기" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "Cura 프로젝트 저장하기" + +#: /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 "Post Processing Scripts" -msgstr "후처리 스크립트" +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/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "스크립트 추가" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 msgctxt "@label" -msgid "Settings" -msgstr "설정" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "새 프린터와 함께 제공되는 펌웨어는 작동하지만 새로운 버전은 더 많은 기능과 향상된 기능을 제공하는 경향이 있습니다." -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "활성 사후 처리 스크립트를 변경하십시오." +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "펌웨어 자동 업그레이드" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 -msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "다음 스크립트들이 활성화됩니다:" +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "사용자 정의 펌웨어 업로드" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /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 "Convert Image..." -msgstr "이미지 변환 ..." +msgid "Select custom firmware" +msgstr "사용자 정의 펌웨어 선택" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 -msgctxt "@info:tooltip" -msgid "The maximum distance of each pixel from \"Base.\"" -msgstr "\"Base\"에서 각 픽셀까지의 최대 거리." +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "펌웨어 업데이트" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "밀리미터 단위의 빌드 플레이트에서 기저부 높이." +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "\"Base\"에서 각 픽셀까지의 최대 거리." -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 msgctxt "@action:label" msgid "Base (mm)" msgstr "바닥 (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate." -msgstr "빌드 플레이트의 폭 (밀리미터)." +msgid "The base height from the build plate in millimeters." +msgstr "밀리미터 단위의 빌드 플레이트에서 기저부 높이." -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 msgctxt "@action:label" msgid "Width (mm)" msgstr "너비 (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "빌드 플레이트의 깊이 (밀리미터)" +msgid "The width in millimeters on the build plate" +msgstr "빌드 플레이트의 폭 (밀리미터)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 msgctxt "@action:label" msgid "Depth (mm)" msgstr "깊이 (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 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 모델에서 더 밝은 픽셀이 더 두꺼운 위치에 해당해야 합니다." +msgid "The depth in millimeters on the build plate" +msgstr "빌드 플레이트의 깊이 (밀리미터)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "어두울수록 높음" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "밝을수록 높음" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 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 "리쏘페인의 경우 반투명성을 위한 간단한 로그 모델을 사용할 수 있습니다. 높이 지도의 경우, 픽셀 값은 높이에 선형적으로 부합합니다." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "반투명성" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 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인 출력물을 관통하는 빛의 비율 이 값을 낮추면 어두운 부분의 대조가 증가하고 이미지의 밝은 부분의 대조가 감소합니다." +msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." +msgstr "리쏘페인의 경우 반투명성을 위한 간단한 로그 모델을 사용할 수 있습니다. 높이 지도의 경우, 픽셀 값은 높이에 선형적으로 부합합니다." -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "1mm의 투과율(%)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "이미지에 적용할 스무딩(smoothing)의 정도." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 msgctxt "@action:label" msgid "Smoothing" msgstr "스무딩(smoothing)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "이 Ultimaker Original에 업그레이드 할 항목을 선택하십시오" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "히팅 빌드 플레이트 (공식 키트 또는 자체 조립식)" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "빌드 플레이트 레벨링" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "빌드플레이트 레벨링 시작하기" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "다음 위치로 이동" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "익명 데이터 수집에 대한 추가 정보" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -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/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "익명 데이터 전송을 원하지 않습니다" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "익명 데이터 전송 허용" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" -msgid "Marketplace" -msgstr "시장" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -msgctxt "@info" -msgid "You will need to restart Cura before changes in packages have effect." -msgstr "패키지의 변경 사항이 적용되기 전에 Cura를 다시 시작해야 합니다." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "%1 종료" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "설치" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -msgctxt "@action:button" -msgid "Installed" -msgstr "설치됨" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "프리미엄" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 -msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "웹 마켓플레이스로 이동" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 -msgctxt "@label" -msgid "Search materials" -msgstr "재료 검색" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "호환성" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "기기" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "빌드 플레이트" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "서포트" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "품질" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "기술 데이터 시트" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "안전 데이터 시트" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "인쇄 가이드라인" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "웹 사이트" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to install or update" -msgstr "설치 또는 업데이트에 로그인 필요" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "재료 스플 구입" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "업데이트" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "업데이트 중" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "업데이트됨" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "뒤로" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 msgctxt "@title:tab" -msgid "Plugins" -msgstr "플러그인" +msgid "Printer" +msgstr "프린터" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 -msgctxt "@title:tab" -msgid "Materials" -msgstr "재료" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "노즐 설정" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "설치됨" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 msgctxt "@label" -msgid "Will install upon restarting" -msgstr "다시 시작 시 설치 예정" +msgid "Nozzle size" +msgstr "노즐 크기" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "업데이트에 로그인 필요" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Downgrade" -msgstr "다운그레이드" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "설치 제거" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /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 "Community Contributions" -msgstr "커뮤니티 기여" +msgid "mm" +msgstr "mm" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 msgctxt "@label" -msgid "Community Plugins" -msgstr "커뮤니티 플러그인" +msgid "Compatible material diameter" +msgstr "호환되는 재료의 직경" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 msgctxt "@label" -msgid "Generic Materials" -msgstr "일반 재료" +msgid "Nozzle offset X" +msgstr "노즐 오프셋 X" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "패키지 가져오는 중..." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 msgctxt "@label" -msgid "Website" -msgstr "웹 사이트" +msgid "Nozzle offset Y" +msgstr "노즐 오프셋 Y" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 msgctxt "@label" -msgid "Email" -msgstr "이메일" +msgid "Cooling Fan Number" +msgstr "냉각 팬 번호" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -msgctxt "@description" -msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -msgstr "Ultimaker Cura Enterprise용으로 검증된 플러그인 및 재료를 받으려면 로그인하십시오" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "익스트루더 시작 Gcode" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 +#: /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 "Version" -msgstr "버전" +msgid "X (Width)" +msgstr "X (너비)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 msgctxt "@label" -msgid "Last updated" -msgstr "마지막으로 업데이트한 날짜" +msgid "Y (Depth)" +msgstr "Y (깊이)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 msgctxt "@label" -msgid "Brand" -msgstr "상표" +msgid "Z (Height)" +msgstr "Z (높이)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 msgctxt "@label" -msgid "Downloads" -msgstr "다운로드" +msgid "Build plate shape" +msgstr "빌드 플레이트 모양" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "설치된 플러그인" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "설치된 플러그인이 없습니다." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "설치된 재료" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 -msgctxt "@info" -msgid "No material has been installed." -msgstr "설치된 재료가 없습니다." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "번들 플러그인" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "번들 재료" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -msgctxt "@info" -msgid "Could not connect to the Cura Package database. Please check your connection." -msgstr "Cura 패키지 데이터베이스에 연결할 수 없습니다. 연결을 확인하십시오." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "패키지를 설치하려면 라이선스를 수락해야 합니다" +msgid "Origin at center" +msgstr "중앙이 원점" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 msgctxt "@button" msgid "Dismiss" msgstr "취소" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 msgctxt "@label" msgid "The following packages will be added:" msgstr "다음 패키지가 추가됩니다:" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "제거 확인" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "누락된 재료 설치하기" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -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 "아직 사용 중인 재료 및/또는 프로파일을 제거합니다. 확인하면 다음 재료/프로파일이 기본값으로 재설정됩니다." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "플러그인 라이센스 계약" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "프로파일" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "동의" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "확인" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 +msgctxt "@header" +msgid "Manage packages" +msgstr "패키지 관리" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "재료 색상" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "패키지 관리" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "라인 유형" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "속도" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "레이어 두께" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "선 두께" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "유량" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "호환 모드" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "이동" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "도움말" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "외곽" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "내부채움" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "시작" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "상단 레이어 만 표시" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "상단에 5 개의 세부 레이어 표시" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "위 / 아래" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "내벽" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "최소" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "최대" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "프린터 관리" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -msgctxt "@label" -msgid "Glass" -msgstr "유리" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "대기열을 원격으로 관리하려면 프린터 펌웨어를 업데이트하십시오." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" msgid "Loading..." msgstr "로딩 중..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "사용불가" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "플러그인" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "연결할 수 없음" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "재료" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "대기 상태" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193 +msgctxt "@info" +msgid "Search in the browser" +msgstr "브라우저에서 검색" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Preparing..." -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 -msgctxt "@label" -msgid "Untitled" -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "익명" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "구성 변경 필요" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "세부 사항" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "사용할 수 없는 프린터" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "첫 번째로 사용 가능" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "대기 중" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "브라우저에서 관리" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "대기열에 프린팅 작업이 없습니다. 작업을 추가하려면 슬라이스하여 전송하십시오." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "인쇄 작업" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "총 인쇄 시간" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "대기" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 -msgctxt "@title:window" -msgid "Print over network" -msgstr "네트워크를 통해 프린팅" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 -msgctxt "@action:button" -msgid "Print" -msgstr "프린트" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 -msgctxt "@label" -msgid "Printer selection" -msgstr "프린터 선택" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "구성 변경" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "무시하기" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "프린터 %1이(가) 할당되었으나 작업에 알 수 없는 재료 구성이 포함되어 있습니다." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "재료 %1을(를) %2에서 %3(으)로 변경합니다." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "%3을(를) 재료 %1(으)로 로드합니다(이 작업은 무효화할 수 없음)." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "PrintCore %1을(를) %2에서 %3(으)로 변경합니다." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "빌드 플레이트를 %1(으)로 변경합니다(이 작업은 무효화할 수 없음)." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "무시하기는 기존 프린터 구성과 함께 지정된 설정을 사용하게 됩니다. 이는 인쇄 실패로 이어질 수 있습니다." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "알루미늄" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Finished" -msgstr "끝마친" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "중지 중..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Aborted" -msgstr "중단됨" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Failed" -msgstr "실패" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "일시 정지 중..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Paused" -msgstr "일시 중지됨" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "다시 시작..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 -msgctxt "@label:status" -msgid "Action required" -msgstr "조치가 필요함" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "%2에서 %1 완료" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "네트워크 프린터에 연결" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "아래 목록에서 프린터를 선택하십시오:" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "편집" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 -msgctxt "@action:button" -msgid "Remove" -msgstr "제거" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" -msgstr "새로고침" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "프린터가 목록에 없으면 네트워크 프린팅 문제 해결 가이드를 읽어보십시오" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "유형" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "펌웨어 버전" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "주소" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "이 프린터는 프린터 그룹을 호스트하도록 설정되어 있지 않습니다." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "이 프린터는 %1개 프린터 그룹의 호스트입니다." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "이 주소의 프린터가 아직 응답하지 않았습니다." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "연결" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "잘못된 IP 주소" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:12 msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "유효한 IP 주소를 입력하십시오." +msgid "Select and install material profiles optimised for your Ultimaker 3D printers." +msgstr "Ultimaker 3D 프린터에 최적화된 재료 프로파일을 선택하고 설치하십시오." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "프린터 주소" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "네트워크에 있는 프린터의 IP 주소를 입력하십시오." +msgid "You need to accept the license to install the package" +msgstr "패키지를 설치하려면 라이선스를 수락해야 합니다" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "재개" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Enable" +msgstr "실행됨" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "일시 정지 중..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Disable" +msgstr "해제됨" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "다시 시작..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 +msgctxt "@button" +msgid "Downgrading..." +msgstr "다운그레이드 중..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "중지" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 +msgctxt "@button" +msgid "Downgrade" +msgstr "다운그레이드" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "중지 중..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 +msgctxt "@button" +msgid "Installing..." +msgstr "설치 중..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "중단" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250 +msgctxt "@button" +msgid "Install" +msgstr "설치" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -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/Marketplace/resources/qml/PackageCardHeader.qml:254 +msgctxt "@button" +msgid "Uninstall" +msgstr "설치 제거" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "인쇄 작업을 맨 위로 이동" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Updating..." +msgstr "업데이트 중" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -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/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Update" +msgstr "업데이트" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "인쇄 작업 삭제" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "패키지 세부 사항" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -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/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "뒤로" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "프린팅 중단" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "설명" -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /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" @@ -3173,2131 +2765,679 @@ msgstr "" "프린터에 연결이 있는지 확인하십시오.⏎- 프린터가 켜져 있는지 확인하십시오.\n" "- 프린터가 네트워크에 연결되어 있는지 확인하십시오.⏎- 클라우드로 연결된 프린터를 탐색할 수 있도록 로그인되어 있는지 확인하십시오." -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:113 msgctxt "@info" msgid "Please connect your printer to the network." msgstr "프린터를 네트워크에 연결하십시오." -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:147 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "사용자 매뉴얼 온라인 보기" -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /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/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 -msgctxt "@info:tooltip" -msgid "Some things could be problematic in this print. Click to see tips for adjustment." -msgstr "이 출력물에는 문제가있을 수 있습니다. 조정을 위한 도움말을 보려면 클릭하십시오." - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "3D 보기" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "앞에서 보기" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "위에서 보기" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "왼쪽 보기" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "오른쪽 보기" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 msgctxt "@label" -msgid "Object list" -msgstr "개체 목록" +msgid "Mesh Type" +msgstr "메쉬 유형" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 +#: /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 "Marketplace" -msgstr "시장" +msgid "Select settings" +msgstr "설정 선택" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "파일" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "이 모델에 맞게 사용자 정의 설정을 선택하십시오" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "편집(&E)" +#: /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/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "보기(&V)" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "모두 보이기" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" +#: /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 +msgctxt "@action" +msgid "Add a script" +msgstr "스크립트 추가" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 +msgctxt "@label" +msgid "Settings" msgstr "설정" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "확장 프로그램(&X)" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:459 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "활성 사후 처리 스크립트를 변경하십시오." -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "환경설정(&R)" +#: /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/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "도움말(&H)" +#: /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/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 +#: /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 "New project" -msgstr "새 프로젝트" +msgid "More information on anonymous data collection" +msgstr "익명 데이터 수집에 대한 추가 정보" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 -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/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/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 -msgctxt "@label:PrintjobStatus" -msgid "Slicing..." -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/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 -msgctxt "@label:PrintjobStatus" -msgid "Unable to slice" -msgstr "슬라이스 할 수 없습니다" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:116 +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "익명 데이터 전송 허용" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Processing" -msgstr "처리" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "빌드 플레이트 레벨링" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Slice" -msgstr "슬라이스" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 msgctxt "@label" -msgid "Start the slicing process" -msgstr "슬라이싱 프로세스 시작" +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/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 -msgctxt "@button" -msgid "Cancel" -msgstr "취소" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 msgctxt "@label" -msgid "Time estimation" -msgstr "시간 추산" +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/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "빌드플레이트 레벨링 시작하기" + +#: /home/trin/Gedeeld/Projects/Cura/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 "Material estimation" -msgstr "재료 추산" +msgid "Please select any upgrades made to this Ultimaker Original" +msgstr "이 Ultimaker Original에 업그레이드 할 항목을 선택하십시오" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39 msgctxt "@label" -msgid "No time estimation available" -msgstr "시간 추산 이용 불가" +msgid "Heated Build Plate (official kit or self-built)" +msgstr "히팅 빌드 플레이트 (공식 키트 또는 자체 조립식)" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: /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 "No cost estimation available" -msgstr "비용 추산 이용 불가" +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/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "미리 보기" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51 msgctxt "@label" -msgid "Add a printer" -msgstr "프린터 추가" +msgid "Select your printer from the list below:" +msgstr "아래 목록에서 프린터를 선택하십시오:" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +#: /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 "Add a networked printer" -msgstr "네트워크 프린터 추가" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "프린터가 목록에 없으면 네트워크 프린팅 문제 해결 가이드를 읽어보십시오" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +#: /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 "Add a non-networked printer" -msgstr "비 네트워크 프린터 추가" +msgid "Type" +msgstr "유형" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: /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 "Add a Cloud printer" -msgstr "클라우드 프린터 추가" +msgid "Firmware version" +msgstr "펌웨어 버전" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +#: /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 "Waiting for Cloud response" -msgstr "클라우드 응답 대기" +msgid "Address" +msgstr "주소" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 msgctxt "@label" -msgid "No printers found in your account?" -msgstr "사용자의 계정에 프린터가 없습니까?" +msgid "This printer is not set up to host a group of printers." +msgstr "이 프린터는 프린터 그룹을 호스트하도록 설정되어 있지 않습니다." -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" -msgstr "사용자의 계정에 있는 다음 프린터를 Cura에 추가하였습니다:" +msgid "This printer is the host for a group of %1 printers." +msgstr "이 프린터는 %1개 프린터 그룹의 호스트입니다." -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "수동으로 프린터 추가" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 msgctxt "@label" -msgid "Add printer by IP address" -msgstr "IP 주소로 프린터 추가" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "프린터의 IP 주소를 입력하십시오." - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "추가" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 -msgctxt "@label" -msgid "Could not connect to device." -msgstr "장치에 연결할 수 없습니다." - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 -msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Ultimaker 프린터로 연결할 수 없습니까?" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 -msgctxt "@label" -msgid "The printer at this address has not responded yet." +msgid "The printer at this address has not yet responded." msgstr "이 주소의 프린터가 아직 응답하지 않았습니다." -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 -msgctxt "@button" -msgid "Back" -msgstr "뒤로" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +msgctxt "@action:button" msgid "Connect" msgstr "연결" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "사용자 계약" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "잘못된 IP 주소" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "거절 및 닫기" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Ultimaker Cura에 오신 것을 환영합니다" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +#: /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 follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "Ultimaker Cura를 설정하려면 다음 단계로 이동하세요. 오래 걸리지 않습니다." +msgid "Please enter a valid IP address." +msgstr "유효한 IP 주소를 입력하십시오." -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "시작하기" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "프린터 주소" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +#: /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 +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 msgctxt "@label" msgid "Sign in to the Ultimaker platform" msgstr "Ultimaker 플랫폼에 로그인" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "재료 설정 및 Marketplace 플러그인 추가" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "재료 설정과 플러그인 백업 및 동기화" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "Ultimaker 커뮤니티에서 48,000명 이상의 사용자와 아이디어를 공유하고 도움 받기" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 -msgctxt "@button" -msgid "Skip" -msgstr "건너뛰기" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Ultimaker 계정 무료 생성" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 -msgctxt "@label" -msgid "Manufacturer" -msgstr "제조업체" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 -msgctxt "@label" -msgid "Profile author" -msgstr "프로파일 원작자" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 -msgctxt "@label" -msgid "Printer name" -msgstr "프린터 이름" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 -msgctxt "@text" -msgid "Please name your printer" -msgstr "프린터의 이름을 설정하십시오" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 -msgctxt "@label" -msgid "There is no printer found over your network." -msgstr "네트워크에서 검색된 프린터가 없습니다." - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "새로고침" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "IP로 프린터 추가" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "클라우드 프린터 추가" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "문제 해결" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Ultimaker Cura를 개선하는 데 도움을 주십시오" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Ultimaker Cura는 인쇄 품질과 사용자 경험을 개선하기 위해 다음과 같은 익명 데이터를 수집합니다:" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "기기 유형" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "재료 사용" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "슬라이드 수" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "인쇄 설정" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Ultimaker Cura가 수집하는 데이터에는 개인 정보가 포함되어 있지 않습니다." - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "추가 정보" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 -msgctxt "@label" -msgid "What's New" -msgstr "새로운 기능" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "비어 있음" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "릴리즈 노트" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 -msgctxt "@title:window The argument is the application name." -msgid "About %1" -msgstr "%1 정보" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 -msgctxt "@label" -msgid "version: %1" -msgstr "버전: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 -msgctxt "@label" -msgid "End-to-end solution for fused filament 3D printing." -msgstr "3D 프린팅을 위한 엔드 투 엔트 솔루션." - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 -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 "" -"Cura는 커뮤니티와 공동으로 Ultimaker B.V.에 의해 개발되었습니다.\n" -"Cura는 다음의 오픈 소스 프로젝트를 사용합니다:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 -msgctxt "@label" -msgid "Graphical user interface" -msgstr "그래픽 사용자 인터페이스" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" -msgid "Application framework" -msgstr "애플리케이션 프레임 워크" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" -msgid "G-code generator" -msgstr "GCode 생성기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" -msgid "Interprocess communication library" -msgstr "프로세스간 통신 라이브러리" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" -msgid "Programming language" -msgstr "프로그래밍 언어" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" -msgid "GUI framework" -msgstr "GUI 프레임 워크" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" -msgid "GUI framework bindings" -msgstr "GUI 프레임 워크 바인딩" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" -msgid "C/C++ Binding library" -msgstr "C/C ++ 바인딩 라이브러리" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 -msgctxt "@label" -msgid "Data interchange format" -msgstr "데이터 교환 형식" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 -msgctxt "@label" -msgid "Support library for scientific computing" -msgstr "과학 컴퓨팅을 위한 라이브러리" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" -msgid "Support library for faster math" -msgstr "더 빠른 수학연산을 위한 라이브러리" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" -msgid "Support library for handling STL files" -msgstr "STL 파일 처리를 위한 라이브러리" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" -msgid "Support library for handling planar objects" -msgstr "평면 개체 처리를 위한 지원 라이브러리" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" -msgid "Support library for handling triangular meshes" -msgstr "삼각형 메쉬 처리를 위한 지원 라이브러리" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" -msgid "Support library for handling 3MF files" -msgstr "3MF 파일 처리를 위한 라이브러리" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 -msgctxt "@label" -msgid "Support library for file metadata and streaming" -msgstr "파일 메타데이터 및 스트리밍을 위한 지원 라이브러리" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 -msgctxt "@label" -msgid "Serial communication library" -msgstr "직렬 통신 라이브러리" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 -msgctxt "@label" -msgid "ZeroConf discovery library" -msgstr "ZeroConf discovery 라이브러리" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" -msgid "Polygon clipping library" -msgstr "다각형 클리핑 라이브러리" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@Label" -msgid "Static type checker for Python" -msgstr "Python용 정적 유형 검사기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@Label" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "SSL 신뢰성 검증용 루트 인증서" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 -msgctxt "@Label" -msgid "Python Error tracking library" -msgstr "Python 오류 추적 라이브러리" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 -msgctxt "@label" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "폴리곤 패킹 라이브러리, Prusa Research 개발" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -msgctxt "@label" -msgid "Python bindings for libnest2d" -msgstr "libnest2d용 Python 바인딩" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" -msgid "Support library for system keyring access" -msgstr "시스템 키링 액세스를 위한 서포트 라이브러리" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" -msgid "Python extensions for Microsoft Windows" -msgstr "Microsoft Windows용 Python 확장" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" -msgid "Font" -msgstr "폰트" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" -msgid "SVG icons" -msgstr "SVG 아이콘" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" -msgid "Linux cross-distribution application deployment" -msgstr "Linux 교차 배포 응용 프로그램 배포" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "파일 열기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 -msgctxt "@action:button" -msgid "Import all as models" -msgstr "모두 모델로 가져 오기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 -msgctxt "@title:window" -msgid "Save Project" -msgstr "프로젝트 저장" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "%1익스트루더" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & 재료" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 -msgctxt "@action:label" -msgid "Material" -msgstr "재료" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "프로젝트 요약을 다시 저장하지 마십시오" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 -msgctxt "@action:button" -msgid "Save" -msgstr "저장" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 -msgctxt "@title:window" -msgid "Discard or Keep changes" -msgstr "변경 사항 삭제 또는 유지" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 -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'에서 기본값을 로드할 수 있습니다." - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 -msgctxt "@title:column" -msgid "Profile settings" -msgstr "프로파일 설정" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 -msgctxt "@title:column" -msgid "Current changes" -msgstr "현재 변경 사항" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 -msgctxt "@option:discardOrKeep" -msgid "Always ask me this" -msgstr "항상 묻기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 -msgctxt "@option:discardOrKeep" -msgid "Discard and never ask again" -msgstr "최소하고 다시 묻지않기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 -msgctxt "@option:discardOrKeep" -msgid "Keep and never ask again" -msgstr "계속하고 다시 묻지않기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 -msgctxt "@action:button" -msgid "Discard changes" -msgstr "변경 사항 삭제" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 -msgctxt "@action:button" -msgid "Keep changes" -msgstr "변경 사항 유지" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 -msgctxt "@title:window" -msgid "Open project file" -msgstr "프로젝트 파일 열기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "선택 기억하기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 -msgctxt "@action:button" -msgid "Open as project" -msgstr "프로젝트로 열기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 -msgctxt "@action:button" -msgid "Import models" -msgstr "모델 가져 오기" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 -msgctxt "@label" -msgid "Active print" -msgstr "활성화된 프린트" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 -msgctxt "@label" -msgid "Job Name" -msgstr "작업 이름" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 -msgctxt "@label" -msgid "Printing Time" -msgstr "프린팅 시간" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 -msgctxt "@label" -msgid "Estimated time left" -msgstr "예상 남은 시간" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "현재 클라우드 연결을 사용할 수 없습니다. 사용자의 인터넷 연결을 확인하십시오." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Add printer" -msgstr "프린터 추가" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 -msgctxt "@button" -msgid "Manage printers" -msgstr "프린터 관리" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "연결된 프린터" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "프린터 사전 설정" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 -msgctxt "@label" -msgid "Print settings" -msgstr "프린팅 설정" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -msgctxt "@label shown when we load a Gcode file" -msgid "Print setup disabled. G-code file can not be modified." -msgstr "인쇄 설정 비활성화됨. G 코드 파일을 수정할 수 없습니다." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 -msgctxt "@label" -msgid "Profile" -msgstr "프로파일" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 -msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "" -"일부 설정/대체 값은 프로파일에 저장된 값과 다릅니다.\n" -"\n" -"프로파일 매니저를 열려면 클릭하십시오." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 -msgctxt "@label:header" -msgid "Custom profiles" -msgstr "사용자 정의 프로파일" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "현재 변경 사항 삭제" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "추천" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "사용자 정의" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "유효한" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "비활성" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" -msgstr "실험적 설정" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 -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 프로파일이 없습니다. 대신 기본 의도가 사용됩니다" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 -msgctxt "@label" -msgid "Profiles" -msgstr "프로파일" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 -msgctxt "@tooltip" -msgid "You have modified some profile settings. If you want to change these go to custom mode." -msgstr "일부 프로파일 설정을 수정했습니다. 이러한 설정을 변경하려면 사용자 지정 모드로 이동하십시오." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 -msgctxt "@label" -msgid "Support" -msgstr "서포트" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 -msgctxt "@label" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "오버행이 있는 모델 서포트를 생성합니다. 이러한 구조가 없으면 이러한 부분이 프린팅 중에 붕괴됩니다." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 -msgctxt "@label" -msgid "Gradual infill" -msgstr "점진적 내부채움" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "점차적인 내부채움은 점차적으로 빈 공간 채우기의 양을 증가시킵니다." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "부착" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 -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/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "프로젝트 저장 중..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "네트워크 프린터" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "로컬 프린터" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "재료" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "즐겨찾기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "일반" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 -msgctxt "@label" -msgid "Print Selected Model With:" -msgid_plural "Print Selected Models With:" -msgstr[0] "선택된 모델 프린팅 :" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "선택한 모델 복" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "복제할 수" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "프로젝트 저장(&S)..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "내보내기(&E)..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "내보내기 선택..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "구성" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "사용자 정의" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "프린터" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "실행됨" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "재료" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "더 나은 접착력을 위해 이 재료 조합과 함께 접착제를 사용하십시오.." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 -msgctxt "@tooltip" -msgid "The configuration of this extruder is not allowed, and prohibits slicing." -msgstr "이 익스트루더의 구성이 허용되지 않았으며, 슬라이싱이 금지됩니다." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 -msgctxt "@tooltip" -msgid "There are no profiles matching the configuration of this extruder." -msgstr "이 익스트루더 구성에 일치하는 프로파일이 없습니다." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 -msgctxt "@label" -msgid "Select configuration" -msgstr "구성 선택" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 -msgctxt "@label" -msgid "Configurations" -msgstr "구성" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "프린터에서 사용 가능한 구성 로딩 중..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 -msgctxt "@label" -msgid "The configurations are not available because the printer is disconnected." -msgstr "프린터가 연결되어 있지 않기 때문에 구성을 사용할 수 없습니다." - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "시장" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "파일 여는 중..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "프린터(&P)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "재료(&M)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "활성 익스트루더로 설정" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "익스트루더 사용" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "익스트루더 사용하지 않음" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "최근 열어본 파일 열기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "표시 설정" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "모든 카테고리 붕괴" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "보기 설정 관리..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "카메라 위치(&C)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "카메라 뷰" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "원근" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "직교" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "빌드 플레이트(&B)" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 -msgctxt "@label" -msgid "View type" -msgstr "유형 보기" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 -msgctxt "@label" -msgid "Is printed as support." -msgstr "지원으로 프린팅됩니다." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "이 모델과 중복되는 다른 모델은 수정됩니다." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "이 모델과 중복되는 내부채움은 수정됩니다." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "이 모델과의 중복은 지원되지 않습니다." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "%1 설정을 덮어씁니다." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "프로파일" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 -msgctxt "@action:button" -msgid "Activate" -msgstr "활성화" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "생성" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "복제" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 -msgctxt "@action:button" -msgid "Rename" -msgstr "이름 바꾸기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -msgctxt "@action:button" -msgid "Import" -msgstr "가져오기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -msgctxt "@action:button" -msgid "Export" -msgstr "내보내기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "프로파일 생성하기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "이 프로파일에 대한 이름을 제공하십시오." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "프로파일 복제하기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "제거 확인" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "%1을 제거 하시겠습니까? 이것은 취소 할 수 없습니다!" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "프로파일 이름 바꾸기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "프로파일 가져 오기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "프로파일 내보내기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "프린터: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "현재 설정 / 재정의 프로파일 업데이트" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "현재 설정이 선택한 프로파일과 일치합니다." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "전역 설정" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 -msgctxt "@title:tab" -msgid "General" -msgstr "일반" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 -msgctxt "@label" -msgid "Interface" -msgstr "인터페이스" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 -msgctxt "@label" -msgid "Currency:" -msgstr "통화:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 -msgctxt "@label" -msgid "Theme:" -msgstr "테마:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 -msgctxt "@label" -msgid "You will need to restart the application for these changes to have effect." -msgstr "이러한 변경 사항을 적용하려면 응용 프로그램을 다시 시작해야합니다." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "설정이 변경되면 자동으로 슬라이싱 합니다." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "자동으로 슬라이싱" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "뷰포트 동작" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 -msgctxt "@info:tooltip" -msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." -msgstr "지원되지 않는 모델 영역을 빨간색으로 강조 표시하십시오. 서포트가 없으면 이 영역이 제대로 프린팅되지 않습니다." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "오버행 표시" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "모델 오류 표시" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 -msgctxt "@info:tooltip" -msgid "Moves the camera so the model is in the center of the view when a model is selected" -msgstr "모델을 선택하면 모델이 뷰의 가운데에 오도록 카메라를 이동합니다" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "항목을 선택하면 카메라를 중앙에 위치" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "큐라의 기본 확대 동작을 반전시켜야 합니까?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "카메라 줌의 방향을 반전시키기." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "확대가 마우스 방향으로 이동해야 합니까?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -msgctxt "@info:tooltip" -msgid "Zooming towards the mouse is not supported in the orthographic perspective." -msgstr "정투영법 시점에서는 마우스 방향으로 확대가 지원되지 않습니다." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "마우스 방향으로 확대" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved so that they no longer intersect?" -msgstr "모델을 더 이상 교차시키지 않도록 이동해야합니까?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "모델이 분리되어 있는지 확인" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved down to touch the build plate?" -msgstr "모델을 빌드 플레이트에 닿도록 아래로 움직여야합니까?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "모델을 빌드 플레이트에 자동으로 놓기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "g-code 리더에 주의 메시지를 표시하기." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "g-code 리더의 주의 메시지" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "레이어가 호환 모드로 강제 설정되어야합니까?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "레이어 뷰 호환성 모드로 전환 (다시 시작해야 함)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "닫힌 위치에서 Cura를 열어야 합니까?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "시작 시 창 위치 복원" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "어떤 유형의 카메라 렌더링을 사용해야 합니까?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "카메라 렌더링:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 -msgid "Perspective" -msgstr "원근" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 -msgid "Orthographic" -msgstr "정투영" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "파일 열기 및 저장" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 -msgctxt "@info:tooltip" -msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "데스크톱 또는 외부 애플리케이션의 파일을 동일한 Cura 인스턴스에서 엽니까?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Cura의 단일 인스턴스 사용" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 -msgctxt "@info:tooltip" -msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" -msgstr "Cura의 단일 인스턴스에서 새 모델을 로드하기 전에 빌드 플레이트를 지워야 합니까?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 -msgctxt "@option:check" -msgid "Clear buildplate before loading model into the single instance" -msgstr "모델을 단일 인스턴스로 로드하기 전에 빌드 플레이트 지우기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 -msgctxt "@info:tooltip" -msgid "Should models be scaled to the build volume if they are too large?" -msgstr "크기가 너무 큰 경우 모델을 빌드 볼륨에 맞게 조정해야합니까?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "큰 모델의 사이즈 수정" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "매우 작은 모델의 크기 조정" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "모델을 로드한 후에 선택해야 합니까?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "로드된 경우 모델 선택" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 -msgctxt "@info:tooltip" -msgid "Should a prefix based on the printer name be added to the print job name automatically?" -msgstr "프린터 이름에 기반한 접두어가 프린팅 작업 이름에 자동으로 추가되어야합니까?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "작업 이름에 기기 접두어 추가" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "프로젝트 파일을 저장할 때 요약이 표시되어야합니까?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "프로젝트 저장시 요약 대화 상자 표시" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "프로젝트 파일을 열 때 기본 동작" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "프로젝트 파일을 열 때 기본 동작 " - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "항상 묻기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "항상 프로젝트로 열기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "항상 모델 가져 오기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 -msgctxt "@window:text" -msgid "Default behavior for changed setting values when switching to a different profile: " -msgstr "다른 프로파일로 변경하는 경우 변경된 설정값에 대한 기본 동작 " - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "항상 변경된 설정 삭제" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "항상 변경된 설정을 새 프로파일로 전송" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 -msgctxt "@label" -msgid "Privacy" -msgstr "보안" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 -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 주소 또는 기타 개인 식별 정보는 전송되거나 저장되지 않습니다." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "(익명) 프린터 정보 보내기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 -msgctxt "@action:button" -msgid "More information" -msgstr "추가 정보" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 -msgctxt "@label" -msgid "Updates" -msgstr "업데이트" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 -msgctxt "@info:tooltip" -msgid "Should Cura check for updates when the program is started?" -msgstr "Cura가 프로그램이 시작될 때 업데이트를 확인할까요?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "시작시 업데이트 확인" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 -msgctxt "@info:tooltip" -msgid "When checking for updates, only check for stable releases." -msgstr "업데이트 사항을 확인할 때 안정적인 릴리즈만 확인하십시오." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 -msgctxt "@option:radio" -msgid "Stable releases only" -msgstr "안정적인 릴리즈만 해당" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 -msgctxt "@info:tooltip" -msgid "When checking for updates, check for both stable and for beta releases." -msgstr "업데이트 사항을 확인할 때 안정적인 베타 릴리즈를 확인하십시오." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 -msgctxt "@option:radio" -msgid "Stable and Beta releases" -msgstr "안정적인 베타 릴리즈" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 -msgctxt "@option:check" -msgid "Get notifications for plugin updates" -msgstr "플러그인 업데이트 알림 받기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "정보" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "직경 변경 확인" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "표시 이름" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "재료 유형" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "색깔" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "속성" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "밀도" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "직경" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "필라멘트 비용" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "필라멘트 무게" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "필라멘트 길이" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "미터 당 비용" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -msgctxt "@label" -msgid "This material is linked to %1 and shares some of its properties." -msgstr "이 재료는 %1에 연결되어 있으며 일부 속성을 공유합니다." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "재료 연결 해제" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "설명" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "접착 정보" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "생성" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "복제" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "프린터와 동기화" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "프린터" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "재료 가져 오기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "재료를 가져올 수 없습니다" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "재료를 성공적으로 가져왔습니다" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "재료 내보내기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "재료를 내보내는데 실패했습니다" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "재료를 성공적으로 내보냈습니다" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 -msgctxt "@title:window" -msgid "Sync materials with printers" -msgstr "재료를 프린터와 동기화" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 -msgctxt "@title:header" -msgid "Sync materials with printers" -msgstr "재료를 프린터와 동기화" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 -msgctxt "@text" -msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." -msgstr "몇 가지 간단한 단계를 수행하면 모든 재료 프로파일과 프린터를 동기화할 수 있습니다." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 -msgctxt "@button" -msgid "Start" -msgstr "시작" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 -msgctxt "@button" -msgid "Why do I need to sync material profiles?" -msgstr "재료 프로파일을 동기화해야 하는 이유는 무엇입니까?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 -msgctxt "@title:header" -msgid "Sign in" -msgstr "로그인" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 -msgctxt "@button" -msgid "Sync materials with USB" -msgstr "재료를 USB로 동기화" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 -msgctxt "@title:header" -msgid "The following printers will receive the new material profiles:" -msgstr "다음 프린터는 새 재료 프로파일을 받게 됩니다:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 -msgctxt "@title:header" -msgid "Something went wrong when sending the materials to the printers." -msgstr "재료를 프린터로 전송할 때 어떤 문제가 발생했습니다." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 -msgctxt "@title:header" -msgid "Material profiles successfully synced with the following printers:" -msgstr "다음 프린터에 재료 프로파일이 성공적으로 동기화되었습니다:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 -msgctxt "@button" -msgid "Troubleshooting" -msgstr "문제 해결" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 -msgctxt "@text Asking the user whether printers are missing in a list." -msgid "Printers missing?" -msgstr "프린터가 없습니까?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 -msgctxt "@text" -msgid "Make sure all your printers are turned ON and connected to Digital Factory." -msgstr "모든 프린터가 켜져 있고 Digital Factory에 연결되어 있는지 확인하십시오." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 -msgctxt "@button" -msgid "Refresh List" -msgstr "목록 새로고침" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 -msgctxt "@button" -msgid "Try again" -msgstr "다시 시도" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Done" -msgstr "완료" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 -msgctxt "@button" -msgid "Sync" -msgstr "동기화" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 -msgctxt "@button" -msgid "Syncing" -msgstr "동기화 중" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 -msgctxt "@title:header" -msgid "No printers found" -msgstr "프린터를 찾을 수 없음" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 -msgctxt "@button" -msgid "Learn how to connect your printer to Digital Factory" -msgstr "Digital Factory에 프린터를 연결하는 방법 알아보기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 -msgctxt "@button" -msgid "Refresh" -msgstr "새로고침" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 -msgctxt "@title:header" -msgid "Sync material profiles via USB" -msgstr "재료 프로파일을 USB로 동기화" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 -msgctxt "@text" -msgid "Click the export material archive button." -msgstr "재료 아카이브 내보내기 버튼을 클릭합니다." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 -msgctxt "@text" -msgid "Save the .umm file on a USB stick." -msgstr ".umm 파일을 USB 스틱에 저장합니다." - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 -msgctxt "@button" -msgid "How to load new material profiles to my printer" -msgstr "새로운 재료 프로파일을 내 프린터로 로드하는 방법" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Export material archive" -msgstr "재료 아카이브 내보내기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "모든 재료 내보내기" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "보기 설정" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "모두 확인" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 -msgctxt "@title:tab" -msgid "Printers" -msgstr "프린터" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "계산된" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "설정" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "프로파일" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "현재 설정" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "단위" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "프린터에 연결되지 않음" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "프린터가 명령을 받아들이지 않습니다" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "유지 보수 중. 프린터를 확인하십시오" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "프린터와의 연결이 끊어졌습니다" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "프린팅..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "일시 중지됨" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "준비 중..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "프린트물을 제거하십시오" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "프린팅 중단" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "프린팅를 중단 하시겠습니까?" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 -msgctxt "@label:button" -msgid "My printers" -msgstr "내 프린터" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 -msgctxt "@tooltip:button" -msgid "Monitor printers in Ultimaker Digital Factory." -msgstr "Ultimaker Digital Factory의 프린터를 모니터링하십시오." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 -msgctxt "@tooltip:button" -msgid "Create print projects in Digital Library." -msgstr "Digital Library에서 프린트 프로젝트를 생성하십시오." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 -msgctxt "@label:button" -msgid "Print jobs" -msgstr "인쇄 작업" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 -msgctxt "@tooltip:button" -msgid "Monitor print jobs and reprint from your print history." -msgstr "프린트 작업을 모니터링하고 프린트 기록에서 다시 프린트하십시오." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 -msgctxt "@tooltip:button" -msgid "Extend Ultimaker Cura with plugins and material profiles." -msgstr "플러그인 및 재료 프로파일을 사용하여 Ultimaker Cura를 확장하십시오." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 -msgctxt "@tooltip:button" -msgid "Become a 3D printing expert with Ultimaker e-learning." -msgstr "Ultimaker e-러닝을 통해 3D 프린팅 전문가로 거듭나십시오." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 -msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "Ultimaker support" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 -msgctxt "@tooltip:button" -msgid "Learn how to get started with Ultimaker Cura." -msgstr "Ultimaker Cura로 시작하는 방법을 알아보십시오." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 -msgctxt "@label:button" -msgid "Ask a question" -msgstr "질문하기" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 -msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "Ultimaker 커뮤니티에 문의하십시오." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 -msgctxt "@label:button" -msgid "Report a bug" -msgstr "버그 리포트" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 -msgctxt "@tooltip:button" -msgid "Let developers know that something is going wrong." -msgstr "개발자에게 문제를 알려주십시오." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 -msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "Ultimaker 웹 사이트를 방문하십시오." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "프린터 제어" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "조그 위치" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "조그 거리" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "Gcode 보내기" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "익스트루더" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "이 익스트루더의 현재 온도." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "노즐을 예열하기 위한 온도." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "취소" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "예열" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "이 익스트루더의 재료 색." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "이 익스트루더의 재료." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "이 익스트루더에 삽입 된 노즐." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "프린터가 연결되어 있지 않습니다." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "빌드 플레이트" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "가열 된 베드의 현재 온도." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "베드를 예열하기 위한 온도." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -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/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "로그인" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 msgctxt "@text" msgid "" "- Add material profiles and plug-ins from the Marketplace\n" @@ -5308,374 +3448,2284 @@ msgstr "" "- 재료 설정과 플러그인 백업 및 동기화\n" "- Ultimaker 커뮤니티에서 48,000명 이상의 사용자와 아이디어를 공유하고 도움 받기" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" msgid "Create a free Ultimaker account" msgstr "Ultimaker 계정 무료 생성" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "마지막 업데이트: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Ultimaker 계정" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 -msgctxt "@button" -msgid "Sign Out" -msgstr "로그아웃" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "확인 중..." -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "계정 동기화됨" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "오류가 발생하였습니다..." -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "보류된 업데이트 설치" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "계정 업데이트 확인" -#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "제목 없음" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "마지막 업데이트: %1" -#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "Ultimaker 계정" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "로그아웃" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" -msgid "No items to select from" -msgstr "선택할 항목 없음" +msgid "No time estimation available" +msgstr "시간 추산 이용 불가" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Preview" +msgstr "미리 보기" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +msgctxt "@label" +msgid "Time estimation" +msgstr "시간 추산" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107 +msgctxt "@label" +msgid "Material estimation" +msgstr "재료 추산" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +msgctxt "@label:PrintjobStatus" +msgid "Slicing..." +msgstr "슬라이싱..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Processing" +msgstr "처리" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +msgctxt "@button" +msgid "Slice" +msgstr "슬라이스" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Cancel" +msgstr "취소" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "온라인 문제 해결 가이드 표시" +msgid "Show Online Troubleshooting" +msgstr "온라인 문제 해결 표시" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "전채 화면 전환" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "전체 화면 종료" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "되돌리기(&U)" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "다시하기(&R)" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "종료(&Q)" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "3D 보기" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "앞에서 보기" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "위에서 보기" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "하단 뷰" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "왼쪽에서 보기" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "오른쪽에서 보기" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "Cura 구성 ..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "프린터 추가..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "프린터 관리 ..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "재료 관리..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu" +#: /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." msgid "Add more materials from Marketplace" msgstr "마켓플레이스에서 더 많은 재료 추가" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 msgctxt "@action:inmenu menubar:profile" msgid "&Update profile with current settings/overrides" msgstr "현재 설정으로로 프로파일 업데이트" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "현재 변경 사항 무시" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." msgstr "현재 설정으로 프로파일 생성..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "프로파일 관리..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "온라인 문서 표시" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "버그 리포트" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "새로운 기능" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "소개..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "선택 항목 삭제" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "선택 항목 가운데 정렬" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "선택 항목 복제" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "모델 삭제" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "플랫폼중심에 모델 위치하기" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "모델 그룹화" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "모델 그룹 해제" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "모델 합치기" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "모델 복제..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "모든 모델 선택" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "빌드 플레이트 지우기" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "모든 모델 다시 로드" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "모든 모델을 모든 빌드 플레이트에 정렬" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "모든 모델 정렬" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "선택한 모델 정렬" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "모든 모델의 위치 재설정" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "모든 모델의 변환 재설정" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "파일 열기..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "새로운 프로젝트..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "설정 폴더 표시" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "설정 보기..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "&시장" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "내 프린터" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "Digital Library에서 프린트 프로젝트를 생성하십시오." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "인쇄 작업" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Extend Ultimaker Cura with plugins and material profiles." +msgstr "플러그인 및 재료 프로파일을 사용하여 Ultimaker Cura를 확장하십시오." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +msgctxt "@tooltip:button" +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 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "Ultimaker support" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +msgctxt "@tooltip:button" +msgid "Learn how to get started with Ultimaker Cura." +msgstr "Ultimaker Cura로 시작하는 방법을 알아보십시오." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "Ultimaker 커뮤니티에 문의하십시오." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "개발자에게 문제를 알려주십시오." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "Ultimaker 웹 사이트를 방문하십시오." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 msgctxt "@label" -msgid "This setting is not used because all the settings that it influences are overridden." -msgstr "영향을 미치는 모든 설정이 무효화되기 때문에 이 설정을 사용하지 않습니다." +msgid "Hex" +msgstr "6각" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 -msgctxt "@label Header for list of settings." -msgid "Affects" -msgstr "영향" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 -msgctxt "@label Header for list of settings." -msgid "Affected By" -msgstr "영향을 받다" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 msgctxt "@label" -msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." -msgstr "이 설정은 항상 모든 익스트루더 사이에 공유됩니다. 여기서 변경하면 모든 익스트루더에 대한 값이 변경됩니다." +msgid "This package will be installed after restarting." +msgstr "다시 시작한 후에 이 패키지가 설치됩니다." -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 -msgctxt "@label" -msgid "This setting is resolved from conflicting extruder-specific values:" -msgstr "이 설정은 충돌하는 압출기별 값으로 결정됩니다:" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:463 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +msgctxt "@title:tab" +msgid "General" +msgstr "일반" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +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 +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 +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 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "프로파일" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +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 +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 +msgctxt "@title:window" +msgid "Open file(s)" +msgstr "파일 열기" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +msgctxt "@window:title" +msgid "Install Package" +msgstr "패키지 설치" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "파일 열기" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +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 +msgctxt "@title:window" +msgid "Add Printer" +msgstr "프린터 추가" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +msgctxt "@title:window" +msgid "What's New" +msgstr "새로운 기능" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" +msgid "version: %1" +msgstr "버전: %1" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +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 +msgctxt "@info:credit" msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." +"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura proudly uses the following open source projects:" msgstr "" -"이 설정에는 프로파일과 다른 값이 있습니다.\n" -"\n" -"프로파일 값을 복원하려면 클릭하십시오." +"Cura는 커뮤니티와 공동으로 Ultimaker B.V.에 의해 개발되었습니다.\n" +"Cura는 다음의 오픈 소스 프로젝트를 사용합니다:" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"이 설정은 일반적으로 계산되지만 현재는 절대 값이 설정되어 있습니다.\n" -"\n" -"계산 된 값을 복원하려면 클릭하십시오." +msgid "Graphical user interface" +msgstr "그래픽 사용자 인터페이스" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +msgctxt "@label" +msgid "Application framework" +msgstr "애플리케이션 프레임 워크" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label" +msgid "G-code generator" +msgstr "GCode 생성기" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label" +msgid "Interprocess communication library" +msgstr "프로세스간 통신 라이브러리" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label" +msgid "Python bindings for libnest2d" +msgstr "libnest2d용 Python 바인딩" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 +msgctxt "@label" +msgid "Polygon packing library, developed by Prusa Research" +msgstr "폴리곤 패킹 라이브러리, Prusa Research 개발" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 +msgctxt "@label" +msgid "Support library for handling 3MF files" +msgstr "3MF 파일 처리를 위한 라이브러리" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 +msgctxt "@label" +msgid "Support library for file metadata and streaming" +msgstr "파일 메타데이터 및 스트리밍을 위한 지원 라이브러리" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 +msgctxt "@label" +msgid "Programming language" +msgstr "프로그래밍 언어" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +msgctxt "@label" +msgid "GUI framework" +msgstr "GUI 프레임 워크" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label" +msgid "GUI framework bindings" +msgstr "GUI 프레임 워크 바인딩" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label" +msgid "C/C++ Binding library" +msgstr "C/C ++ 바인딩 라이브러리" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label" +msgid "Data interchange format" +msgstr "데이터 교환 형식" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label" +msgid "Font" +msgstr "폰트" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +msgctxt "@label" +msgid "Polygon clipping library" +msgstr "다각형 클리핑 라이브러리" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +msgctxt "@label" +msgid "JSON parser" +msgstr "JSON parser" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label" +msgid "Utility functions, including an image loader" +msgstr "이미지 로더를 포함한 유틸리티 기능" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label" +msgid "Utility library, including Voronoi generation" +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" +msgid "Root Certificates for validating SSL trustworthiness" +msgstr "SSL 신뢰성 검증용 루트 인증서" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +msgctxt "@label" +msgid "Compatibility between Python 2 and 3" +msgstr "Python 2 및 3 간의 호환성" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label" +msgid "Support library for system keyring access" +msgstr "시스템 키링 액세스를 위한 서포트 라이브러리" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +msgctxt "@label" +msgid "Support library for faster math" +msgstr "더 빠른 수학연산을 위한 라이브러리" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +msgctxt "@label" +msgid "Support library for handling STL files" +msgstr "STL 파일 처리를 위한 라이브러리" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:166 +msgctxt "@label" +msgid "Python bindings for Clipper" +msgstr "Clipper용 Python 바인딩" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label" +msgid "Serial communication library" +msgstr "직렬 통신 라이브러리" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label" +msgid "Support library for scientific computing" +msgstr "과학 컴퓨팅을 위한 라이브러리" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:169 +msgctxt "@Label" +msgid "Python Error tracking library" +msgstr "Python 오류 추적 라이브러리" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label" +msgid "Support library for handling triangular meshes" +msgstr "삼각형 메쉬 처리를 위한 지원 라이브러리" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:171 +msgctxt "@label" +msgid "ZeroConf discovery library" +msgstr "ZeroConf discovery 라이브러리" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 +msgctxt "@label" +msgid "Universal build system configuration" +msgstr "범용 빌드 시스템 설정" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 +msgctxt "@label" +msgid "Dependency and package manager" +msgstr "의존성 및 패키지 관리자" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label" +msgid "Packaging Python-applications" +msgstr "Python 애플리케이션 패키지 생성 중" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label" +msgid "Linux cross-distribution application deployment" +msgstr "Linux 교차 배포 응용 프로그램 배포" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:178 +msgctxt "@label" +msgid "Generating Windows installers" +msgstr "Windows 설치 관리자 생성 중" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "선택 기억하기" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +msgctxt "@action:button" +msgid "Open as project" +msgstr "프로젝트로 열기" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +msgctxt "@action:button" +msgid "Import models" +msgstr "모델 가져 오기" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 "" +"일부 프로파일 설정을 사용자 정의했습니다.\n" +"프로파일 전환 후에도 변경된 설정을 유지하시겠습니까?\n" +"또는 변경 사항을 버리고 '%1'에서 기본값을 로드할 수 있습니다." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +msgctxt "@title:column" +msgid "Profile settings" +msgstr "프로파일 설정" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +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 +msgctxt "@option:discardOrKeep" +msgid "Always ask me this" +msgstr "항상 묻기" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +msgctxt "@option:discardOrKeep" +msgid "Discard and never ask again" +msgstr "최소하고 다시 묻지않기" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:106 +msgctxt "@option:discardOrKeep" +msgid "Keep and never ask again" +msgstr "계속하고 다시 묻지않기" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:136 +msgctxt "@action:button" +msgid "Discard changes" +msgstr "변경 사항 삭제" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +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?" +msgstr "선택한 파일 내에 하나 이상의 프로젝트 파일이 있습니다. 한 번에 하나의 프로젝트 파일 만 열 수 있습니다. 해당 파일에서 모델 만 가져 오기를 권장합니다. 계속 하시겠습니까?" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:window" +msgid "Save Project" +msgstr "프로젝트 저장" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:175 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "%1익스트루더" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & 재료" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +msgctxt "@action:label" +msgid "Material" +msgstr "재료" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +msgctxt "@action:label" +msgid "Don't show project summary on save again" +msgstr "프로젝트 요약을 다시 저장하지 마십시오" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:296 +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 +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 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "설정" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87 +msgctxt "@title:window" +msgid "New project" +msgstr "새 프로젝트" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Marketplace" +msgstr "시장" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +msgctxt "@header" +msgid "Configurations" +msgstr "구성" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Marketplace" +msgstr "시장" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@label" +msgid "Select configuration" +msgstr "구성 선택" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 +msgctxt "@label" +msgid "Configurations" +msgstr "구성" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Enabled" +msgstr "실행됨" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +msgctxt "@label" +msgid "Material" +msgstr "재료" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "더 나은 접착력을 위해 이 재료 조합과 함께 접착제를 사용하십시오.." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Number of Copies" +msgstr "복제할 수" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "확장 프로그램(&X)" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "프로젝트 저장(&S)..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "내보내기 선택..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "재료" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "일반" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "환경설정(&R)" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "네트워크 프린터" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "최근 열어본 파일 열기" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "표시 설정" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "보기 설정 관리..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "카메라 위치(&C)" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "원근" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59 +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "직교" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "프린터가 명령을 받아들이지 않습니다" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:MonitorStatus" +msgid "Lost connection with the printer" +msgstr "프린터와의 연결이 끊어졌습니다" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:142 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "프린팅..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "일시 중지됨" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "준비 중..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:150 +msgctxt "@label:MonitorStatus" +msgid "Please remove the print" +msgstr "프린트물을 제거하십시오" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:318 +msgctxt "@label" +msgid "Abort Print" +msgstr "프린팅 중단" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Is printed as support." +msgstr "지원으로 프린팅됩니다." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "이 모델과 중복되는 내부채움은 수정됩니다." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@action:button" +msgid "Defaults" +msgstr "기본값" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +msgctxt "@label" +msgid "Interface" +msgstr "인터페이스" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +msgctxt "@heading" +msgid "-- incomplete --" +msgstr "-- 미완료 --" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +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." +msgid "Theme*:" +msgstr "테마*:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +msgctxt "@info:tooltip" +msgid "Slice automatically when changing settings." +msgstr "설정이 변경되면 자동으로 슬라이싱 합니다." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:328 +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." +msgstr "*이러한 변경 사항을 적용하려면 응용 프로그램을 재시작해야 합니다." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "뷰포트 동작" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +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 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "오버행 표시" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +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 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "모델 오류 표시" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +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 +msgctxt "@action:button" +msgid "Center camera when item is selected" +msgstr "항목을 선택하면 카메라를 중앙에 위치" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:411 +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 +msgctxt "@action:button" +msgid "Invert the direction of camera zoom." +msgstr "카메라 줌의 방향을 반전시키기." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +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 +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 +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "마우스 방향으로 확대" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:463 +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 +msgctxt "@option:check" +msgid "Ensure models are kept apart" +msgstr "모델이 분리되어 있는지 확인" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:477 +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 +msgctxt "@option:check" +msgid "Automatically drop models to the build plate" +msgstr "모델을 빌드 플레이트에 자동으로 놓기" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:494 +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 +msgctxt "@option:check" +msgid "Caution message in g-code reader" +msgstr "g-code 리더의 주의 메시지" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:511 +msgctxt "@info:tooltip" +msgid "Should layer be forced into compatibility mode?" +msgstr "레이어가 호환 모드로 강제 설정되어야합니까?" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:516 +msgctxt "@option:check" +msgid "Force layer view compatibility mode (restart required)" +msgstr "레이어 뷰 호환성 모드로 전환 (다시 시작해야 함)" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:526 +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 +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "시작 시 창 위치 복원" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:541 +msgctxt "@info:tooltip" +msgid "What type of camera rendering should be used?" +msgstr "어떤 유형의 카메라 렌더링을 사용해야 합니까?" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "카메라 렌더링:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +msgid "Perspective" +msgstr "원근" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +msgid "Orthographic" +msgstr "정투영" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "파일 열기 및 저장" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +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 +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "Cura의 단일 인스턴스 사용" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619 +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 +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 +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 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "큰 모델의 사이즈 수정" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +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 +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "매우 작은 모델의 크기 조정" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:665 +msgctxt "@info:tooltip" +msgid "Should models be selected after they are loaded?" +msgstr "모델을 로드한 후에 선택해야 합니까?" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "로드된 경우 모델 선택" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:680 +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 +msgctxt "@option:check" +msgid "Add machine prefix to job name" +msgstr "작업 이름에 기기 접두어 추가" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:695 +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 +msgctxt "@option:check" +msgid "Show summary dialog when saving project" +msgstr "프로젝트 저장시 요약 대화 상자 표시" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:709 +msgctxt "@info:tooltip" +msgid "Default behavior when opening a project file" +msgstr "프로젝트 파일을 열 때 기본 동작" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:717 +msgctxt "@window:text" +msgid "Default behavior when opening a project file: " +msgstr "프로젝트 파일을 열 때 기본 동작 " + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:732 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "항상 묻기" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +msgctxt "@option:openProject" +msgid "Always open as a project" +msgstr "항상 프로젝트로 열기" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "항상 모델 가져 오기" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +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 +msgctxt "@label" +msgid "Profiles" +msgstr "프로파일" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +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 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "항상 변경된 설정 삭제" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:801 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "항상 변경된 설정을 새 프로파일로 전송" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:835 +msgctxt "@label" +msgid "Privacy" +msgstr "보안" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +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 주소 또는 기타 개인 식별 정보는 전송되거나 저장되지 않습니다." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "(익명) 프린터 정보 보내기" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:876 +msgctxt "@label" +msgid "Updates" +msgstr "업데이트" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +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 +msgctxt "@option:check" +msgid "Check for updates on start" +msgstr "시작시 업데이트 확인" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:904 +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 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "안정적인 릴리즈만 해당" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +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 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "안정적인 베타 릴리즈" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +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 +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "플러그인 업데이트 알림 받기" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Rename" +msgstr "이름 바꾸기" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Import" +msgstr "가져오기" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@title:window" +msgid "Import Material" +msgstr "재료 가져 오기" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Material" +msgstr "재료 내보내기" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "재료를 프린터와 동기화" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Why do I need to sync material profiles?" +msgstr "재료 프로파일을 동기화해야 하는 이유는 무엇입니까?" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 +msgctxt "@button" +msgid "Start" +msgstr "시작" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +msgctxt "@title:header" +msgid "Sign in" +msgstr "로그인" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +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 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "재료를 USB로 동기화" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +msgctxt "@title:header" +msgid "The following printers will receive the new material profiles:" +msgstr "The following printers will receive the new material profiles:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:198 +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 +msgctxt "@title:header" +msgid "Material profiles successfully synced with the following printers:" +msgstr "Material profiles successfully synced with the following 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 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "문제 해결" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +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 +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 +msgctxt "@button" +msgid "Refresh List" +msgstr "목록 새로고침" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +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 +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 +msgctxt "@button" +msgid "Sync" +msgstr "동기화" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +msgctxt "@button" +msgid "Syncing" +msgstr "동기화 중" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +msgctxt "@title:header" +msgid "No printers found" +msgstr "프린터를 찾을 수 없음" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +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 +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 +msgctxt "@button" +msgid "Refresh" +msgstr "새로고침" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +msgctxt "@title:header" +msgid "Sync material profiles via USB" +msgstr "재료 프로파일을 USB로 동기화" + +#: /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." +msgstr "새로운 재료 프로파일을 프린터로 로드하기 위해 다음 단계를 수행합니다." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:663 +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "재료 아카이브 내보내기 버튼을 클릭합니다." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:664 +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 +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 +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 +msgctxt "@button" +msgid "Back" +msgstr "뒤로" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +msgctxt "@button" +msgid "Export material archive" +msgstr "재료 아카이브 내보내기" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "모든 재료 내보내기" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Display Name" +msgstr "표시 이름" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171 +msgctxt "@label" +msgid "Brand" +msgstr "상표" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Color" +msgstr "색깔" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Properties" +msgstr "속성" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:286 +msgctxt "@label" +msgid "Density" +msgstr "밀도" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:319 +msgctxt "@label" +msgid "Diameter" +msgstr "직경" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Filament weight" +msgstr "필라멘트 무게" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Cost per Meter" +msgstr "미터 당 비용" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Unlink Material" +msgstr "재료 연결 해제" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:485 +msgctxt "@label" +msgid "Description" +msgstr "설명" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Print settings" +msgstr "프린팅 설정" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:tooltip" +msgid "Create new profile from current settings/overrides" +msgstr "현재 설정/재정의로부터 새 프로파일 만들기" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Update profile." +msgstr "프로파일을 업데이트하십시오." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "현재 변경 사항 삭제" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:label" +msgid "Your current settings match the selected profile." +msgstr "현재 설정이 선택한 프로파일과 일치합니다." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:175 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "전역 설정" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +msgctxt "@title:window" +msgid "Create Profile" +msgstr "프로파일 생성하기" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "프로파일 내보내기" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:382 +msgctxt "@title:window" +msgid "Duplicate Profile" +msgstr "프로파일 복제하기" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "보기 설정" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" -msgid "Search settings" -msgstr "검색 설정" +msgid "Check all" +msgstr "모두 확인" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 -msgctxt "@action:menu" -msgid "Copy value to all extruders" -msgstr "모든 익스트루더에 값 복사" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "익스트루더" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 -msgctxt "@action:menu" -msgid "Copy all changed values to all extruders" -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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 -msgctxt "@action:menu" -msgid "Hide this setting" -msgstr "이 설정 숨기기" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "이 익스트루더의 현재 온도." -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 -msgctxt "@action:menu" -msgid "Don't show this setting" -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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 -msgctxt "@action:menu" -msgid "Keep this setting visible" -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/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 +#: /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 +msgctxt "@label" +msgid "Active print" +msgstr "활성화된 프린트" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +msgctxt "@label" +msgid "Job Name" +msgstr "작업 이름" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +msgctxt "@label" +msgid "Printing Time" +msgstr "프린팅 시간" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:180 +msgctxt "@label" +msgid "Estimated time left" +msgstr "예상 남은 시간" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 +msgctxt "@label" +msgid "Profile" +msgstr "프로파일" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 +msgctxt "@tooltip" +msgid "" +"Some setting/override values are different from the values stored in the profile.\n" +"\n" +"Click to open the profile manager." +msgstr "" +"일부 설정/대체 값은 프로파일에 저장된 값과 다릅니다.\n" +"\n" +"프로파일 매니저를 열려면 클릭하십시오." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@label:Should be short" +msgid "On" +msgstr "유효한" + +#: /home/trin/Gedeeld/Projects/Cura/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." +msgstr "사용자 정의 프로파일을 활성화하고 일부 설정을 덮어썼습니다." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +msgctxt "@info" +msgid "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." +msgstr "일부 설정이 변경되었습니다." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +msgctxt "@label" +msgid "Adhesion" +msgstr "부착" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +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 +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" +msgstr "해상도" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +msgctxt "@label" +msgid "Support" +msgstr "서포트" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +msgctxt "@label" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "오버행이 있는 모델 서포트를 생성합니다. 이러한 구조가 없으면 이러한 부분이 프린팅 중에 붕괴됩니다." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 "선택한 재료/%1 설정에 대해 사용할 수 있는 프로파일이 없습니다. 설정을 변경하십시오." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 +msgctxt "@button:label" +msgid "Learn more" +msgstr "자세히 알아보기" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +msgctxt "@title:column" +msgid "Setting" +msgstr "설정" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +msgctxt "@title:column" +msgid "Profile" +msgstr "프로파일" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +msgctxt "@title:column" +msgid "Current" +msgstr "현재 설정" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:39 +msgctxt "@title:column Unit of measurement" +msgid "Unit" +msgstr "단위" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/SearchBar.qml:17 +msgctxt "@placeholder" +msgid "Search" +msgstr "검색" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5686,140 +5736,358 @@ msgstr "" "\n" "이 설정을 표시하려면 클릭하십시오." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "다시 시작한 후에 이 패키지가 설치됩니다." +msgid "This setting is not used because all the settings that it influences are overridden." +msgstr "영향을 미치는 모든 설정이 무효화되기 때문에 이 설정을 사용하지 않습니다." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 -msgctxt "@title:tab" -msgid "Settings" -msgstr "설정" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +msgctxt "@label Header for list of settings." +msgid "Affects" +msgstr "영향" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "%1 닫기" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +msgctxt "@label Header for list of settings." +msgid "Affected By" +msgstr "영향을 받다" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 -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/Settings/SettingItem.qml:190 +msgctxt "@label" +msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." +msgstr "이 설정은 항상 모든 익스트루더 사이에 공유됩니다. 여기서 변경하면 모든 익스트루더에 대한 값이 변경됩니다." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 -msgctxt "@window:title" -msgid "Install Package" -msgstr "패키지 설치" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +msgctxt "@label" +msgid "This setting is resolved from conflicting extruder-specific values:" +msgstr "이 설정은 충돌하는 압출기별 값으로 결정됩니다:" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "파일 열기" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +msgctxt "@label" +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"이 설정에는 프로파일과 다른 값이 있습니다.\n" +"\n" +"프로파일 값을 복원하려면 클릭하십시오." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 -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/Settings/SettingItem.qml:334 +msgctxt "@label" +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"이 설정은 일반적으로 계산되지만 현재는 절대 값이 설정되어 있습니다.\n" +"\n" +"계산 된 값을 복원하려면 클릭하십시오." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 -msgctxt "@title:window" -msgid "Add Printer" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +msgctxt "@label:textbox" +msgid "Search settings" +msgstr "검색 설정" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:menu" +msgid "Copy all changed values to all extruders" +msgstr "변경된 사항을 모든 익스트루더에 복사" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:menu" +msgid "Don't show this setting" +msgstr "이 설정을 표시하지 않음" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:tooltip" +msgid "3D View" +msgstr "3D 보기" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +msgctxt "@info:tooltip" +msgid "Front View" +msgstr "앞에서 보기" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "위에서 보기" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "왼쪽 보기" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "오른쪽 보기" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "유형 보기" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "클라우드 응답 대기" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:186 +msgctxt "@button" +msgid "Add printer manually" +msgstr "수동으로 프린터 추가" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +msgctxt "@label" +msgid "Manufacturer" +msgstr "제조업체" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 +msgctxt "@label" +msgid "Profile author" +msgstr "프로파일 원작자" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 +msgctxt "@label" +msgid "Printer name" +msgstr "프린터 이름" + +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 -msgctxt "@title:window" +#: /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 +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "네트워크에서 검색된 프린터가 없습니다." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 +msgctxt "@label" +msgid "Refresh" +msgstr "새로고침" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "문제 해결" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "프린터의 IP 주소를 입력하십시오." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 +msgctxt "@button" +msgid "Add" +msgstr "추가" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Can't connect to your Ultimaker printer?" +msgstr "Ultimaker 프린터로 연결할 수 없습니까?" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Connect" +msgstr "연결" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +msgctxt "@label" +msgid "Release Notes" +msgstr "릴리즈 노트" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "재료 설정과 플러그인 백업 및 동기화" + +#: /home/trin/Gedeeld/Projects/Cura/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명 이상의 사용자와 아이디어를 공유하고 도움 받기" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +msgctxt "@button" +msgid "Skip" +msgstr "건너뛰기" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +msgctxt "@text" +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 +msgctxt "@label" +msgid "Empty" +msgstr "비어 있음" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +msgctxt "@label" +msgid "User Agreement" +msgstr "사용자 계약" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" msgid "What's New" msgstr "새로운 기능" -#: PerObjectSettingsTool/plugin.json +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:18 +msgctxt "@label" +msgid "No items to select from" +msgstr "선택할 항목 없음" + +#: ModelChecker/plugin.json msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "모델 별 설정을 제공합니다." +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "가능한 프린팅 문제를 위해 모델 및 인쇄 구성을 확인하고 제안합니다." -#: PerObjectSettingsTool/plugin.json +#: ModelChecker/plugin.json msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "모델 별 설정 도구" - -#: 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 프로파일 리더" - -#: X3DReader/plugin.json -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "X3D 파일을 읽을 수 있도록 지원합니다." - -#: X3DReader/plugin.json -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D 리더" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "구성을 백업하고 복원합니다." - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -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 "컴퓨터 설정 작업" - -#: 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" - -#: 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 "이동식 드라이브 출력 장치 플러그인" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "펌웨어 업데이트를 위한 기계 동작을 제공합니다." - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -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 프로파일 리더" +msgid "Model Checker" +msgstr "모델 검사기" #: 3MFReader/plugin.json msgctxt "description" @@ -5831,65 +6099,15 @@ msgctxt "name" msgid "3MF Reader" msgstr "3MF 리더" -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Ultimaker 포맷 패키지 작성을 지원합니다." +msgid "Provides support for writing 3MF files." +msgstr "3MF 파일 작성 지원을 제공합니다." -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "name" -msgid "UFP Writer" -msgstr "UFP 작성자" - -#: 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 "보초 로거" - -#: 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 프로파일 리더기" - -#: PreviewStage/plugin.json -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Cura에서 미리 보기 단계를 제공합니다." - -#: PreviewStage/plugin.json -msgctxt "name" -msgid "Preview Stage" -msgstr "미리 보기 단계" - -#: XRayView/plugin.json -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "엑스레이 뷰를 제공합니다." - -#: XRayView/plugin.json -msgctxt "name" -msgid "X-Ray View" -msgstr "엑스레이 뷰" - -#: 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 백엔드" +msgid "3MF Writer" +msgstr "3MF 기록기" #: AMFReader/plugin.json msgctxt "description" @@ -5901,25 +6119,35 @@ msgctxt "name" msgid "AMF Reader" msgstr "AMF 리더" -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "압축 된 아카이브로 부터 g-code를 읽습니다." +msgid "Backup and restore your configuration." +msgstr "구성을 백업하고 복원합니다." -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "압축 된 G 코드 리더기" +msgid "Cura Backups" +msgstr "Cura 백업" -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/plugin.json msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "후처리를 위해 사용자가 만든 스크립트를 허용하는 확장 프로그램" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "CuraEngine 슬라이스 백엔드 링크를 제공합니다." -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "후처리" +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" @@ -5931,65 +6159,15 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Cura 프로파일 작성자" -#: USBPrinting/plugin.json +#: DigitalLibrary/plugin.json msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "G-코드를 수신하고 프린터로 보냅니다. 플러그인은 또한 펌웨어를 업데이트 할 수 있습니다." +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "디지털 라이브러리와 연결하여 Cura에서 디지털 라이브러리를 통해 파일을 열고 저장할 수 있도록 합니다." -#: USBPrinting/plugin.json +#: DigitalLibrary/plugin.json msgctxt "name" -msgid "USB printing" -msgstr "USB 프린팅" - -#: PrepareStage/plugin.json -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Cura에서 준비 단계 제공." - -#: PrepareStage/plugin.json -msgctxt "name" -msgid "Prepare Stage" -msgstr "준비 단계" - -#: 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-코드 리더" - -#: 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 "이미지 리더" - -#: 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 기기 동작" - -#: 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 코드 작성기" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker 디지털 라이브러리" #: FirmwareUpdateChecker/plugin.json msgctxt "description" @@ -6001,45 +6179,55 @@ msgctxt "name" msgid "Firmware Update Checker" msgstr "펌웨어 업데이트 검사기" -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "익명의 슬라이스 정보를 제출하십시오. 환경 설정을 통해 비활성화 할 수 있습니다." +msgid "Provides a machine actions for updating firmware." +msgstr "펌웨어 업데이트를 위한 기계 동작을 제공합니다." -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Slice info" -msgstr "슬라이스 정보" +msgid "Firmware Updater" +msgstr "펌웨어 업데이터" -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/plugin.json msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "XML 기반 재료 프로파일을 읽고 쓸 수있는 기능을 제공합니다." +msgid "Reads g-code from a compressed archive." +msgstr "압축 된 아카이브로 부터 g-code를 읽습니다." -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "재료 프로파일" +msgid "Compressed G-code Reader" +msgstr "압축 된 G 코드 리더기" -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/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에서 디지털 라이브러리를 통해 파일을 열고 저장할 수 있도록 합니다." +msgid "Writes g-code to a compressed archive." +msgstr "압축 된 아카이브에 g-code를 씁니다." -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/plugin.json msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker 디지털 라이브러리" +msgid "Compressed G-code Writer" +msgstr "압축 된 G 코드 작성기" -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "새 Cura 패키지를 찾고, 관리하고 설치하십시오." +msgid "Provides support for importing profiles from g-code files." +msgstr "G-코드 파일에서 프로파일 가져 오기를 지원합니다." -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "도구 상자" +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" @@ -6051,245 +6239,155 @@ 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 Simulation view." -msgstr "시뮬레이션 뷰를 제공합니다." +msgid "Provides the preview of sliced layerdata." +msgstr "슬라이스된 레이어 데이터의 미리보기를 제공합니다." #: SimulationView/plugin.json msgctxt "name" msgid "Simulation View" msgstr "시뮬레이션 뷰" -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Cura 4.5에서 Cura 4.6으로 구성을 업그레이드합니다." +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "익명의 슬라이스 정보를 제출하십시오. 환경 설정을 통해 비활성화 할 수 있습니다." -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/plugin.json msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "4.5에서 4.6으로 버전 업그레이드" +msgid "Slice info" +msgstr "슬라이스 정보" -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Cura 2.5에서 Cura 2.6으로 구성을 업그레이드합니다." +msgid "Provides a normal solid mesh view." +msgstr "일반 솔리드 메쉬보기를 제공합니다." -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/plugin.json msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "2.5에서 2.6으로 버전 업그레이드" +msgid "Solid View" +msgstr "솔리드 뷰" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/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로 구성을 업그레이드합니다." +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "특정 장소에서 서포트 프린팅을 막는 지우개 메쉬(eraser mesh)를 만듭니다" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/plugin.json msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "4.6.0에서 4.6.2로 버전 업그레이드" - -#: 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/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/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/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/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/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/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/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으로 버전 업그레이드" - -#: 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/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/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/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/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/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/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/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/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/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" - -#: 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 네트워크 연결" +msgid "Support Eraser" +msgstr "Support Eraser" #: TrimeshReader/plugin.json msgctxt "description" @@ -6311,45 +6409,644 @@ msgctxt "name" msgid "UFP Reader" msgstr "UFP 리더기" -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "일반 솔리드 메쉬보기를 제공합니다." +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Ultimaker 포맷 패키지 작성을 지원합니다." -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "name" -msgid "Solid View" -msgstr "솔리드 뷰" +msgid "UFP Writer" +msgstr "UFP 작성자" -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "3MF 파일 작성 지원을 제공합니다." +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Ultimaker 기계에 대한 기계 작동 제공(예 : 침대 수평 조정 마법사, 업그레이드 선택 등)" -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "name" -msgid "3MF Writer" -msgstr "3MF 기록기" +msgid "Ultimaker machine actions" +msgstr "Ultimaker 기기 동작" -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Cura에서 모니터 단계 제공." +msgid "Manages network connections to Ultimaker networked printers." +msgstr "Ultimaker 네트워크 연결 프린터에 대한 네트워크 연결을 관리합니다." -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "name" -msgid "Monitor Stage" -msgstr "모니터 단계" +msgid "Ultimaker Network Connection" +msgstr "Ultimaker 네트워크 연결" -#: ModelChecker/plugin.json +#: USBPrinting/plugin.json msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "가능한 프린팅 문제를 위해 모델 및 인쇄 구성을 확인하고 제안합니다." +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "G-코드를 수신하고 프린터로 보냅니다. 플러그인은 또한 펌웨어를 업데이트 할 수 있습니다." -#: ModelChecker/plugin.json +#: USBPrinting/plugin.json msgctxt "name" -msgid "Model Checker" -msgstr "모델 검사기" +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." diff --git a/resources/i18n/ko_KR/fdmextruder.def.json.po b/resources/i18n/ko_KR/fdmextruder.def.json.po index 9850f464de..6903037801 100644 --- a/resources/i18n/ko_KR/fdmextruder.def.json.po +++ b/resources/i18n/ko_KR/fdmextruder.def.json.po @@ -1,21 +1,19 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0000\n" -"PO-Revision-Date: 2021-04-16 15:01+0200\n" -"Last-Translator: Korean \n" -"Language-Team: Jinbum Kim , Korean \n" -"Language: ko_KR\n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE\n" +"Language: \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 2.4.1\n" #: fdmextruder.def.json msgctxt "machine_settings label" diff --git a/resources/i18n/ko_KR/fdmprinter.def.json.po b/resources/i18n/ko_KR/fdmprinter.def.json.po index e1001c29e8..7dab5e39d7 100644 --- a/resources/i18n/ko_KR/fdmprinter.def.json.po +++ b/resources/i18n/ko_KR/fdmprinter.def.json.po @@ -1,21 +1,19 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 11:59+0000\n" -"PO-Revision-Date: 2021-04-16 15:02+0200\n" -"Last-Translator: Lionbridge \n" -"Language-Team: Korean , Jinbum Kim , Korean \n" -"Language: ko_KR\n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE\n" +"Language: \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 2.4.1\n" #: fdmprinter.def.json msgctxt "machine_settings label" @@ -57,7 +55,9 @@ msgctxt "machine_start_gcode description" msgid "" "G-code commands to be executed at the very start - separated by \n" "." -msgstr "시작과 동시에형실행될 G 코드 명령어 \n." +msgstr "" +"시작과 동시에형실행될 G 코드 명령어 \n" +"." #: fdmprinter.def.json msgctxt "machine_end_gcode label" @@ -69,7 +69,9 @@ msgctxt "machine_end_gcode description" msgid "" "G-code commands to be executed at the very end - separated by \n" "." -msgstr "맨 마지막에 실행될 G 코드 명령 \n." +msgstr "" +"맨 마지막에 실행될 G 코드 명령 \n" +"." #: fdmprinter.def.json msgctxt "material_guid label" @@ -463,8 +465,8 @@ msgstr "머신 헤드 및 팬 폴리곤" #: fdmprinter.def.json msgctxt "machine_head_with_fans_polygon description" -msgid "A 2D silhouette of the print head (fan caps included)." -msgstr "프린트 헤드의 2D 실루엣 (팬 뚜껑 포함)." +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" @@ -736,6 +738,16 @@ 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" @@ -956,6 +968,56 @@ 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" @@ -987,14 +1049,24 @@ msgid "Optimize the order in which walls are printed so as to reduce the number msgstr "수축 및 이동 거리를 줄이도록 벽이 인쇄되는 순서를 최적화합니다. 대부분의 부품은 이 기능을 사용하면 도움이 되지만 실제로는 시간이 오래 걸릴 수 있으므로, 최적화 여부와 관계없이 인쇄 시간을 비교하십시오. 빌드 플레이트 접착 유형을 Brim으로 선택하는 경우 첫 번째 층이 최적화되지 않습니다." #: fdmprinter.def.json -msgctxt "outer_inset_first label" -msgid "Outer Before Inner Walls" -msgstr "내벽 앞부분 바깥 쪽" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "벽 순서 지정" #: fdmprinter.def.json -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 "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" @@ -1007,84 +1079,54 @@ msgid "Prints an extra wall at every other layer. This way infill gets caught be msgstr "다른 모든 레이어에 여분의 벽을 프린팅합니다. 이렇게하면 내부채움이 여분의 벽 사이에 끼어 더 강하게 프린팅됩니다." #: fdmprinter.def.json -msgctxt "travel_compensate_overlapping_walls_enabled label" -msgid "Compensate Wall Overlaps" -msgstr "벽 겹침 보정" +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "최소 벽 선 너비" #: fdmprinter.def.json -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 "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 "travel_compensate_overlapping_walls_0_enabled label" -msgid "Compensate Outer Wall Overlaps" -msgstr "외벽 겹침 보정" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "최소 짝수 벽 선 너비" #: fdmprinter.def.json -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 "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 "travel_compensate_overlapping_walls_x_enabled label" -msgid "Compensate Inner Wall Overlaps" -msgstr "내부 벽 겹침 보정" +msgctxt "wall_split_middle_threshold label" +msgid "Split Middle Line Threshold" +msgstr "중간 선 임계값 분할" #: fdmprinter.def.json -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_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 "wall_min_flow label" -msgid "Minimum Wall Flow" -msgstr "최소 압출량" +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "최소 홀수 벽 선 너비" #: fdmprinter.def.json -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 "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_min_flow_retract label" -msgid "Prefer Retract" -msgstr "리트렉션 선호" +msgctxt "wall_add_middle_threshold label" +msgid "Add Middle Line Threshold" +msgstr "중간 선 임계값 추가" #: fdmprinter.def.json -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 "이 옵션을 사용하면 흐름이 최소 흐름 임계 값보다 낮은 벽을 교체하는 이동에 대해 빗질 대신에 리트렉션을 사용합니다." - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps label" -msgid "Fill Gaps Between Walls" -msgstr "벽 사이의 간격 채우기" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps description" -msgid "Fills the gaps between walls where no walls fit." -msgstr "벽이 딱 맞지 않는 벽 사이의 간격을 채웁니다." - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option nowhere" -msgid "Nowhere" -msgstr "아무데도" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option everywhere" -msgid "Everywhere" -msgstr "어디에나" - -#: fdmprinter.def.json -msgctxt "filter_out_tiny_gaps label" -msgid "Filter Out Tiny Gaps" -msgstr "매우 작은 간격 차단" - -#: fdmprinter.def.json -msgctxt "filter_out_tiny_gaps description" -msgid "Filter out tiny gaps to reduce blobs on outside of model." -msgstr "매우 작은 간격을 차단하여 모델 외부의 얼룩을 줄입니다." +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" @@ -1096,6 +1138,26 @@ 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" @@ -1729,8 +1791,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." -msgstr "프린트 내부채움 재료의 패턴입니다. 선형과 지그재그형 내부채움이 서로 다른 레이어에서 방향을 바꾸므로 재료비가 절감됩니다. 격자, 삼각형, 트라이 헥사곤 (tri-hexagon), 큐빅, 옥텟 (octet), 쿼터 큐빅, 크로스, 동심원 패턴이 레이어마다 완전히 프린트됩니다." -" 자이로이드 (Gyroid), 큐빅, 쿼터 큐빅, 옥텟 (octet) 내부채움이 레이어마다 변경되므로 각 방향으로 힘이 더 균등하게 분산됩니다. 라이트닝 내부채움이 객체의 천장만 서포트하여 내부채움을 최소화합니다." +msgstr "프린트 내부채움 재료의 패턴입니다. 선형과 지그재그형 내부채움이 서로 다른 레이어에서 방향을 바꾸므로 재료비가 절감됩니다. 격자, 삼각형, 트라이 헥사곤 (tri-hexagon), 큐빅, 옥텟 (octet), 쿼터 큐빅, 크로스, 동심원 패턴이 레이어마다 완전히 프린트됩니다. 자이로이드 (Gyroid), 큐빅, 쿼터 큐빅, 옥텟 (octet) 내부채움이 레이어마다 변경되므로 각 방향으로 힘이 더 균등하게 분산됩니다. 라이트닝 내부채움이 객체의 천장만 서포트하여 내부채움을 최소화합니다." #: fdmprinter.def.json msgctxt "infill_pattern option grid" @@ -2196,6 +2257,26 @@ 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" @@ -2707,24 +2788,14 @@ msgid "The first few layers are printed slower than the rest of the model, to ge msgstr "처음 몇 개의 레이어는 모델의 나머지 부분보다 느리게 프린팅되어 빌드 플레이트에 대한보다 나은 접착력을 얻고 출력물의 전체 성공률을 향상시킵니다. 속도는 이 층 위로 점진적으로 증가합니다." #: fdmprinter.def.json -msgctxt "speed_equalize_flow_enabled label" -msgid "Equalize Filament Flow" -msgstr "필라멘트 흐름 균일화" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "흐름 균일화 비율" #: fdmprinter.def.json -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 "일반 라인보다 얇게 프린팅하여 초당 압출되는 재료의 양이 동일하게 유지되도록 하십시오. 모델의 얇은 부분에는 설정에서 제공 한 것보다 작은 선 너비로 선이 프린팅되어야 할 수 있습니다. 이 설정은 이러한 선의 속도 변경을 제어합니다." - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_max label" -msgid "Maximum Speed for Flow Equalization" -msgstr "압출량 균등화를위한 최대 속도" - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_max description" -msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -msgstr "흐름을 균등하게 유지하기위해 조정되는 최대 프린팅 속도." +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "속도에 대한 압출 너비 기준 보정 계수. 0%에서는 이동 속도가 프린팅 속도로 일정하게 유지됩니다. 100%에서는 흐름(단위: mm³/s)이 일정하게 유지되도록 이동 속도가 조정됩니다. 즉 일반적인 선 너비의 절반인 선은 두 배로 빠르게 프린팅되고 너비가 두 배인 선은 절반 속도로 프린팅됩니다. 100%보다 큰 값은 넓은 선을 압출하기 위해 요구되는 더 높은 압력을 보정하는 데 도움이 될 수 있습니다." #: fdmprinter.def.json msgctxt "acceleration_enabled label" @@ -2736,6 +2807,16 @@ 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" @@ -2926,6 +3007,16 @@ 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" @@ -4461,6 +4552,46 @@ 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" @@ -4625,6 +4756,16 @@ 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" @@ -5125,6 +5266,16 @@ 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" @@ -6417,6 +6568,36 @@ 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 "다른 레이어마다 벽 방향을 대체하고 삽입합니다. 금속 프린팅의 경우와 같이 응력을 증강시킬 수 있는 재료에 유용." + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +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" +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 "command_line_settings label" msgid "Command Line Settings" @@ -6477,6 +6658,98 @@ 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." diff --git a/resources/i18n/nl_NL/cura.po b/resources/i18n/nl_NL/cura.po index d630cbc53c..03f790cbaa 100644 --- a/resources/i18n/nl_NL/cura.po +++ b/resources/i18n/nl_NL/cura.po @@ -1,465 +1,190 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0100\n" -"PO-Revision-Date: 2021-09-07 08:01+0200\n" -"Last-Translator: Lionbridge \n" -"Language-Team: Dutch , Dutch \n" +"POT-Creation-Date: 2022-06-21 12:50+0200\n" +"PO-Revision-Date: 2022-07-15 11:10+0200\n" +"Last-Translator: \n" +"Language-Team: \n" "Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 3.0\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Poedit 3.1.1\n" -#: /home/clamboo/Desktop/Cura/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/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "Onbekend" -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 -msgctxt "@info:title" -msgid "Backup" -msgstr "Back-up" +#: /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/clamboo/Desktop/Cura/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/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Beschikbare netwerkprinters" -#: /home/clamboo/Desktop/Cura/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/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Niet overschreven" -#: /home/clamboo/Desktop/Cura/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/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/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 -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/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/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 -msgctxt "@action:button" -msgid "New materials installed" -msgstr "Nieuwe materialen geïnstalleerd" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 -msgctxt "@action:button" -msgid "Sync materials with printers" -msgstr "Synchroniseer materialen" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 -msgctxt "@action:button" -msgid "Learn more" -msgstr "Meer informatie" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 -msgctxt "@message:text" -msgid "Could not save material archive to {}:" -msgstr "Kan materiaalarchief niet opslaan op {}:" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 -msgctxt "@message:title" -msgid "Failed to save material archive" -msgstr "Opslaan materiaalarchief mislukt" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 -msgctxt "@text" -msgid "Unknown error." -msgstr "Onbekende fout." - -#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 -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." - -#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:102 -msgctxt "@info:title" -msgid "Build Volume" -msgstr "Werkvolume" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Niet overschreven" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "Onbekend" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Beschikbare netwerkprinters" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Alle Bestanden (*)" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Visueel" +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Berekend" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Ontwerp" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 -msgctxt "@label" -msgid "Custom Material" -msgstr "Aangepast materiaal" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 -msgctxt "@label" -msgid "Custom" -msgstr "Aangepast" - -#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 +#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "Inloggen mislukt" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Nieuwe locatie vinden voor objecten" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 msgctxt "@info:title" msgid "Finding Location" msgstr "Locatie vinden" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Kan locatie niet vinden" -#: /home/clamboo/Desktop/Cura/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/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 -msgctxt "@text:error" -msgid "Failed to connect to Digital Factory." -msgstr "Kan geen verbinding maken met Digital Factory." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "Machines laden..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "Voorkeuren instellen..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "Actieve machine initialiseren ..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "Machinebeheer initialiseren ..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "Werkvolume initialiseren ..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "Scene instellen..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "Interface laden..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "Engine initialiseren ..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 +#: /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 msgctxt "@info:title" -msgid "Warning" -msgstr "Waarschuwing" +msgid "Backup" +msgstr "Back-up" -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 -#, python-brace-format +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 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" +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." -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 msgctxt "@info:title" -msgid "Error" -msgstr "Fout" +msgid "Build Volume" +msgstr "Werkvolume" -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 -msgctxt "@action:button" -msgid "Skip" -msgstr "Overslaan" - -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "Sluiten" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 -msgctxt "@action:button" -msgid "Next" -msgstr "Volgende" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 -msgctxt "@action:button" -msgid "Finish" -msgstr "Voltooien" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "Toevoegen" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Annuleren" - -#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 -#, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "Groepsnummer #{group_nr}" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Buitenwand" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "Binnenwanden" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Skin" -msgstr "Skin" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Infill" -msgstr "Vulling" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Supportvulling" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Verbindingsstructuur" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Support" -msgstr "Supportstructuur" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Skirt" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "Primepijler" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 -msgctxt "@tooltip" -msgid "Travel" -msgstr "Beweging" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Intrekkingen" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 -msgctxt "@tooltip" -msgid "Other" -msgstr "Overig(e)" - -#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 -#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 -msgctxt "@text:window" -msgid "The release notes could not be opened." -msgstr "De release notes konden niet worden geopend." - -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura kan niet worden gestart" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

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

      \n" @@ -474,32 +199,32 @@ msgstr "" "

      Stuur ons dit crashrapport om het probleem op te lossen.

      \n" " " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 msgctxt "@action:button" msgid "Send crash report to Ultimaker" msgstr "Het crashrapport naar Ultimaker verzenden" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Gedetailleerd crashrapport weergeven" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Open Configuratiemap" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Back-up maken en herstellen van configuratie" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Crashrapport" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190 +#: /home/trin/Gedeeld/Projects/Cura/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" @@ -507,644 +232,774 @@ msgid "" " " msgstr "" "

      Er is een fatale fout opgetreden in Cura. 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" +"

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

      \n" " " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Systeeminformatie" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Onbekend" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura-versie" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Taal van Cura" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "Taal van besturingssysteem" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Platform" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Qt version" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "PyQt version" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 msgctxt "@label" -msgid "Not yet initialized
      " -msgstr "Nog niet geïnitialiseerd
      " +msgid "Not yet initialized" +msgstr "Nog niet geïnitialiseerd" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
    • OpenGL Version: {version}
    • " msgstr "
    • OpenGL-versie: {version}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
    • OpenGL Vendor: {vendor}
    • " msgstr "
    • OpenGL-leverancier: {vendor}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
    • OpenGL Renderer: {renderer}
    • " msgstr "
    • OpenGL-renderer: {renderer}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Traceback van fout" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "Logboeken" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "Rapport verzenden" -#: /home/clamboo/Desktop/Cura/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/CuraApplication.py:531 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "Machines laden..." -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 -msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." -msgstr "Kan de Ultimaker-accountserver niet bereiken." +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "Voorkeuren instellen..." -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "Actieve machine initialiseren ..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "Machinebeheer initialiseren ..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "Werkvolume initialiseren ..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "Scene instellen..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "Interface laden..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "Engine initialiseren ..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#, 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 +#, 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 msgctxt "@info:title" -msgid "Log-in failed" -msgstr "Aanmelden mislukt" +msgid "Warning" +msgstr "Waarschuwing" -#: /home/clamboo/Desktop/Cura/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/CuraApplication.py:1810 +#, 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/clamboo/Desktop/Cura/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/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 +msgctxt "@info:title" +msgid "Error" +msgstr "Fout" -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 -msgctxt "@message" -msgid "Could not read response." -msgstr "Kan het antwoord niet lezen." - -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "Objecten verveelvoudigen en plaatsen" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "Objecten plaatsen" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Object plaatsen" -#: /home/clamboo/Desktop/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/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "Kan het antwoord niet lezen." -#: /home/clamboo/Desktop/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/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "De opgegeven status is niet juist." -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 -msgctxt "@label" -msgid "Nozzle" -msgstr "Nozzle" +#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "Time-out tijdens verificatie bij de accountserver." -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 -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/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/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info" +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 msgctxt "@info:title" -msgid "Settings updated" -msgstr "De instellingen zijn bijgewerkt" +msgid "Log-in failed" +msgstr "Aanmelden mislukt" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "Extruder(s) uitgeschakeld" +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 msgctxt "@title:window" msgid "File Already Exists" msgstr "Het Bestand Bestaat Al" -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "Ongeldige bestands-URL:" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "De export is voltooid" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Het profiel {0} is geïmporteerd." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Aangepast profiel" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Er ontbreekt een kwaliteitstype in het profiel." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "Er is nog geen actieve printer." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Kan het profiel niet toevoegen." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: /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 msgctxt "@label" -msgid "Per Model Settings" -msgstr "Instellingen per Model" +msgid "Nozzle" +msgstr "Nozzle" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "Instellingen per Model configureren" +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +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/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Cura-profiel" - -#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3D-bestand" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 msgctxt "@info:title" -msgid "Backups" -msgstr "Back-ups" +msgid "Settings updated" +msgstr "De instellingen zijn bijgewerkt" -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Uw back-up maken..." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Uw back-up wordt geüpload..." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Back-ups beheren" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Machine-instellingen" - -#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "Supportblokkering" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Verwisselbaar Station" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "Opslaan op verwisselbaar station" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "Opslaan op Verwisselbaar Station {0}" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 msgctxt "@info:title" -msgid "Saving" -msgstr "Opslaan" +msgid "Extruder(s) Disabled" +msgstr "Extruder(s) uitgeschakeld" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "Opgeslagen op Verwisselbaar Station {0} als {1}" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 -msgctxt "@info:title" -msgid "File Saved" -msgstr "Bestand opgeslagen" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" -msgid "Eject" -msgstr "Uitwerpen" +msgid "Add" +msgstr "Toevoegen" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Annuleren" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 #, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "Verwisselbaar station {0} uitwerpen" +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "Groepsnummer #{group_nr}" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 -#, 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/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Buitenwand" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "Binnenwanden" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "Skin" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "Vulling" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Supportvulling" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Verbindingsstructuur" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "Supportstructuur" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Skirt" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "Primepijler" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "Beweging" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Intrekkingen" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Close" +msgstr "Sluiten" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "Nieuwe materialen geïnstalleerd" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Learn more" +msgstr "Meer informatie" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "Opslaan materiaalarchief mislukt" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +msgctxt "@text" +msgid "Unknown error." +msgstr "Onbekende fout." + +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Hardware veilig verwijderen" +msgid "3D Model Assistant" +msgstr "3D-modelassistent" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 #, 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." +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 "" +"

      Een of meer 3D-modellen worden mogelijk niet optimaal geprint vanwege het modelformaat en de materiaalconfiguratie:

      \n" +"

      {model_names}

      \n" +"

      Ontdek hoe u de best mogelijke printkwaliteit en betrouwbaarheid verkrijgt.

      \n" +"

      Handleiding printkwaliteit bekijken

      " -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Firmware bijwerken" - -#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Cura 15.04-profielen" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Aanbevolen" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Aangepast" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 +#: /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." -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 msgctxt "@info:title" msgid "Open Project File" msgstr "Projectbestand Openen" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 +#: /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 "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." + +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:392 +msgctxt "@info:title" +msgid "Material profiles not installed" +msgstr "Materiaalprofielen niet geïnstalleerd" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:405 +msgctxt "@action:button" +msgid "Install Materials" +msgstr "Materialen installeren" + +#: /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/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "Kan niet naar UFP-bestand schrijven:" +#: /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/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 -#: /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Ultimaker Format Package" +#: /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/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "G-code-bestand" +#: /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/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "Voorbeeld" +#: /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/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Röntgenweergave" +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Lagen verwerken" +#: /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 "Het was niet mogelijk om de informatie van het materiaalpakket in het volgende projectbestand op te slaan: {material}. Dit project wordt op andere systemen mogelijk niet goed geopend." -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:283 msgctxt "@info:title" -msgid "Information" -msgstr "Informatie" +msgid "Failed to save material package information" +msgstr "Opslaan informatie materiaalpakket mislukt" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 msgctxt "@message:title" msgid "Slicing failed" msgstr "Slicen mislukt" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 msgctxt "@message:button" msgid "Report a bug" msgstr "Een fout melden" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 msgctxt "@info:status" msgid "" "Please review settings and check if your models:\n" @@ -1157,436 +1012,497 @@ msgstr "" "- zijn toegewezen aan een ingeschakelde extruder\n" "- niet allemaal zijn ingesteld als modificatierasters" -#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "AMF-bestand" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "Gecomprimeerd G-code-bestand" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "Nabewerking" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "G-code wijzigen" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "USB-printen" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Printen via USB" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Via USB Printen" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Aangesloten via USB" +msgid "Processing Layers" +msgstr "Lagen verwerken" -#: /home/clamboo/Desktop/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 "Er wordt momenteel via USB geprint. Wanneer u Cura afsluit, wordt het printen gestopt. Weet u zeker dat u wilt afsluiten?" - -#: /home/clamboo/Desktop/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 "Er wordt nog een print afgedrukt. Cura kan pas een nieuwe print via USB starten zodra de vorige print is voltooid." - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 -msgctxt "@message" -msgid "Print in Progress" -msgstr "Bezig met printen" - -#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "Voorbereiden" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "G-code parseren" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 msgctxt "@info:title" -msgid "G-code Details" -msgstr "Details van de G-code" +msgid "Information" +msgstr "Informatie" -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 -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/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 msgctxt "@item:inlistbox" -msgid "G File" -msgstr "G-bestand" +msgid "Cura Profile" +msgstr "Cura-profiel" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG-afbeelding" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG-afbeelding" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG-afbeelding" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP-afbeelding" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF-afbeelding" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "Platform kalibreren" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "Upgrades selecteren" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "GCodeGzWriter ondersteunt geen tekstmodus." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 msgctxt "@info" msgid "Could not access update information." msgstr "Geen toegang tot update-informatie." -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#: /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}." -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#: /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" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 msgctxt "@action:button" msgid "How to update" msgstr "Instructies voor bijwerken" -#: /home/clamboo/Desktop/Cura/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/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Firmware bijwerken" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 -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/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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Synchroniseren ..." +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +#: /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 "Changes detected from your Ultimaker account" -msgstr "Wijzigingen gedetecteerd van uw Ultimaker-account" +msgid "G-code Details" +msgstr "Details van de G-code" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 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?" +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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 -msgctxt "@action:button" -msgid "Sync" -msgstr "Synchroniseren" +#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "G-bestand" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Weigeren en verwijderen uit account" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "{} plug-ins zijn niet gedownload" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "Nee, ik ga niet akkoord" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "Akkoord" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Licentieovereenkomst plug-in" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +#: /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/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +#: /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 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "Controleren" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "Instellingen per Model configureren" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 +msgctxt "@item:inmenu" +msgid "Post Processing" +msgstr "Nabewerking" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@item:inmenu" +msgid "Prepare" +msgstr "Voorbereiden" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 +msgctxt "@item:inmenu" +msgid "Preview" +msgstr "Voorbeeld" + +#: /home/trin/Gedeeld/Projects/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 +#, 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 +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 +#, 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 +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 +#, 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 +#, 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 +#, 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 +#, 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 +msgctxt "@info:title" +msgid "File Saved" +msgstr "Bestand opgeslagen" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +msgctxt "@action:button" +msgid "Eject" +msgstr "Uitwerpen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +#, 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 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "Hardware veilig verwijderen" + +#: /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 "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 +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." -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 msgctxt "@info:title" msgid "Simulation View" msgstr "Simulatieweergave" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:133 msgctxt "@info:status" msgid "Nothing is shown because you need to slice first." msgstr "Er wordt niets weergegeven omdat u eerst moet slicen." -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 msgctxt "@info:title" msgid "No layers to show" msgstr "Geen lagen om weer te geven" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +#: /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 "Dit bericht niet meer weergeven" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Laagweergave" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "Printen via netwerk" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "Kan het voorbeeldgegevensbestand niet lezen." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Printen via netwerk" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Via het netwerk verbonden" +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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "morgen" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 +msgctxt "@info:title" +msgid "Model Errors" +msgstr "Modelfouten" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "vandaag" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Solid view" +msgstr "Solide weergave" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 +msgctxt "@label" +msgid "Support Blocker" +msgstr "Supportblokkering" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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-binair" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "Stanford-driehoeksformaat" + +#: /home/trin/Gedeeld/Projects/Cura/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" + +#: /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 "Kan niet naar UFP-bestand schrijven:" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" -msgid "Connect via Network" -msgstr "Verbinding Maken via Netwerk" +msgid "Level build plate" +msgstr "Platform kalibreren" -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "Printfout" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Gegevens verzonden" - -#: /home/clamboo/Desktop/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 "U probeert verbinding te maken met een printer waarop Ultimaker Connect niet wordt uitgevoerd. Werk de printer bij naar de nieuwste firmware." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 -msgctxt "@info:title" -msgid "Update your printer" -msgstr "Uw printer bijwerken" - -#: /home/clamboo/Desktop/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 "Wachtrij voor afdruktaken is vol. De printer kan geen nieuwe taken accepteren." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "Wachtrij vol" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "Printtaak verzenden" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Printtaak naar printer aan het uploaden." - -#: /home/clamboo/Desktop/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 heeft materiaalprofielen gedetecteerd die nog niet op de hostprinter van groep {0} zijn geïnstalleerd." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "De materialen worden naar de printer verzonden" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "Netwerkfout" - -#: /home/clamboo/Desktop/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 "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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "Geen groephost" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 msgctxt "@action" -msgid "Configure group" -msgstr "Groep configureren" +msgid "Select upgrades" +msgstr "Upgrades selecteren" -#: /home/clamboo/Desktop/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 "" -"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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 -msgctxt "@action" -msgid "Get started" -msgstr "Aan de slag" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 -msgctxt "@action" -msgid "Learn more" -msgstr "Meer informatie" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 msgctxt "@action:button" msgid "Print via cloud" msgstr "Printen via Cloud" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Printen via Cloud" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Verbonden via Cloud" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 msgctxt "@action:button" msgid "Monitor print" msgstr "Printen in de gaten houden" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 msgctxt "@action:tooltip" msgid "Track the print in Ultimaker Digital Factory" msgstr "Volg het printen in Ultimaker Digital Factory" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#: /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 "Onbekende foutcode bij uploaden printtaak: {0}" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 +#: /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" @@ -1594,71 +1510,70 @@ msgid_plural "... and {0} others" msgstr[0] "... en {0} andere" msgstr[1] "... en {0} andere" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:356 msgctxt "@action:button" msgid "Keep printer configurations" msgstr "Printerconfiguraties behouden" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:361 msgctxt "@action:button" msgid "Remove printers" msgstr "Printers verwijderen" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 +#: /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} wordt verwijderd tot de volgende accountsynchronisatie." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 +#: /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 "Bezoek {digital_factory_link} om {printer_name} permanent te verwijderen" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 +#: /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 "Weet u zeker dat u {printer_name} tijdelijk wilt verwijderen?" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 msgctxt "@title:window" msgid "Remove printers?" msgstr "Printers verwijderen?" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 #, python-brace-format msgctxt "@label" msgid "" @@ -1674,7 +1589,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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +#: /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" @@ -1683,1638 +1598,1062 @@ 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/clamboo/Desktop/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 "Gecomprimeerde driehoeksnet openen" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA Digital Asset Exchange" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "glTF-binair" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF-ingesloten JSON" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Stanford-driehoeksformaat" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Gecomprimeerde COLLADA Digital Asset Exchange" - -#: /home/clamboo/Desktop/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 "De gemarkeerde gebieden geven ofwel ontbrekende of ongebruikelijke oppervlakken aan. Corrigeer het model en open het opnieuw in Cura." - -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "Modelfouten" - -#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Solide weergave" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Fout bij het schrijven van het 3mf-bestand." - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "3MF-schrijverplug-in is beschadigd." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MF-bestand" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Cura-project 3MF-bestand" - -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "Controleren" - -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 -msgctxt "@info:title" -msgid "3D Model Assistant" -msgstr "3D-modelassistent" - -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 #, 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

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

      Een of meer 3D-modellen worden mogelijk niet optimaal geprint vanwege het modelformaat en de materiaalconfiguratie:

      \n" -"

      {model_names}

      \n" -"

      Ontdek hoe u de best mogelijke printkwaliteit en betrouwbaarheid verkrijgt.

      \n" -"

      Handleiding printkwaliteit bekijken

      " +"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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action" +msgid "Get started" +msgstr "Aan de slag" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +msgctxt "@action" +msgid "Learn more" +msgstr "Meer informatie" + +#: /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 "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 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "Uw printer bijwerken" + +#: /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 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 +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 +#, 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 +msgctxt "@info:title" +msgid "Not a group host" +msgstr "Geen groephost" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info:title" +msgid "Print error" +msgstr "Printfout" + +#: /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 "Kan de gegevens niet uploaden naar de printer." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:status" +msgid "Sending Print Job" +msgstr "Printtaak verzenden" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "Wachtrij vol" + +#: /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 "De printtaak is naar de printer verzonden." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "Printen via netwerk" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "Via het netwerk verbonden" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "morgen" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "vandaag" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "USB-printen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "Via USB Printen" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" -msgid "Mesh Type" -msgstr "Rastertype" +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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "Normaal model" +#: /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 "Er wordt nog een print afgedrukt. Cura kan pas een nieuwe print via USB starten zodra de vorige print is voltooid." -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "Printen als supportstructuur" +#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "Bezig met printen" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Instellingen aanpassen voor overlapping" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Supportstructuur niet laten overlappen" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 +#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Alleen vulraster" +msgid "X3D File" +msgstr "X3D-bestand" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 +#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Snijdend raster" +msgid "X-Ray view" +msgstr "Röntgenweergave" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Instellingen selecteren" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Instellingen Selecteren om Dit Model Aan te Passen" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filteren..." - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Alles weergeven" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cura-back-ups" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Cura-versie" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Machines" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Materialen" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Profielen" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Plug-ins" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Wilt u meer?" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Nu back-up maken" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Auto back-up" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "Herstellen" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Back-up verwijderen" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Back-up herstellen" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 -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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 -msgctxt "@button" -msgid "Sign in" -msgstr "Aanmelden" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Mijn back-ups" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -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/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Printerinstellingen" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (Breedte)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Diepte)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Hoogte)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 -msgctxt "@label" -msgid "Build plate shape" -msgstr "Vorm van het platform" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 -msgctxt "@label" -msgid "Origin at center" -msgstr "Centraal oorsprongpunt" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 -msgctxt "@label" -msgid "Heated bed" -msgstr "Verwarmd bed" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 -msgctxt "@label" -msgid "Heated build volume" -msgstr "Verwarmde werkvolume" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 -msgctxt "@label" -msgid "G-code flavor" -msgstr "Versie G-code" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Printkopinstellingen" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -msgctxt "@label" -msgid "X min" -msgstr "X min" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -msgctxt "@label" -msgid "Y min" -msgstr "Y min" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -msgctxt "@label" -msgid "X max" -msgstr "X max" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -msgctxt "@label" -msgid "Y max" -msgstr "Y max" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "Gantry Height" -msgstr "Rijbrughoogte" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Aantal extruders" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Pas extruderoffsets toe op GCode" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "Start G-code" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "Eind G-code" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Nozzle-instellingen" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 -msgctxt "@label" -msgid "Nozzle size" -msgstr "Maat nozzle" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Compatibele materiaaldiameter" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Nozzle-offset X" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Nozzle-offset Y" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Nummer van koelventilator" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "Start-G-code van extruder" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "Eind-G-code van extruder" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "Printer" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Firmware bijwerken" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Firmware-upgrade Automatisch Uitvoeren" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Aangepaste Firmware Uploaden" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Aangepaste firmware selecteren" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Firmware-update" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Updating firmware." -msgstr "De firmware wordt bijgewerkt." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "De firmware-update is voltooid." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "Firmware-update mislukt door een onbekende fout." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "Firmware-update mislukt door een communicatiefout." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "Firmware-update mislukt door een invoer-/uitvoerfout." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "Firmware-update mislukt door ontbrekende firmware." - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 msgctxt "@title:window" msgid "Open Project" msgstr "Project openen" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Printerinstellingen" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Profielinstellingen" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 msgctxt "@action:label" msgid "Derivative from" msgstr "Afgeleide van" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 -msgctxt "@action:label" -msgid "Material settings" -msgstr "Materiaalinstellingen" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 msgctxt "@action:label" msgid "Mode" msgstr "Modus" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 msgctxt "@action:label" msgid "Visible settings:" msgstr "Zichtbare instellingen:" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 van %2" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 msgctxt "@action:button" msgid "Open" msgstr "Openen" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "Project toch openen" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:529 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "Ontbrekend materiaal installeren" + +#: /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 "Post Processing Plugin" -msgstr "Plug-in voor Nabewerking" +msgid "Cura Backups" +msgstr "Cura-back-ups" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 +#: /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 "Cura-project opslaan en bestand printen" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "Cura-project opslaan" + +#: /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 "Post Processing Scripts" -msgstr "Scripts voor Nabewerking" +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/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "Een script toevoegen" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 msgctxt "@label" -msgid "Settings" -msgstr "Instellingen" +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/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Actieve scripts voor nabewerking wijzigen." +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Firmware-upgrade Automatisch Uitvoeren" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 -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/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Aangepaste Firmware Uploaden" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /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 "Convert Image..." -msgstr "Afbeelding Converteren..." +msgid "Select custom firmware" +msgstr "Aangepaste firmware selecteren" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 -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/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Firmware-update" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "De basishoogte van het platform in millimeters." +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "De maximale afstand van elke pixel tot de \"Basis\"." -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 msgctxt "@action:label" msgid "Base (mm)" msgstr "Basis (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate." -msgstr "De breedte op het platform in millimeters." +msgid "The base height from the build plate in millimeters." +msgstr "De basishoogte van het platform in millimeters." -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 msgctxt "@action:label" msgid "Width (mm)" msgstr "Breedte (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "De diepte op het platform in millimeters" +msgid "The width in millimeters on the build plate" +msgstr "De breedte op het platform in millimeters" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 msgctxt "@action:label" msgid "Depth (mm)" msgstr "Diepte (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 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." +msgid "The depth in millimeters on the build plate" +msgstr "De diepte op het platform in millimeters" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "Donkerder is hoger" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "Lichter is hoger" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 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." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "Doorschijnendheid" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 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." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "Transmissie 1 mm (%)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 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." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 msgctxt "@action:label" msgid "Smoothing" msgstr "Effenen" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /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/clamboo/Desktop/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" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "Verwarmd Platform (officiële kit of zelf gebouwd)" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Platform Kalibreren" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Kalibratie Platform Starten" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Beweeg Naar de Volgende Positie" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Meer informatie over anonieme gegevensverzameling" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -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/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Ik wil geen anonieme gegevens verzenden" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Verzenden van anonieme gegevens toestaan" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" -msgid "Marketplace" -msgstr "Marktplaats" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -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." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "Sluit %1" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "Installeren" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -msgctxt "@action:button" -msgid "Installed" -msgstr "Geïnstalleerd" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "Premium" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 -msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "Ga naar Marketplace op internet" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 -msgctxt "@label" -msgid "Search materials" -msgstr "Materialen zoeken" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "Compatibiliteit" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "Machine" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "Platform" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "Supportstructuur" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "Kwaliteit" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "Technisch informatieblad" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "Veiligheidsinformatieblad" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "Richtlijnen voor printen" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "Website" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -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" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "Materiaalspoelen kopen" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "Bijwerken" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "Bijwerken" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "Bijgewerkt" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "Terug" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 msgctxt "@title:tab" -msgid "Plugins" -msgstr "Plug-ins" +msgid "Printer" +msgstr "Printer" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materialen" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Nozzle-instellingen" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "Geïnstalleerd" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 msgctxt "@label" -msgid "Will install upon restarting" -msgstr "Wordt geïnstalleerd na opnieuw starten" +msgid "Nozzle size" +msgstr "Maat nozzle" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "Aanmelden is vereist voor het bijwerken" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Downgrade" -msgstr "Downgraden" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "De-installeren" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /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 "Community Contributions" -msgstr "Community-bijdragen" +msgid "mm" +msgstr "mm" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 msgctxt "@label" -msgid "Community Plugins" -msgstr "Community-plug-ins" +msgid "Compatible material diameter" +msgstr "Compatibele materiaaldiameter" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 msgctxt "@label" -msgid "Generic Materials" -msgstr "Standaard materialen" +msgid "Nozzle offset X" +msgstr "Nozzle-offset X" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "Packages ophalen..." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 msgctxt "@label" -msgid "Website" -msgstr "Website" +msgid "Nozzle offset Y" +msgstr "Nozzle-offset Y" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 msgctxt "@label" -msgid "Email" -msgstr "E-mail" +msgid "Cooling Fan Number" +msgstr "Nummer van koelventilator" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -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" +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 +#: /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 "Version" -msgstr "Versie" +msgid "X (Width)" +msgstr "X (Breedte)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 msgctxt "@label" -msgid "Last updated" -msgstr "Laatst bijgewerkt" +msgid "Y (Depth)" +msgstr "Y (Diepte)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 msgctxt "@label" -msgid "Brand" -msgstr "Merk" +msgid "Z (Height)" +msgstr "Z (Hoogte)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 msgctxt "@label" -msgid "Downloads" -msgstr "Downloads" +msgid "Build plate shape" +msgstr "Vorm van het platform" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "Geïnstalleerde plug-ins" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "Er zijn geen plug-ins geïnstalleerd." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "Geïnstalleerde materialen" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 -msgctxt "@info" -msgid "No material has been installed." -msgstr "Er zijn materialen geïnstalleerd." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "Gebundelde plug-ins" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "Gebundelde materialen" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -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." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "U moet de licentie accepteren om de package te installeren" +msgid "Origin at center" +msgstr "Centraal oorsprongpunt" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 msgctxt "@button" msgid "Dismiss" msgstr "Verwijderen" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "De-installeren bevestigen" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "Ontbrekend materiaal installeren" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -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." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "Licentieovereenkomst plug-in" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "Materialen" +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "Profielen" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "Ja, ik ga akkoord" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "Bevestigen" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 +msgctxt "@header" +msgid "Manage packages" +msgstr "Pakketten beheren" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "Kleurenschema" +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Materiaalkleur" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "Pakketten beheren" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Lijntype" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Snelheid" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Laagdikte" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Lijnbreedte" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Doorvoer" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Compatibiliteitsmodus" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "Bewegingen" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "Helpers" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "Shell" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "Vulling" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "Wordt gestart" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Alleen bovenlagen weergegeven" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "5 gedetailleerde lagen bovenaan weergeven" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Boven-/onderkant" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Binnenwand" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "min" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "max" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Printer beheren" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -msgctxt "@label" -msgid "Glass" -msgstr "Glas" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" msgid "Loading..." msgstr "Laden..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Niet beschikbaar" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "Plug-ins" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Onbereikbaar" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "Materialen" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "Inactief" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193 +msgctxt "@info" +msgid "Search in the browser" +msgstr "Zoeken in browser" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Voorbereiden..." +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "Printen" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 -msgctxt "@label" -msgid "Untitled" -msgstr "Zonder titel" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anoniem" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Hiervoor zijn configuratiewijzigingen vereist" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "Details" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Niet‑beschikbare printer" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "Eerst beschikbaar" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "In wachtrij" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Beheren in browser" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "Printtaken" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "Totale printtijd" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "Wachten op" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Printen via netwerk" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 -msgctxt "@action:button" -msgid "Print" -msgstr "Printen" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 -msgctxt "@label" -msgid "Printer selection" -msgstr "Printerselectie" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Configuratiewijzigingen" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "Overschrijven" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Wijzig het materiaal %1 van %2 in %3." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "Laad %3 als materiaal %1 (kan niet worden overschreven)." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Wijzig de print core %1 van %2 in %3." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "Wijzig het platform naar %1 (kan niet worden overschreven)." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "Aluminium" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Finished" -msgstr "Gereed" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Afbreken..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Afgebroken" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Failed" -msgstr "Mislukt" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Pauzeren..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Paused" -msgstr "Gepauzeerd" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Hervatten..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 -msgctxt "@label:status" -msgid "Action required" -msgstr "Handeling nodig" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Voltooit %1 om %2" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Verbinding Maken met Printer in het Netwerk" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Selecteer uw printer in de onderstaande lijst:" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "Bewerken" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 -msgctxt "@action:button" -msgid "Remove" -msgstr "Verwijderen" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Vernieuwen" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "Type" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "Firmwareversie" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "Adres" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "De printer op dit adres heeft nog niet gereageerd." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "Verbinden" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Ongeldig IP-adres" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:12 msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Voer een geldig IP-adres in." +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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Printeradres" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 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." +msgid "You need to accept the license to install the package" +msgstr "U moet de licentie accepteren om de package te installeren" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "Plaats bovenaan" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Verwijderen" +#: /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 "Door" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "Hervatten" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Enable" +msgstr "Inschakelen" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Pauzeren..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Disable" +msgstr "Uitschakelen" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Hervatten..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 +msgctxt "@button" +msgid "Downgrading..." +msgstr "Downgraden..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "Pauzeren" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 +msgctxt "@button" +msgid "Downgrade" +msgstr "Downgraden" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Afbreken..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 +msgctxt "@button" +msgid "Installing..." +msgstr "Installeren..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Afbreken" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250 +msgctxt "@button" +msgid "Install" +msgstr "Installeren" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -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/Marketplace/resources/qml/PackageCardHeader.qml:254 +msgctxt "@button" +msgid "Uninstall" +msgstr "De-installeren" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Plaats printtaak bovenaan" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Updating..." +msgstr "Updaten..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -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/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Update" +msgstr "Bijwerken" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Printtaak verwijderen" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "Pakketgegevens" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -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/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "Terug" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Printen afbreken" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "Beschrijving" -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /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" @@ -3327,435 +2666,1159 @@ msgstr "" "- Controleer of de printer verbonden is met het netwerk.\n" "- Controleer of u bent aangemeld om met de cloud verbonden printers te detecteren." -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /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/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /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/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /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/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "3D-weergave" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "Weergave voorzijde" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "Weergave bovenzijde" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "Linkeraanzicht" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "Rechteraanzicht" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 msgctxt "@label" -msgid "Object list" -msgstr "Lijst met objecten" +msgid "Mesh Type" +msgstr "Rastertype" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 +#: /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 "Marketplace" -msgstr "Marktplaats" +msgid "Select settings" +msgstr "Instellingen selecteren" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "&Bestand" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "B&ewerken" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "Beel&d" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "In&stellingen" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "E&xtensies" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "Voo&rkeuren" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "&Help" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 msgctxt "@title:window" -msgid "New project" -msgstr "Nieuw project" +msgid "Select Settings to Customize for this model" +msgstr "Instellingen Selecteren om Dit Model Aan te Passen" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 -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/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filteren..." -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 -msgctxt "@label:PrintjobStatus" -msgid "Slicing..." -msgstr "Slicen..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Alles weergeven" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 -msgctxt "@label:PrintjobStatus" -msgid "Unable to slice" -msgstr "Kan niet slicen" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "Plug-in voor Nabewerking" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Processing" -msgstr "Verwerken" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Slice" -msgstr "Slicen" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 msgctxt "@label" -msgid "Start the slicing process" -msgstr "Het sliceproces starten" +msgid "Post Processing Scripts" +msgstr "Scripts voor Nabewerking" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 -msgctxt "@button" -msgid "Cancel" -msgstr "Annuleren" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +msgctxt "@action" +msgid "Add a script" +msgstr "Een script toevoegen" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 msgctxt "@label" -msgid "Time estimation" -msgstr "Tijdschatting" +msgid "Settings" +msgstr "Instellingen" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +#: /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 "Material estimation" -msgstr "Materiaalschatting" +msgid "Color scheme" +msgstr "Kleurenschema" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1 m" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Materiaalkleur" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1 g" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Lijntype" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: /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 "No time estimation available" -msgstr "Geen tijdschatting beschikbaar" +msgid "Compatibility Mode" +msgstr "Compatibiliteitsmodus" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 msgctxt "@label" -msgid "No cost estimation available" -msgstr "Geen kostenraming beschikbaar" +msgid "Travels" +msgstr "Bewegingen" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "Voorbeeld" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 msgctxt "@label" -msgid "Add a printer" -msgstr "Een printer toevoegen" +msgid "Helpers" +msgstr "Helpers" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 msgctxt "@label" -msgid "Add a networked printer" -msgstr "Een netwerkprinter toevoegen" +msgid "Shell" +msgstr "Shell" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +#: /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 "Add a non-networked printer" -msgstr "Een niet-netwerkprinter toevoegen" +msgid "Infill" +msgstr "Vulling" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "Een cloudprinter toevoegen" +msgid "Starts" +msgstr "Wordt gestart" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "Wachten op cloudreactie" +msgid "Only Show Top Layers" +msgstr "Alleen bovenlagen weergegeven" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 msgctxt "@label" -msgid "No printers found in your account?" -msgstr "Geen printers gevonden in uw account?" +msgid "Show 5 Detailed Layers On Top" +msgstr "5 gedetailleerde lagen bovenaan weergeven" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 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:" +msgid "Top / Bottom" +msgstr "Boven-/onderkant" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "Printer handmatig toevoegen" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 msgctxt "@label" -msgid "Add printer by IP address" -msgstr "Een printer toevoegen op IP-adres" +msgid "Inner Wall" +msgstr "Binnenwand" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "Voer het IP-adres van uw printer in." - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "Toevoegen" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 msgctxt "@label" -msgid "Could not connect to device." -msgstr "Kan geen verbinding maken met het apparaat." +msgid "min" +msgstr "min" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Kunt u geen verbinding maken met uw Ultimaker-printer?" +msgid "max" +msgstr "max" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +#: /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 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "Platform Kalibreren" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 msgctxt "@label" -msgid "The printer at this address has not responded yet." +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 +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 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "Kalibratie Platform Starten" + +#: /home/trin/Gedeeld/Projects/Cura/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" + +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 -msgctxt "@button" -msgid "Back" -msgstr "Terug" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +msgctxt "@action:button" msgid "Connect" -msgstr "Verbinding maken" +msgstr "Verbinden" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "Gebruikersovereenkomst" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Ongeldig IP-adres" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "Afwijzen en sluiten" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Welkom bij Ultimaker Cura" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +#: /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 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." +msgid "Please enter a valid IP address." +msgstr "Voer een geldig IP-adres in." -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "Aan de slag" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Printeradres" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +#: /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 +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 msgctxt "@label" msgid "Sign in to the Ultimaker platform" msgstr "Meld u aan op het Ultimaker-platform" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "Voeg materiaalinstellingen en plugins uit de Marktplaats toe" +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 "" +"- Voeg materiaalprofielen en plug-ins toe uit de Marketplace\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/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -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" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" -msgid "Skip" -msgstr "Overslaan" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 -msgctxt "@text" -msgid "Create a free Ultimaker Account" +msgid "Create a free Ultimaker account" msgstr "Maak een gratis Ultimaker-account aan" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 msgctxt "@label" -msgid "Manufacturer" -msgstr "Fabrikant" +msgid "Checking..." +msgstr "Aan het controleren..." -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 msgctxt "@label" -msgid "Profile author" -msgstr "Profieleigenaar" +msgid "Account synced" +msgstr "Account gesynchroniseerd" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 msgctxt "@label" -msgid "Printer name" -msgstr "Printernaam" +msgid "Something went wrong..." +msgstr "Er is een fout opgetreden..." -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 -msgctxt "@text" -msgid "Please name your printer" -msgstr "Geef uw printer een naam" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 +msgctxt "@button" +msgid "Install pending updates" +msgstr "Updates in afwachting installeren" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "Ultimaker-account" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "Afmelden" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" -msgid "There is no printer found over your network." -msgstr "Kan in uw netwerk geen printer vinden." +msgid "No time estimation available" +msgstr "Geen tijdschatting beschikbaar" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 msgctxt "@label" -msgid "Refresh" -msgstr "Vernieuwen" +msgid "No cost estimation available" +msgstr "Geen kostenraming beschikbaar" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 +msgctxt "@button" +msgid "Preview" +msgstr "Voorbeeld" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 msgctxt "@label" -msgid "Add printer by IP" -msgstr "Printer toevoegen op IP" +msgid "Time estimation" +msgstr "Tijdschatting" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107 msgctxt "@label" -msgid "Add cloud printer" -msgstr "Een cloudprinter toevoegen" +msgid "Material estimation" +msgstr "Materiaalschatting" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1 g" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +msgctxt "@label:PrintjobStatus" +msgid "Slicing..." +msgstr "Slicen..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Processing" +msgstr "Verwerken" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +msgctxt "@button" +msgid "Slice" +msgstr "Slicen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:115 msgctxt "@label" -msgid "Troubleshooting" -msgstr "Probleemoplossing" +msgid "Start the slicing process" +msgstr "Het sliceproces starten" -#: /home/clamboo/Desktop/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/ActionPanel/SliceProcessWidget.qml:132 +msgctxt "@button" +msgid "Cancel" +msgstr "Annuleren" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -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/Actions.qml:81 +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting" +msgstr "Online probleemoplossing weergeven" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "Machinetypen" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 +msgctxt "@action:inmenu" +msgid "Toggle Full Screen" +msgstr "Volledig Scherm In-/Uitschakelen" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "Materiaalgebruik" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 +msgctxt "@action:inmenu" +msgid "Exit Full Screen" +msgstr "Volledig scherm sluiten" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "Aantal slices" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 +msgctxt "@action:inmenu menubar:edit" +msgid "&Undo" +msgstr "Ongedaan &Maken" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "Instellingen voor printen" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 +msgctxt "@action:inmenu menubar:edit" +msgid "&Redo" +msgstr "&Opnieuw" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -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/Actions.qml:131 +msgctxt "@action:inmenu menubar:file" +msgid "&Quit" +msgstr "&Afsluiten" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "Meer informatie" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 +msgctxt "@action:inmenu menubar:view" +msgid "3D View" +msgstr "3D-weergave" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 -msgctxt "@label" +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "Top View" +msgstr "Weergave bovenzijde" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "Left Side View" +msgstr "Weergave linkerzijde" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu" +msgid "Configure Cura..." +msgstr "Cura Configureren..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 +msgctxt "@action:inmenu menubar:printer" +msgid "&Add Printer..." +msgstr "&Printer Toevoegen..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 +msgctxt "@action:inmenu menubar:printer" +msgid "Manage Pr&inters..." +msgstr "Pr&inters Beheren..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 +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." +msgid "Add more materials from Marketplace" +msgstr "Meer materialen toevoegen van Marketplace" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 +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 +msgctxt "@action:inmenu menubar:profile" +msgid "&Discard current changes" +msgstr "Hui&dige wijzigingen verwijderen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 +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 +msgctxt "@action:inmenu menubar:profile" +msgid "Manage Profiles..." +msgstr "Profielen Beheren..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 +msgctxt "@action:inmenu menubar:help" +msgid "Show Online &Documentation" +msgstr "Online &Documentatie Weergeven" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 +msgctxt "@action:inmenu menubar:help" +msgid "Report a &Bug" +msgstr "Een &Bug Rapporteren" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 +msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "Nieuwe functies" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "Leeg" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 +msgctxt "@action:inmenu menubar:help" +msgid "About..." +msgstr "Over..." -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "Release notes" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 +msgctxt "@action:inmenu menubar:edit" +msgid "Delete Selected" +msgstr "Verwijder geselecteerde items" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 +msgctxt "@action:inmenu menubar:edit" +msgid "Center Selected" +msgstr "Centreer geselecteerde items" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 +msgctxt "@action:inmenu menubar:edit" +msgid "Multiply Selected" +msgstr "Verveelvoudig geselecteerde items" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 +msgctxt "@action:inmenu" +msgid "Delete Model" +msgstr "Model Verwijderen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 +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 +msgctxt "@action:inmenu menubar:edit" +msgid "&Group Models" +msgstr "Modellen &Groeperen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 +msgctxt "@action:inmenu menubar:edit" +msgid "Ungroup Models" +msgstr "Groeperen van Modellen Opheffen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 +msgctxt "@action:inmenu menubar:edit" +msgid "&Merge Models" +msgstr "Modellen Samen&voegen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 +msgctxt "@action:inmenu" +msgid "&Multiply Model..." +msgstr "&Model verveelvoudigen..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Alle Modellen Selecteren" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 +msgctxt "@action:inmenu menubar:edit" +msgid "Clear Build Plate" +msgstr "Platform Leegmaken" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 +msgctxt "@action:inmenu menubar:file" +msgid "Reload All Models" +msgstr "Alle Modellen Opnieuw Laden" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models" +msgstr "Alle modellen schikken" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Selectie schikken" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Positions" +msgstr "Alle Modelposities Herstellen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Transformations" +msgstr "Alle Modeltransformaties Herstellen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 +msgctxt "@action:inmenu menubar:file" +msgid "&Open File(s)..." +msgstr "Bestand(en) &openen..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 +msgctxt "@action:inmenu menubar:file" +msgid "&New Project..." +msgstr "&Nieuw project..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 +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 +msgctxt "@action:menu" +msgid "Configure setting visibility..." +msgstr "Zichtbaarheid Instelling Configureren..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "Printtaken" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +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 +msgctxt "@tooltip:button" +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 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "Ondersteuning van Ultimaker" + +#: /home/trin/Gedeeld/Projects/Cura/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." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "Consulteer de Ultimaker Community." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "Bezoek de Ultimaker-website." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 +msgctxt "@label" +msgid "Hex" +msgstr "Inbus" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 +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 +msgctxt "@title:tab" +msgid "General" +msgstr "Algemeen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +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 +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 +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 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Profielen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +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 +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 +msgctxt "@title:window" +msgid "Open file(s)" +msgstr "Bestand(en) openen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +msgctxt "@window:title" +msgid "Install Package" +msgstr "Package installeren" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Bestand(en) openen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +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 +msgctxt "@title:window" +msgid "Add Printer" +msgstr "Printer Toevoegen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +msgctxt "@title:window" +msgid "What's New" +msgstr "Nieuwe functies" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "Ongeveer %1" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 msgctxt "@label" msgid "version: %1" msgstr "versie: %1" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "End-to-end-oplossing voor fused filament 3D-printen." -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 msgctxt "@info:credit" msgid "" "Cura is developed by Ultimaker B.V. in cooperation with the community.\n" @@ -3764,352 +3827,1613 @@ msgstr "" "Cura is ontwikkeld door Ultimaker B.V. in samenwerking met de community.\n" "Cura maakt met trots gebruik van de volgende opensourceprojecten:" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" msgid "Graphical user interface" msgstr "Grafische gebruikersinterface (GUI)" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 msgctxt "@label" msgid "Application framework" msgstr "Toepassingskader" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 msgctxt "@label" msgid "G-code generator" msgstr "G-code-generator" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 msgctxt "@label" msgid "Interprocess communication library" msgstr "InterProcess Communication-bibliotheek" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" -msgid "Programming language" -msgstr "Programmeertaal" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" -msgid "GUI framework" -msgstr "GUI-kader" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" -msgid "GUI framework bindings" -msgstr "Bindingen met GUI-kader" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" -msgid "C/C++ Binding library" -msgstr "Bindingenbibliotheek C/C++" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 -msgctxt "@label" -msgid "Data interchange format" -msgstr "Indeling voor gegevensuitwisseling" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 -msgctxt "@label" -msgid "Support library for scientific computing" -msgstr "Ondersteuningsbibliotheek voor wetenschappelijke berekeningen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" -msgid "Support library for faster math" -msgstr "Ondersteuningsbibliotheek voor snellere berekeningen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" -msgid "Support library for handling STL files" -msgstr "Ondersteuningsbibliotheek voor het verwerken van STL-bestanden" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" -msgid "Support library for handling planar objects" -msgstr "Ondersteuningsbibliotheek voor het verwerken van tweedimensionale objecten" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" -msgid "Support library for handling triangular meshes" -msgstr "Ondersteuningsbibliotheek voor het verwerken van driehoekig rasters" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" -msgid "Support library for handling 3MF files" -msgstr "Ondersteuningsbibliotheek voor het verwerken van 3MF-bestanden" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 -msgctxt "@label" -msgid "Support library for file metadata and streaming" -msgstr "Ondersteuningsbibliotheek voor bestandsmetadata en streaming" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 -msgctxt "@label" -msgid "Serial communication library" -msgstr "Seriële-communicatiebibliotheek" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 -msgctxt "@label" -msgid "ZeroConf discovery library" -msgstr "ZeroConf-detectiebibliotheek" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" -msgid "Polygon clipping library" -msgstr "Bibliotheek met veelhoeken" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@Label" -msgid "Static type checker for Python" -msgstr "Statische typecontrole voor Python" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@Label" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "Rootcertificaten voor het valideren van SSL-betrouwbaarheid" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 -msgctxt "@Label" -msgid "Python Error tracking library" -msgstr "Python fouttraceringsbibliotheek" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 -msgctxt "@label" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "Verpakkingsbibliotheek met veelhoeken, ontwikkeld door Prusa Research" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 msgctxt "@label" msgid "Python bindings for libnest2d" msgstr "Pythonbindingen voor libnest2d" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 msgctxt "@label" -msgid "Support library for system keyring access" -msgstr "Ondersteuningsbibliotheek voor toegang tot systeemkeyring" +msgid "Polygon packing library, developed by Prusa Research" +msgstr "Verpakkingsbibliotheek met veelhoeken, ontwikkeld door Prusa Research" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 msgctxt "@label" -msgid "Python extensions for Microsoft Windows" -msgstr "Pythonextensies voor Microsoft Windows" +msgid "Support library for handling 3MF files" +msgstr "Ondersteuningsbibliotheek voor het verwerken van 3MF-bestanden" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 +msgctxt "@label" +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" +msgid "Programming language" +msgstr "Programmeertaal" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +msgctxt "@label" +msgid "GUI framework" +msgstr "GUI-kader" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label" +msgid "GUI framework bindings" +msgstr "Bindingen met GUI-kader" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label" +msgid "C/C++ Binding library" +msgstr "Bindingenbibliotheek C/C++" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label" +msgid "Data interchange format" +msgstr "Indeling voor gegevensuitwisseling" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 msgctxt "@label" msgid "Font" msgstr "Lettertype" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 msgctxt "@label" -msgid "SVG icons" -msgstr "SVG-pictogrammen" +msgid "Polygon clipping library" +msgstr "Bibliotheek met veelhoeken" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +msgctxt "@label" +msgid "JSON parser" +msgstr "JSON-parser" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label" +msgid "Utility functions, including an image loader" +msgstr "Gebruiksfuncties, waaronder een afbeeldinglader" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label" +msgid "Utility library, including Voronoi generation" +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" +msgid "Root Certificates for validating SSL trustworthiness" +msgstr "Rootcertificaten voor het valideren van SSL-betrouwbaarheid" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +msgctxt "@label" +msgid "Compatibility between Python 2 and 3" +msgstr "Compatibiliteit tussen Python 2 en 3" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label" +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" +msgid "Support library for faster math" +msgstr "Ondersteuningsbibliotheek voor snellere berekeningen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +msgctxt "@label" +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" +msgid "Python bindings for Clipper" +msgstr "Pythonbindingen voor Clipper" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label" +msgid "Serial communication library" +msgstr "Seriële-communicatiebibliotheek" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label" +msgid "Support library for scientific computing" +msgstr "Ondersteuningsbibliotheek voor wetenschappelijke berekeningen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:169 +msgctxt "@Label" +msgid "Python Error tracking library" +msgstr "Python fouttraceringsbibliotheek" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label" +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" +msgid "ZeroConf discovery library" +msgstr "ZeroConf-detectiebibliotheek" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 +msgctxt "@label" +msgid "Universal build system configuration" +msgstr "Universele configuratie bouwsysteem" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 +msgctxt "@label" +msgid "Dependency and package manager" +msgstr "Afhankelijkheden- en pakketbeheer" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label" +msgid "Packaging Python-applications" +msgstr "Verpakking Python-toepassingen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 msgctxt "@label" msgid "Linux cross-distribution application deployment" msgstr "Implementatie van Linux-toepassing voor kruisdistributie" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Bestand(en) openen" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:178 +msgctxt "@label" +msgid "Generating Windows installers" +msgstr "Windows-installatieprogramma's genereren" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 +#: /home/trin/Gedeeld/Projects/Cura/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 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?" +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/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:90 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "Mijn keuze onthouden" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 msgctxt "@action:button" -msgid "Import all as models" -msgstr "Allemaal als model importeren" +msgid "Open as project" +msgstr "Openen als project" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 -msgctxt "@title:window" -msgid "Save Project" -msgstr "Project opslaan" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Extruder %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 &materiaal" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 -msgctxt "@action:label" -msgid "Material" -msgstr "Materiaal" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "Bij opnieuw opslaan projectsamenvatting niet weergeven" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 msgctxt "@action:button" -msgid "Save" -msgstr "Opslaan" +msgid "Import models" +msgstr "Modellen importeren" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 msgctxt "@title:window" msgid "Discard or Keep changes" msgstr "Wijzigingen verwijderen of behouden" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:49 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'." +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 "" "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." -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 msgctxt "@title:column" msgid "Profile settings" msgstr "Profielinstellingen" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 msgctxt "@title:column" msgid "Current changes" msgstr "Huidige wijzigingen" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:104 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:799 msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Altijd vragen" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" msgstr "Verwijderen en nooit meer vragen" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:106 msgctxt "@option:discardOrKeep" msgid "Keep and never ask again" msgstr "Behouden en nooit meer vragen" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:136 msgctxt "@action:button" msgid "Discard changes" msgstr "Wijzigingen verwijderen" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 msgctxt "@action:button" msgid "Keep changes" msgstr "Wijzigingen behouden" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +#: /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?" +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 +msgctxt "@action:button" +msgid "Import all as models" +msgstr "Allemaal als model importeren" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14 msgctxt "@title:window" -msgid "Open project file" -msgstr "Projectbestand openen" +msgid "Save Project" +msgstr "Project opslaan" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 -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/WorkspaceSummaryDialog.qml:175 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Extruder %1" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "Mijn keuze onthouden" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 &materiaal" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +msgctxt "@action:label" +msgid "Material" +msgstr "Materiaal" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +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 msgctxt "@action:button" -msgid "Open as project" -msgstr "Openen als project" +msgid "Save" +msgstr "Opslaan" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 +#: /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 +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 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "In&stellingen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 msgctxt "@action:button" -msgid "Import models" -msgstr "Modellen importeren" +msgid "Marketplace" +msgstr "Marketplace" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" -msgid "Active print" -msgstr "Actieve print" +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/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 msgctxt "@label" -msgid "Job Name" -msgstr "Taaknaam" +msgid "Marketplace" +msgstr "Marketplace" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 msgctxt "@label" -msgid "Printing Time" -msgstr "Printtijd" +msgid "Loading available configurations from the printer..." +msgstr "Beschikbare configuraties laden vanaf de printer..." -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 msgctxt "@label" -msgid "Estimated time left" -msgstr "Geschatte resterende tijd" +msgid "The configurations are not available because the printer is disconnected." +msgstr "De configuraties zijn niet beschikbaar omdat de printer niet verbonden is." -#: /home/clamboo/Desktop/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/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/clamboo/Desktop/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/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/clamboo/Desktop/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/Menus/ConfigurationMenu/ConfigurationMenu.qml:250 +msgctxt "@label" +msgid "Select configuration" +msgstr "Configuratie selecteren" -#: /home/clamboo/Desktop/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/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 +msgctxt "@label" +msgid "Configurations" +msgstr "Configuraties" -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Enabled" +msgstr "Ingeschakeld" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +msgctxt "@label" +msgid "Material" +msgstr "Materiaal" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +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 +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 +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 +msgctxt "@label" +msgid "Number of Copies" +msgstr "Aantal exemplaren" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "E&xtensies" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "&Project opslaan..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "Selectie Exporteren..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "Materiaal" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "Standaard" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "Voo&rkeuren" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "Netwerkprinters" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "&Recente bestanden openen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "Zichtbare instellingen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "Instelling voor zichtbaarheid beheren..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "&Camerapositie" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "Perspectief" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "Printer accepteert geen opdrachten" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "Printen..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "Gepauzeerd" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "Voorbereiden..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Abort Print" +msgstr "Printen Afbreken" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Is printed as support." +msgstr "Is geprint als support." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Defaults" +msgstr "Standaardwaarden" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +msgctxt "@label" +msgid "Interface" +msgstr "Interface" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +msgctxt "@heading" +msgid "-- incomplete --" +msgstr "-- onvolledig --" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +msgctxt "@label" +msgid "Currency:" +msgstr "Valuta:" + +#: /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." +msgid "Theme*:" +msgstr "Thema*:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +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 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "Automatisch slicen" + +#: /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." +msgstr "*U moet de toepassing opnieuw starten voordat deze wijzigingen van kracht worden." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "Gedrag kijkvenster" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +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 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "Overhang weergeven" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +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 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "Modelfouten weergeven" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +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 +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 +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 +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 +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 +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 +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 +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 +msgctxt "@option:check" +msgid "Ensure models are kept apart" +msgstr "Modellen gescheiden houden" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:477 +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 +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 +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 +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 +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 +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 +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 +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 +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 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "Cameraweergave:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +msgid "Perspective" +msgstr "Perspectief" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +msgid "Orthographic" +msgstr "Orthografisch" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "Bestanden openen en opslaan" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +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 +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 +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 +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 +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 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "Grote modellen schalen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +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 +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "Extreem kleine modellen schalen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:665 +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 +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 +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 +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 +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 +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 +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 +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 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "Altijd vragen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +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 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "Altijd modellen importeren" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +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 +msgctxt "@label" +msgid "Profiles" +msgstr "Profielen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +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 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "Gewijzigde instellingen altijd verwijderen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:801 +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 +msgctxt "@label" +msgid "Privacy" +msgstr "Privacy" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "(Anonieme) printgegevens verzenden" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:876 +msgctxt "@label" +msgid "Updates" +msgstr "Updates" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +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 +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 +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 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "Alleen stabiele releases" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +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 +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 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Rename" +msgstr "Hernoemen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Import" +msgstr "Importeren" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Materiaal Importeren" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Materiaal Exporteren" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 msgctxt "@button" -msgid "Add printer" -msgstr "Printer toevoegen" +msgid "Why do I need to sync material profiles?" +msgstr "Waarom moet ik materiaalprofielen synchroniseren?" -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 msgctxt "@button" -msgid "Manage printers" -msgstr "Printers beheren" +msgid "Start" +msgstr "Starten" -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +msgctxt "@title:header" +msgid "Sign in" +msgstr "Aanmelden" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +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 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "Materialen synchroniseren met USB" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +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 +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 +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 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "Probleemoplossing" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +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 +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 +msgctxt "@button" +msgid "Refresh List" +msgstr "Lijst vernieuwen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +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 +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 +msgctxt "@button" +msgid "Sync" +msgstr "Synchroniseren" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +msgctxt "@button" +msgid "Syncing" +msgstr "Synchroniseren" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +msgctxt "@title:header" +msgid "No printers found" +msgstr "Geen printers gevonden" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +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 +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 +msgctxt "@button" +msgid "Refresh" +msgstr "Vernieuwen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +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 +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 +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 +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 +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 +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 +msgctxt "@button" +msgid "Back" +msgstr "Terug" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +msgctxt "@button" +msgid "Export material archive" +msgstr "Materiaalarchief exporteren" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "Alle materialen exporteren" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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?" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:152 msgctxt "@label" -msgid "Connected printers" -msgstr "Verbonden printers" +msgid "Display Name" +msgstr "Naam" -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171 msgctxt "@label" -msgid "Preset printers" -msgstr "Vooraf ingestelde printers" +msgid "Brand" +msgstr "Merk" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Color" +msgstr "Kleur" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Properties" +msgstr "Eigenschappen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Diameter" +msgstr "Diameter" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Filament weight" +msgstr "Gewicht filament" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Cost per Meter" +msgstr "Kostprijs per meter" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Unlink Material" +msgstr "Materiaal ontkoppelen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Adhesion Information" +msgstr "Gegevens Hechting" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" msgid "Print settings" msgstr "Instellingen voor printen" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -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/Preferences/ProfilesPage.qml:59 +msgctxt "@label" +msgid "Profiles compatible with active printer:" +msgstr "Profielen die compatibel zijn met actieve printer:" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Update profile." +msgstr "Werk profiel bij." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "Huidige wijzigingen verwijderen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Algemene Instellingen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Profiel Exporteren" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "Zichtbaarheid Instellen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Active print" +msgstr "Actieve print" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +msgctxt "@label" +msgid "Job Name" +msgstr "Taaknaam" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +msgctxt "@label" +msgid "Printing Time" +msgstr "Printtijd" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" msgid "Profile" msgstr "Profiel" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -4120,1756 +5444,132 @@ msgstr "" "\n" "Klik om het profielbeheer te openen." -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 msgctxt "@label:header" msgid "Custom profiles" msgstr "Aangepaste profielen" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "Huidige wijzigingen verwijderen" +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:142 msgctxt "@button" msgid "Recommended" msgstr "Aanbevolen" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:156 msgctxt "@button" msgid "Custom" msgstr "Aangepast" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 msgctxt "@label:Should be short" msgid "On" msgstr "Aan" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 msgctxt "@label:Should be short" msgid "Off" msgstr "Uit" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 msgctxt "@label" msgid "Experimental" msgstr "Experimenteel" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 -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" +#: /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 "aangepast profiel is actief en u hebt bepaalde instellingen overschreven." -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 -msgctxt "@label" -msgid "Profiles" -msgstr "Profielen" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +msgctxt "@info" +msgid "custom profile is overriding some settings." +msgstr "aangepast profiel overschrijft bepaalde instellingen." -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 -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." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 +msgctxt "@info" +msgid "Some settings were changed." +msgstr "Bepaalde instellingen zijn gewijzigd." -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 -msgctxt "@label" -msgid "Support" -msgstr "Supportstructuur" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 -msgctxt "@label" -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 -msgctxt "@label" -msgid "Gradual infill" -msgstr "Geleidelijke vulling" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 msgctxt "@label" msgid "Adhesion" msgstr "Hechting" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 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/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "Project opslaan..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "Netwerkprinters" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "Lokale printers" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "Materiaal" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "Favorieten" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "Standaard" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:198 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:" +msgid "Gradual infill" +msgstr "Geleidelijke vulling" -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "Geselecteerd model verveelvoudigen" -msgstr[1] "Geselecteerde modellen verveelvoudigen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:236 msgctxt "@label" -msgid "Number of Copies" -msgstr "Aantal exemplaren" +msgid "Gradual infill will gradually increase the amount of infill towards the top." +msgstr "Met geleidelijke vulling neemt de hoeveelheid vulling naar boven toe." -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "&Project opslaan..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "&Exporteren..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "Selectie Exporteren..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "Configuraties" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "Aangepast" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:26 msgctxt "@label" -msgid "Printer" -msgstr "Printer" +msgid "Resolution" +msgstr "Resolutie" -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 msgctxt "@label" -msgid "Enabled" -msgstr "Ingeschakeld" +msgid "Support" +msgstr "Supportstructuur" -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 msgctxt "@label" -msgid "Material" -msgstr "Materiaal" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 -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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 -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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 -msgctxt "@label" -msgid "Select configuration" -msgstr "Configuratie selecteren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 -msgctxt "@label" -msgid "Configurations" -msgstr "Configuraties" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "Beschikbare configuraties laden vanaf de printer..." - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "Marktplaats" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "Bestand(en) openen..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "&Printer" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Materiaal" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Instellen als Actieve Extruder" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Extruder inschakelen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Extruder uitschakelen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "&Recente bestanden openen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "Zichtbare instellingen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "Alle categorieën samenvouwen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "Instelling voor zichtbaarheid beheren..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "&Camerapositie" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "Camerabeeld" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "Perspectief" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "Orthografisch" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "&Platform" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 -msgctxt "@label" -msgid "View type" -msgstr "Type weergeven" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 -msgctxt "@label" -msgid "Is printed as support." -msgstr "Is geprint als support." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "Andere modellen die met dit model overlappen, zijn gewijzigd." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "De vulling die met dit model overlapt, is aangepast." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "Overlappingen worden in dit model niet ondersteund." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Profielen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 -msgctxt "@action:button" -msgid "Activate" -msgstr "Activeren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "Maken" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "Dupliceren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 -msgctxt "@action:button" -msgid "Rename" -msgstr "Hernoemen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -msgctxt "@action:button" -msgid "Import" -msgstr "Importeren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -msgctxt "@action:button" -msgid "Export" -msgstr "Exporteren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Profiel Maken" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "Geef een naam op voor dit profiel." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Profiel Dupliceren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Verwijderen Bevestigen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Profiel Hernoemen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Profiel Importeren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Profiel Exporteren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "Printer: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "Profiel bijwerken met huidige instellingen/overschrijvingen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "Uw huidige instellingen komen overeen met het geselecteerde profiel." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Algemene Instellingen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 -msgctxt "@title:tab" -msgid "General" -msgstr "Algemeen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 -msgctxt "@label" -msgid "Interface" -msgstr "Interface" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 -msgctxt "@label" -msgid "Currency:" -msgstr "Valuta:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 -msgctxt "@label" -msgid "Theme:" -msgstr "Thema:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Automatisch slicen bij wijzigen van instellingen." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Automatisch slicen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "Gedrag kijkvenster" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Overhang weergeven" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "Modelfouten weergeven" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Camera centreren wanneer een item wordt geselecteerd" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "Moet het standaard zoomgedrag van Cura worden omgekeerd?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Keer de richting van de camerazoom om." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "Zoomen in de richting van de muis" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "Modellen gescheiden houden" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "Modellen automatisch op het platform laten vallen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "Toon het waarschuwingsbericht in de G-code-lezer." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "Waarschuwingsbericht in de G-code-lezer" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "Moet de laag in de compatibiliteitsmodus worden geforceerd?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "Compatibiliteitsmodus voor laagweergave forceren (opnieuw opstarten vereist)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "Herstel de vensterpositie bij het opstarten" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "Welk type cameraweergave moet worden gebruikt?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "Cameraweergave:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 -msgid "Perspective" -msgstr "Perspectief" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 -msgid "Orthographic" -msgstr "Orthografisch" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Bestanden openen en opslaan" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Gebruik één instantie van Cura" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Grote modellen schalen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Extreem kleine modellen schalen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "Moeten modellen worden geselecteerd nadat ze zijn geladen?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "Modellen selecteren wanneer ze geladen zijn" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "Machinevoorvoegsel toevoegen aan taaknaam" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "Dialoogvenster voor samenvatting weergeven tijdens het opslaan van een project" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "Standaardgedrag tijdens het openen van een projectbestand" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "Standaardgedrag tijdens het openen van een projectbestand: " - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "Altijd vragen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Altijd als project openen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Altijd modellen importeren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "Gewijzigde instellingen altijd verwijderen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "Gewijzigde instellingen altijd naar nieuw profiel overbrengen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 -msgctxt "@label" -msgid "Privacy" -msgstr "Privacy" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "(Anonieme) printgegevens verzenden" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 -msgctxt "@action:button" -msgid "More information" +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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +msgctxt "@error" +msgid "Configuration not supported" +msgstr "Configuratie niet ondersteund" + +#: /home/trin/Gedeeld/Projects/Cura/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 "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 +msgctxt "@button:label" +msgid "Learn more" msgstr "Meer informatie" -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 -msgctxt "@label" -msgid "Updates" -msgstr "Updates" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Bij starten op updates controleren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 -msgctxt "@option:radio" -msgid "Stable releases only" -msgstr "Alleen stabiele releases" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 -msgctxt "@option:radio" -msgid "Stable and Beta releases" -msgstr "Stabiele releases en bèta-releases" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 -msgctxt "@option:check" -msgid "Get notifications for plugin updates" -msgstr "Meldingen ontvangen als er updates zijn voor pug-ins" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "Informatie" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "Diameterwijziging bevestigen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -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?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "Naam" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "Type Materiaal" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "Kleur" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "Eigenschappen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "Dichtheid" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "Diameter" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "Kostprijs Filament" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "Gewicht filament" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "Lengte filament" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Kostprijs per meter" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "Materiaal ontkoppelen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "Beschrijving" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Gegevens Hechting" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "Maken" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Dupliceren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "Synchroniseren met printers" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "Printer" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Materiaal Importeren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Materiaal %1 is geïmporteerd" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Materiaal Exporteren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Materiaal is geëxporteerd naar %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 -msgctxt "@title:window" -msgid "Sync materials with printers" -msgstr "Synchroniseer materialen met printers" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 -msgctxt "@title:header" -msgid "Sync materials with printers" -msgstr "Synchroniseer materialen met printers" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 -msgctxt "@button" -msgid "Start" -msgstr "Starten" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 -msgctxt "@button" -msgid "Why do I need to sync material profiles?" -msgstr "Waarom moet ik materiaalprofielen synchroniseren?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 -msgctxt "@title:header" -msgid "Sign in" -msgstr "Aanmelden" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 -msgctxt "@button" -msgid "Sync materials with USB" -msgstr "Materialen synchroniseren met USB" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 -msgctxt "@title:header" -msgid "The following printers will receive the new material profiles:" -msgstr "De volgende printers ontvangen de nieuwe materiaalprofielen:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 -msgctxt "@title:header" -msgid "Material profiles successfully synced with the following printers:" -msgstr "Materiaalprofielen zijn gesynchroniseerd met de volgende printers:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 -msgctxt "@button" -msgid "Troubleshooting" -msgstr "Probleemoplossing" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 -msgctxt "@text Asking the user whether printers are missing in a list." -msgid "Printers missing?" -msgstr "Ontbreken er printers?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 -msgctxt "@button" -msgid "Refresh List" -msgstr "Lijst vernieuwen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 -msgctxt "@button" -msgid "Try again" -msgstr "Probeer het opnieuw" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Done" -msgstr "Klaar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 -msgctxt "@button" -msgid "Sync" -msgstr "Synchroniseren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 -msgctxt "@button" -msgid "Syncing" -msgstr "Synchroniseren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 -msgctxt "@title:header" -msgid "No printers found" -msgstr "Geen printers gevonden" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 -msgctxt "@button" -msgid "Refresh" -msgstr "Vernieuwen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 -msgctxt "@title:header" -msgid "Sync material profiles via USB" -msgstr "Materiaalprofielen synchroniseren via USB" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 -msgctxt "@text" -msgid "Click the export material archive button." -msgstr "Klik op de knop Materiaalarchief exporteren." - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 -msgctxt "@button" -msgid "How to load new material profiles to my printer" -msgstr "Hoe u nieuwe materiaalprofielen laadt op Mijn printer" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Export material archive" -msgstr "Materiaalarchief exporteren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "Alle materialen exporteren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Zichtbaarheid Instellen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Alles aanvinken" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 -msgctxt "@title:tab" -msgid "Printers" -msgstr "Printers" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Berekend" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 msgctxt "@title:column" msgid "Setting" msgstr "Instelling" -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 msgctxt "@title:column" msgid "Profile" msgstr "Profiel" -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 msgctxt "@title:column" msgid "Current" msgstr "Huidig" -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:39 +msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Eenheid" -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "Niet met een printer verbonden" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/SearchBar.qml:17 +msgctxt "@placeholder" +msgid "Search" +msgstr "Zoeken" -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "Printer accepteert geen opdrachten" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "In onderhoud. Controleer de printer" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "Verbinding met de printer is verbroken" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "Printen..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "Gepauzeerd" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "Voorbereiden..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Verwijder de print" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "Printen Afbreken" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "Weet u zeker dat u het printen wilt afbreken?" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 -msgctxt "@label:button" -msgid "My printers" -msgstr "Mijn printers" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 -msgctxt "@tooltip:button" -msgid "Create print projects in Digital Library." -msgstr "Maak printprojecten aan in Digital Library." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 -msgctxt "@label:button" -msgid "Print jobs" -msgstr "Printtaken" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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." - -#: /home/clamboo/Desktop/Cura/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." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 -msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "Ondersteuning van Ultimaker" - -#: /home/clamboo/Desktop/Cura/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." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 -msgctxt "@label:button" -msgid "Ask a question" -msgstr "Stel een vraag" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 -msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "Consulteer de Ultimaker Community." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 -msgctxt "@label:button" -msgid "Report a bug" -msgstr "Een fout melden" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 -msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "Bezoek de Ultimaker-website." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "Printerbediening" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "Jog-positie" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Jog-afstand" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "G-code verzenden" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "Extruder" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "De huidige temperatuur van dit hotend." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "De temperatuur waarnaar het hotend moet worden voorverwarmd." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Annuleren" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Voorverwarmen" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "De kleur van het materiaal in deze extruder." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Het materiaal in deze extruder." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "De nozzle die in deze extruder geplaatst is." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "Platform" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -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/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "De temperatuur waarnaar het bed moet worden voorverwarmd." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -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/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "Aanmelden" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 -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 "" -"- 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/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 -msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "Maak een gratis Ultimaker-account aan" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "Laatste update: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Ultimaker-account" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 -msgctxt "@button" -msgid "Sign Out" -msgstr "Afmelden" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 -msgctxt "@label" -msgid "Checking..." -msgstr "Aan het controleren..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 -msgctxt "@label" -msgid "Account synced" -msgstr "Account gesynchroniseerd" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 -msgctxt "@label" -msgid "Something went wrong..." -msgstr "Er is een fout opgetreden..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 -msgctxt "@button" -msgid "Install pending updates" -msgstr "Updates in afwachting installeren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 -msgctxt "@button" -msgid "Check for account updates" -msgstr "Controleren op accountupdates" - -#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "Zonder titel" - -#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 -msgctxt "@label" -msgid "No items to select from" -msgstr "Geen items om uit te kiezen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "Online gids voor probleemoplossing weergegeven" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 -msgctxt "@action:inmenu" -msgid "Toggle Full Screen" -msgstr "Volledig Scherm In-/Uitschakelen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 -msgctxt "@action:inmenu" -msgid "Exit Full Screen" -msgstr "Volledig scherm sluiten" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 -msgctxt "@action:inmenu menubar:edit" -msgid "&Undo" -msgstr "Ongedaan &Maken" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 -msgctxt "@action:inmenu menubar:edit" -msgid "&Redo" -msgstr "&Opnieuw" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 -msgctxt "@action:inmenu menubar:file" -msgid "&Quit" -msgstr "&Afsluiten" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 -msgctxt "@action:inmenu menubar:view" -msgid "3D View" -msgstr "3D-weergave" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 -msgctxt "@action:inmenu menubar:view" -msgid "Front View" -msgstr "Weergave voorzijde" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 -msgctxt "@action:inmenu menubar:view" -msgid "Top View" -msgstr "Weergave bovenzijde" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 -msgctxt "@action:inmenu menubar:view" -msgid "Bottom View" -msgstr "Aanzicht onderzijde" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 -msgctxt "@action:inmenu menubar:view" -msgid "Left Side View" -msgstr "Weergave linkerzijde" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 -msgctxt "@action:inmenu menubar:view" -msgid "Right Side View" -msgstr "Weergave rechterzijde" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 -msgctxt "@action:inmenu" -msgid "Configure Cura..." -msgstr "Cura Configureren..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 -msgctxt "@action:inmenu menubar:printer" -msgid "&Add Printer..." -msgstr "&Printer Toevoegen..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 -msgctxt "@action:inmenu menubar:printer" -msgid "Manage Pr&inters..." -msgstr "Pr&inters Beheren..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 -msgctxt "@action:inmenu" -msgid "Manage Materials..." -msgstr "Materialen Beheren..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu" -msgid "Add more materials from Marketplace" -msgstr "Meer materialen toevoegen van Marketplace" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 -msgctxt "@action:inmenu menubar:profile" -msgid "&Discard current changes" -msgstr "Hui&dige wijzigingen verwijderen" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 -msgctxt "@action:inmenu menubar:profile" -msgid "Manage Profiles..." -msgstr "Profielen Beheren..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 -msgctxt "@action:inmenu menubar:help" -msgid "Show Online &Documentation" -msgstr "Online &Documentatie Weergeven" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 -msgctxt "@action:inmenu menubar:help" -msgid "Report a &Bug" -msgstr "Een &Bug Rapporteren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 -msgctxt "@action:inmenu menubar:help" -msgid "What's New" -msgstr "Nieuwe functies" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 -msgctxt "@action:inmenu menubar:help" -msgid "About..." -msgstr "Over..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 -msgctxt "@action:inmenu menubar:edit" -msgid "Delete Selected" -msgstr "Verwijder geselecteerde items" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 -msgctxt "@action:inmenu menubar:edit" -msgid "Center Selected" -msgstr "Centreer geselecteerde items" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 -msgctxt "@action:inmenu menubar:edit" -msgid "Multiply Selected" -msgstr "Verveelvoudig geselecteerde items" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 -msgctxt "@action:inmenu" -msgid "Delete Model" -msgstr "Model Verwijderen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 -msgctxt "@action:inmenu" -msgid "Ce&nter Model on Platform" -msgstr "Model op Platform Ce&ntreren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 -msgctxt "@action:inmenu menubar:edit" -msgid "&Group Models" -msgstr "Modellen &Groeperen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 -msgctxt "@action:inmenu menubar:edit" -msgid "Ungroup Models" -msgstr "Groeperen van Modellen Opheffen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 -msgctxt "@action:inmenu menubar:edit" -msgid "&Merge Models" -msgstr "Modellen Samen&voegen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 -msgctxt "@action:inmenu" -msgid "&Multiply Model..." -msgstr "&Model verveelvoudigen..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 -msgctxt "@action:inmenu menubar:edit" -msgid "Select All Models" -msgstr "Alle Modellen Selecteren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 -msgctxt "@action:inmenu menubar:edit" -msgid "Clear Build Plate" -msgstr "Platform Leegmaken" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 -msgctxt "@action:inmenu menubar:file" -msgid "Reload All Models" -msgstr "Alle Modellen Opnieuw Laden" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "Alle modellen schikken op alle platformen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models" -msgstr "Alle modellen schikken" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange Selection" -msgstr "Selectie schikken" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Positions" -msgstr "Alle Modelposities Herstellen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Transformations" -msgstr "Alle Modeltransformaties Herstellen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 -msgctxt "@action:inmenu menubar:file" -msgid "&Open File(s)..." -msgstr "Bestand(en) &openen..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 -msgctxt "@action:inmenu menubar:file" -msgid "&New Project..." -msgstr "&Nieuw project..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 -msgctxt "@action:inmenu menubar:help" -msgid "Show Configuration Folder" -msgstr "Open Configuratiemap" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 -msgctxt "@action:menu" -msgid "Configure setting visibility..." -msgstr "Zichtbaarheid Instelling Configureren..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "&Marktplaats" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 -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/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 -msgctxt "@label Header for list of settings." -msgid "Affects" -msgstr "Beïnvloedt" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 -msgctxt "@label Header for list of settings." -msgid "Affected By" -msgstr "Beïnvloed door" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 -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/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 -msgctxt "@label" -msgid "This setting is resolved from conflicting extruder-specific values:" -msgstr "Deze instelling wordt afgeleid van strijdige extruderspecifieke waarden:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 -msgctxt "@label" -msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." -msgstr "" -"Deze instelling heeft een andere waarde dan in het profiel.\n" -"\n" -"Klik om de waarde van het profiel te herstellen." - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 -msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"Deze instelling wordt normaliter berekend, maar is nu ingesteld op een absolute waarde.\n" -"\n" -"Klik om de berekende waarde te herstellen." - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 -msgctxt "@label:textbox" -msgid "Search settings" -msgstr "Instellingen zoeken" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 -msgctxt "@action:menu" -msgid "Copy value to all extruders" -msgstr "Waarde naar alle extruders kopiëren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 -msgctxt "@action:menu" -msgid "Copy all changed values to all extruders" -msgstr "Alle gewijzigde waarden naar alle extruders kopiëren" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 -msgctxt "@action:menu" -msgid "Hide this setting" -msgstr "Deze instelling verbergen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 -msgctxt "@action:menu" -msgid "Don't show this setting" -msgstr "Deze instelling verbergen" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 -msgctxt "@action:menu" -msgid "Keep this setting visible" -msgstr "Deze instelling zichtbaar houden" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5880,141 +5580,359 @@ msgstr "" "\n" "Klik om deze instellingen zichtbaar te maken." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "Dit package wordt na opnieuw starten geïnstalleerd." +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/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 -msgctxt "@title:tab" -msgid "Settings" -msgstr "Instellingen" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +msgctxt "@label Header for list of settings." +msgid "Affects" +msgstr "Beïnvloedt" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "%1 wordt gesloten" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +msgctxt "@label Header for list of settings." +msgid "Affected By" +msgstr "Beïnvloed door" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 -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/Settings/SettingItem.qml:190 +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/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 -msgctxt "@window:title" -msgid "Install Package" -msgstr "Package installeren" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +msgctxt "@label" +msgid "This setting is resolved from conflicting extruder-specific values:" +msgstr "Deze instelling wordt afgeleid van strijdige extruderspecifieke waarden:" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Bestand(en) openen" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +msgctxt "@label" +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"Deze instelling heeft een andere waarde dan in het profiel.\n" +"\n" +"Klik om de waarde van het profiel te herstellen." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 -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/Settings/SettingItem.qml:334 +msgctxt "@label" +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"Deze instelling wordt normaliter berekend, maar is nu ingesteld op een absolute waarde.\n" +"\n" +"Klik om de berekende waarde te herstellen." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 -msgctxt "@title:window" -msgid "Add Printer" -msgstr "Printer Toevoegen" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +msgctxt "@label:textbox" +msgid "Search settings" +msgstr "Instellingen zoeken" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 -msgctxt "@title:window" +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:menu" +msgid "Hide this setting" +msgstr "Deze instelling verbergen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:menu" +msgid "Keep this setting visible" +msgstr "Deze instelling zichtbaar houden" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:25 +msgctxt "@info:tooltip" +msgid "3D View" +msgstr "3D-weergave" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +msgctxt "@info:tooltip" +msgid "Front View" +msgstr "Weergave voorzijde" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "Weergave bovenzijde" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "Linkeraanzicht" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "Rechteraanzicht" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "Type weergeven" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "Wachten op cloudreactie" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Add printer manually" +msgstr "Printer handmatig toevoegen" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +msgctxt "@label" +msgid "Manufacturer" +msgstr "Fabrikant" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 +msgctxt "@label" +msgid "Profile author" +msgstr "Profieleigenaar" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 +msgctxt "@label" +msgid "Printer name" +msgstr "Printernaam" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Refresh" +msgstr "Vernieuwen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "Probleemoplossing" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Add" +msgstr "Toevoegen" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +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 +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 +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 +msgctxt "@button" +msgid "Connect" +msgstr "Verbinding maken" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@text" +msgid "Add material settings and plugins from the Marketplace" +msgstr "Voeg materiaalinstellingen en plugins uit de Marketplace toe" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +msgctxt "@button" +msgid "Skip" +msgstr "Overslaan" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +msgctxt "@text" +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 +msgctxt "@label" +msgid "Empty" +msgstr "Leeg" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +msgctxt "@label" +msgid "User Agreement" +msgstr "Gebruikersovereenkomst" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" msgid "What's New" msgstr "Nieuwe functies" -#: PerObjectSettingsTool/plugin.json +#: /home/trin/Gedeeld/Projects/Cura/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 "Provides the Per Model Settings." -msgstr "Biedt de Instellingen per Model." +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." -#: PerObjectSettingsTool/plugin.json +#: ModelChecker/plugin.json msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Gereedschap voor Instellingen per Model" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" +msgid "Model Checker" +msgstr "Modelcontrole" #: 3MFReader/plugin.json msgctxt "description" @@ -6026,65 +5944,15 @@ msgctxt "name" msgid "3MF Reader" msgstr "3MF-lezer" -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Deze optie biedt ondersteuning voor het schrijven van Ultimaker Format Packages." +msgid "Provides support for writing 3MF files." +msgstr "Biedt ondersteuning voor het schrijven van 3MF-bestanden." -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "name" -msgid "UFP Writer" -msgstr "UFP-schrijver" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" +msgid "3MF Writer" +msgstr "3MF-schrijver" #: AMFReader/plugin.json msgctxt "description" @@ -6096,25 +5964,35 @@ msgctxt "name" msgid "AMF Reader" msgstr "AMF-lezer" -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Hiermee leest u G-code uit een gecomprimeerd archief." +msgid "Backup and restore your configuration." +msgstr "Een back-up maken van uw configuratie en deze herstellen." -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Lezer voor gecomprimeerde G-code" +msgid "Cura Backups" +msgstr "Cura-back-ups" -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/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" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Voorziet in de koppeling naar het slicing-back-end van de CuraEngine." -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "Nabewerking" +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" @@ -6126,65 +6004,15 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Cura-profielschrijver" -#: USBPrinting/plugin.json +#: DigitalLibrary/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." +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." -#: USBPrinting/plugin.json +#: DigitalLibrary/plugin.json msgctxt "name" -msgid "USB printing" -msgstr "USB-printen" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" #: FirmwareUpdateChecker/plugin.json msgctxt "description" @@ -6196,45 +6024,55 @@ msgctxt "name" msgid "Firmware Update Checker" msgstr "Firmware-updatecontrole" -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/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." +msgid "Provides a machine actions for updating firmware." +msgstr "Biedt machineacties voor het bijwerken van de firmware." -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Slice info" -msgstr "Slice-informatie" +msgid "Firmware Updater" +msgstr "Firmware-updater" -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/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." +msgid "Reads g-code from a compressed archive." +msgstr "Hiermee leest u G-code uit een gecomprimeerd archief." -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "Materiaalprofielen" +msgid "Compressed G-code Reader" +msgstr "Lezer voor gecomprimeerde G-code" -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/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." +msgid "Writes g-code to a compressed archive." +msgstr "Met deze optie schrijft u G-code naar een gecomprimeerd archief." -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/plugin.json msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" +msgid "Compressed G-code Writer" +msgstr "Schrijver voor gecomprimeerde G-code" -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "Nieuwe Cura-packages zoeken, beheren en installeren." +msgid "Provides support for importing profiles from g-code files." +msgstr "Biedt ondersteuning voor het importeren van profielen uit G-code-bestanden." -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "Werkset" +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" @@ -6246,245 +6084,155 @@ 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 Simulation view." -msgstr "Hiermee geeft u de simulatieweergave weer." +msgid "Provides the preview of sliced layerdata." +msgstr "Biedt voorbeeld van geslicete laaggegevens." #: SimulationView/plugin.json msgctxt "name" msgid "Simulation View" msgstr "Simulatieweergave" -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/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." +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Verzendt anonieme slice-informatie. Dit kan bij de voorkeuren worden uitgeschakeld." -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/plugin.json msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Versie-upgrade van 4.5 naar 4.6" +msgid "Slice info" +msgstr "Slice-informatie" -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/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." +msgid "Provides a normal solid mesh view." +msgstr "Biedt een normale, solide rasterweergave." -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/plugin.json msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Versie-upgrade van 2.5 naar 2.6" +msgid "Solid View" +msgstr "Solide weergave" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/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." +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" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/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/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/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/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/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/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/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/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/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" - -#: 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/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/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/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/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/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/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/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/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/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" - -#: 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" +msgid "Support Eraser" +msgstr "Supportwisser" #: TrimeshReader/plugin.json msgctxt "description" @@ -6506,45 +6254,645 @@ msgctxt "name" msgid "UFP Reader" msgstr "UFP-lezer" -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Biedt een normale, solide rasterweergave." +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Deze optie biedt ondersteuning voor het schrijven van Ultimaker Format Packages." -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "name" -msgid "Solid View" -msgstr "Solide weergave" +msgid "UFP Writer" +msgstr "UFP-schrijver" -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Biedt ondersteuning voor het schrijven van 3MF-bestanden." +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.)" -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "name" -msgid "3MF Writer" -msgstr "3MF-schrijver" +msgid "Ultimaker machine actions" +msgstr "Acties Ultimaker-machines" -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Deze optie biedt een controlestadium in Cura." +msgid "Manages network connections to Ultimaker networked printers." +msgstr "Hiermee beheert u netwerkverbindingen naar Ultimaker-netwerkprinters." -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "name" -msgid "Monitor Stage" -msgstr "Controlestadium" +msgid "Ultimaker Network Connection" +msgstr "Ultimaker-netwerkverbinding" -#: ModelChecker/plugin.json +#: USBPrinting/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." +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." -#: ModelChecker/plugin.json +#: USBPrinting/plugin.json msgctxt "name" -msgid "Model Checker" -msgstr "Modelcontrole" +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." diff --git a/resources/i18n/nl_NL/fdmextruder.def.json.po b/resources/i18n/nl_NL/fdmextruder.def.json.po index bc037bede2..e51f3c3b18 100644 --- a/resources/i18n/nl_NL/fdmextruder.def.json.po +++ b/resources/i18n/nl_NL/fdmextruder.def.json.po @@ -1,20 +1,19 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0000\n" -"PO-Revision-Date: 2021-04-16 15:03+0200\n" -"Last-Translator: Bothof \n" -"Language-Team: Dutch\n" -"Language: nl_NL\n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.4.1\n" #: fdmextruder.def.json msgctxt "machine_settings label" diff --git a/resources/i18n/nl_NL/fdmprinter.def.json.po b/resources/i18n/nl_NL/fdmprinter.def.json.po index a10f380139..9d579bc7c2 100644 --- a/resources/i18n/nl_NL/fdmprinter.def.json.po +++ b/resources/i18n/nl_NL/fdmprinter.def.json.po @@ -1,20 +1,19 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 11:59+0000\n" -"PO-Revision-Date: 2021-04-16 15:03+0200\n" -"Last-Translator: Lionbridge \n" -"Language-Team: Dutch , Dutch \n" -"Language: nl_NL\n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.4.1\n" #: fdmprinter.def.json msgctxt "machine_settings label" @@ -56,7 +55,9 @@ 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." +msgstr "" +"G-code-opdrachten die aan het begin worden uitgevoerd, gescheiden door \n" +"." #: fdmprinter.def.json msgctxt "machine_end_gcode label" @@ -68,7 +69,9 @@ 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." +msgstr "" +"G-code-opdrachten die aan het eind worden uitgevoerd, gescheiden door \n" +"." #: fdmprinter.def.json msgctxt "material_guid label" @@ -462,8 +465,8 @@ msgstr "Machinekop- en ventilatorpolygoon" #: fdmprinter.def.json 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)." +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" @@ -735,6 +738,16 @@ 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" @@ -955,6 +968,56 @@ 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" @@ -986,14 +1049,24 @@ msgid "Optimize the order in which walls are printed so as to reduce the number 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 "outer_inset_first label" -msgid "Outer Before Inner Walls" -msgstr "Buitenwanden vóór Binnenwanden" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Wandvolgorde" #: fdmprinter.def.json -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 "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" @@ -1006,84 +1079,54 @@ msgid "Prints an extra wall at every other layer. This way infill gets caught be 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 "travel_compensate_overlapping_walls_enabled label" -msgid "Compensate Wall Overlaps" -msgstr "Overlapping van Wanden Compenseren" +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Minimumbreedte wandlijn" #: fdmprinter.def.json -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 "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 "travel_compensate_overlapping_walls_0_enabled label" -msgid "Compensate Outer Wall Overlaps" -msgstr "Overlapping van Buitenwanden Compenseren" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Minimum lijnbreedte even wand" #: fdmprinter.def.json -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 "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 "travel_compensate_overlapping_walls_x_enabled label" -msgid "Compensate Inner Wall Overlaps" -msgstr "Overlapping van Binnenwanden Compenseren" +msgctxt "wall_split_middle_threshold label" +msgid "Split Middle Line Threshold" +msgstr "Drempel middelste lijn splitsen" #: fdmprinter.def.json -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_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 "wall_min_flow label" -msgid "Minimum Wall Flow" -msgstr "Minimale Wand-doorvoer" +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Minimum breedte ongelijkmatige wandlijn" #: fdmprinter.def.json -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 "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_min_flow_retract label" -msgid "Prefer Retract" -msgstr "Bij Voorkeur Intrekken" +msgctxt "wall_add_middle_threshold label" +msgid "Add Middle Line Threshold" +msgstr "Drempel middelste lijn toevoegen" #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps label" -msgid "Fill Gaps Between Walls" -msgstr "Gaten tussen wanden vullen" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option nowhere" -msgid "Nowhere" -msgstr "Nergens" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option everywhere" -msgid "Everywhere" -msgstr "Overal" - -#: fdmprinter.def.json -msgctxt "filter_out_tiny_gaps label" -msgid "Filter Out Tiny Gaps" -msgstr "Kleine gaten wegfilteren" - -#: fdmprinter.def.json -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 "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" @@ -1095,6 +1138,26 @@ 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" @@ -1728,10 +1791,7 @@ 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." +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" @@ -2197,6 +2257,26 @@ 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" @@ -2708,24 +2788,14 @@ msgid "The first few layers are printed slower than the rest of the model, to ge 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_enabled label" -msgid "Equalize Filament Flow" -msgstr "Filamentdoorvoer Afstemmen" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Verhouding voor afstemmen doorvoer" #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_max label" -msgid "Maximum Speed for Flow Equalization" -msgstr "Maximale Snelheid voor het Afstemmen van Doorvoer" - -#: fdmprinter.def.json -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 "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" @@ -2737,6 +2807,16 @@ 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 "Bewegingsacceleratie inschakelen" + +#: 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 andere acceleratiesnelheid voor bewegingen. Indien uitgeschakeld, gebruikt de beweging de acceleratiewaarde van de geprinte lijn op de bestemming." + #: fdmprinter.def.json msgctxt "acceleration_print label" msgid "Print Acceleration" @@ -2927,6 +3007,16 @@ 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 "Bewegingsschok inschakelen" + +#: 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 andere bewegingsschok voor bewegingen. Indien uitgeschakeld, gebruikt de beweging de bewegingsschokwaarde van de geprinte lijn op de bestemming." + #: fdmprinter.def.json msgctxt "jerk_print label" msgid "Print Jerk" @@ -4462,6 +4552,46 @@ 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" @@ -4626,6 +4756,16 @@ 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" @@ -5126,6 +5266,16 @@ 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" @@ -6420,6 +6570,36 @@ 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 "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "Alternerende wandrichtingen" + +#: 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 "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" + +#: 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 "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Aantal wanden grondvlak raft" + +#: 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 "command_line_settings label" msgid "Command Line Settings" @@ -6480,6 +6660,98 @@ 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." diff --git a/resources/i18n/pl_PL/cura.po b/resources/i18n/pl_PL/cura.po index d18671c271..06c7fd647b 100644 --- a/resources/i18n/pl_PL/cura.po +++ b/resources/i18n/pl_PL/cura.po @@ -1,12 +1,12 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0100\n" +"POT-Creation-Date: 2022-06-21 12:50+0200\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,449 +18,196 @@ msgstr "" "X-Generator: Poedit 3.0\n" "X-Poedit-SourceCharset: UTF-8\n" -#: /home/clamboo/Desktop/Cura/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/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "Nieznany" -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 -msgctxt "@info:title" -msgid "Backup" -msgstr "Kopia zapasowa" +#: /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/clamboo/Desktop/Cura/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/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Dostępne drukarki sieciowe" -#: /home/clamboo/Desktop/Cura/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/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Nie zastąpione" -#: /home/clamboo/Desktop/Cura/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/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/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 -msgctxt "@action:button" -msgid "Please sync the material profiles with your printers before starting to print." -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 "Zdefiniowane drukarki" -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 -msgctxt "@action:button" -msgid "New materials installed" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 -msgctxt "@action:button" -msgid "Sync materials with printers" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 -msgctxt "@action:button" -msgid "Learn more" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 -msgctxt "@message:text" -msgid "Could not save material archive to {}:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 -msgctxt "@message:title" -msgid "Failed to save material archive" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 -msgctxt "@text" -msgid "Unknown error." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 -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/clamboo/Desktop/Cura/cura/BuildVolume.py:102 -msgctxt "@info:title" -msgid "Build Volume" -msgstr "Obszar Roboczy" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Nie zastąpione" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "Nieznany" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Dostępne drukarki sieciowe" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Wszystkie Pliki (*)" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Wizualny" +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Przeliczone" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Inżynieria" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Szkic" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 -msgctxt "@label" -msgid "Custom Material" -msgstr "Niestandardowy materiał" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 -msgctxt "@label" -msgid "Custom" -msgstr "Niestandardowy" - -#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 +#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "Logowanie nie powiodło się" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Znajdowanie nowej lokalizacji obiektów" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 msgctxt "@info:title" msgid "Finding Location" msgstr "Szukanie Lokalizacji" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Nie można Znaleźć Lokalizacji" -#: /home/clamboo/Desktop/Cura/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/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 -msgctxt "@text:error" -msgid "Failed to load the archive of materials to sync it with printers." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 -msgctxt "@text:error" -msgid "The response from Digital Factory appears to be corrupted." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 -msgctxt "@text:error" -msgid "The response from Digital Factory is missing important information." -msgstr "" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 -msgctxt "@text:error" -msgid "Failed to connect to Digital Factory." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "Ładowanie drukarek..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "Ustawianie preferencji..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "Ustawianie sceny ..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "Ładowanie interfejsu ..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 +#: /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 msgctxt "@info:title" -msgid "Warning" -msgstr "Ostrzeżenie" +msgid "Backup" +msgstr "Kopia zapasowa" -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 -#, python-brace-format +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 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}" +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/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 msgctxt "@info:title" -msgid "Error" -msgstr "Błąd" +msgid "Build Volume" +msgstr "Obszar Roboczy" -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 -msgctxt "@action:button" -msgid "Skip" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "Zamknij" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 -msgctxt "@action:button" -msgid "Next" -msgstr "Następny" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 -msgctxt "@action:button" -msgid "Finish" -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "Dodaj" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Anuluj" - -#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 -#, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "Grupa #{group_nr}" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Zewnętrzna ściana" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "Ściany wewnętrzne" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Skin" -msgstr "Skin" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Infill" -msgstr "Wypełnienie" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Wypełnienie podpór" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Łączenie podpory" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Support" -msgstr "Podpory" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Obwódka" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "Wieża czyszcząca" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 -msgctxt "@tooltip" -msgid "Travel" -msgstr "Ruch jałowy" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Retrakcja" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 -msgctxt "@tooltip" -msgid "Other" -msgstr "Inny" - -#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 -#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 -msgctxt "@text:window" -msgid "The release notes could not be opened." -msgstr "" - -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura nie może się uruchomić" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

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

      \n" @@ -475,32 +222,32 @@ msgstr "" "

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

      \n" " " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 msgctxt "@action:button" msgid "Send crash report to Ultimaker" msgstr "Wyślij raport błędu do Ultimaker" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Pokaż szczegółowy raport błędu" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Pokaż folder konfiguracyjny" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Zrób Backup i Zresetuj Konfigurację" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Raport Błędu" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190 +#: /home/trin/Gedeeld/Projects/Cura/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" @@ -511,1259 +258,573 @@ msgstr "" "

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

      \n" " " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Informacje o systemie" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Nieznany" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Wersja Cura" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Platforma" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Wersja Qt" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "Wersja PyQt" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 msgctxt "@label" -msgid "Not yet initialized
      " -msgstr "Jeszcze nie uruchomiono
      " +msgid "Not yet initialized" +msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
    • OpenGL Version: {version}
    • " msgstr "
    • Wersja OpenGL: {version}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
    • OpenGL Vendor: {vendor}
    • " msgstr "
    • Wydawca OpenGL: {vendor}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
    • OpenGL Renderer: {renderer}
    • " msgstr "
    • OpenGL Renderer: {renderer}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Śledzenie błedu" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "Logi" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "Wyślij raport" -#: /home/clamboo/Desktop/Cura/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." +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:531 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "Ładowanie drukarek..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "Ustawianie preferencji..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." msgstr "" -#: /home/clamboo/Desktop/Cura/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." +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "" -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "Ustawianie sceny ..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "Ładowanie interfejsu ..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#, 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 +#, 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 msgctxt "@info:title" -msgid "Log-in failed" -msgstr "" +msgid "Warning" +msgstr "Ostrzeżenie" -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "" +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 +#, 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/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 -msgctxt "@message" -msgid "Timeout when authenticating with the account server." -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 +msgctxt "@info:title" +msgid "Error" +msgstr "Błąd" -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 -msgctxt "@message" -msgid "Could not read response." -msgstr "Nie można odczytać odpowiedzi." - -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "Zwielokrotnienie i umieszczanie przedmiotów" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "Umieść Obiekty" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Rozmieszczenie Obiektów" -#: /home/clamboo/Desktop/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/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "Nie można odczytać odpowiedzi." -#: /home/clamboo/Desktop/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/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 -msgctxt "@label" -msgid "Nozzle" -msgstr "Dysza" +#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 -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/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/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info" +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 msgctxt "@info:title" -msgid "Settings updated" -msgstr "Ustawienia zostały zaaktualizowane" +msgid "Log-in failed" +msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "Ekstruder(y) wyłączony(/e)" +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." +msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@text:error" +msgid "The response from Digital Factory is missing important information." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 msgctxt "@title:window" msgid "File Already Exists" msgstr "Plik już istnieje" -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "Nieprawidłowy adres URL pliku:" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Eksport udany" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Niestandardowy profil" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Profilowi brakuje typu jakości." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: /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 msgctxt "@label" -msgid "Per Model Settings" -msgstr "Ustawienia każdego modelu osobno" +msgid "Nozzle" +msgstr "Dysza" -#: /home/clamboo/Desktop/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/cura/Settings/MachineManager.py:857 +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/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Profile Cura" - -#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3D Plik" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 msgctxt "@info:title" -msgid "Backups" -msgstr "Kopie zapasowe" +msgid "Settings updated" +msgstr "Ustawienia zostały zaaktualizowane" -#: /home/clamboo/Desktop/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/cura/Settings/MachineManager.py:1480 +msgctxt "@info:title" +msgid "Extruder(s) Disabled" +msgstr "Ekstruder(y) wyłączony(/e)" -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Finish" msgstr "" -#: /home/clamboo/Desktop/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/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 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Anuluj" -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Wgrywanie kopii zapasowej..." - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "Wgrywanie kopii zapasowej zakończone." - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Zarządzaj kopiami zapasowymi" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Ustawienia drukarki" - -#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#, python-brace-format msgctxt "@label" -msgid "Support Blocker" -msgstr "Blokada Podpory" +msgid "Group #{group_nr}" +msgstr "Grupa #{group_nr}" -#: /home/clamboo/Desktop/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/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Zewnętrzna ściana" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Dysk wymienny" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "Ściany wewnętrzne" -#: /home/clamboo/Desktop/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/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "Skin" -#: /home/clamboo/Desktop/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/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "Wypełnienie" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/clamboo/Desktop/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/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Wypełnienie podpór" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 -#, 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/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Łączenie podpory" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 -msgctxt "@info:title" -msgid "Saving" -msgstr "Zapisywanie" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "Podpory" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 -#, 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/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Obwódka" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 -#, 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/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "Wieża czyszcząca" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 -#, 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/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "Ruch jałowy" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 -#, 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/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Retrakcja" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 -msgctxt "@info:title" -msgid "File Saved" -msgstr "Plik Zapisany" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +msgctxt "@tooltip" +msgid "Other" +msgstr "Inny" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:37 +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@action:button" -msgid "Eject" -msgstr "Wyjmij" +msgid "Next" +msgstr "Następny" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "Wyjmij urządzenie wymienne {0}" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Bezpiecznie Odłącz Urządzenie" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 -#, 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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Aktualizacja Oprogramowania Sprzętowego" - -#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Profile Cura 15.04" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Zalecane" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Niestandardowe" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 -#, 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." - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 -msgctxt "@info:title" -msgid "Open Project File" -msgstr "Otwórz Plik Projektu" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is suddenly inaccessible: {1}." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 -#, 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/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 -msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "Plik 3MF" - -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 -#: /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Pakiet Formatu Ultimaker" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "Pliki G-code" - -#: /home/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "Podgląd" - -#: /home/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Widok X-Ray" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Przetwarzanie warstw" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 -msgctxt "@info:title" -msgid "Information" -msgstr "Informacja" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 -msgctxt "@message:title" -msgid "Slicing failed" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 -msgctxt "@message:button" -msgid "Report a bug" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 -msgctxt "@message:description" -msgid "Report a bug on Ultimaker Cura's issue tracker." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 -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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "Nie można pociąć" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 -#, 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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 -#, 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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 -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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 -#, 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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 -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/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "Plik AMF" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "Skompresowany Plik G-code" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "Przetwarzanie końcowe" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "Modyfikuj G-code" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "Drukowanie USB" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Drukuj przez USB" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Drukuj przez USB" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 -msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Połączono przez USB" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 -msgctxt "@message" -msgid "Print in Progress" -msgstr "Drukowanie w toku" - -#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "Przygotuj" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "Analizowanie G-code" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "Szczegóły G-code" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 -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/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "Plik G-code" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "Obraz JPG" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "Obraz JPEG" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "Obraz PNG" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "Obraz BMP" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "Obraz GIF" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "Wypoziomuj stół" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "Wybierz aktualizacje" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:286 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:67 msgctxt "@action:button" -msgid "How to update" -msgstr "Jak zaktualizować" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 -msgctxt "@text" -msgid "Unable to read example data file." +msgid "Skip" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 +#: /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 msgctxt "@action:button" -msgid "Sync" +msgid "Close" +msgstr "Zamknij" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +msgctxt "@action:button" +msgid "Please sync the material profiles with your printers before starting to print." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 -msgctxt "@button" -msgid "Decline and remove from account" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +msgctxt "@action:button" +msgid "New materials installed" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +msgctxt "@action:button" +msgid "Sync materials" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "Zgadzam się" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Akceptowanie Licencji Wtyczki" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "Przygotuj G-code przed eksportem." - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "Widok symulacji" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 -msgctxt "@info:title" -msgid "No layers to show" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "Nie pokazuj tego komunikatu ponownie" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "Widok warstwy" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "Drukuj przez sieć" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Drukuj przez sieć" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Połączone przez sieć" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "jutro" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "dziś" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "Połącz przez sieć" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "Błąd druku" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Dane Wysłane" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 -msgctxt "@info:title" -msgid "Update your printer" -msgstr "Zaktualizuj swoją drukarkę" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "Wysyłanie zadania druku" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Przesyłanie zadania do drukarki." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "Wysyłanie materiałów do drukarki" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "Błąd sieci" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "Nie jest gospodarzem grupy" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 -msgctxt "@action" -msgid "Configure group" -msgstr "Konfiguruj grupę" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 -msgctxt "@info:title" -msgid "Are you ready for cloud printing?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 -msgctxt "@action" -msgid "Get started" -msgstr "Rozpocznij" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 -msgctxt "@action" +#: /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 +msgctxt "@action:button" msgid "Learn more" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 -msgctxt "@action:button" -msgid "Print via cloud" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +msgctxt "@message:text" +msgid "Could not save material archive to {}:" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 -msgctxt "@properties:tooltip" -msgid "Print via cloud" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +msgctxt "@message:title" +msgid "Failed to save material archive" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 -msgctxt "@info:status" -msgid "Connected via cloud" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +msgctxt "@text" +msgid "Unknown error." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 -msgctxt "@action:button" -msgid "Monitor print" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 -msgctxt "@action:tooltip" -msgid "Track the print in Ultimaker Digital Factory" -msgstr "" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 -#, python-brace-format -msgctxt "info:status Filled in with printer name and printer model." -msgid "Adding printer {name} ({model}) from your account" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 -msgctxt "info:name" -msgid "Ultimaker Digital Factory" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 -msgctxt "@title:window" -msgid "Remove printers?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 -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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "Cyfrowa wymiana zasobów COLLADA" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "Biblioteka glTF" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "Załączony JSON glTF" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Format trójkątów Stanforda" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Skompresowana cyfrowa wymiana zasobów COLLADA" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Widok modelu" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Błąd zapisu pliku 3mf." - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "Plik 3MF" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Plik Cura Project 3MF" - -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "Monitor" - -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" msgid "3D Model Assistant" msgstr "Asystent Modelu 3D" -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" msgid "" @@ -1777,1533 +838,1922 @@ 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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 -msgctxt "@label" -msgid "Mesh Type" -msgstr "Typ siatki" +#: /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." -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "Normalny model" +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "Otwórz Plik Projektu" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "Drukuj jako podpora" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Modyfikuj ustawienia nakładania" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Nie wspieraj nałożenia" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" +#: /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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" +#: /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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Wybierz ustawienia" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Wybierz Ustawienia, aby dostosować ten model" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtr..." - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Pokaż wszystko" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Kopie zapasowe cura" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Wersja Cura" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Drukarki" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Materiały" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Profile" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Pluginy" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Chcesz więcej?" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Utwórz kopię zapasową" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Automatyczne tworzenie kopii zapasowej" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "Przywróć" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Usuń kopię zapasową" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Przywróć kopię zapasową" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 -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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 -msgctxt "@button" -msgid "Sign in" -msgstr "Zaloguj" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Moje Kopie Zapasowe" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -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/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Ustawienia drukarki" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (Szerokość)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Głębokość)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Wysokość)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 -msgctxt "@label" -msgid "Build plate shape" -msgstr "Kształt stołu roboczego" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 -msgctxt "@label" -msgid "Origin at center" -msgstr "Początek na środku" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 -msgctxt "@label" -msgid "Heated bed" -msgstr "Podgrzewany stół" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 -msgctxt "@label" -msgid "Heated build volume" -msgstr "Grzany obszar roboczy" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 -msgctxt "@label" -msgid "G-code flavor" -msgstr "Wersja G-code" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Ustawienia głowicy" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -msgctxt "@label" -msgid "X min" -msgstr "X min" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -msgctxt "@label" -msgid "Y min" -msgstr "Y min" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -msgctxt "@label" -msgid "X max" -msgstr "X max" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -msgctxt "@label" -msgid "Y max" -msgstr "Y max" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "Gantry Height" -msgstr "Wysokość wózka" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Liczba ekstruderów" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" +#: /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/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "Początkowy G-code" +#: /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/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "Końcowy G-code" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Ustawienia dyszy" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 -msgctxt "@label" -msgid "Nozzle size" -msgstr "Rozmiar dyszy" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Kompatybilna średnica materiału" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Korekcja dyszy X" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Korekcja dyszy Y" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Numer Wentylatora" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "Początkowy G-code ekstrudera" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "Końcowy G-code ekstrudera" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:212 msgctxt "@title:tab" -msgid "Printer" -msgstr "Drukarka" +msgid "Recommended" +msgstr "Zalecane" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" +#: /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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 -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/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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 -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/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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 +#: /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 "Automatically upgrade Firmware" -msgstr "Automatycznie uaktualnij oprogramowanie" +msgid "Sync" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 +#: /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 "Upload custom Firmware" -msgstr "Prześlij niestandardowe oprogramowanie" +msgid "Eject" +msgstr "Wyjmij" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 +#: /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 "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ą." +msgid "Support Blocker" +msgstr "Blokada Podpory" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -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/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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 +#: /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 "Select custom firmware" -msgstr "Wybierz niestandardowe oprogramowanie" +msgid "Remove printers?" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Aktualizacja oprogramowania układowego" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 +#, python-brace-format msgctxt "@label" -msgid "Updating firmware." -msgstr "Aktualizowanie oprogramowania." +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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:489 msgctxt "@label" -msgid "Firmware update completed." -msgstr "Aktualizacja oprogramowania zakończona." +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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +#: /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 "Firmware update failed due to an unknown error." -msgstr "Aktualizacja oprogramowania nie powiodła się z powodu nieznanego błędu." +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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -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/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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -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/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "Drukowanie w toku" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -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/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "X3D Plik" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Ustawienia drukarki" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Ustawienia profilu" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 msgctxt "@action:label" msgid "Derivative from" msgstr "Pochodna z" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 -msgctxt "@action:label" -msgid "Material settings" -msgstr "Ustawienia materiału" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 msgctxt "@action:label" msgid "Mode" msgstr "Tryb" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 msgctxt "@action:label" msgid "Visible settings:" msgstr "Widoczne ustawienie:" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 poza %2" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 msgctxt "@action:button" msgid "Open" msgstr "Otwórz" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Plugin post-processingu" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Skrypty post-processingu" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "Dodaj skrypt" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 -msgctxt "@label" -msgid "Settings" -msgstr "Ustawienia" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 +msgctxt "@action:button" +msgid "Open project anyway" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 -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/3MFReader/WorkspaceDialog.qml:529 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /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 "Convert Image..." -msgstr "Konwertuj obraz ..." +msgid "Cura Backups" +msgstr "Kopie zapasowe cura" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 -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/CuraDrive/src/qml/pages/BackupsPage.qml:28 +msgctxt "@title" +msgid "My Backups" +msgstr "Moje Kopie Zapasowe" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "Wysokość podstawy od stołu w milimetrach." +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "Maksymalna odległość każdego piksela od \"Bazy.\"" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 msgctxt "@action:label" msgid "Base (mm)" msgstr "Baza (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate." -msgstr "Szerokość w milimetrach na stole." +msgid "The base height from the build plate in millimeters." +msgstr "Wysokość podstawy od stołu w milimetrach." -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 msgctxt "@action:label" msgid "Width (mm)" msgstr "Szerokość (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "Głębokość w milimetrach na stole" +msgid "The width in millimeters on the build plate" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 msgctxt "@action:label" msgid "Depth (mm)" msgstr "Głębokość (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 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." +msgid "The depth in millimeters on the build plate" +msgstr "Głębokość w milimetrach na stole" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "Ciemniejsze jest wyższe" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "Jaśniejszy jest wyższy" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 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 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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:224 msgctxt "@item:inlistbox" msgid "Linear" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 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 "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "Ilość wygładzania do zastosowania do obrazu." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 msgctxt "@action:label" msgid "Smoothing" msgstr "Wygładzanie" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /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/clamboo/Desktop/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" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "Płyta grzewcza (zestaw oficjalny lub własnej roboty)" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Poziomowanie stołu" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -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ć." - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -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." - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Rozpocznij poziomowanie stołu roboczego" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Przejdź do następnego położenia" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Wiećej informacji o zbieraniu anonimowych danych" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -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:" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Nie chcę wysyłać anonimowych danych" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Pozwól na wysyłanie anonimowych danych" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" -msgid "Marketplace" -msgstr "Marketplace" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -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." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "Instaluj" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -msgctxt "@action:button" -msgid "Installed" -msgstr "Zainstalowane" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 -msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 -msgctxt "@label" -msgid "Search materials" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "Zgodność" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" msgstr "Drukarka" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "Stół roboczy" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Ustawienia dyszy" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "Podpory" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "Jakość" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "Dane Techniczne" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "Dane Bezpieczeństwa" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "Wskazówki Drukowania" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "Strona Internetowa" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -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ć" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "Kup materiał na szpulach" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "Aktualizuj" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "Aktualizowanie" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "Zaktualizowano" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "Powrót" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 -msgctxt "@title:tab" -msgid "Plugins" -msgstr "Wtyczki" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materiał" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "Zainstalowano" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 msgctxt "@label" -msgid "Will install upon restarting" -msgstr "Zostanie zainstalowane po ponownym uruchomieniu" +msgid "Nozzle size" +msgstr "Rozmiar dyszy" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "Zaloguj aby aktualizować" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Downgrade" -msgstr "Zainstaluj poprzednią wersję" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "Odinstaluj" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /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 "Community Contributions" -msgstr "Udział Społeczności" +msgid "mm" +msgstr "mm" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 msgctxt "@label" -msgid "Community Plugins" -msgstr "Wtyczki Społeczności" +msgid "Compatible material diameter" +msgstr "Kompatybilna średnica materiału" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 msgctxt "@label" -msgid "Generic Materials" -msgstr "Materiały Podstawowe" +msgid "Nozzle offset X" +msgstr "Korekcja dyszy X" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "Uzyskiwanie pakietów..." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 msgctxt "@label" -msgid "Website" -msgstr "Strona internetowa" +msgid "Nozzle offset Y" +msgstr "Korekcja dyszy Y" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 msgctxt "@label" -msgid "Email" -msgstr "E-mail" +msgid "Cooling Fan Number" +msgstr "Numer Wentylatora" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -msgctxt "@description" -msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 -msgctxt "@label" -msgid "Version" -msgstr "Wersja" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:389 +msgctxt "@title:label" +msgid "Start G-code" +msgstr "Początkowy G-code" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 -msgctxt "@label" -msgid "Last updated" -msgstr "Ostatnia aktualizacja" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:400 +msgctxt "@title:label" +msgid "End G-code" +msgstr "Końcowy G-code" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 -msgctxt "@label" -msgid "Brand" -msgstr "Marka" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 -msgctxt "@label" -msgid "Downloads" -msgstr "Pobrań" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 -msgctxt "@info" -msgid "No material has been installed." -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -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." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15 msgctxt "@title" msgid "Changes from your account" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 msgctxt "@button" msgid "Dismiss" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 msgctxt "@label" msgid "The following packages will be added:" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "Potwierdź deinstalację" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -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." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "Materiały" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "Profile" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "Potwierdź" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "Schemat kolorów" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Kolor materiału" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Rodzaj linii" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Tryb zgodności" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "Ruchy" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "Pomoce" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "Obrys" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "Wypełnienie" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Pokaż tylko najwyższe warstwy" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "Pokaż 5 Szczegółowych Warstw" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Góra/ Dół" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Wewnętrzna ściana" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "min" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "max" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Zarządzaj drukarkami" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -msgctxt "@label" -msgid "Glass" -msgstr "Szkło" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "Zaktualizuj oprogramowanie drukarki, aby zdalnie zarządzać kolejką." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" -msgid "Loading..." -msgstr "Wczytywanie..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Niedostępne" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Nieosiągalna" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "Zajęta" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Przygotowyję..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "Drukowanie" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 -msgctxt "@label" -msgid "Untitled" -msgstr "Bez tytułu" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anonimowa" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Wymaga zmian konfiguracji" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "Szczegóły" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Drukarka niedostępna" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "Pierwsza dostępna" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "W kolejce" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Zarządzaj w przeglądarce" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "Zadania druku" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "Łączny czas druku" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "Oczekiwanie na" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Drukuj przez sieć" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 -msgctxt "@action:button" -msgid "Print" -msgstr "Drukuj" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 -msgctxt "@label" -msgid "Printer selection" -msgstr "Wybór drukarki" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Zmiany konfiguracji" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "Nadpisz" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Zmień materiał %1 z %2 na %3." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "Załaduj %3 jako materiał %1 (Nie można nadpisać)." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Zmień rdzeń drukujący %1 z %2 na %3." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "Zmień stół na %1 (Nie można nadpisać)." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "Aluminum" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Finished" -msgstr "Zakończono" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Przerywanie..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Anulowano" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Failed" -msgstr "" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Zatrzymywanie..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Paused" -msgstr "Wstrzymana" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Przywracanie..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 -msgctxt "@label:status" -msgid "Action required" -msgstr "Konieczne są działania" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Zakończone %1 z %2" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Połącz się z drukarką sieciową" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Wybierz swoją drukarkę z poniższej listy:" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "Edycja" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 -msgctxt "@action:button" -msgid "Remove" -msgstr "Usunąć" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Odśwież" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "Rodzaj" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "Wersja oprogramowania" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "Adres" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "Ta drukarka jest hostem grupy %1 drukarek." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "Drukarka pod tym adresem jeszcze nie odpowiedziała." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "Połącz" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Nieprawidłowy adres IP" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:47 msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Proszę podać poprawny adres IP." +msgid "Please read and agree with the plugin licence." +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Adres drukarki" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 +#: /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 "Enter the IP address of your printer on the network." -msgstr "Wprowadź adres IP drukarki." +msgid "You need to accept the license to install the package" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "Przesuń na początek" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Usuń" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "Ponów" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Enable" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Zatrzymywanie..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Disable" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Przywracanie..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 +msgctxt "@button" +msgid "Downgrading..." +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "Wstrzymaj" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 +msgctxt "@button" +msgid "Downgrade" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Przerywanie..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 +msgctxt "@button" +msgid "Installing..." +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Anuluj" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250 +msgctxt "@button" +msgid "Install" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -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/Marketplace/resources/qml/PackageCardHeader.qml:254 +msgctxt "@button" +msgid "Uninstall" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Przesuń zadanie drukowania na początek" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Updating..." +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -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/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Update" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Usuń zadanie drukowania" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -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/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Anuluj wydruk" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /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" @@ -3316,433 +2766,1191 @@ msgstr "" "- Sprawdź, czy drukarka jest podłączona do sieci.\n" "- Sprawdź, czy jesteś zalogowany, aby znaleźć drukarki podłączone do chmury." -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:113 msgctxt "@info" msgid "Please connect your printer to the network." msgstr "Podłącz drukarkę do sieci." -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:147 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "Pokaż instrukcję użytkownika online" -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /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/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "Widok 3D" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "Widok z przodu" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "Widok z góry" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "Widok z lewej strony" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "Widok z prawej strony" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 msgctxt "@label" -msgid "Object list" -msgstr "Lista obiektów" +msgid "Mesh Type" +msgstr "Typ siatki" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81 +msgctxt "@label" +msgid "Normal model" +msgstr "Normalny model" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "Modyfikuj ustawienia nakładania" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 "Marketplace" -msgstr "Marketplace" +msgid "Select settings" +msgstr "Wybierz ustawienia" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "&Plik" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "&Edytuj" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "&Widok" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "Opcje" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "&Rozszerzenia" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "Preferencje" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "P&omoc" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 msgctxt "@title:window" -msgid "New project" -msgstr "Nowy projekt" +msgid "Select Settings to Customize for this model" +msgstr "Wybierz Ustawienia, aby dostosować ten model" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 -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/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filtr..." -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 -msgctxt "@label:PrintjobStatus" -msgid "Slicing..." -msgstr "Cięcie..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Pokaż wszystko" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 -msgctxt "@label:PrintjobStatus" -msgid "Unable to slice" -msgstr "Nie można pociąć" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "Plugin post-processingu" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Processing" -msgstr "Przetwarzanie" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Slice" -msgstr "Potnij" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 msgctxt "@label" -msgid "Start the slicing process" -msgstr "Rozpocznij proces cięcia" +msgid "Post Processing Scripts" +msgstr "Skrypty post-processingu" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 -msgctxt "@button" -msgid "Cancel" -msgstr "Anuluj" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +msgctxt "@action" +msgid "Add a script" +msgstr "Dodaj skrypt" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 msgctxt "@label" -msgid "Time estimation" -msgstr "Szacunkowy czas" +msgid "Settings" +msgstr "Ustawienia" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 -msgctxt "@label" -msgid "Material estimation" -msgstr "Szacunkowy materiał" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 -msgctxt "@label" -msgid "No time estimation available" -msgstr "Szacunkowy czas niedostępny" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 -msgctxt "@label" -msgid "No cost estimation available" -msgstr "Szacunkowy koszt niedostępny" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "Podgląd" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 -msgctxt "@label" -msgid "Add a printer" -msgstr "Dodaj drukarkę" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Dodaj drukarkę sieciową" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Dodaj drukarkę niesieciową" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 -msgctxt "@label" -msgid "Add a Cloud printer" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:459 +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +#: /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 "Waiting for Cloud response" +msgid "Color scheme" +msgstr "Schemat kolorów" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Rodzaj linii" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:112 +msgctxt "@label:listbox" +msgid "Speed" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 -msgctxt "@label" -msgid "No printers found in your account?" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:116 +msgctxt "@label:listbox" +msgid "Layer Thickness" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 -msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:120 +msgctxt "@label:listbox" +msgid "Line Width" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:124 +msgctxt "@label:listbox" +msgid "Flow" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:164 msgctxt "@label" -msgid "Add printer by IP address" -msgstr "Dodaj drukarkę przez IP" +msgid "Compatibility Mode" +msgstr "Tryb zgodności" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 +msgctxt "@label" +msgid "Travels" +msgstr "Ruchy" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 +msgctxt "@label" +msgid "Helpers" +msgstr "Pomoce" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Infill" +msgstr "Wypełnienie" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 +msgctxt "@label" +msgid "Starts" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "Dodaj" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 msgctxt "@label" -msgid "Could not connect to device." -msgstr "Nie można połączyć się z urządzeniem." +msgid "Only Show Top Layers" +msgstr "Pokaż tylko najwyższe warstwy" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "" +msgid "Show 5 Detailed Layers On Top" +msgstr "Pokaż 5 Szczegółowych Warstw" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 msgctxt "@label" -msgid "The printer at this address has not responded yet." +msgid "Top / Bottom" +msgstr "Góra/ Dół" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 +msgctxt "@label" +msgid "Inner Wall" +msgstr "Wewnętrzna ściana" + +#: /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 "Wiećej informacji o zbieraniu anonimowych danych" + +#: /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 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 +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 +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" + +#: /home/trin/Gedeeld/Projects/Cura/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ć." + +#: /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." + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "Rozpocznij poziomowanie stołu roboczego" + +#: /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" + +#: /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" + +#: /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)" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@action:button" +msgid "Remove" +msgstr "Usunąć" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 "Ta drukarka nie jest skonfigurowana jako host dla grupy drukarek." + +#: /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 "Ta drukarka jest hostem grupy %1 drukarek." + +#: /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 "Drukarka pod tym adresem jeszcze nie odpowiedziała." -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 -msgctxt "@button" -msgid "Back" -msgstr "Wstecz" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +msgctxt "@action:button" msgid "Connect" msgstr "Połącz" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "Umowa z użytkownikiem" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Nieprawidłowy adres IP" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "Odrzuć i zamknij" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Witaj w Ultimaker Cura" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +#: /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 follow these steps to set up Ultimaker Cura. This will only take a few moments." +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 +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 +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 +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "Zmiany konfiguracji" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +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 +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 +msgctxt "@label" +msgid "Move to top" +msgstr "Przesuń na początek" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 +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 +msgctxt "@label" +msgid "Resume" +msgstr "Ponów" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 +msgctxt "@label" +msgid "Pausing..." +msgstr "Zatrzymywanie..." + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 +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 +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 +msgctxt "@label" +msgid "Abort" +msgstr "Anuluj" + +#: /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 "Czy jesteś pewien, że chcesz przesunąć %1 na początek kolejki?" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 +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 +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 +msgctxt "@window:title" +msgid "Delete print job" +msgstr "Usuń zadanie drukowania" + +#: /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 "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 +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/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "Rozpocznij" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:335 +msgctxt "@label:status" +msgid "Loading..." +msgstr "Wczytywanie..." -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +#: /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 +msgctxt "@label" +msgid "Unavailable printer" +msgstr "Drukarka niedostępna" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label:status" +msgid "Finished" +msgstr "Zakończono" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:status" +msgid "Failed" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:status" +msgid "Paused" +msgstr "Wstrzymana" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:status" +msgid "Action required" +msgstr "Konieczne są działania" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Queued" +msgstr "W kolejce" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:63 +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 +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 +msgctxt "@label" +msgid "Print jobs" +msgstr "Zadania druku" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:107 +msgctxt "@label" +msgid "Total print time" +msgstr "Łączny czas druku" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:116 +msgctxt "@label" +msgid "Waiting for" +msgstr "Oczekiwanie na" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Print" +msgstr "Drukuj" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 msgctxt "@label" msgid "Sign in to the Ultimaker platform" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" +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 "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" -msgid "Skip" +msgid "Create a free Ultimaker account" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 -msgctxt "@text" -msgid "Create a free Ultimaker Account" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 +msgctxt "@label" +msgid "Checking..." msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 msgctxt "@label" -msgid "Manufacturer" -msgstr "Producent" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 -msgctxt "@label" -msgid "Profile author" +msgid "Account synced" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 msgctxt "@label" -msgid "Printer name" -msgstr "Nazwa drukarki" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 -msgctxt "@text" -msgid "Please name your printer" +msgid "Something went wrong..." msgstr "" -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "Odśwież" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "Dodaj drukarkę przez IP" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 +msgctxt "@button" +msgid "Install pending updates" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" -msgid "Troubleshooting" -msgstr "Rozwiązywanie problemów" +msgid "No time estimation available" +msgstr "Szacunkowy czas niedostępny" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Pomóż nam ulepszyć Ultimaker Cura" +msgid "No cost estimation available" +msgstr "Szacunkowy koszt niedostępny" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -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/ActionPanel/OutputProcessWidget.qml:127 +msgctxt "@button" +msgid "Preview" +msgstr "Podgląd" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "Typy maszyn" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "Zużycie materiału" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "Ilość warstw" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "Ustawienia druku" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "Więcej informacji" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Material estimation" +msgstr "Szacunkowy materiał" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:PrintjobStatus" +msgid "Unable to slice" +msgstr "Nie można pociąć" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +msgctxt "@button" +msgid "Processing" +msgstr "Przetwarzanie" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +msgctxt "@button" +msgid "Slice" +msgstr "Potnij" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Cancel" +msgstr "Anuluj" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu" +msgid "Exit Full Screen" +msgstr "Wyłącz tryb pełnoekranowy" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 +msgctxt "@action:inmenu menubar:edit" +msgid "&Undo" +msgstr "&Cofnij" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:file" +msgid "&Quit" +msgstr "&Zamknij" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "Front View" +msgstr "Widok z przodu" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "Bottom View" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "Right Side View" +msgstr "Widok z prawej strony" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 +msgctxt "@action:inmenu" +msgid "Configure Cura..." +msgstr "Konfiguruj Cura..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 +msgctxt "@action:inmenu menubar:printer" +msgid "&Add Printer..." +msgstr "&Dodaj drukarkę..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 +msgctxt "@action:inmenu menubar:printer" +msgid "Manage Pr&inters..." +msgstr "Zarządzaj drukarkami..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 +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." +msgid "Add more materials from Marketplace" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 +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 +msgctxt "@action:inmenu menubar:profile" +msgid "&Discard current changes" +msgstr "&Odrzuć bieżące zmiany" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 +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 +msgctxt "@action:inmenu menubar:profile" +msgid "Manage Profiles..." +msgstr "Zarządzaj profilami..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 +msgctxt "@action:inmenu menubar:help" +msgid "Show Online &Documentation" +msgstr "Pokaż dokumentację internetową" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 +msgctxt "@action:inmenu menubar:help" +msgid "Report a &Bug" +msgstr "Zgłoś błąd" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 +msgctxt "@action:inmenu menubar:help" msgid "What's New" +msgstr "Co nowego" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 +msgctxt "@action:inmenu menubar:help" +msgid "About..." +msgstr "O..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 +msgctxt "@action:inmenu menubar:edit" +msgid "Delete Selected" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "Pusty" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 +msgctxt "@action:inmenu menubar:edit" +msgid "Center Selected" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 +msgctxt "@action:inmenu menubar:edit" +msgid "Multiply Selected" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 +msgctxt "@action:inmenu" +msgid "Delete Model" +msgstr "Usuń model" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 +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 +msgctxt "@action:inmenu menubar:edit" +msgid "&Group Models" +msgstr "&Grupuj modele" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 +msgctxt "@action:inmenu menubar:edit" +msgid "Ungroup Models" +msgstr "Rozgrupuj modele" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 +msgctxt "@action:inmenu menubar:edit" +msgid "&Merge Models" +msgstr "Połącz modele" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 +msgctxt "@action:inmenu" +msgid "&Multiply Model..." +msgstr "&Powiel model..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Wybierz wszystkie modele" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 +msgctxt "@action:inmenu menubar:edit" +msgid "Clear Build Plate" +msgstr "Wyczyść stół" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 +msgctxt "@action:inmenu menubar:file" +msgid "Reload All Models" +msgstr "Przeładuj wszystkie modele" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models" +msgstr "Ułóż wszystkie modele" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Wybór ułożenia" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 +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 +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 +msgctxt "@action:inmenu menubar:file" +msgid "&Open File(s)..." +msgstr "&Otwórz plik(i)..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 +msgctxt "@action:inmenu menubar:file" +msgid "&New Project..." +msgstr "&Nowy projekt..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 +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 +msgctxt "@action:menu" +msgid "Configure setting visibility..." +msgstr "Skonfiguruj widoczność ustawień ..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Extend Ultimaker Cura with plugins and material profiles." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +msgctxt "@tooltip:button" +msgid "Become a 3D printing expert with Ultimaker e-learning." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +msgctxt "@tooltip:button" +msgid "Learn how to get started with Ultimaker Cura." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 +msgctxt "@label" +msgid "Hex" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 +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 +msgctxt "@title:tab" +msgid "General" +msgstr "Ogólny" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +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 +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 +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 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Profile" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +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 +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 +msgctxt "@title:window" +msgid "Open file(s)" +msgstr "Otwórz plik(i)" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +msgctxt "@window:title" +msgid "Install Package" +msgstr "Instaluj pakiety" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Otwórz plik(i)" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +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 +msgctxt "@title:window" +msgid "Add Printer" +msgstr "Dodaj drukarkę" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +msgctxt "@title:window" +msgid "What's New" +msgstr "Co nowego" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15 msgctxt "@title:window The argument is the application name." msgid "About %1" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57 msgctxt "@label" msgid "version: %1" msgstr "version: %1" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." msgstr "Kompletne rozwiązanie do druku przestrzennego." -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85 msgctxt "@info:credit" msgid "" "Cura is developed by Ultimaker B.V. in cooperation with the community.\n" @@ -3751,349 +3959,1639 @@ 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/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" msgid "Graphical user interface" msgstr "Graficzny interfejs użytkownika" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 msgctxt "@label" msgid "Application framework" msgstr "Struktura aplikacji" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 msgctxt "@label" msgid "G-code generator" msgstr "Generator g-code" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 msgctxt "@label" msgid "Interprocess communication library" msgstr "Biblioteka komunikacji międzyprocesowej" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" -msgid "Programming language" -msgstr "Język programowania" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" -msgid "GUI framework" -msgstr "Framework GUI" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" -msgid "GUI framework bindings" -msgstr "Powiązania Frameworka GUI" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" -msgid "C/C++ Binding library" -msgstr "Biblioteka Powiązań C/C++" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 -msgctxt "@label" -msgid "Data interchange format" -msgstr "Format wymiany danych" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 -msgctxt "@label" -msgid "Support library for scientific computing" -msgstr "Wsparcie biblioteki do obliczeń naukowych" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" -msgid "Support library for faster math" -msgstr "Wsparcie biblioteki dla szybszej matematyki" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" -msgid "Support library for handling STL files" -msgstr "Wsparcie biblioteki do obsługi plików STL" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" -msgid "Support library for handling planar objects" -msgstr "Biblioteka pomocnicza do obsługi obiektów płaskich" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" -msgid "Support library for handling triangular meshes" -msgstr "Biblioteka pomocnicza do obsługi siatek trójkątów" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" -msgid "Support library for handling 3MF files" -msgstr "Wsparcie biblioteki do obsługi plików 3MF" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 -msgctxt "@label" -msgid "Support library for file metadata and streaming" -msgstr "Biblioteka pomocy dla metadanych plików i przesyłania strumieniowego" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 -msgctxt "@label" -msgid "Serial communication library" -msgstr "Biblioteka komunikacji szeregowej" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 -msgctxt "@label" -msgid "ZeroConf discovery library" -msgstr "Bilbiotek poszukująca Zeroconf" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" -msgid "Polygon clipping library" -msgstr "Biblioteka edytująca pola" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@Label" -msgid "Static type checker for Python" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@Label" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 -msgctxt "@Label" -msgid "Python Error tracking library" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 -msgctxt "@label" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 msgctxt "@label" msgid "Python bindings for libnest2d" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 msgctxt "@label" -msgid "Support library for system keyring access" +msgid "Polygon packing library, developed by Prusa Research" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 msgctxt "@label" -msgid "Python extensions for Microsoft Windows" -msgstr "" +msgid "Support library for handling 3MF files" +msgstr "Wsparcie biblioteki do obsługi plików 3MF" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 +msgctxt "@label" +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" +msgid "Programming language" +msgstr "Język programowania" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +msgctxt "@label" +msgid "GUI framework" +msgstr "Framework GUI" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label" +msgid "GUI framework bindings" +msgstr "Powiązania Frameworka GUI" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label" +msgid "C/C++ Binding library" +msgstr "Biblioteka Powiązań C/C++" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label" +msgid "Data interchange format" +msgstr "Format wymiany danych" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 msgctxt "@label" msgid "Font" msgstr "Czcionka" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 msgctxt "@label" -msgid "SVG icons" -msgstr "Ikony SVG" +msgid "Polygon clipping library" +msgstr "Biblioteka edytująca pola" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +msgctxt "@label" +msgid "JSON parser" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label" +msgid "Utility functions, including an image loader" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label" +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" +msgid "Root Certificates for validating SSL trustworthiness" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +msgctxt "@label" +msgid "Compatibility between Python 2 and 3" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label" +msgid "Support library for system keyring access" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +msgctxt "@label" +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" +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" +msgid "Python bindings for Clipper" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label" +msgid "Serial communication library" +msgstr "Biblioteka komunikacji szeregowej" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label" +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" +msgid "Python Error tracking library" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label" +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" +msgid "ZeroConf discovery library" +msgstr "Bilbiotek poszukująca Zeroconf" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 +msgctxt "@label" +msgid "Universal build system configuration" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 +msgctxt "@label" +msgid "Dependency and package manager" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label" +msgid "Packaging Python-applications" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 msgctxt "@label" msgid "Linux cross-distribution application deployment" msgstr "Wdrożenie aplikacji pomiędzy dystrybucjami Linux" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Otwórz plik(i)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 -msgctxt "@action:button" -msgid "Import all as models" -msgstr "Importuj wszystkie jako modele" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 -msgctxt "@title:window" -msgid "Save Project" -msgstr "Zapisz projekt" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Ekstruder %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & materiał" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 -msgctxt "@action:label" -msgid "Material" -msgstr "Materiał" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "Nie pokazuj podsumowania projektu podczas ponownego zapisywania" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 -msgctxt "@action:button" -msgid "Save" -msgstr "Zapisz" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 -msgctxt "@title:window" -msgid "Discard or Keep changes" -msgstr "Odrzuć lub zachowaj zmiany" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 -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'." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:178 +msgctxt "@label" +msgid "Generating Windows installers" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 -msgctxt "@title:column" -msgid "Profile settings" -msgstr "Ustawienia profilu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 -msgctxt "@title:column" -msgid "Current changes" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 -msgctxt "@option:discardOrKeep" -msgid "Always ask me this" -msgstr "Zawsze pytaj o to" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 -msgctxt "@option:discardOrKeep" -msgid "Discard and never ask again" -msgstr "Odrzuć i nigdy nie pytaj" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 -msgctxt "@option:discardOrKeep" -msgid "Keep and never ask again" -msgstr "Zachowaj i nigdy nie pytaj" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 -msgctxt "@action:button" -msgid "Discard changes" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 -msgctxt "@action:button" -msgid "Keep changes" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17 msgctxt "@title:window" msgid "Open project file" msgstr "Otwórz plik projektu" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:83 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/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:90 msgctxt "@text:window" msgid "Remember my choice" msgstr "Zapamiętaj mój wybór" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 msgctxt "@action:button" msgid "Open as project" msgstr "Otwórz jako projekt" -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 msgctxt "@action:button" msgid "Import models" msgstr "Importuj modele" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 -msgctxt "@label" -msgid "Active print" -msgstr "Aktywny wydruk" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13 +msgctxt "@title:window" +msgid "Discard or Keep changes" +msgstr "Odrzuć lub zachowaj zmiany" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 -msgctxt "@label" -msgid "Job Name" -msgstr "Nazwa pracy" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 -msgctxt "@label" -msgid "Printing Time" -msgstr "Czas druku" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 -msgctxt "@label" -msgid "Estimated time left" -msgstr "Szacowany czas pozostały" - -#: /home/clamboo/Desktop/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." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:49 +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/clamboo/Desktop/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." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +msgctxt "@title:column" +msgid "Profile settings" +msgstr "Ustawienia profilu" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +msgctxt "@title:column" +msgid "Current changes" msgstr "" -#: /home/clamboo/Desktop/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." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:104 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:799 +msgctxt "@option:discardOrKeep" +msgid "Always ask me this" +msgstr "Zawsze pytaj o to" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +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 +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 +msgctxt "@action:button" +msgid "Discard changes" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +msgctxt "@action:button" +msgid "Keep changes" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 +#: /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?" +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 +msgctxt "@action:button" +msgid "Import all as models" +msgstr "Importuj wszystkie jako modele" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Ekstruder %1" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & materiał" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +msgctxt "@action:label" +msgid "Material" +msgstr "Materiał" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +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 +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 +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 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "Opcje" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Marketplace" +msgstr "Marketplace" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Marketplace" +msgstr "Marketplace" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@label" +msgid "Select configuration" +msgstr "Wybierz konfigurację" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Enabled" +msgstr "Włączona" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +msgctxt "@label" +msgid "Material" +msgstr "Materiał" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +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 +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 +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 +msgctxt "@label" +msgid "Number of Copies" +msgstr "Liczba kopii" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "&Rozszerzenia" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "Eksportuj Zaznaczenie..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "Materiał" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "Podstawowe" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "Preferencje" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label:category menu label" +msgid "Local printers" +msgstr "Drukarki lokalne" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "Widoczne Ustawienia" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "Ustaw Widoczność Ustawień..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "&Pozycja kamery" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "Perspektywiczny" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "Drukarka nie akceptuje poleceń" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "Drukowanie..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "Wstrzymano" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "Przygotowywanie ..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Abort Print" +msgstr "Anuluj Wydruk" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Is printed as support." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@action:button" +msgid "Defaults" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +msgctxt "@label" +msgid "Interface" +msgstr "Interfejs" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +msgctxt "@heading" +msgid "-- incomplete --" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +msgctxt "@label" +msgid "Currency:" +msgstr "Waluta:" + +#: /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." +msgid "Theme*:" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +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 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "Automatyczne Cięcie" + +#: /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." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "Zachowanie okna edycji" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +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 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "Wyświetl zwis" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +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 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "Renderowanie z kamery:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +msgid "Perspective" +msgstr "Perspektywiczny" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +msgid "Orthographic" +msgstr "Rzut ortograficzny" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "Otwieranie i zapisywanie plików" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +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 +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619 +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 +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 +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 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "Skaluj duże modele" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "Zawsze pytaj" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +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 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "Zawsze importuj modele" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +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 +msgctxt "@label" +msgid "Profiles" +msgstr "Profile" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +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 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "Zawsze odrzucaj wprowadzone zmiany" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:801 +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 +msgctxt "@label" +msgid "Privacy" +msgstr "Prywatność" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +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 +msgctxt "@label" +msgid "Updates" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +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 +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 +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 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +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 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +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 +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Rename" +msgstr "Zmień nazwę" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Import" +msgstr "Importuj" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Importuj Materiał" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Eksportuj Materiał" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 msgctxt "@button" -msgid "Add printer" -msgstr "Dodaj drukarkę" +msgid "Why do I need to sync material profiles?" +msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 msgctxt "@button" -msgid "Manage printers" -msgstr "Zarządzaj drukarkami" +msgid "Start" +msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +msgctxt "@title:header" +msgid "Sign in" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +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 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +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 +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 +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 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +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 +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 +msgctxt "@button" +msgid "Refresh List" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +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 +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 +msgctxt "@button" +msgid "Sync" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +msgctxt "@button" +msgid "Syncing" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +msgctxt "@title:header" +msgid "No printers found" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +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 +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 +msgctxt "@button" +msgid "Refresh" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +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." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:663 +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:664 +msgctxt "@text" +msgid "Save the .umm file on a USB stick." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:665 +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 +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 +msgctxt "@button" +msgid "Back" +msgstr "Wstecz" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +msgctxt "@button" +msgid "Export material archive" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 msgctxt "@label" -msgid "Connected printers" -msgstr "Podłączone drukarki" +msgid "Display Name" +msgstr "Wyświetlana nazwa" -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171 msgctxt "@label" -msgid "Preset printers" -msgstr "Zdefiniowane drukarki" +msgid "Brand" +msgstr "Marka" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Color" +msgstr "Kolor" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Properties" +msgstr "Właściwości" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Diameter" +msgstr "Średnica" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Filament weight" +msgstr "Waga filamentu" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Cost per Meter" +msgstr "Koszt na metr" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Unlink Material" +msgstr "Odłącz materiał" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Adhesion Information" +msgstr "Informacje dotyczące przyczepności" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" msgid "Print settings" msgstr "Ustawienia druku" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -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/Preferences/ProfilesPage.qml:59 +msgctxt "@label" +msgid "Profiles compatible with active printer:" +msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:label" +msgid "Some settings from current profile were overwritten." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:140 +msgctxt "@action:button" +msgid "Update profile." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "Odrzuć bieżące zmiany" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Ustawienia ogólne" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Eksportuj Profil" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "Widoczność ustawienia" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Active print" +msgstr "Aktywny wydruk" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +msgctxt "@label" +msgid "Job Name" +msgstr "Nazwa pracy" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +msgctxt "@label" +msgid "Printing Time" +msgstr "Czas druku" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" msgid "Profile" msgstr "Profil" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 msgctxt "@tooltip" msgid "" "Some setting/override values are different from the values stored in the profile.\n" @@ -4104,1752 +5602,132 @@ msgstr "" "\n" "Kliknij, aby otworzyć menedżer profili." -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158 msgctxt "@label:header" msgid "Custom profiles" msgstr "Profile niestandardowe" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "Odrzuć bieżące zmiany" +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:142 msgctxt "@button" msgid "Recommended" msgstr "Polecane" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:156 msgctxt "@button" msgid "Custom" msgstr "Niestandardowe" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 msgctxt "@label:Should be short" msgid "On" msgstr "Wł" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 msgctxt "@label:Should be short" msgid "Off" msgstr "Wył" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 msgctxt "@label" msgid "Experimental" msgstr "Eksperymentalne" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 -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" +#: /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/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 -msgctxt "@label" -msgid "Profiles" -msgstr "Profile" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +msgctxt "@info" +msgid "custom profile is overriding some settings." +msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 -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." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 +msgctxt "@info" +msgid "Some settings were changed." +msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 -msgctxt "@label" -msgid "Support" -msgstr "Podpory" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 -msgctxt "@label" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such 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/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 -msgctxt "@label" -msgid "Gradual infill" -msgstr "Stopniowe wypełnienie" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 -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ę." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 msgctxt "@label" msgid "Adhesion" msgstr "Przyczepność" -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 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/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "Drukarki dostępne w sieci" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "Drukarki lokalne" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "Materiał" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "Ulubione" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "Podstawowe" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:198 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:" +msgid "Gradual infill" +msgstr "Stopniowe wypełnienie" -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "Zduplikuj wybrany model" -msgstr[1] "Zduplikuj wybrane modele" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:236 msgctxt "@label" -msgid "Number of Copies" -msgstr "Liczba kopii" +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ę." -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "&Eksportuj..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "Eksportuj Zaznaczenie..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "Konfiguracje" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "Niestandardowe" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:26 msgctxt "@label" -msgid "Printer" -msgstr "Drukarka" +msgid "Resolution" +msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 msgctxt "@label" -msgid "Enabled" -msgstr "Włączona" +msgid "Support" +msgstr "Podpory" -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 msgctxt "@label" -msgid "Material" -msgstr "Materiał" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such 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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 -msgctxt "@tooltip" -msgid "The configuration of this extruder is not allowed, and prohibits slicing." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +msgctxt "@error" +msgid "Configuration not supported" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 -msgctxt "@tooltip" -msgid "There are no profiles matching the configuration of this extruder." +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 -msgctxt "@label" -msgid "Select configuration" -msgstr "Wybierz konfigurację" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 -msgctxt "@label" -msgid "Configurations" -msgstr "Konfiguracje" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "Ładowanie dostępnych konfiguracji z drukarki..." - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "Marketplace" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 +msgctxt "@button:label" +msgid "Learn more" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "&Drukarka" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Materiał" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Ustaw jako aktywną głowicę" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Włącz Ekstruder" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Wyłącz Ekstruder" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "Otwórz &ostatnio używane" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "Widoczne Ustawienia" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "Ustaw Widoczność Ustawień..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "&Pozycja kamery" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "Widok z kamery" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "Perspektywiczny" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "Rzut ortograficzny" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "P&ole robocze" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 -msgctxt "@label" -msgid "View type" -msgstr "Typ widoku" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 -msgctxt "@label" -msgid "Is printed as support." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "" -msgstr[1] "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Profile" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 -msgctxt "@action:button" -msgid "Activate" -msgstr "Aktywuj" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "Stwórz" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "Duplikuj" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 -msgctxt "@action:button" -msgid "Rename" -msgstr "Zmień nazwę" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -msgctxt "@action:button" -msgid "Import" -msgstr "Importuj" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -msgctxt "@action:button" -msgid "Export" -msgstr "Eksportuj" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Stwórz profil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "Podaj nazwę tego profilu." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Duplikuj profil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Potwierdź Usunięcie" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Zmień nazwę profilu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Importuj Profil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Eksportuj Profil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "Drukarka: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "Aktualizuj profil z bieżącymi ustawieniami" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "Aktualne ustawienia odpowiadają wybranemu profilowi." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Ustawienia ogólne" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 -msgctxt "@title:tab" -msgid "General" -msgstr "Ogólny" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 -msgctxt "@label" -msgid "Interface" -msgstr "Interfejs" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 -msgctxt "@label" -msgid "Currency:" -msgstr "Waluta:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 -msgctxt "@label" -msgid "Theme:" -msgstr "Motyw:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 -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ć." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Tnij automatycznie podczas zmiany ustawień." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Automatyczne Cięcie" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "Zachowanie okna edycji" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Wyświetl zwis" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Wyśrodkuj kamerę kiedy przedmiot jest zaznaczony" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "Czy domyślne zachowanie zoomu powinno zostać odwrócone?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Odwróć kierunek zoomu kamery." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "Czy przybliżanie powinno poruszać się w kierunku myszy?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "Przybliżaj w kierunku myszy" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "Upewnij się, że modele są oddzielone" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "Automatycznie upuść modele na stół roboczy" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "Pokaż wiadomości ostrzegawcze w czytniku g-code." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "Wiadomość ostrzegawcza w czytniku g-code" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "Czy warstwa powinna być wymuszona w trybie zgodności?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "Wymuszenie widoku warstw w trybie zgodności (wymaga ponownego uruchomienia)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "Przywróć pozycję okna przy starcie" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "Jakiego rodzaju kamery należy użyć do renderowania?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "Renderowanie z kamery:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 -msgid "Perspective" -msgstr "Perspektywiczny" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 -msgid "Orthographic" -msgstr "Rzut ortograficzny" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Otwieranie i zapisywanie plików" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 -msgctxt "@info:tooltip" -msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 -msgctxt "@info:tooltip" -msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 -msgctxt "@option:check" -msgid "Clear buildplate before loading model into the single instance" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Skaluj duże modele" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Skaluj bardzo małe modele" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "Czy modele powinny zostać zaznaczone po załadowaniu?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "Zaznaczaj modele po załadowaniu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "Dodaj przedrostek maszyny do nazwy zadania" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "Pokaż okno podsumowania podczas zapisywaniu projektu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "Domyślne zachowanie podczas otwierania pliku projektu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "Domyślne zachowanie podczas otwierania pliku projektu: " - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "Zawsze pytaj" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Zawsze otwieraj jako projekt" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Zawsze importuj modele" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "Zawsze odrzucaj wprowadzone zmiany" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "Zawsze przenoś wprowadzone zmiany do nowego profilu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 -msgctxt "@label" -msgid "Privacy" -msgstr "Prywatność" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "Wyślij (anonimowe) informacje o drukowaniu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 -msgctxt "@action:button" -msgid "More information" -msgstr "Więcej informacji" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 -msgctxt "@label" -msgid "Updates" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Sprawdź, dostępność aktualizacji podczas uruchamiania" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 -msgctxt "@info:tooltip" -msgid "When checking for updates, only check for stable releases." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 -msgctxt "@option:radio" -msgid "Stable releases only" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 -msgctxt "@info:tooltip" -msgid "When checking for updates, check for both stable and for beta releases." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 -msgctxt "@option:radio" -msgid "Stable and Beta releases" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 -msgctxt "@option:check" -msgid "Get notifications for plugin updates" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "Informacja" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "Potwierdź Zmianę Średnicy" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "Wyświetlana nazwa" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "Typ Materiału" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "Kolor" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "Właściwości" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "Gęstość" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "Średnica" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "Koszt Filamentu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "Waga filamentu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "Długość Filamentu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Koszt na metr" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "Odłącz materiał" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "Opis" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Informacje dotyczące przyczepności" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "Stwórz" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Duplikuj" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "Drukarka" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Importuj Materiał" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Udało się zaimportować materiał %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Eksportuj Materiał" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Udało się wyeksportować materiał do %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 -msgctxt "@title:window" -msgid "Sync materials with printers" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 -msgctxt "@title:header" -msgid "Sync materials with printers" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 -msgctxt "@text" -msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 -msgctxt "@button" -msgid "Start" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 -msgctxt "@button" -msgid "Why do I need to sync material profiles?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 -msgctxt "@title:header" -msgid "Sign in" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 -msgctxt "@button" -msgid "Sync materials with USB" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 -msgctxt "@title:header" -msgid "The following printers will receive the new material profiles:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 -msgctxt "@title:header" -msgid "Something went wrong when sending the materials to the printers." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 -msgctxt "@title:header" -msgid "Material profiles successfully synced with the following printers:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 -msgctxt "@button" -msgid "Troubleshooting" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 -msgctxt "@text Asking the user whether printers are missing in a list." -msgid "Printers missing?" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 -msgctxt "@text" -msgid "Make sure all your printers are turned ON and connected to Digital Factory." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 -msgctxt "@button" -msgid "Refresh List" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 -msgctxt "@button" -msgid "Try again" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Done" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 -msgctxt "@button" -msgid "Sync" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 -msgctxt "@button" -msgid "Syncing" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 -msgctxt "@title:header" -msgid "No printers found" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 -msgctxt "@button" -msgid "Learn how to connect your printer to Digital Factory" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 -msgctxt "@button" -msgid "Refresh" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 -msgctxt "@title:header" -msgid "Sync material profiles via USB" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 -msgctxt "@text" -msgid "Click the export material archive button." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 -msgctxt "@text" -msgid "Save the .umm file on a USB stick." -msgstr "" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 -msgctxt "@button" -msgid "How to load new material profiles to my printer" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Export material archive" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Widoczność ustawienia" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Zaznacz wszystko" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 -msgctxt "@title:tab" -msgid "Printers" -msgstr "Drukarki" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Przeliczone" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 msgctxt "@title:column" msgid "Setting" msgstr "Ustawienie" -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 msgctxt "@title:column" msgid "Profile" msgstr "Profil" -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 msgctxt "@title:column" msgid "Current" msgstr "Aktualny" -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:39 +msgctxt "@title:column Unit of measurement" msgid "Unit" -msgstr "Jednostka" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "Nie podłączono do drukarki" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "Drukarka nie akceptuje poleceń" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "W naprawie. Sprawdź drukarkę" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "Utracone połączenie z drukarką" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "Drukowanie..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "Wstrzymano" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "Przygotowywanie ..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Usuń wydruk" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "Anuluj Wydruk" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "Czy na pewno chcesz przerwać drukowanie?" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 -msgctxt "@label:button" -msgid "My printers" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 -msgctxt "@tooltip:button" -msgid "Monitor printers in Ultimaker Digital Factory." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/SearchBar.qml:17 +msgctxt "@placeholder" +msgid "Search" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 -msgctxt "@tooltip:button" -msgid "Create print projects in Digital Library." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 -msgctxt "@label:button" -msgid "Print jobs" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 -msgctxt "@tooltip:button" -msgid "Monitor print jobs and reprint from your print history." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 -msgctxt "@tooltip:button" -msgid "Extend Ultimaker Cura with plugins and material profiles." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 -msgctxt "@tooltip:button" -msgid "Become a 3D printing expert with Ultimaker e-learning." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 -msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 -msgctxt "@tooltip:button" -msgid "Learn how to get started with Ultimaker Cura." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 -msgctxt "@label:button" -msgid "Ask a question" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 -msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 -msgctxt "@label:button" -msgid "Report a bug" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 -msgctxt "@tooltip:button" -msgid "Let developers know that something is going wrong." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 -msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "Kontrola drukarką" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "Pozycja Swobodnego Ruchu" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Dystans Swobodnego Ruchu" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "Wyślij G-code" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "Ekstruder" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "Aktualna temperatura tej głowicy." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "Temperatura do wstępnego podgrzewania głowicy." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Anuluj" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Podgrzewanie wstępne" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Kolor materiału w tym ekstruderze." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Materiał w głowicy drukującej." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "Dysza włożona do tego ekstrudera." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "Drukarka nie jest podłączona." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "Stół roboczy" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -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/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "Temperatura do wstępnego podgrzewania stołu." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -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/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "Zaloguj" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 -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 "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 -msgctxt "@button" -msgid "Create a free Ultimaker account" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 -msgctxt "@button" -msgid "Sign Out" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 -msgctxt "@label" -msgid "Checking..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 -msgctxt "@label" -msgid "Account synced" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 -msgctxt "@label" -msgid "Something went wrong..." -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 -msgctxt "@button" -msgid "Install pending updates" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 -msgctxt "@button" -msgid "Check for account updates" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "Bez tytułu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 -msgctxt "@label" -msgid "No items to select from" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "Pokaż przewodnik rozwiązywania problemów online" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 -msgctxt "@action:inmenu" -msgid "Toggle Full Screen" -msgstr "Przełącz tryb pełnoekranowy" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 -msgctxt "@action:inmenu" -msgid "Exit Full Screen" -msgstr "Wyłącz tryb pełnoekranowy" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 -msgctxt "@action:inmenu menubar:edit" -msgid "&Undo" -msgstr "&Cofnij" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 -msgctxt "@action:inmenu menubar:edit" -msgid "&Redo" -msgstr "&Ponów" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 -msgctxt "@action:inmenu menubar:file" -msgid "&Quit" -msgstr "&Zamknij" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 -msgctxt "@action:inmenu menubar:view" -msgid "3D View" -msgstr "Widok 3D" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 -msgctxt "@action:inmenu menubar:view" -msgid "Front View" -msgstr "Widok z przodu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 -msgctxt "@action:inmenu menubar:view" -msgid "Top View" -msgstr "Widok z góry" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 -msgctxt "@action:inmenu menubar:view" -msgid "Bottom View" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 -msgctxt "@action:inmenu menubar:view" -msgid "Left Side View" -msgstr "Widok z lewej strony" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 -msgctxt "@action:inmenu menubar:view" -msgid "Right Side View" -msgstr "Widok z prawej strony" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 -msgctxt "@action:inmenu" -msgid "Configure Cura..." -msgstr "Konfiguruj Cura..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 -msgctxt "@action:inmenu menubar:printer" -msgid "&Add Printer..." -msgstr "&Dodaj drukarkę..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 -msgctxt "@action:inmenu menubar:printer" -msgid "Manage Pr&inters..." -msgstr "Zarządzaj drukarkami..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 -msgctxt "@action:inmenu" -msgid "Manage Materials..." -msgstr "Zarządzaj materiałami..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu" -msgid "Add more materials from Marketplace" -msgstr "" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 -msgctxt "@action:inmenu menubar:profile" -msgid "&Discard current changes" -msgstr "&Odrzuć bieżące zmiany" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 -msgctxt "@action:inmenu menubar:profile" -msgid "Manage Profiles..." -msgstr "Zarządzaj profilami..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 -msgctxt "@action:inmenu menubar:help" -msgid "Show Online &Documentation" -msgstr "Pokaż dokumentację internetową" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 -msgctxt "@action:inmenu menubar:help" -msgid "Report a &Bug" -msgstr "Zgłoś błąd" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 -msgctxt "@action:inmenu menubar:help" -msgid "What's New" -msgstr "Co nowego" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 -msgctxt "@action:inmenu menubar:help" -msgid "About..." -msgstr "O..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 -msgctxt "@action:inmenu menubar:edit" -msgid "Delete Selected" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 -msgctxt "@action:inmenu menubar:edit" -msgid "Center Selected" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 -msgctxt "@action:inmenu menubar:edit" -msgid "Multiply Selected" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 -msgctxt "@action:inmenu" -msgid "Delete Model" -msgstr "Usuń model" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 -msgctxt "@action:inmenu" -msgid "Ce&nter Model on Platform" -msgstr "Wyśrodkuj model na platformie" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 -msgctxt "@action:inmenu menubar:edit" -msgid "&Group Models" -msgstr "&Grupuj modele" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 -msgctxt "@action:inmenu menubar:edit" -msgid "Ungroup Models" -msgstr "Rozgrupuj modele" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 -msgctxt "@action:inmenu menubar:edit" -msgid "&Merge Models" -msgstr "Połącz modele" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 -msgctxt "@action:inmenu" -msgid "&Multiply Model..." -msgstr "&Powiel model..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 -msgctxt "@action:inmenu menubar:edit" -msgid "Select All Models" -msgstr "Wybierz wszystkie modele" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 -msgctxt "@action:inmenu menubar:edit" -msgid "Clear Build Plate" -msgstr "Wyczyść stół" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 -msgctxt "@action:inmenu menubar:file" -msgid "Reload All Models" -msgstr "Przeładuj wszystkie modele" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "Rozłóż Wszystkie Modele na Wszystkie Platformy Robocze" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models" -msgstr "Ułóż wszystkie modele" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange Selection" -msgstr "Wybór ułożenia" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Positions" -msgstr "Zresetuj wszystkie pozycje modelu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Transformations" -msgstr "Zresetuj wszystkie przekształcenia modelu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 -msgctxt "@action:inmenu menubar:file" -msgid "&Open File(s)..." -msgstr "&Otwórz plik(i)..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 -msgctxt "@action:inmenu menubar:file" -msgid "&New Project..." -msgstr "&Nowy projekt..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 -msgctxt "@action:inmenu menubar:help" -msgid "Show Configuration Folder" -msgstr "Pokaż folder konfiguracji" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 -msgctxt "@action:menu" -msgid "Configure setting visibility..." -msgstr "Skonfiguruj widoczność ustawień ..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "&Marketplace" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 -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/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 -msgctxt "@label Header for list of settings." -msgid "Affects" -msgstr "Wpływać" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 -msgctxt "@label Header for list of settings." -msgid "Affected By" -msgstr "Pod wpływem" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 -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/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 -msgctxt "@label" -msgid "This setting is resolved from conflicting extruder-specific values:" -msgstr "" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 -msgctxt "@label" -msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." -msgstr "" -"To ustawienie ma inną wartość niż w profilu.\n" -"\n" -"Kliknij, aby przywrócić wartość z profilu." - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 -msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"To ustawienie jest zwykle obliczane, ale obecnie ma wartość bezwzględną.\n" -"\n" -"Kliknij, aby przywrócić wartość obliczoną." - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 -msgctxt "@label:textbox" -msgid "Search settings" -msgstr "Ustawienia wyszukiwania" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 -msgctxt "@action:menu" -msgid "Copy value to all extruders" -msgstr "Skopiuj wartość do wszystkich ekstruderów" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 -msgctxt "@action:menu" -msgid "Copy all changed values to all extruders" -msgstr "Skopiuj wszystkie zmienione wartości do wszystkich ekstruderów" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 -msgctxt "@action:menu" -msgid "Hide this setting" -msgstr "Ukryj tę opcję" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 -msgctxt "@action:menu" -msgid "Don't show this setting" -msgstr "Nie pokazuj tej opcji" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 -msgctxt "@action:menu" -msgid "Keep this setting visible" -msgstr "Pozostaw tę opcję widoczną" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5860,141 +5738,358 @@ msgstr "" "\n" "Kliknij, aby te ustawienia były widoczne." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "Ten pakiet zostanie zainstalowany po ponownym uruchomieniu." +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/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 -msgctxt "@title:tab" -msgid "Settings" -msgstr "Ustawienia" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +msgctxt "@label Header for list of settings." +msgid "Affects" +msgstr "Wpływać" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "This setting is resolved from conflicting extruder-specific values:" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 -msgctxt "@label %1 is the application name" -msgid "Are you sure you want to exit %1?" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +msgctxt "@label" +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"To ustawienie ma inną wartość niż w profilu.\n" +"\n" +"Kliknij, aby przywrócić wartość z profilu." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:334 +msgctxt "@label" +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"To ustawienie jest zwykle obliczane, ale obecnie ma wartość bezwzględną.\n" +"\n" +"Kliknij, aby przywrócić wartość obliczoną." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@action:menu" +msgid "Hide this setting" +msgstr "Ukryj tę opcję" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:menu" +msgid "Keep this setting visible" +msgstr "Pozostaw tę opcję widoczną" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:25 +msgctxt "@info:tooltip" +msgid "3D View" +msgstr "Widok 3D" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "Widok z góry" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "Widok z prawej strony" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "Typ widoku" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +msgctxt "@label" +msgid "Add a Cloud printer" msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 -msgctxt "@window:title" -msgid "Install Package" -msgstr "Instaluj pakiety" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:73 +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Otwórz plik(i)" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:83 +msgctxt "@label" +msgid "No printers found in your account?" +msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 -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/WelcomePages/AddCloudPrintersView.qml:117 +msgctxt "@label" +msgid "The following printers in your account have been added in Cura:" +msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 -msgctxt "@title:window" -msgid "Add Printer" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:186 +msgctxt "@button" +msgid "Add printer manually" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +msgctxt "@label" +msgid "Manufacturer" +msgstr "Producent" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 +msgctxt "@label" +msgid "Profile author" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 -msgctxt "@title:window" -msgid "What's New" -msgstr "Co nowego" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:38 +msgctxt "@label" +msgid "Add a networked printer" +msgstr "Dodaj drukarkę sieciową" -#: PerObjectSettingsTool/plugin.json -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Zapewnia Ustawienia dla Każdego Modelu." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:87 +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "Dodaj drukarkę niesieciową" -#: PerObjectSettingsTool/plugin.json -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Narzędzie Ustawień dla Każdego Modelu" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "Nie znaleziono drukarki w Twojej sieci." -#: CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Zapewnia wsparcie dla importowania profili Cura." +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 +msgctxt "@label" +msgid "Refresh" +msgstr "Odśwież" -#: CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Czytnik Profili Cura" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173 +msgctxt "@label" +msgid "Add printer by IP" +msgstr "Dodaj drukarkę przez IP" -#: 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" - -#: 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" - -#: 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" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:184 +msgctxt "@label" +msgid "Add cloud printer" msgstr "" -#: SupportEraser/plugin.json +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:220 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "Rozwiązywanie problemów" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 +msgctxt "@button" +msgid "Add" +msgstr "Dodaj" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Can't connect to your Ultimaker printer?" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Connect" +msgstr "Połącz" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +msgctxt "@label" +msgid "Release Notes" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:175 +msgctxt "@text" +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 +msgctxt "@button" +msgid "Skip" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +msgctxt "@text" +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 +msgctxt "@label" +msgid "Empty" +msgstr "Pusty" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "What's New" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:18 +msgctxt "@label" +msgid "No items to select from" +msgstr "" + +#: ModelChecker/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" +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." -#: SupportEraser/plugin.json +#: ModelChecker/plugin.json msgctxt "name" -msgid "Support Eraser" -msgstr "Usuwacz Podpór" - -#: 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" - -#: 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" - -#: 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" +msgid "Model Checker" +msgstr "Sprawdzacz Modelu" #: 3MFReader/plugin.json msgctxt "description" @@ -6006,65 +6101,15 @@ msgctxt "name" msgid "3MF Reader" msgstr "Czytnik 3MF" -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Zapewnia wsparcie dla zapisywania Pakietów Formatów Ultimaker." +msgid "Provides support for writing 3MF files." +msgstr "Zapewnia wsparcie dla tworzenia plików 3MF." -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "name" -msgid "UFP Writer" -msgstr "Zapisywacz UFP" - -#: 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 "" - -#: 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" - -#: 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" - -#: 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" - -#: 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" +msgid "3MF Writer" +msgstr "3MF Writer" #: AMFReader/plugin.json msgctxt "description" @@ -6076,25 +6121,35 @@ msgctxt "name" msgid "AMF Reader" msgstr "Czytnik AMF" -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Odczytuje g-code ze skompresowanych archiwum." +msgid "Backup and restore your configuration." +msgstr "Utwórz kopię zapasową i przywróć konfigurację." -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Czytnik Skompresowanego G-code" +msgid "Cura Backups" +msgstr "Kopie zapasowe Cura" -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/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" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Zapewnia połączenie z tnącym zapleczem CuraEngine." -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "Post Processing" +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" @@ -6106,65 +6161,15 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Cura Profile Writer" -#: USBPrinting/plugin.json +#: DigitalLibrary/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." +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "" -#: USBPrinting/plugin.json +#: DigitalLibrary/plugin.json msgctxt "name" -msgid "USB printing" -msgstr "Drukowanie USB" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" +msgid "Ultimaker Digital Library" +msgstr "" #: FirmwareUpdateChecker/plugin.json msgctxt "description" @@ -6176,45 +6181,55 @@ msgctxt "name" msgid "Firmware Update Checker" msgstr "Sprawdzacz Aktualizacji Oprogramowania" -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/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." +msgid "Provides a machine actions for updating firmware." +msgstr "Dostarcza działanie, pozwalające na aktualizację oprogramowania sprzętowego." -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Slice info" -msgstr "Informacje o cięciu" +msgid "Firmware Updater" +msgstr "Aktualizacja oprogramowania sprzętowego" -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/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." +msgid "Reads g-code from a compressed archive." +msgstr "Odczytuje g-code ze skompresowanych archiwum." -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "Profile Materiału" +msgid "Compressed G-code Reader" +msgstr "Czytnik Skompresowanego G-code" -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/plugin.json msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "" +msgid "Writes g-code to a compressed archive." +msgstr "Zapisuje g-code do skompresowanego archiwum." -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/plugin.json msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "" +msgid "Compressed G-code Writer" +msgstr "Zapisywacz Skompresowanego G-code" -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "Znajdź, zarządzaj i instaluj nowe pakiety Cura." +msgid "Provides support for importing profiles from g-code files." +msgstr "Zapewnia wsparcie dla importowania profili z plików g-code." -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "Narzędzia" +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" @@ -6226,245 +6241,155 @@ 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 Simulation view." -msgstr "Zapewnia widok Symulacji." +msgid "Provides the preview of sliced layerdata." +msgstr "" #: SimulationView/plugin.json msgctxt "name" msgid "Simulation View" msgstr "Widok Symulacji" -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Zatwierdza anonimowe informację o cięciu. Może być wyłączone w preferencjach." -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/plugin.json msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "" +msgid "Slice info" +msgstr "Informacje o cięciu" -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/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." +msgid "Provides a normal solid mesh view." +msgstr "Zapewnia normalny widok siatki." -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/plugin.json msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Ulepszenie Wersji z 2.5 do 2.6" +msgid "Solid View" +msgstr "Widok Bryły" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "" +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" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/plugin.json msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -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/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/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/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/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/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/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/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 "" - -#: 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/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/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/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/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/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/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/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/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/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" - -#: 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" +msgid "Support Eraser" +msgstr "Usuwacz Podpór" #: TrimeshReader/plugin.json msgctxt "description" @@ -6486,45 +6411,567 @@ msgctxt "name" msgid "UFP Reader" msgstr "Czytnik UFP" -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Zapewnia normalny widok siatki." +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Zapewnia wsparcie dla zapisywania Pakietów Formatów Ultimaker." -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "name" -msgid "Solid View" -msgstr "Widok Bryły" +msgid "UFP Writer" +msgstr "Zapisywacz UFP" -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Zapewnia wsparcie dla tworzenia plików 3MF." +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.)." -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "name" -msgid "3MF Writer" -msgstr "3MF Writer" +msgid "Ultimaker machine actions" +msgstr "Czynności maszyny Ultimaker" -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Zapewnia etap monitorowania w Cura." +msgid "Manages network connections to Ultimaker networked printers." +msgstr "Zarządza połączeniami z sieciowymi drukarkami Ultimaker." -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "name" -msgid "Monitor Stage" -msgstr "Etap Monitorowania" +msgid "Ultimaker Network Connection" +msgstr "Połączenie sieciowe Ultimaker" -#: ModelChecker/plugin.json +#: USBPrinting/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." +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." -#: ModelChecker/plugin.json +#: USBPrinting/plugin.json msgctxt "name" -msgid "Model Checker" -msgstr "Sprawdzacz Modelu" +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." diff --git a/resources/i18n/pl_PL/fdmextruder.def.json.po b/resources/i18n/pl_PL/fdmextruder.def.json.po index c9a1cb944b..739493b39d 100644 --- a/resources/i18n/pl_PL/fdmextruder.def.json.po +++ b/resources/i18n/pl_PL/fdmextruder.def.json.po @@ -1,12 +1,12 @@ # Cura JSON setting files -# Copyright (C) 2019 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0000\n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" "PO-Revision-Date: 2019-03-13 14:00+0200\n" "Last-Translator: Mariusz 'Virgin71' Matłosz \n" "Language-Team: reprapy.pl\n" diff --git a/resources/i18n/pl_PL/fdmprinter.def.json.po b/resources/i18n/pl_PL/fdmprinter.def.json.po index bfe7723308..4aa3984d90 100644 --- a/resources/i18n/pl_PL/fdmprinter.def.json.po +++ b/resources/i18n/pl_PL/fdmprinter.def.json.po @@ -1,12 +1,12 @@ # Cura JSON setting files -# Copyright (C) 2019 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 11:59+0000\n" +"POT-Creation-Date: 2022-06-21 12:50+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" @@ -466,8 +466,8 @@ msgstr "Obszar głowicy i wentylatora drukarki" #: fdmprinter.def.json 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)." +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" @@ -739,6 +739,16 @@ 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" @@ -959,6 +969,56 @@ 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" @@ -990,14 +1050,24 @@ msgid "Optimize the order in which walls are printed so as to reduce the number 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 "outer_inset_first label" -msgid "Outer Before Inner Walls" -msgstr "Zew. Ściany Przed Wew" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "" #: fdmprinter.def.json -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 "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" @@ -1010,84 +1080,54 @@ msgid "Prints an extra wall at every other layer. This way infill gets caught be 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 "travel_compensate_overlapping_walls_enabled label" -msgid "Compensate Wall Overlaps" -msgstr "Kompensuj Nakładanie się Ścian" +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "" #: fdmprinter.def.json -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 "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 "travel_compensate_overlapping_walls_0_enabled label" -msgid "Compensate Outer Wall Overlaps" -msgstr "Komp. Zew. Nakład. się Ścian" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "" #: fdmprinter.def.json -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 "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 "travel_compensate_overlapping_walls_x_enabled label" -msgid "Compensate Inner Wall Overlaps" -msgstr "Komp. Wew. Nakład. się Ścian" +msgctxt "wall_split_middle_threshold label" +msgid "Split Middle Line Threshold" +msgstr "" #: fdmprinter.def.json -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 "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 "wall_min_flow label" -msgid "Minimum Wall Flow" -msgstr "Minimalny Przepływ Dla Ścianek" +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "" #: fdmprinter.def.json -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 "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_min_flow_retract label" -msgid "Prefer Retract" -msgstr "Preferuj Retrakcję" +msgctxt "wall_add_middle_threshold label" +msgid "Add Middle Line Threshold" +msgstr "" #: fdmprinter.def.json -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 "fill_perimeter_gaps label" -msgid "Fill Gaps Between Walls" -msgstr "Wypełnij Szczeliny Między Ścianami" - -#: fdmprinter.def.json -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 "fill_perimeter_gaps option nowhere" -msgid "Nowhere" -msgstr "Nigdzie" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option everywhere" -msgid "Everywhere" -msgstr "Wszędzie" - -#: fdmprinter.def.json -msgctxt "filter_out_tiny_gaps label" -msgid "Filter Out Tiny Gaps" -msgstr "Filtruj Małe Luki" - -#: fdmprinter.def.json -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 "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" @@ -1099,6 +1139,26 @@ 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" @@ -2198,6 +2258,26 @@ 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" @@ -2709,24 +2789,14 @@ msgid "The first few layers are printed slower than the rest of the model, to ge 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_enabled label" -msgid "Equalize Filament Flow" -msgstr "Zrówn. Przepływ Filamentu" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "" #: fdmprinter.def.json -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 "speed_equalize_flow_max label" -msgid "Maximum Speed for Flow Equalization" -msgstr "Maks. Prędk. dla Zrówn. Przepływu" - -#: fdmprinter.def.json -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 "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" @@ -2738,6 +2808,16 @@ 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" @@ -2928,6 +3008,16 @@ 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" @@ -4463,6 +4553,46 @@ 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" @@ -4627,6 +4757,16 @@ 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" @@ -5127,6 +5267,16 @@ 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" @@ -6421,6 +6571,36 @@ 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 "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 "" + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +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" +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 "command_line_settings label" msgid "Command Line Settings" @@ -6481,6 +6661,98 @@ 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)." + +#~ msgctxt "outer_inset_first label" +#~ msgid "Outer Before Inner Walls" +#~ msgstr "Zew. Ściany Przed Wew" + +#~ 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 "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_0_enabled label" +#~ msgid "Compensate Outer Wall Overlaps" +#~ msgstr "Komp. Zew. Nakład. się Ścian" + +#~ 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 "travel_compensate_overlapping_walls_x_enabled label" +#~ msgid "Compensate Inner Wall Overlaps" +#~ msgstr "Komp. Wew. Nakład. się Ścian" + +#~ 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 "wall_min_flow label" +#~ msgid "Minimum Wall Flow" +#~ msgstr "Minimalny Przepływ Dla Ścianek" + +#~ 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 "wall_min_flow_retract label" +#~ msgid "Prefer Retract" +#~ msgstr "Preferuj Retrakcję" + +#~ 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 "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 "fill_perimeter_gaps option nowhere" +#~ msgid "Nowhere" +#~ msgstr "Nigdzie" + +#~ msgctxt "fill_perimeter_gaps option everywhere" +#~ msgid "Everywhere" +#~ msgstr "Wszędzie" + +#~ 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 "speed_equalize_flow_enabled label" +#~ msgid "Equalize Filament Flow" +#~ msgstr "Zrówn. Przepływ Filamentu" + +#~ 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 "speed_equalize_flow_max label" +#~ msgid "Maximum Speed for Flow Equalization" +#~ msgstr "Maks. Prędk. dla Zrówn. Przepływu" + +#~ 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 "machine_max_feedrate_e label" #~ msgid "Maximum Feedrate" #~ msgstr "Maksymalna Prędk. Posuwu" diff --git a/resources/i18n/pt_BR/cura.po b/resources/i18n/pt_BR/cura.po index f9d8002a8c..875f06c8c9 100644 --- a/resources/i18n/pt_BR/cura.po +++ b/resources/i18n/pt_BR/cura.po @@ -1,13 +1,13 @@ # Cura -# Copyright (C) 2020 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.0\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0100\n" -"PO-Revision-Date: 2022-01-10 12:10+0100\n" +"POT-Creation-Date: 2022-06-21 12:50+0200\n" +"PO-Revision-Date: 2022-07-04 04:14+0200\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" "Language: pt_BR\n" @@ -15,401 +15,177 @@ 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\n" +"X-Generator: Poedit 3.0.1\n" -#: /home/clamboo/Desktop/Cura/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/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "Desconhecido" -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 -msgctxt "@info:title" -msgid "Backup" -msgstr "Backup" +#: /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/clamboo/Desktop/Cura/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/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Impressoras de rede disponíveis" -#: /home/clamboo/Desktop/Cura/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/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Não sobreposto" -#: /home/clamboo/Desktop/Cura/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/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/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 -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/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/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 -msgctxt "@action:button" -msgid "New materials installed" -msgstr "Novos materiais instalados" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 -msgctxt "@action:button" -msgid "Sync materials with printers" -msgstr "Sincronizar materiais" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 -msgctxt "@action:button" -msgid "Learn more" -msgstr "Saiba mais" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 -msgctxt "@message:title" -msgid "Failed to save material archive" -msgstr "Falha em salvar o arquivo de materiais" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 -msgctxt "@text" -msgid "Unknown error." -msgstr "Erro desconhecido." - -#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 -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/clamboo/Desktop/Cura/cura/BuildVolume.py:102 -msgctxt "@info:title" -msgid "Build Volume" -msgstr "Volume de Impressão" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Não sobreposto" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "Desconhecido" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Impressoras de rede disponíveis" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Todos Os Arquivos (*)" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Visual" +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Calculado" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engenharia" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Rascunho" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 -msgctxt "@label" -msgid "Custom Material" -msgstr "Material Personalizado" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 -msgctxt "@label" -msgid "Custom" -msgstr "Personalizado" - -#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 +#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "Login falhou" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Achando novos lugares para objetos" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 msgctxt "@info:title" msgid "Finding Location" msgstr "Buscando Localização" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Não Foi Encontrada Localização" -#: /home/clamboo/Desktop/Cura/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/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 -msgctxt "@text:error" -msgid "Failed to connect to Digital Factory." -msgstr "Falha em conectar à Digital Factory." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "Carregando máquinas..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "Ajustando preferências..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "Inicializando Máquina Ativa..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "Inicializando gestor de máquinas..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "Inicializando volume de impressão..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "Configurando cena..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "Carregando interface..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "Inicializando motor..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 +#: /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 msgctxt "@info:title" -msgid "Warning" -msgstr "Aviso" +msgid "Backup" +msgstr "Backup" -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 -#, python-brace-format +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 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}" +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/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 msgctxt "@info:title" -msgid "Error" -msgstr "Erro" +msgid "Build Volume" +msgstr "Volume de Impressão" -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 -msgctxt "@action:button" -msgid "Skip" -msgstr "Pular" - -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "Fechar" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 -msgctxt "@action:button" -msgid "Next" -msgstr "Próximo" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 -msgctxt "@action:button" -msgid "Finish" -msgstr "Finalizar" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "Adicionar" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Cancelar" - -#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 -#, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "Grupo #{group_nr}" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Parede Externa" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "Paredes Internas" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Skin" -msgstr "Contorno" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Infill" -msgstr "Preenchimento" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Preenchimento de Suporte" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Interface de Suporte" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Support" -msgstr "Suporte" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Skirt (Saia)" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "Torre de Prime" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 -msgctxt "@tooltip" -msgid "Travel" -msgstr "Percurso" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Retrações" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 -msgctxt "@tooltip" -msgid "Other" -msgstr "Outros" - -#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 -msgctxt "@text:window" -msgid "The release notes could not be opened." -msgstr "As notas de lançamento não puderam ser abertas." - -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "O Cura não consegue iniciar" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

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

      \n" @@ -424,32 +200,32 @@ msgstr "" "

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

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

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

      \n" " " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Informação do Sistema" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Desconhecida" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Versão do Cura" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Linguagem do Cura" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "Linguagem do SO" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Plataforma" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Versão do Qt" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "Versão do PyQt" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 msgctxt "@label" -msgid "Not yet initialized
      " -msgstr "Ainda não inicializado
      " +msgid "Not yet initialized" +msgstr "Ainda não inicializado" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
    • OpenGL Version: {version}
    • " msgstr "
    • Versão da OpenGL: {version}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
    • OpenGL Vendor: {vendor}
    • " msgstr "
    • Fornecedor da OpenGL: {vendor}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
    • OpenGL Renderer: {renderer}
    • " msgstr "
    • Renderizador da OpenGL: {renderer}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Traceback do erro" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "Registros" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "Enviar relatório" -#: /home/clamboo/Desktop/Cura/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/CuraApplication.py:531 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "Carregando máquinas..." -#: /home/clamboo/Desktop/Cura/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." +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "Ajustando preferências..." -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "Inicializando Máquina Ativa..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "Inicializando gestor de máquinas..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "Inicializando volume de impressão..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "Configurando cena..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "Carregando interface..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "Inicializando motor..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#, 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 +#, 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 msgctxt "@info:title" -msgid "Log-in failed" -msgstr "Login falhou" +msgid "Warning" +msgstr "Aviso" -#: /home/clamboo/Desktop/Cura/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/CuraApplication.py:1810 +#, 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/clamboo/Desktop/Cura/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/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 +msgctxt "@info:title" +msgid "Error" +msgstr "Erro" -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 -msgctxt "@message" -msgid "Could not read response." -msgstr "Não foi possível ler a resposta." - -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "Multiplicando e colocando objetos" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "Colocando Objetos" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Colocando Objeto" -#: /home/clamboo/Desktop/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/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "Não foi possível ler a resposta." -#: /home/clamboo/Desktop/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/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "O estado provido não está correto." -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 -msgctxt "@label" -msgid "Nozzle" -msgstr "Bico" +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 -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/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/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info" +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 msgctxt "@info:title" -msgid "Settings updated" -msgstr "Ajustes atualizados" +msgid "Log-in failed" +msgstr "Login falhou" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "Extrusor(es) Desabilitado(s)" +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 msgctxt "@title:window" msgid "File Already Exists" msgstr "O Arquivo Já Existe" -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "URL de arquivo inválida:" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Exportação concluída" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Perfil {0} importado com sucesso." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Perfil personalizado" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Falta um tipo de qualidade ao Perfil." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "Não há impressora ativa ainda." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Não foi possível adicionar o perfil." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: /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 msgctxt "@label" -msgid "Per Model Settings" -msgstr "Ajustes por Modelo" +msgid "Nozzle" +msgstr "Bico" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "Configurar ajustes por Modelo" +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +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/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Perfil do Cura" - -#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "Arquivo X3D" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "Houve um erro ao tentar restaurar seu backup." - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 msgctxt "@info:title" -msgid "Backups" -msgstr "Backups" +msgid "Settings updated" +msgstr "Ajustes atualizados" -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Criando seu backup..." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Enviando seu backup..." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Gerenciar backups" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Ajustes da Máquina" - -#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "Bloqueador de Suporte" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Unidade Removível" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 msgctxt "@info:title" -msgid "Saving" -msgstr "Salvando" +msgid "Extruder(s) Disabled" +msgstr "Extrusor(es) Desabilitado(s)" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "Salvo em Unidade Removível {0} como {1}" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 -msgctxt "@info:title" -msgid "File Saved" -msgstr "Arquivo Salvo" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" -msgid "Eject" -msgstr "Ejetar" +msgid "Add" +msgstr "Adicionar" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Cancelar" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 #, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "Ejetar dispositivo removível {0}" +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "Grupo #{group_nr}" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 -#, 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/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Parede Externa" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "Paredes Internas" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "Contorno" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "Preenchimento" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Preenchimento de Suporte" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Interface de Suporte" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "Suporte" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Skirt (Saia)" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "Torre de Prime" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "Percurso" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Retrações" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Close" +msgstr "Fechar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "Novos materiais instalados" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Learn more" +msgstr "Saiba mais" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@text" +msgid "Unknown error." +msgstr "Erro desconhecido." + +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Remover Hardware com Segurança" +msgid "3D Model Assistant" +msgstr "Assistente de Modelo 3D" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 #, 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." +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 "" +"

      Um ou mais modelos 3D podem não ser impressos otimamente devido ao tamanho e configuração de material:

      \n" +"

      {model_names}

      \n" +"

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

      \n" +"

      Ver guia de qualidade de impressão

      " -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Atualizar Firmware" - -#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Perfis do Cura 15.04" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Recomendado" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Personalizado" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 +#: /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." -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 msgctxt "@info:title" msgid "Open Project File" msgstr "Abrir Arquivo de Projeto" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 +#: /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 "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." + +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:392 +msgctxt "@info:title" +msgid "Material profiles not installed" +msgstr "Perfis de material não instalados" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:405 +msgctxt "@action:button" +msgid "Install Materials" +msgstr "Instalar Materiais" + +#: /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/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 -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/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "O complemento de Escrita 3MF está corrompido." -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Pacote de Formato da Ultimaker" +#: /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/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "Arquivo G-Code" +#: /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/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "Pré-visualização" +#: /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/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Visão de Raios-X" +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Processando Camadas" +#: /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 "Não foi possível armazenar informação do pacote de material no arquivo de projeto: {material}. Este projeto pode não abrir corretamente em outros sistemas." -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:283 msgctxt "@info:title" -msgid "Information" -msgstr "Informação" +msgid "Failed to save material package information" +msgstr "Falha em salvar informação de pacote de material" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 msgctxt "@message:title" msgid "Slicing failed" msgstr "Fatiamento falhado" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 msgctxt "@message:button" msgid "Report a bug" msgstr "Relatar um bug" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 msgctxt "@info:status" msgid "" "Please review settings and check if your models:\n" @@ -1084,430 +1013,498 @@ msgstr "" "- Estão associados a um extrusor habilitado\n" "- Não estão todos configurados como malhas de modificação" -#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "Arquivo AMF" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "Arquivo de G-Code Comprimido" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "Pós-Processamento" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "Modificar G-Code" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "Impressão USB" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Imprimir pela USB" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Imprimir pela USB" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Conectado via USB" +msgid "Processing Layers" +msgstr "Processando Camadas" -#: /home/clamboo/Desktop/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 "Uma impressão USB está em progresso, fechar o Cura interromperá esta impressão. Tem certeza?" - -#: /home/clamboo/Desktop/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 "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/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 -msgctxt "@message" -msgid "Print in Progress" -msgstr "Impressão em Progresso" - -#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "Preparar" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "Interpretando G-Code" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 msgctxt "@info:title" -msgid "G-code Details" -msgstr "Detalhes do G-Code" +msgid "Information" +msgstr "Informação" -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 -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/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 msgctxt "@item:inlistbox" -msgid "G File" -msgstr "Arquivo G" +msgid "Cura Profile" +msgstr "Perfil do Cura" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "Imagem JPG" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "Imagem JPEG" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "Imagem PNG" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "Imagem BMP" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "Imagem GIF" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "Nivelar mesa" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "Selecionar Atualizações" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +#: /home/trin/Gedeeld/Projects/Cura/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." -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#: /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}." -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#: /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" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 msgctxt "@action:button" msgid "How to update" msgstr "Como atualizar" -#: /home/clamboo/Desktop/Cura/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/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Atualizar Firmware" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 -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/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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Sincronizando..." +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +#: /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 "Changes detected from your Ultimaker account" -msgstr "Alterações detectadas de sua conta Ultimaker" +msgid "G-code Details" +msgstr "Detalhes do G-Code" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 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?" +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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 -msgctxt "@action:button" -msgid "Sync" -msgstr "Sincronizar" +#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "Arquivo G" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Recusar e remover da conta" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "{} complementos falharam em baixar" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "Recusar" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "Concordar" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Acordo de Licença do Complemento" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +#: /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/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +#: /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 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "Monitor" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "Configurar ajustes por Modelo" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@item:inmenu" +msgid "Modify G-Code" +msgstr "Modificar G-Code" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Prepare" +msgstr "Preparar" + +#: /home/trin/Gedeeld/Projects/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 +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 +#, 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 +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 +#, 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 +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 +#, 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 +#, 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 +#, 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 +#, 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 +msgctxt "@info:title" +msgid "File Saved" +msgstr "Arquivo Salvo" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +msgctxt "@action:button" +msgid "Eject" +msgstr "Ejetar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +#, 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 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "Remover Hardware com Segurança" + +#: /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 "Erro ao ejetar {0}. Outro programa pode estar usando a unidade." + +#: /home/trin/Gedeeld/Projects/Cura/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." -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 msgctxt "@info:title" msgid "Simulation View" msgstr "Visão Simulada" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:133 msgctxt "@info:status" msgid "Nothing is shown because you need to slice first." msgstr "Nada está exibido porque você precisa fatiar primeiro." -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 msgctxt "@info:title" msgid "No layers to show" msgstr "Não há camadas a exibir" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +#: /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 "Não mostrar essa mensagem novamente" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Visão de Camadas" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "Imprimir pela rede" +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Imprime pela rede" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Conectado pela rede" +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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "amanhã" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 +msgctxt "@info:title" +msgid "Model Errors" +msgstr "Erros de Modelo" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "hoje" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Solid view" +msgstr "Visão sólida" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 +msgctxt "@label" +msgid "Support Blocker" +msgstr "Bloqueador de Suporte" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@item:inlistbox" +msgid "glTF Binary" +msgstr "Binário glTF" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "Formato de Triângulos de Stanford" + +#: /home/trin/Gedeeld/Projects/Cura/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" + +#: /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 "Não foi possível escrever no arquivo UFP:" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" -msgid "Connect via Network" -msgstr "Conectar pela rede" +msgid "Level build plate" +msgstr "Nivelar mesa" -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "Erro de impressão" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Dados Enviados" - -#: /home/clamboo/Desktop/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 "Você está tentando conectar a uma impressora que não está rodando Ultimaker Connect. Por favor atualiza a impressora para o firmware mais recente." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 -msgctxt "@info:title" -msgid "Update your printer" -msgstr "Atualize sua impressora" - -#: /home/clamboo/Desktop/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 "A fila de trabalhos de impressão está cheia. A impressora não pode aceitar novo trabalho." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "Fila Cheia" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "Enviando Trabalho de Impressão" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/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 "O Cura detectou perfis de material que não estão instalados ainda na impressora host do grupo {0}." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "Enviando material para a impressora" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "Erro de rede" - -#: /home/clamboo/Desktop/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 "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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "Não é host de grupo" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 msgctxt "@action" -msgid "Configure group" -msgstr "Configurar grupo" +msgid "Select upgrades" +msgstr "Selecionar Atualizações" -#: /home/clamboo/Desktop/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 "" -"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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 -msgctxt "@action" -msgid "Get started" -msgstr "Começar" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 -msgctxt "@action" -msgid "Learn more" -msgstr "Saiba mais" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 msgctxt "@action:button" msgid "Print via cloud" msgstr "Imprimir pela nuvem" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Imprimir pela nuvem" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Conectado pela nuvem" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 msgctxt "@action:button" msgid "Monitor print" msgstr "Monitorar impressão" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 msgctxt "@action:tooltip" msgid "Track the print in Ultimaker Digital Factory" msgstr "Rastrear a impressão na Ultimaker Digital Factory" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#: /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 "Código de erro desconhecido ao transferir trabalho de impressão: {0}" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 +#: /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" @@ -1515,70 +1512,70 @@ msgid_plural "... and {0} others" msgstr[0] "... e {0} outra" msgstr[1] "... e {0} outras" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:361 msgctxt "@action:button" msgid "Remove printers" msgstr "Remover impressoras" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 +#: /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} será removida até a próxima sincronização de conta." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 +#: /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 "Para remover {printer_name} permanentemente, visite {digital_factory_link}" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 +#: /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 "Tem certeza que quer remover {printer_name} temporariamente?" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 msgctxt "@title:window" msgid "Remove printers?" msgstr "Remover impressoras?" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 #, python-brace-format msgctxt "@label" msgid "" @@ -1594,7 +1591,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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +#: /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" @@ -1603,1577 +1600,1064 @@ 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/clamboo/Desktop/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 "Open Compressed Triangle Mesh" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "Câmbio de Ativos Digitais COLLADA" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "Binário glTF" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF Embutido JSON" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Formato de Triângulos de Stanford" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Câmbio de Ativos Digitais COLLADA Comprimido" - -#: /home/clamboo/Desktop/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 "As áreas ressaltadas indicam superfícies faltantes ou incorretas. Conserte seu modelo e o abra novamente no Cura." - -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "Erros de Modelo" - -#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Visão sólida" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Erro ao escrever arquivo 3mf." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "Arquivo 3MF" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Arquivo de Projeto 3MF do Cura" - -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "Monitor" - -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 -msgctxt "@info:title" -msgid "3D Model Assistant" -msgstr "Assistente de Modelo 3D" - -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 #, 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

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

      Um ou mais modelos 3D podem não ser impressos otimamente devido ao tamanho e configuração de material:

      \n" -"

      {model_names}

      \n" -"

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

      \n" -"

      Ver guia de qualidade de impressão

      " +"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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action" +msgid "Get started" +msgstr "Começar" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +msgctxt "@action" +msgid "Learn more" +msgstr "Saiba mais" + +#: /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 "Você está tentando conectar a uma impressora que não está rodando Ultimaker Connect. Por favor atualiza a impressora para o firmware mais recente." + +#: /home/trin/Gedeeld/Projects/Cura/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 +#, 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 +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 +#, 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 +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 +msgctxt "@action" +msgid "Configure group" +msgstr "Configurar grupo" + +#: /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 "Por favor espere até que o trabalho atual tenha sido enviado." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info:title" +msgid "Network error" +msgstr "Erro de rede" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "Fila Cheia" + +#: /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 "Trabalho de impressão enviado à impressora com sucesso." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "Imprime pela rede" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "Conectado pela rede" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "amanhã" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "hoje" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "Imprimir pela USB" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" -msgid "Mesh Type" -msgstr "Tipo de Malha" +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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "Modelo normal" +#: /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 "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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "Imprimir como suporte" +#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "Impressão em Progresso" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Modificar ajustes para sobreposições" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Não suportar sobreposições" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 +#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Somente malha de preenchimento" +msgid "X3D File" +msgstr "Arquivo X3D" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 +#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Malha de corte" +msgid "X-Ray view" +msgstr "Visão de Raios-X" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Selecionar ajustes" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Selecionar Ajustes a Personalizar para este modelo" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtrar..." - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Exibir tudo" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Backups do Cura" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Versão do Cura" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Máquinas" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Materiais" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Perfis" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Complementos" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Quer mais?" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Backup Agora" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Auto Backup" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "Restaurar" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Apagar o Backup" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Restaurar Backup" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 -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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 -msgctxt "@button" -msgid "Sign in" -msgstr "Entrar" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Meus backups" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -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/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Ajustes de Impressora" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (largura)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Profundidade)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Altura)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 -msgctxt "@label" -msgid "Build plate shape" -msgstr "Forma da plataforma de impressão" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 -msgctxt "@label" -msgid "Origin at center" -msgstr "Origem no centro" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 -msgctxt "@label" -msgid "Heated bed" -msgstr "Mesa aquecida" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 -msgctxt "@label" -msgid "Heated build volume" -msgstr "Volume de construção aquecido" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 -msgctxt "@label" -msgid "G-code flavor" -msgstr "Sabor de G-Code" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Ajustes da Cabeça de Impressão" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -msgctxt "@label" -msgid "X min" -msgstr "X mín" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -msgctxt "@label" -msgid "Y min" -msgstr "Y mín" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -msgctxt "@label" -msgid "X max" -msgstr "X máx" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -msgctxt "@label" -msgid "Y max" -msgstr "Y máx" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "Gantry Height" -msgstr "Altura do Eixo" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Número de Extrusores" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Aplicar deslocamentos de Extrusão ao G-Code" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "G-Code Inicial" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "G-Code Final" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Ajustes do Bico" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 -msgctxt "@label" -msgid "Nozzle size" -msgstr "Tamanho do bico" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Diâmetro de material compatível" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Deslocamento X do Bico" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Deslocamento Y do Bico" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Número da Ventoinha de Resfriamento" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "G-Code Inicial do Extrusor" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "G-Code Final do Extrusor" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "Impressora" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Atualizar Firmware" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Automaticamente atualizar Firmware" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Carregar Firmware personalizado" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Selecionar firmware personalizado" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Atualização do Firmware" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Updating firmware." -msgstr "Atualizando firmware." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Atualização do Firmware completada." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "A atualização de Firmware falhou devido a um erro desconhecido." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "A atualização de firmware falhou devido a firmware não encontrado." - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 msgctxt "@title:window" msgid "Open Project" msgstr "Abrir Projeto" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 msgctxt "@action:ComboBox Update/override existing profile" msgid "Update existing" msgstr "Atualizar existentes" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Ajustes da impressora" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Ajustes de perfil" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 msgctxt "@action:label" msgid "Derivative from" msgstr "Derivado de" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 -msgctxt "@action:label" -msgid "Material settings" -msgstr "Ajustes de material" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 msgctxt "@action:label" msgid "Mode" msgstr "Modo" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 msgctxt "@action:label" msgid "Visible settings:" msgstr "Ajustes visíveis:" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 de %2" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 msgctxt "@action:button" msgid "Open" msgstr "Abrir" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "Abrir o projeto mesmo assim" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:529 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "Instalar material faltante" + +#: /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 "Post Processing Plugin" -msgstr "Complemento de Pós-Processamento" +msgid "Cura Backups" +msgstr "Backups do Cura" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 +#: /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 "Salvar o projeto Cura e imprimir o arquivo" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "Salvar o projeto Cura" + +#: /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 "Post Processing Scripts" -msgstr "Scripts de Pós-Processamento" +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/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "Adicionar um script" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 msgctxt "@label" -msgid "Settings" -msgstr "Ajustes" +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/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Alterar scripts de pós-processamento ativos." +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Automaticamente atualizar Firmware" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 -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/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Carregar Firmware personalizado" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /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 "Convert Image..." -msgstr "Converter imagem..." +msgid "Select custom firmware" +msgstr "Selecionar firmware personalizado" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 -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/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Atualização do Firmware" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 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." +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "A distância máxima de cada pixel da \"Base\"." -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 msgctxt "@action:label" msgid "Base (mm)" msgstr "Base (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate." -msgstr "A largura da mesa de impressão em milímetros." +msgid "The base height from the build plate in millimeters." +msgstr "A altura-base da mesa de impressão em milímetros." -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 msgctxt "@action:label" msgid "Width (mm)" msgstr "Largura (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "A profundidade da mesa de impressão em milímetros" +msgid "The width in millimeters on the build plate" +msgstr "A largura em milímetros na plataforma de impressão" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 msgctxt "@action:label" msgid "Depth (mm)" msgstr "Profundidade (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 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." +msgid "The depth in millimeters on the build plate" +msgstr "A profundidade da mesa de impressão em milímetros" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "Mais escuro é mais alto" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "Mais claro é mais alto" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 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." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "Translucidez" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 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." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "Transmitância de 1mm (%)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "A quantidade de suavização para aplicar na imagem." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 msgctxt "@action:label" msgid "Smoothing" msgstr "Suavização" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /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/clamboo/Desktop/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" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "Mesa de Impressão Aquecida (kit Oficial ou auto-construído)" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Nivelamento da mesa de impressão" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Iniciar Nivelamento da Mesa de Impressão" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Mover pra a Posição Seguinte" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Mais informações em coleção anônima de dados" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -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/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Recusar enviar dados anônimos" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Permitir enviar dados anônimos" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" -msgid "Marketplace" -msgstr "Mercado" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -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." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "Sair de %1" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "Instalar" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -msgctxt "@action:button" -msgid "Installed" -msgstr "Instalado" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "Premium" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 -msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "Ir ao Mercado Web" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 -msgctxt "@label" -msgid "Search materials" -msgstr "Buscar materiais" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "Compatibilidade" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "Máquina" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "Plataforma de Impressão" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "Suporte" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "Qualidade" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "Documento de Dados Técnicos" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "Documento de Dados de Segurança" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "Diretrizes de Impressão" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "Sítio Web" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -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" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "Comprar rolos de material" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "Atualizar" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "Atualizando" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "Atualizado" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "Voltar" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 msgctxt "@title:tab" -msgid "Plugins" -msgstr "Complementos" +msgid "Printer" +msgstr "Impressora" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materiais" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Ajustes do Bico" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "Instalado" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 msgctxt "@label" -msgid "Will install upon restarting" -msgstr "Será instalado ao reiniciar" +msgid "Nozzle size" +msgstr "Tamanho do bico" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -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" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Downgrade" -msgstr "Downgrade" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "Desinstalar" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /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 "Community Contributions" -msgstr "Contribuições da Comunidade" +msgid "mm" +msgstr "mm" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 msgctxt "@label" -msgid "Community Plugins" -msgstr "Complementos da Comunidade" +msgid "Compatible material diameter" +msgstr "Diâmetro de material compatível" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 msgctxt "@label" -msgid "Generic Materials" -msgstr "Materiais Genéricos" +msgid "Nozzle offset X" +msgstr "Deslocamento X do Bico" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "Obtendo pacotes..." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 msgctxt "@label" -msgid "Website" -msgstr "Sítio Web" +msgid "Nozzle offset Y" +msgstr "Deslocamento Y do Bico" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 msgctxt "@label" -msgid "Email" -msgstr "Email" +msgid "Cooling Fan Number" +msgstr "Número da Ventoinha de Resfriamento" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -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" +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 +#: /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 "Version" -msgstr "Versão" +msgid "X (Width)" +msgstr "X (largura)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 msgctxt "@label" -msgid "Last updated" -msgstr "Última atualização" +msgid "Y (Depth)" +msgstr "Y (Profundidade)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 msgctxt "@label" -msgid "Brand" -msgstr "Marca" +msgid "Z (Height)" +msgstr "Z (Altura)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 msgctxt "@label" -msgid "Downloads" -msgstr "Downloads" +msgid "Build plate shape" +msgstr "Forma da plataforma de impressão" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "Complementos instalados" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "Nenhum complemento foi instalado." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "Materiais instalados" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 -msgctxt "@info" -msgid "No material has been installed." -msgstr "Nenhum material foi instalado." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "Complementos empacotados" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "Materiais empacotados" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -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." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 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" +msgid "Origin at center" +msgstr "Origem no centro" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 msgctxt "@button" msgid "Dismiss" msgstr "Dispensar" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "Confirme a desinstalação" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "Instalar Materiais faltantes" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -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." +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "Materiais" +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "Perfis" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "Aceitar" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "Confirmar" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 +msgctxt "@header" +msgid "Manage packages" +msgstr "Gerir pacotes" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "Esquema de Cores" +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Cor do Material" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "Gerir pacotes" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Tipo de Linha" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Velocidade" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Espessura de Camada" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Largura de Extrusão" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Fluxo" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Modo de Compatibilidade" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "Percursos" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "Assistentes" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "Perímetro" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "Preenchimento" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "Inícios" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Somente Exibir Camadas Superiores" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "Exibir 5 Camadas Superiores Detalhadas" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Topo / Base" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Parede Interna" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "mín" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "máx" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Gerir Impressora" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -msgctxt "@label" -msgid "Glass" -msgstr "Vidro" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" msgid "Loading..." msgstr "Carregando..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Indisponível" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "Complementos" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Inacessivel" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "Materiais" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "Ocioso" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193 +msgctxt "@info" +msgid "Search in the browser" +msgstr "Buscar no navegador" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Preparando..." +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "Imprimindo" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 +#: /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 "Untitled" -msgstr "Sem Título" +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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anônimo" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Requer mudanças na configuração" +#: /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 "Por" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "Detalhes" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Enable" +msgstr "Habilitar" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Impressora indisponível" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Disable" +msgstr "Desabilitar" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "Primeira disponível" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 +msgctxt "@button" +msgid "Downgrading..." +msgstr "Fazendo downgrade..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "Enfileirados" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 +msgctxt "@button" +msgid "Downgrade" +msgstr "Downgrade" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Gerir no navegador" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 +msgctxt "@button" +msgid "Installing..." +msgstr "Instalando..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -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/Marketplace/resources/qml/PackageCardHeader.qml:250 +msgctxt "@button" +msgid "Install" +msgstr "Instalar" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "Trabalhos de impressão" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254 +msgctxt "@button" +msgid "Uninstall" +msgstr "Desinstalar" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "Tempo total de impressão" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Updating..." +msgstr "Atualizando..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "Esperando por" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Imprimir pela rede" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 -msgctxt "@action:button" -msgid "Print" -msgstr "Imprimir" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 -msgctxt "@label" -msgid "Printer selection" -msgstr "Seleção de impressora" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Alterações de Configuração" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "Sobrepor" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Alterar material %1 de %2 para %3." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Alterar núcleo de impressão %1 de %2 para %3." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "Alumínio" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Finished" -msgstr "Finalizado" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Abortando..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Abortado" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Failed" -msgstr "Falhado" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Pausando..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Paused" -msgstr "Pausado" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Continuando..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 -msgctxt "@label:status" -msgid "Action required" -msgstr "Necessária uma ação" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Termina %1 em %2" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Conectar a Impressora de Rede" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Selecione sua impressora da lista abaixo:" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "Editar" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 -msgctxt "@action:button" -msgid "Remove" -msgstr "Remover" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Update" msgstr "Atualizar" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -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/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "Detalhes do pacote" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "Tipo" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "Voltar" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "Versão do firmware" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "Descrição" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "Endereço" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:110 +msgctxt "@header" +msgid "Compatible printers" +msgstr "Impressoras compatíveis" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -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/Marketplace/resources/qml/PackagePage.qml:134 +msgctxt "@info" +msgid "No compatibility information" +msgstr "Sem informação de compatibilidade" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -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/Marketplace/resources/qml/PackagePage.qml:152 +msgctxt "@header" +msgid "Compatible support materials" +msgstr "Materiais de suporte compatíveis" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -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/Marketplace/resources/qml/PackagePage.qml:176 +msgctxt "@info No materials" +msgid "None" +msgstr "Nenhum" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "Conectar" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Endereço IP inválido" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +#: /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 "Please enter a valid IP address." -msgstr "Por favor entre um endereço IP válido." +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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Endereço da Impressora" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 +msgctxt "@info" +msgid "Ultimaker Verified Plug-in" +msgstr "Complemento Verificado Ultimaker" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 -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/Marketplace/resources/qml/VerifiedIcon.qml:22 +msgctxt "@info" +msgid "Ultimaker Certified Material" +msgstr "Material Certificado Ultimaker" -#: /home/clamboo/Desktop/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/Marketplace/resources/qml/VerifiedIcon.qml:23 +msgctxt "@info" +msgid "Ultimaker Verified Package" +msgstr "Pacote Verificado Ultimaker" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Remover" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "Continuar" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Pausando..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Continuando..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "Pausar" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Abortando..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Abortar" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Move o trabalho de impressão para o topo da fila" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Remover trabalho de impressão" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Abortar impressão" - -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" msgid "" "Please make sure your printer has a connection:\n" @@ -3186,2136 +2670,657 @@ msgstr "" "- Verifique se ela está conectada à rede.\n" "- Verifique se você está logado para descobrir impressoras conectadas à nuvem." -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /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/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /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/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /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/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "Visão 3D" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "Viso de Frente" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "Visão de Cima" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "Visão à Esquerda" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "Visão à Direita" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 msgctxt "@label" -msgid "Object list" -msgstr "Lista de objetos" +msgid "Mesh Type" +msgstr "Tipo de Malha" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 +#: /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 "Marketplace" -msgstr "Mercado" +msgid "Select settings" +msgstr "Selecionar ajustes" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "Arquivo (&F)" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "&Editar" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "&Ver" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "Aju&stes" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "E&xtensões" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "P&referências" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "Ajuda (&H)" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 msgctxt "@title:window" -msgid "New project" -msgstr "Novo projeto" +msgid "Select Settings to Customize for this model" +msgstr "Selecionar Ajustes a Personalizar para este modelo" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 -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/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filtrar..." -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 -msgctxt "@label:PrintjobStatus" -msgid "Slicing..." -msgstr "Fatiando..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Exibir tudo" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 -msgctxt "@label:PrintjobStatus" -msgid "Unable to slice" -msgstr "Não foi possível fatiar" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "Complemento de Pós-Processamento" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Processing" -msgstr "Processando" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Slice" -msgstr "Fatiar" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 msgctxt "@label" -msgid "Start the slicing process" -msgstr "Inicia o processo de fatiamento" +msgid "Post Processing Scripts" +msgstr "Scripts de Pós-Processamento" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 -msgctxt "@button" -msgid "Cancel" -msgstr "Cancelar" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +msgctxt "@action" +msgid "Add a script" +msgstr "Adicionar um script" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 msgctxt "@label" -msgid "Time estimation" -msgstr "Estimativa de tempo" +msgid "Settings" +msgstr "Ajustes" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +#: /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 "Material estimation" -msgstr "Estimativa de material" +msgid "Color scheme" +msgstr "Esquema de Cores" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Cor do Material" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Tipo de Linha" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: /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 "No time estimation available" -msgstr "Sem estimativa de tempo disponível" +msgid "Compatibility Mode" +msgstr "Modo de Compatibilidade" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 msgctxt "@label" -msgid "No cost estimation available" -msgstr "Sem estimativa de custo disponível" +msgid "Travels" +msgstr "Percursos" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "Pré-visualização" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 msgctxt "@label" -msgid "Add a printer" -msgstr "Adicionar uma impressora" +msgid "Helpers" +msgstr "Assistentes" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 msgctxt "@label" -msgid "Add a networked printer" -msgstr "Adicionar uma impressora de rede" +msgid "Shell" +msgstr "Perímetro" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +#: /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 "Add a non-networked printer" -msgstr "Adicionar uma impressora local" +msgid "Infill" +msgstr "Preenchimento" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "Adicionar uma impressora de Nuvem" +msgid "Starts" +msgstr "Inícios" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "Aguardando resposta da Nuvem" +msgid "Only Show Top Layers" +msgstr "Somente Exibir Camadas Superiores" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 msgctxt "@label" -msgid "No printers found in your account?" -msgstr "Nenhuma impressora encontrada em sua conta?" +msgid "Show 5 Detailed Layers On Top" +msgstr "Exibir 5 Camadas Superiores Detalhadas" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 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:" +msgid "Top / Bottom" +msgstr "Topo / Base" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "Adicionar impressora manualmente" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 msgctxt "@label" -msgid "Add printer by IP address" -msgstr "Adicionar impressora por endereço IP" +msgid "Inner Wall" +msgstr "Parede Interna" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "Entre o endereço IP de sua impressora." - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "Adicionar" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 msgctxt "@label" -msgid "Could not connect to device." -msgstr "Não foi possível conectar ao dispositivo." +msgid "min" +msgstr "mín" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Não consegue conectar à sua impressora Ultimaker?" +msgid "max" +msgstr "máx" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +#: /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 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "Nivelamento da mesa de impressão" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 msgctxt "@label" -msgid "The printer at this address has not responded yet." +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 +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 +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 +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" + +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 -msgctxt "@button" -msgid "Back" -msgstr "Voltar" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +msgctxt "@action:button" msgid "Connect" msgstr "Conectar" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "Contrato de Usuário" +#: /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/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "Rejeitar e fechar" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Bem-vindo ao Ultimaker Cura" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +#: /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 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." +msgid "Please enter a valid IP address." +msgstr "Por favor entre um endereço IP válido." -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "Começar" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Endereço da Impressora" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +#: /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 +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 msgctxt "@label" msgid "Sign in to the Ultimaker platform" msgstr "Entre na plataforma Ultimaker" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "Adicionar ajustes de materiais e plugins do Marketplace" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "Fazer backup e sincronizar seus ajustes de materiais e plugins" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -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" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 -msgctxt "@button" -msgid "Skip" -msgstr "Pular" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Criar uma conta Ultimaker gratuita" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 -msgctxt "@label" -msgid "Manufacturer" -msgstr "Fabricante" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 -msgctxt "@label" -msgid "Profile author" -msgstr "Autor do perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 -msgctxt "@label" -msgid "Printer name" -msgstr "Nome da impressora" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 -msgctxt "@text" -msgid "Please name your printer" -msgstr "Por favor dê um nome à sua impressora" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "Atualizar" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "Adicionar impressora por IP" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "Adicionar impressora de nuvem" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "Resolução de problemas" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "Tipos de máquina" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "Uso do material" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "Número de fatias" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "Ajustes de impressão" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "Mais informações" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 -msgctxt "@label" -msgid "What's New" -msgstr "O Que Há de Novo" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "Vazio" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "Notas de lançamento" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 -msgctxt "@title:window The argument is the application name." -msgid "About %1" -msgstr "Sobre %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 -msgctxt "@label" -msgid "version: %1" -msgstr "versão: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 -msgctxt "@label" -msgid "End-to-end solution for fused filament 3D printing." -msgstr "Solução completa para impressão 3D com filamento fundido." - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 -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 "" -"Cura é desenvolvido pela Ultimaker B.V. em cooperação com a comunidade.\n" -"Cura orgulhosamente usa os seguintes projetos open-source:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 -msgctxt "@label" -msgid "Graphical user interface" -msgstr "Interface Gráfica de usuário" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" -msgid "Application framework" -msgstr "Framework de Aplicações" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" -msgid "G-code generator" -msgstr "Gerador de G-Code" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" -msgid "Interprocess communication library" -msgstr "Biblioteca de comunicação interprocessos" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" -msgid "Programming language" -msgstr "Linguagem de Programação" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" -msgid "GUI framework" -msgstr "Framework Gráfica" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" -msgid "GUI framework bindings" -msgstr "Ligações da Framework Gráfica" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" -msgid "C/C++ Binding library" -msgstr "Biblioteca de Ligações C/C++" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 -msgctxt "@label" -msgid "Data interchange format" -msgstr "Formato de Intercâmbio de Dados" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 -msgctxt "@label" -msgid "Support library for scientific computing" -msgstr "Biblioteca de suporte para computação científica" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" -msgid "Support library for faster math" -msgstr "Biblioteca de suporte para matemática acelerada" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" -msgid "Support library for handling STL files" -msgstr "Biblioteca de suporte para manuseamento de arquivos STL" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" -msgid "Support library for handling planar objects" -msgstr "Biblioteca de suporte para manuseamento de objetos planares" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" -msgid "Support library for handling triangular meshes" -msgstr "Biblioteca de suporte para manuseamento de malhas triangulares" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" -msgid "Support library for handling 3MF files" -msgstr "Biblioteca de suporte para manuseamento de arquivos 3MF" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 -msgctxt "@label" -msgid "Support library for file metadata and streaming" -msgstr "Biblioteca de suporte para streaming e metadados de arquivo" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 -msgctxt "@label" -msgid "Serial communication library" -msgstr "Biblioteca de comunicação serial" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 -msgctxt "@label" -msgid "ZeroConf discovery library" -msgstr "Biblioteca de descoberta 'ZeroConf'" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" -msgid "Polygon clipping library" -msgstr "Biblioteca de recorte de polígonos" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@Label" -msgid "Static type checker for Python" -msgstr "Verificador de tipos estáticos para Python" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@Label" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "Certificados raiz para validar confiança de SSL" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 -msgctxt "@Label" -msgid "Python Error tracking library" -msgstr "Biblioteca de rastreamento de Erros de Python" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 -msgctxt "@label" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "Biblioteca de empacotamento Polygon, desenvolvido pela Prusa Research" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -msgctxt "@label" -msgid "Python bindings for libnest2d" -msgstr "Ligações de Python para a libnest2d" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" -msgid "Support library for system keyring access" -msgstr "Biblioteca de suporte para acesso ao chaveiro do sistema" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" -msgid "Python extensions for Microsoft Windows" -msgstr "Extensões de python para o Microsoft Windows" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" -msgid "Font" -msgstr "Fonte" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" -msgid "SVG icons" -msgstr "Ícones SVG" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" -msgid "Linux cross-distribution application deployment" -msgstr "Implementação de aplicação multidistribuição em Linux" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Abrir arquivo(s)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 -msgctxt "@action:button" -msgid "Import all as models" -msgstr "Importar todos como modelos" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 -msgctxt "@title:window" -msgid "Save Project" -msgstr "Salvar Projeto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Extrusor %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 -msgctxt "@action:label" -msgid "Material" -msgstr "Material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "Não exibir resumo do projeto ao salvar novamente" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 -msgctxt "@action:button" -msgid "Save" -msgstr "Salvar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 -msgctxt "@title:window" -msgid "Discard or Keep changes" -msgstr "Descartar ou Manter alterações" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 -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'." - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 -msgctxt "@title:column" -msgid "Profile settings" -msgstr "Ajustes de perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 -msgctxt "@title:column" -msgid "Current changes" -msgstr "Alterações atuais" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 -msgctxt "@option:discardOrKeep" -msgid "Always ask me this" -msgstr "Sempre perguntar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 -msgctxt "@option:discardOrKeep" -msgid "Discard and never ask again" -msgstr "Descartar e não perguntar novamente" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 -msgctxt "@option:discardOrKeep" -msgid "Keep and never ask again" -msgstr "Manter e não perguntar novamente" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 -msgctxt "@action:button" -msgid "Discard changes" -msgstr "Descartar alterações" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 -msgctxt "@action:button" -msgid "Keep changes" -msgstr "Manter alterações" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 -msgctxt "@title:window" -msgid "Open project file" -msgstr "Abrir arquivo de projeto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "Lembrar minha escolha" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 -msgctxt "@action:button" -msgid "Open as project" -msgstr "Abrir como projeto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 -msgctxt "@action:button" -msgid "Import models" -msgstr "Importar modelos" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 -msgctxt "@label" -msgid "Active print" -msgstr "Impressão ativa" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 -msgctxt "@label" -msgid "Job Name" -msgstr "Nome do Trabalho" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 -msgctxt "@label" -msgid "Printing Time" -msgstr "Tempo de Impressão" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 -msgctxt "@label" -msgid "Estimated time left" -msgstr "Tempo restante estimado" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Add printer" -msgstr "Adicionar impressora" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 -msgctxt "@button" -msgid "Manage printers" -msgstr "Gerenciar impressoras" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "Impressoras conectadas" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "Impressoras pré-ajustadas" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 -msgctxt "@label" -msgid "Print settings" -msgstr "Ajustes de impressão" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -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/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 -msgctxt "@label" -msgid "Profile" -msgstr "Perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 -msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "" -"Alguns ajustes/sobreposições têm valores diferentes dos que estão armazenados no perfil.\n" -"\n" -"Clique para abrir o gerenciador de perfis." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 -msgctxt "@label:header" -msgid "Custom profiles" -msgstr "Perfis personalizados" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "Descartar ajustes atuais" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "Recomendado" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "Personalizado" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "On" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "Off" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" -msgstr "Experimental" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 -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" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 -msgctxt "@label" -msgid "Profiles" -msgstr "Perfis" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 -msgctxt "@label" -msgid "Support" -msgstr "Suporte" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 -msgctxt "@label" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such 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/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 -msgctxt "@label" -msgid "Gradual infill" -msgstr "Preenchimento gradual" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 -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/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "Aderência" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 -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/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "Salvar Projeto..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "Impressoras habilitadas pela rede" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "Impressoras locais" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "Material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "Favoritos" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "Genérico" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 -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/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "Multiplicar Modelo Selecionado" -msgstr[1] "Multiplicar Modelos Selecionados" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "Número de Cópias" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "&Salvar Projeto..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "&Exportar..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "Exportar Seleção..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "Configurações" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "Personalizado" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "Impressora" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "Habilitado" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "Material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 -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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 -msgctxt "@tooltip" -msgid "There are no profiles matching the configuration of this extruder." -msgstr "Não há perfis correspondendo à configuração deste extrusor." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 -msgctxt "@label" -msgid "Select configuration" -msgstr "Selecione configuração" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 -msgctxt "@label" -msgid "Configurations" -msgstr "Configurações" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "Mercado" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "Abrir Arquivo(s)..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "Im&pressora" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Definir Como Extrusor Ativo" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Habilitar Extrusor" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Desabilitar Extrusor" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "Abrir &Recente" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "Ajustes Visíveis" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "Encolher Todas As Categorias" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "Gerenciar Visibilidade dos Ajustes..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "Posição da &câmera" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "Visão de câmera" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "Perspectiva" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "Ortográfico" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "Plataforma de Impressão (&B)" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 -msgctxt "@label" -msgid "View type" -msgstr "Tipo de Visão" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 -msgctxt "@label" -msgid "Is printed as support." -msgstr "Está impresso como suporte." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "Outros modelos se sobrepondo a esse modelo foram modificados." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "Preenchimento se sobrepondo a este modelo foi modificado." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "Sobreposições neste modelo não são suportadas." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Perfis" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 -msgctxt "@action:button" -msgid "Activate" -msgstr "Ativar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "Criar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "Duplicar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 -msgctxt "@action:button" -msgid "Rename" -msgstr "Renomear" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -msgctxt "@action:button" -msgid "Import" -msgstr "Importar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -msgctxt "@action:button" -msgid "Export" -msgstr "Exportar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Criar Perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "Por favor dê um nome a este perfil." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Duplicar Perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Confirmar Remoção" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Renomear Perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Importar Perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Exportar Perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "Impressora: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "Atualizar perfil com ajustes/sobreposições atuais" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "Seus ajustes atuais coincidem com o perfil selecionado." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Ajustes globais" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 -msgctxt "@title:tab" -msgid "General" -msgstr "Geral" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 -msgctxt "@label" -msgid "Interface" -msgstr "Interface" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 -msgctxt "@label" -msgid "Currency:" -msgstr "Moeda:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 -msgctxt "@label" -msgid "Theme:" -msgstr "Tema:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Fatiar automaticamente quando mudar ajustes." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Fatiar automaticamente" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "Comportamento da área de visualização" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Exibir seções pendentes" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "Exibir erros de modelo" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Centralizar câmera quanto o item é selecionado" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "O comportamento default de ampliação deve ser invertido?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Inverter a direção da ampliação de câmera." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "Ampliar na direção do mouse" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "Assegurar que os modelos sejam mantidos separados" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "Automaticamente fazer os modelos caírem na mesa de impressão" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "Exibir mensagem de alerta no leitor de G-Code." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "Mensagem de alera no leitor de G-Code" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "O Cura deve abrir no lugar onde foi fechado?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "Restaurar posição da janela no início" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "Renderização de câmera:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 -msgid "Perspective" -msgstr "Perspectiva" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 -msgid "Orthographic" -msgstr "Ortográfica" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Abrindo e salvando arquivos" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Usar uma única instância do Cura" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Redimensionar modelos grandes" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Redimensionar modelos minúsculos" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "Os modelos devem ser selecionados após serem carregados?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "Selecionar modelos ao carregar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "Adicionar prefixo de máquina ao nome do trabalho" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "Exibir diálogo de resumo ao salvar projeto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "Comportamento default ao abrir um arquivo de projeto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "Comportamento default ao abrir um arquivo de projeto: " - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "Sempre me perguntar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Sempre abrir como projeto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Sempre importar modelos" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "Sempre descartar alterações da configuração" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "Sempre transferir as alterações para o novo perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 -msgctxt "@label" -msgid "Privacy" -msgstr "Privacidade" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "Enviar informação (anônima) de impressão" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 -msgctxt "@action:button" -msgid "More information" -msgstr "Mais informações" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 -msgctxt "@label" -msgid "Updates" -msgstr "Atualizações" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Verificar atualizações na inicialização" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 -msgctxt "@option:radio" -msgid "Stable releases only" -msgstr "Versões estáveis somente" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 -msgctxt "@option:radio" -msgid "Stable and Beta releases" -msgstr "Versões estáveis ou beta" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 -msgctxt "@option:check" -msgid "Get notifications for plugin updates" -msgstr "Ter notificações para atualizações de complementos" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "Informação" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "Confirmar Mudança de Diâmetro" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "Exibir Nome" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "Tipo de Material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "Cor" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "Propriedades" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "Densidade" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "Diâmetro" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "Custo do Filamento" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "Peso do Filamento" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "Comprimento do Filamento" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Custo por Metro" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "Desvincular Material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "Descrição" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Informação sobre Aderência" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "Criar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Duplicar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "Sincronizar com Impressoras" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "Impressora" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Importar Material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Material %1 importado com sucesso" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Exportar Material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Material exportado para %1 com sucesso" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 -msgctxt "@title:window" -msgid "Sync materials with printers" -msgstr "Sincronizar materiais com impressoras" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 -msgctxt "@title:header" -msgid "Sync materials with printers" -msgstr "Sincronizar materiais com impressoras" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 -msgctxt "@button" -msgid "Start" -msgstr "Iniciar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 -msgctxt "@button" -msgid "Why do I need to sync material profiles?" -msgstr "Por que eu preciso sincronizar perfis de material?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 -msgctxt "@title:header" -msgid "Sign in" -msgstr "Entrar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 -msgctxt "@button" -msgid "Sync materials with USB" -msgstr "Sincronizar materiais usando USB" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 -msgctxt "@title:header" -msgid "The following printers will receive the new material profiles:" -msgstr "Os seguintes materiais receberão novos perfis de material:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 -msgctxt "@title:header" -msgid "Material profiles successfully synced with the following printers:" -msgstr "Perfis de material sincronizados com sucesso com as seguintes impressoras:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 -msgctxt "@button" -msgid "Troubleshooting" -msgstr "Resolução de problemas" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 -msgctxt "@text Asking the user whether printers are missing in a list." -msgid "Printers missing?" -msgstr "Impressoras faltando?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 -msgctxt "@button" -msgid "Refresh List" -msgstr "Atualizar Lista" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 -msgctxt "@button" -msgid "Try again" -msgstr "Tentar novamente" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Done" -msgstr "Feito" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 -msgctxt "@button" -msgid "Sync" -msgstr "Sincronizar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 -msgctxt "@button" -msgid "Syncing" -msgstr "Sincronizando" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 -msgctxt "@title:header" -msgid "No printers found" -msgstr "Nenhuma impressora encontrada" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 -msgctxt "@button" -msgid "Learn how to connect your printer to Digital Factory" -msgstr "Aprenda como conectar sua impressora à Digital Factory" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 -msgctxt "@button" -msgid "Refresh" -msgstr "Atualizar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 -msgctxt "@title:header" -msgid "Sync material profiles via USB" -msgstr "Sincronizar perfis de material via USB" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 -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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 -msgctxt "@button" -msgid "How to load new material profiles to my printer" -msgstr "Como carregar novos perfis de material na minha impressora" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Export material archive" -msgstr "Exportar arquivo de material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "Exportar Todos Os Materiais" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Visibilidade dos Ajustes" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Verificar tudo" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 -msgctxt "@title:tab" -msgid "Printers" -msgstr "Impressoras" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Calculado" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "Ajustes" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "Perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "Atual" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "Unidade" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "Não conectado a nenhuma impressora" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "A impressora não aceita comandos" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "Em manutenção. Por favor verifique a impressora" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "A conexão à impressora foi perdida" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "Imprimindo..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "Pausado" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "Preparando..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Por favor remova a impressão" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "Abortar Impressão" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "Tem certeza que deseja abortar a impressão?" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 -msgctxt "@label:button" -msgid "My printers" -msgstr "Minhas impressoras" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 -msgctxt "@label:button" -msgid "Print jobs" -msgstr "Trabalhos de impressão" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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." - -#: /home/clamboo/Desktop/Cura/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." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 -msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "Suporte Ultimaker" - -#: /home/clamboo/Desktop/Cura/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." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 -msgctxt "@label:button" -msgid "Ask a question" -msgstr "Fazer uma pergunta" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 -msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "Consultar a Comunidade Ultimaker." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 -msgctxt "@label:button" -msgid "Report a bug" -msgstr "Relatar um problema" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 -msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "Visita o website da Ultimaker." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "Controle da Impressora" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "Posição de Trote" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Distância de Trote" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "Enviar G-Code" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "Extrusor" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "A temperatura atual deste hotend." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Cancelar" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Pré-aquecer" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "A cor do material neste extrusor." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "O material neste extrusor." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "O bico inserido neste extrusor." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "A impressora não está conectada." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "Mesa de Impressão" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -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/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "A temperatura em que pré-aquecer a mesa." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -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/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "Entrar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 msgctxt "@text" msgid "" "- Add material profiles and plug-ins from the Marketplace\n" @@ -5326,374 +3331,2250 @@ msgstr "" "- 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" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" msgid "Create a free Ultimaker account" msgstr "Criar uma conta Ultimaker gratuita" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "Última atualização: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Conta na Ultimaker" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 -msgctxt "@button" -msgid "Sign Out" -msgstr "Deslogar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "Verificando..." -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "Conta sincronizada" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "Alguma coisa deu errado..." -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "Instalação aguardando atualizações" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "Verificar atualizações da conta" -#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "Sem Título" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "Última atualização: %1" -#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "Conta na Ultimaker" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "Deslogar" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" -msgid "No items to select from" -msgstr "Sem itens para selecionar" +msgid "No time estimation available" +msgstr "Sem estimativa de tempo disponível" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Preview" +msgstr "Pré-visualização" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Material estimation" +msgstr "Estimativa de material" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +msgctxt "@label:PrintjobStatus" +msgid "Slicing..." +msgstr "Fatiando..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Processing" +msgstr "Processando" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +msgctxt "@button" +msgid "Slice" +msgstr "Fatiar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Cancel" +msgstr "Cancelar" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "Mostra Guia de Resolução de Problemas Online" +msgid "Show Online Troubleshooting" +msgstr "Mostrar Resolução de Problemas Online" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "Alternar Tela Cheia" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "Sair da Tela Cheia" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "Desfazer (&U)" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "&Refazer" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "Sair (&Q)" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "Visão &3D" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Visão Frontal" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "Visão Superior" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "Visão de Baixo" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "Visão do Lado Esquerdo" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "Visão do Lado Direito" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "Configurar Cura..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "&Adicionar Impressora..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "Adm&inistrar Impressoras..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Administrar Materiais..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu" +#: /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." msgid "Add more materials from Marketplace" -msgstr "Adicionar mais materiais do Mercado" +msgstr "Adicionar mais materiais ao Marketplace" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 msgctxt "@action:inmenu menubar:profile" msgid "&Update profile with current settings/overrides" msgstr "At&ualizar perfil com valores e sobreposições atuais" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "&Descartar ajustes atuais" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." msgstr "&Criar perfil a partir de ajustes/sobreposições atuais..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "Administrar perfis..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Exibir &Documentação Online" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "Relatar um &Bug" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "Novidades" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "Sobre..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "Remover Selecionados" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "Centralizar Selecionados" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "Multiplicar Selecionados" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Remover Modelo" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "Ce&ntralizar Modelo na Mesa" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "A&grupar Modelos" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Desagrupar Modelos" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "Co&mbinar Modelos" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "&Multiplicar Modelo..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "Selecionar Todos Os Modelos" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "Esvaziar a Mesa de Impressão" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "Recarregar Todos Os Modelos" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 -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" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Posicionar Todos os Modelos" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Posicionar Seleção" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Reestabelecer as Posições de Todos Os Modelos" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "Remover as Transformações de Todos Os Modelos" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "Abrir Arquiv&o(s)..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&Novo Projeto..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Exibir Pasta de Configuração" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Configurar a visibilidade dos ajustes..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "&Mercado" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "Minhas impressoras" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "Trabalhos de impressão" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +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 +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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "Suporte Ultimaker" + +#: /home/trin/Gedeeld/Projects/Cura/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." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "Consultar a Comunidade Ultimaker." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "Visita o website da Ultimaker." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 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." +msgid "Hex" +msgstr "Hexa" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 -msgctxt "@label Header for list of settings." -msgid "Affects" -msgstr "Afeta" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 -msgctxt "@label Header for list of settings." -msgid "Affected By" -msgstr "Afetado Por" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 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." +msgid "This package will be installed after restarting." +msgstr "Este pacote será instalado após o reinício." -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 -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/Cura.qml:463 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +msgctxt "@title:tab" +msgid "General" +msgstr "Geral" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +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 +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 +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 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Perfis" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +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 +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 +msgctxt "@title:window" +msgid "Open file(s)" +msgstr "Abrir arquivo(s)" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +msgctxt "@window:title" +msgid "Install Package" +msgstr "Instalar Pacote" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Abrir Arquivo(s)" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +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 +msgctxt "@title:window" +msgid "Add Printer" +msgstr "Adicionar Impressora" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +msgctxt "@title:window" +msgid "What's New" +msgstr "Novidades" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" +msgid "version: %1" +msgstr "versão: %1" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +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 +msgctxt "@info:credit" msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." +"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura proudly uses the following open source projects:" msgstr "" -"Este ajuste tem um valor que é diferente do perfil.\n" -"\n" -"Clique para restaurar o valor do perfil." +"Cura é desenvolvido pela Ultimaker B.V. em cooperação com a comunidade.\n" +"Cura orgulhosamente usa os seguintes projetos open-source:" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"Este ajuste é normalmente calculado, mas atualmente tem um conjunto absoluto de valores.\n" -"\n" -"Clique para restaurar o valor calculado." +msgid "Graphical user interface" +msgstr "Interface Gráfica de usuário" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +msgctxt "@label" +msgid "Application framework" +msgstr "Framework de Aplicações" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label" +msgid "G-code generator" +msgstr "Gerador de G-Code" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label" +msgid "Interprocess communication library" +msgstr "Biblioteca de comunicação interprocessos" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label" +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" +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" +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" +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" +msgid "Programming language" +msgstr "Linguagem de Programação" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +msgctxt "@label" +msgid "GUI framework" +msgstr "Framework Gráfica" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label" +msgid "GUI framework bindings" +msgstr "Ligações da Framework Gráfica" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label" +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" +msgid "Data interchange format" +msgstr "Formato de Intercâmbio de Dados" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label" +msgid "Font" +msgstr "Fonte" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +msgctxt "@label" +msgid "Polygon clipping library" +msgstr "Biblioteca de recorte de polígonos" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +msgctxt "@label" +msgid "JSON parser" +msgstr "Parser JSON" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label" +msgid "Utility functions, including an image loader" +msgstr "Funções de utilidade, incluindo um carregador de imagem" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label" +msgid "Utility library, including Voronoi generation" +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" +msgid "Root Certificates for validating SSL trustworthiness" +msgstr "Certificados-Raiz para validar confiança SSL" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +msgctxt "@label" +msgid "Compatibility between Python 2 and 3" +msgstr "Compatibilidade entre Python 2 e 3" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label" +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" +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" +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" +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" +msgid "Serial communication library" +msgstr "Biblioteca de comunicação serial" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label" +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" +msgid "Python Error tracking library" +msgstr "Biblioteca de rastreamento de Erros de Python" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label" +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" +msgid "ZeroConf discovery library" +msgstr "Biblioteca de descoberta 'ZeroConf'" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 +msgctxt "@label" +msgid "Universal build system configuration" +msgstr "Configuração de sistema universal de construção" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 +msgctxt "@label" +msgid "Dependency and package manager" +msgstr "Gestor de pacote e dependência" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label" +msgid "Packaging Python-applications" +msgstr "Empacotamento de aplicações Python" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label" +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" +msgid "Generating Windows installers" +msgstr "Gerando instaladores Windows" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "Lembrar minha escolha" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +msgctxt "@action:button" +msgid "Open as project" +msgstr "Abrir como projeto" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +msgctxt "@action:button" +msgid "Import models" +msgstr "Importar modelos" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:column" +msgid "Profile settings" +msgstr "Ajustes de perfil" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +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 +msgctxt "@option:discardOrKeep" +msgid "Always ask me this" +msgstr "Sempre perguntar" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +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 +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 +msgctxt "@action:button" +msgid "Discard changes" +msgstr "Descartar alterações" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +msgctxt "@action:button" +msgid "Keep changes" +msgstr "Manter alterações" + +#: /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?" +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 +msgctxt "@action:button" +msgid "Import all as models" +msgstr "Importar todos como modelos" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Extrusor %1" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & material" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +msgctxt "@action:label" +msgid "Material" +msgstr "Material" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +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 +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 +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 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "Aju&stes" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Marketplace" +msgstr "Mercado" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Marketplace" +msgstr "Mercado" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@label" +msgid "Select configuration" +msgstr "Selecione configuração" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Enabled" +msgstr "Habilitado" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +msgctxt "@label" +msgid "Material" +msgstr "Material" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +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 +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 +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 +msgctxt "@label" +msgid "Number of Copies" +msgstr "Número de Cópias" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "E&xtensões" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "&Salvar Projeto..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "Exportar Seleção..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "Material" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "Genérico" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "P&referências" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label:category menu label" +msgid "Local printers" +msgstr "Impressoras locais" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "Ajustes Visíveis" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "Gerenciar Visibilidade dos Ajustes..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "Perspectiva" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "Imprimindo..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "Pausado" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "Preparando..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Abort Print" +msgstr "Abortar Impressão" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Is printed as support." +msgstr "Está impresso como suporte." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Defaults" +msgstr "Defaults" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +msgctxt "@label" +msgid "Interface" +msgstr "Interface" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +msgctxt "@heading" +msgid "-- incomplete --" +msgstr "-- incompleto --" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +msgctxt "@label" +msgid "Currency:" +msgstr "Moeda:" + +#: /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." +msgid "Theme*:" +msgstr "Tema*:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +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 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "Fatiar automaticamente" + +#: /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." +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 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "Comportamento da área de visualização" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +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 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "Exibir seções pendentes" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +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 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "Exibir erros de modelo" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "Renderização de câmera:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +msgid "Perspective" +msgstr "Perspectiva" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +msgid "Orthographic" +msgstr "Ortográfica" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "Abrindo e salvando arquivos" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +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 +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 +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 +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 +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 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "Redimensionar modelos grandes" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +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 +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "Redimensionar modelos minúsculos" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:665 +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 +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "Selecionar modelos ao carregar" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:680 +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 +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 +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 +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 +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 +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 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "Sempre me perguntar" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +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 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "Sempre importar modelos" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +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 +msgctxt "@label" +msgid "Profiles" +msgstr "Perfis" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +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 +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 +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 +msgctxt "@label" +msgid "Privacy" +msgstr "Privacidade" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +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 +msgctxt "@label" +msgid "Updates" +msgstr "Atualizações" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +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 +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 +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 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "Versões estáveis somente" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +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 +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 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Rename" +msgstr "Renomear" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Import" +msgstr "Importar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Importar Material" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Exportar Material" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +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 +msgctxt "@button" +msgid "Start" +msgstr "Iniciar" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +msgctxt "@title:header" +msgid "Sign in" +msgstr "Entrar" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +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 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "Sincronizar materiais usando USB" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +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 +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 +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 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "Resolução de problemas" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +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 +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 +msgctxt "@button" +msgid "Refresh List" +msgstr "Atualizar Lista" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +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 +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 +msgctxt "@button" +msgid "Sync" +msgstr "Sincronizar" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +msgctxt "@button" +msgid "Syncing" +msgstr "Sincronizando" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +msgctxt "@title:header" +msgid "No printers found" +msgstr "Nenhuma impressora encontrada" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +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 +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 +msgctxt "@button" +msgid "Refresh" +msgstr "Atualizar" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +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 +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 +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 +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 +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 +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 +msgctxt "@button" +msgid "Back" +msgstr "Voltar" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +msgctxt "@button" +msgid "Export material archive" +msgstr "Exportar arquivo de material" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "Exportar Todos Os Materiais" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Display Name" +msgstr "Exibir Nome" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Material Type" +msgstr "Tipo de Material" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title" +msgid "Material color picker" +msgstr "Seletor de cores do material" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Density" +msgstr "Densidade" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Filament Cost" +msgstr "Custo do Filamento" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Filament length" +msgstr "Comprimento do Filamento" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Unlink Material" +msgstr "Desvincular Material" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Adhesion Information" +msgstr "Informação sobre Aderência" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Print settings" +msgstr "Ajustes de impressão" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@action:button" +msgid "Update profile." +msgstr "Atualizar perfil." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "Descartar ajustes atuais" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Ajustes globais" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Exportar Perfil" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "Visibilidade dos Ajustes" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" -msgid "Search settings" -msgstr "Ajustes de busca" +msgid "Check all" +msgstr "Verificar tudo" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 -msgctxt "@action:menu" -msgid "Copy value to all extruders" -msgstr "Copiar valor para todos os extrusores" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "Extrusor" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 -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/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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 -msgctxt "@action:menu" -msgid "Hide this setting" -msgstr "Ocultar este ajuste" +#: /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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 -msgctxt "@action:menu" -msgid "Don't show this setting" -msgstr "Não exibir este ajuste" +#: /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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 -msgctxt "@action:menu" -msgid "Keep this setting visible" -msgstr "Manter este ajuste visível" +#: /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/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 +#: /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 +msgctxt "@label" +msgid "Active print" +msgstr "Impressão ativa" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +msgctxt "@label" +msgid "Job Name" +msgstr "Nome do Trabalho" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Estimated time left" +msgstr "Tempo restante estimado" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip" +msgid "" +"Some setting/override values are different from the values stored in the profile.\n" +"\n" +"Click to open the profile manager." +msgstr "" +"Alguns ajustes/sobreposições têm valores diferentes dos que estão armazenados no perfil.\n" +"\n" +"Clique para abrir o gerenciador de perfis." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@label:Should be short" +msgid "On" +msgstr "On" + +#: /home/trin/Gedeeld/Projects/Cura/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" + +#: /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 "o perfil personalizado está ativo e você sobrescreveu alguns ajustes." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +msgctxt "@info" +msgid "custom profile is overriding some settings." +msgstr "o perfil personalizado está sobrepujando alguns ajustes." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 +msgctxt "@info" +msgid "Some settings were changed." +msgstr "Alguns ajustes foram alterados." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +msgctxt "@label" +msgid "Adhesion" +msgstr "Aderência" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +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 +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" +msgstr "Resolução" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +msgctxt "@label" +msgid "Support" +msgstr "Suporte" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +msgctxt "@label" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such 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 +msgctxt "@error" +msgid "Configuration not supported" +msgstr "Configuração não suportada" + +#: /home/trin/Gedeeld/Projects/Cura/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 "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 +msgctxt "@button:label" +msgid "Learn more" +msgstr "Saber mais" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +msgctxt "@title:column" +msgid "Setting" +msgstr "Ajustes" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +msgctxt "@title:column" +msgid "Profile" +msgstr "Perfil" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +msgctxt "@title:column" +msgid "Current" +msgstr "Atual" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@placeholder" +msgid "Search" +msgstr "Buscar" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5704,140 +5585,357 @@ msgstr "" "\n" "Clique para tornar estes ajustes visíveis." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "Este pacote será instalado após o reinício." +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/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 -msgctxt "@title:tab" -msgid "Settings" -msgstr "Ajustes" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +msgctxt "@label Header for list of settings." +msgid "Affects" +msgstr "Afeta" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "Fechando %1" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +msgctxt "@label Header for list of settings." +msgid "Affected By" +msgstr "Afetado Por" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 -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/Settings/SettingItem.qml:190 +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/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 -msgctxt "@window:title" -msgid "Install Package" -msgstr "Instalar Pacote" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +msgctxt "@label" +msgid "This setting is resolved from conflicting extruder-specific values:" +msgstr "Este ajuste é resolvido dos valores conflitante específicos de extrusor:" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Abrir Arquivo(s)" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +msgctxt "@label" +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"Este ajuste tem um valor que é diferente do perfil.\n" +"\n" +"Clique para restaurar o valor do perfil." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 -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/Settings/SettingItem.qml:334 +msgctxt "@label" +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"Este ajuste é normalmente calculado, mas atualmente tem um conjunto absoluto de valores.\n" +"\n" +"Clique para restaurar o valor calculado." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 -msgctxt "@title:window" -msgid "Add Printer" -msgstr "Adicionar Impressora" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +msgctxt "@label:textbox" +msgid "Search settings" +msgstr "Ajustes de busca" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 -msgctxt "@title:window" +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:menu" +msgid "Hide this setting" +msgstr "Ocultar este ajuste" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:menu" +msgid "Keep this setting visible" +msgstr "Manter este ajuste visível" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:tooltip" +msgid "Front View" +msgstr "Viso de Frente" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "Visão à Esquerda" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "View type" +msgstr "Tipo de Visão" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "Aguardando resposta da Nuvem" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Add printer manually" +msgstr "Adicionar impressora manualmente" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +msgctxt "@label" +msgid "Manufacturer" +msgstr "Fabricante" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Printer name" +msgstr "Nome da impressora" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Refresh" +msgstr "Atualizar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "Resolução de problemas" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Add" +msgstr "Adicionar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +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 +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 +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 +msgctxt "@button" +msgid "Connect" +msgstr "Conectar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +msgctxt "@button" +msgid "Skip" +msgstr "Pular" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +msgctxt "@text" +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 +msgctxt "@label" +msgid "Empty" +msgstr "Vazio" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" msgid "What's New" -msgstr "Novidades" +msgstr "O Que Há de Novo" -#: PerObjectSettingsTool/plugin.json +#: /home/trin/Gedeeld/Projects/Cura/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 "Provides the Per Model Settings." -msgstr "Provê Ajustes Por Modelo." +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." -#: PerObjectSettingsTool/plugin.json +#: ModelChecker/plugin.json msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Ferramenta de Ajustes Por Modelo" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" +msgid "Model Checker" +msgstr "Verificador de Modelo" #: 3MFReader/plugin.json msgctxt "description" @@ -5849,65 +5947,15 @@ msgctxt "name" msgid "3MF Reader" msgstr "Leitor de 3MF" -#: UFPWriter/plugin.json +#: 3MFWriter/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)." +msgid "Provides support for writing 3MF files." +msgstr "Provê suporte à escrita de arquivos 3MF." -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "name" -msgid "UFP Writer" -msgstr "Gerador de UFP" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" +msgid "3MF Writer" +msgstr "Gerador de 3MF" #: AMFReader/plugin.json msgctxt "description" @@ -5919,25 +5967,35 @@ msgctxt "name" msgid "AMF Reader" msgstr "Leitor AMF" -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Lê G-Code de um arquivo comprimido." +msgid "Backup and restore your configuration." +msgstr "Permite backup e restauração da configuração." -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Leitor de G-Code Comprimido" +msgid "Cura Backups" +msgstr "Backups Cura" -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/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" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Provê a ligação ao backend de fatiamento CuraEngine." -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "Pós-processamento" +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" @@ -5949,65 +6007,15 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Gravador de Perfis do Cura" -#: USBPrinting/plugin.json +#: DigitalLibrary/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." +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." -#: USBPrinting/plugin.json +#: DigitalLibrary/plugin.json msgctxt "name" -msgid "USB printing" -msgstr "Impressão USB" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" +msgid "Ultimaker Digital Library" +msgstr "Digital Library da Ultimaker" #: FirmwareUpdateChecker/plugin.json msgctxt "description" @@ -6019,45 +6027,55 @@ msgctxt "name" msgid "Firmware Update Checker" msgstr "Verificador de Atualizações de Firmware" -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/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." +msgid "Provides a machine actions for updating firmware." +msgstr "Provê ações de máquina para atualização do firmware." -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Slice info" -msgstr "Informação de fatiamento" +msgid "Firmware Updater" +msgstr "Atualizador de Firmware" -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/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." +msgid "Reads g-code from a compressed archive." +msgstr "Lê G-Code de um arquivo comprimido." -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "Perfis de Material" +msgid "Compressed G-code Reader" +msgstr "Leitor de G-Code Comprimido" -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/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." +msgid "Writes g-code to a compressed archive." +msgstr "Escreve em formato G-Code comprimido." -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/plugin.json msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Digital Library da Ultimaker" +msgid "Compressed G-code Writer" +msgstr "Gerador de G-Code Comprimido" -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "Buscar, gerenciar e instalar novos pacotes do Cura." +msgid "Provides support for importing profiles from g-code files." +msgstr "Provê suporte a importar perfis de arquivos G-Code." -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "Ferramentas" +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" @@ -6069,245 +6087,155 @@ 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 Simulation view." -msgstr "Provê a Visão Simulada." +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" -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/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." +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Submete informações de fatiamento anônimas. Pode ser desabilitado nas preferências." -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/plugin.json msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Atualização de Versão de 4.5 para 4.6" +msgid "Slice info" +msgstr "Informação de fatiamento" -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/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." +msgid "Provides a normal solid mesh view." +msgstr "Provê uma visualização de malha sólida normal." -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/plugin.json msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Atualização de Versão de 2.5 para 2.6" +msgid "Solid View" +msgstr "Visão Sólida" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/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." +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" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/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/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/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/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/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/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/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/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/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" - -#: 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/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/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/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/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/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/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/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/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/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" - -#: 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" +msgid "Support Eraser" +msgstr "Apagador de Suporte" #: TrimeshReader/plugin.json msgctxt "description" @@ -6329,45 +6257,645 @@ msgctxt "name" msgid "UFP Reader" msgstr "Leitor UFP" -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Provê uma visualização de malha sólida normal." +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Provê suporte para a escrita de Ultimaker Format Packages (Pacotes de Formato da Ultimaker)." -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "name" -msgid "Solid View" -msgstr "Visão Sólida" +msgid "UFP Writer" +msgstr "Gerador de UFP" -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Provê suporte à escrita de arquivos 3MF." +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.)." -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "name" -msgid "3MF Writer" -msgstr "Gerador de 3MF" +msgid "Ultimaker machine actions" +msgstr "Ações de máquina Ultimaker" -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Provê um estágio de monitor no Cura." +msgid "Manages network connections to Ultimaker networked printers." +msgstr "Administra conexões de rede a impressora Ultimaker conectadas." -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "name" -msgid "Monitor Stage" -msgstr "Estágio de Monitor" +msgid "Ultimaker Network Connection" +msgstr "Conexão de Rede Ultimaker" -#: ModelChecker/plugin.json +#: USBPrinting/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." +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." -#: ModelChecker/plugin.json +#: USBPrinting/plugin.json msgctxt "name" -msgid "Model Checker" -msgstr "Verificador de Modelo" +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." diff --git a/resources/i18n/pt_BR/fdmextruder.def.json.po b/resources/i18n/pt_BR/fdmextruder.def.json.po index fd346707cf..a05d40983a 100644 --- a/resources/i18n/pt_BR/fdmextruder.def.json.po +++ b/resources/i18n/pt_BR/fdmextruder.def.json.po @@ -1,12 +1,12 @@ # Cura -# Copyright (C) 2020 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0000\n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" "PO-Revision-Date: 2021-04-11 17:09+0200\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" diff --git a/resources/i18n/pt_BR/fdmprinter.def.json.po b/resources/i18n/pt_BR/fdmprinter.def.json.po index ef79c89037..a9eeea20a3 100644 --- a/resources/i18n/pt_BR/fdmprinter.def.json.po +++ b/resources/i18n/pt_BR/fdmprinter.def.json.po @@ -1,13 +1,13 @@ # Cura -# Copyright (C) 2020 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.0\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 11:59+0000\n" -"PO-Revision-Date: 2022-01-04 05:45+0100\n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"PO-Revision-Date: 2022-07-04 03:38+0200\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" "Language: pt_BR\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.0\n" +"X-Generator: Poedit 3.0.1\n" #: fdmprinter.def.json msgctxt "machine_settings label" @@ -253,7 +253,7 @@ 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 extrusores. Um extrusor é a combinação de um alimentador/tracionador, opcional tubo de filamento guiado e o hotend." +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" @@ -467,8 +467,8 @@ msgstr "Polígono da Cabeça com Ventoinha" #: fdmprinter.def.json 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." +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" @@ -740,6 +740,16 @@ 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" @@ -960,6 +970,56 @@ 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" @@ -991,14 +1051,24 @@ msgid "Optimize the order in which walls are printed so as to reduce the number 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 "outer_inset_first label" -msgid "Outer Before Inner Walls" -msgstr "Paredes exteriores antes das interiores" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Ordem de Parede" #: fdmprinter.def.json -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 "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" @@ -1011,84 +1081,54 @@ msgid "Prints an extra wall at every other layer. This way infill gets caught be 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 "travel_compensate_overlapping_walls_enabled label" -msgid "Compensate Wall Overlaps" -msgstr "Compensar Sobreposições de Parede" +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Largura Mínina de Filete de Parede" #: fdmprinter.def.json -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 o fluxo para partes de uma parede sendo impressa onde já há outra parede." +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "Para estruturas finas 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 "travel_compensate_overlapping_walls_0_enabled label" -msgid "Compensate Outer Wall Overlaps" -msgstr "Compensar Sobreposições de Parede Externa" +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 "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 "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 "travel_compensate_overlapping_walls_x_enabled label" -msgid "Compensate Inner Wall Overlaps" -msgstr "Compensar Sobreposições da Parede Interna" +msgctxt "wall_split_middle_threshold label" +msgid "Split Middle Line Threshold" +msgstr "Limite de Filete Central Dividido" #: fdmprinter.def.json -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 "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 "wall_min_flow label" -msgid "Minimum Wall Flow" -msgstr "Mínimo Fluxo da Parede" +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 "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 "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_min_flow_retract label" -msgid "Prefer Retract" -msgstr "Preferir Retração" +msgctxt "wall_add_middle_threshold label" +msgid "Add Middle Line Threshold" +msgstr "Adicionar Limite de Filete Central" #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps label" -msgid "Fill Gaps Between Walls" -msgstr "Preenche Lacunas Entre Paredes" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps description" -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." - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option nowhere" -msgid "Nowhere" -msgstr "Em lugar nenhum" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option everywhere" -msgid "Everywhere" -msgstr "Em todos os lugares" - -#: fdmprinter.def.json -msgctxt "filter_out_tiny_gaps label" -msgid "Filter Out Tiny Gaps" -msgstr "Filtrar Pequenas Lacunas" - -#: fdmprinter.def.json -msgctxt "filter_out_tiny_gaps description" -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 "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" @@ -1100,6 +1140,26 @@ 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" @@ -2199,6 +2259,26 @@ 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" @@ -2710,24 +2790,14 @@ msgid "The first few layers are printed slower than the rest of the model, to ge 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_enabled label" -msgid "Equalize Filament Flow" -msgstr "Equalizar Fluxo de Filamento" +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_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." - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_max label" -msgid "Maximum Speed for Flow Equalization" -msgstr "Velocidade Máxima para Equalização de Fluxo" - -#: fdmprinter.def.json -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 "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" @@ -2739,6 +2809,16 @@ 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 "Habilitar Aceleração de Percurso" + +#: 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 "acceleration_print label" msgid "Print Acceleration" @@ -2929,6 +3009,16 @@ 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 "Habilitar Jerk de Percurso" + +#: 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 "jerk_print label" msgid "Print Jerk" @@ -4464,6 +4554,46 @@ 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" @@ -4628,6 +4758,16 @@ 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" @@ -5128,6 +5268,16 @@ 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" @@ -6422,6 +6572,36 @@ 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 "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "Alternar Direções de Parede" + +#: 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 "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" + +#: 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 "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Contagem de Paredes da Base do Raft" + +#: 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 "command_line_settings label" msgid "Command Line Settings" @@ -6482,6 +6662,98 @@ 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." +#~ 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 "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 "travel_compensate_overlapping_walls_enabled label" +#~ msgid "Compensate Wall Overlaps" +#~ msgstr "Compensar Sobreposições de Parede" + +#~ 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 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_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 "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 "wall_min_flow label" +#~ msgid "Minimum Wall Flow" +#~ msgstr "Mínimo Fluxo da Parede" + +#~ 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 "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 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 "fill_perimeter_gaps label" +#~ msgid "Fill Gaps Between Walls" +#~ msgstr "Preenche Lacunas Entre Paredes" + +#~ msgctxt "fill_perimeter_gaps description" +#~ 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" + +#~ msgctxt "filter_out_tiny_gaps description" +#~ 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 "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 "speed_equalize_flow_max label" +#~ msgid "Maximum Speed for Flow Equalization" +#~ msgstr "Velocidade Máxima para Equalização de Fluxo" + +#~ 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 "machine_max_feedrate_e label" #~ msgid "Maximum Feedrate" #~ msgstr "Velocidade Máxima de Alimentação" diff --git a/resources/i18n/pt_PT/cura.po b/resources/i18n/pt_PT/cura.po index 3f68d20754..3ad78c8f87 100644 --- a/resources/i18n/pt_PT/cura.po +++ b/resources/i18n/pt_PT/cura.po @@ -1,471 +1,211 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0100\n" -"PO-Revision-Date: 2021-04-16 14:56+0200\n" -"Last-Translator: Lionbridge \n" -"Language-Team: Portuguese , Paulo Miranda , Portuguese \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" "Language: pt_PT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.4.1\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" -#: /home/clamboo/Desktop/Cura/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/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "Desconhecido" -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 -msgctxt "@info:title" -msgid "Backup" -msgstr "Backup" +#: /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/clamboo/Desktop/Cura/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/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Impressoras em rede disponíveis" -#: /home/clamboo/Desktop/Cura/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/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Manter" -#: /home/clamboo/Desktop/Cura/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/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/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 -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/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/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 -msgctxt "@action:button" -msgid "New materials installed" -msgstr "Novos materiais instalados" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 -msgctxt "@action:button" -msgid "Sync materials with printers" -msgstr "Sincronizar materiais" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 -msgctxt "@action:button" -msgid "Learn more" -msgstr "Saber mais" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 -msgctxt "@message:title" -msgid "Failed to save material archive" -msgstr "Erro ao guardar o arquivo de material" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 -msgctxt "@text" -msgid "Unknown error." -msgstr "Erro desconhecido." - -#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 -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/clamboo/Desktop/Cura/cura/BuildVolume.py:102 -msgctxt "@info:title" -msgid "Build Volume" -msgstr "Volume de construção" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Manter" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "Desconhecido" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Impressoras em rede disponíveis" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 +#: /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" -# rever! -# contexto -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Todos os Ficheiros (*)" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Acabamento" +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Calculado" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Rascunho" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 -msgctxt "@label" -msgid "Custom Material" -msgstr "Material Personalizado" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 -msgctxt "@label" -msgid "Custom" -msgstr "Personalizado" - -#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 +#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "Falha no início de sessão" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "A procurar nova posição para os objetos" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 msgctxt "@info:title" msgid "Finding Location" msgstr "A Procurar Posição" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 +#: /home/trin/Gedeeld/Projects/Cura/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" -# rever! -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Não é Possível Posicionar" -#: /home/clamboo/Desktop/Cura/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/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/CuraApplication.py:530 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "A carregar máquinas..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "A configurar as preferências..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "A Inicializar a Máquina Ativa..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "A inicializar o gestor das máquinas..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "A inicializar o volume de construção..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "A configurar cenário..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "A carregar interface..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "A inicializar o motor..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 -#, 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" - -# rever! -# contexto! -# Atenção? -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 +#: /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 msgctxt "@info:title" -msgid "Warning" -msgstr "Aviso" +msgid "Backup" +msgstr "Backup" -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 -#, python-brace-format +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 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" +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/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 msgctxt "@info:title" -msgid "Error" -msgstr "Erro" +msgid "Build Volume" +msgstr "Volume de construção" -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 -msgctxt "@action:button" -msgid "Skip" -msgstr "Ignorar" - -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "Fechar" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 -msgctxt "@action:button" -msgid "Next" -msgstr "Seguinte" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 -msgctxt "@action:button" -msgid "Finish" -msgstr "Concluir" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "Adicionar" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Cancelar" - -#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 -#, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "Grupo #{group_nr}" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Parede Exterior" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "Paredes Interiores" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Skin" -msgstr "Revestimento" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Infill" -msgstr "Enchimento" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Enchimento dos Suportes" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Interface dos Suportes" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Support" -msgstr "Suportes" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Contorno" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "Torre de preparação" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 -msgctxt "@tooltip" -msgid "Travel" -msgstr "Deslocação" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Retrações" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 -msgctxt "@tooltip" -msgid "Other" -msgstr "Outro" - -#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 -#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 -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/clamboo/Desktop/Cura/cura/CrashHandler.py:107 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Não é possível iniciar o Cura" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

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

      \n" @@ -480,34 +220,32 @@ msgstr "" "

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

      \n" " " -# rever! -# button size? -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 msgctxt "@action:button" msgid "Send crash report to Ultimaker" msgstr "Enviar relatório de falhas para a Ultimaker" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "Mostrar relatório de falhas detalhado" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "Mostrar pasta de configuração" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Backup e Repor a Configuração" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "Relatório de Falhas" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190 +#: /home/trin/Gedeeld/Projects/Cura/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" @@ -515,648 +253,813 @@ msgid "" " " msgstr "" "

      Ocorreu um erro fatal no Cura. Por favor envie-nos este Relatório de Falhas para podermos resolver o problema

      \n" -"

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

      \n" +"

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

      \n" " " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Informações do sistema" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Desconhecido" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Versão do Cura" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Idioma do Cura" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "Idioma do Sistema Operativo" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Plataforma" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Versão Qt" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "Versão PyQt" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 msgctxt "@label" -msgid "Not yet initialized
      " -msgstr "Ainda não inicializado
      " +msgid "Not yet initialized" +msgstr "Ainda não foi inicializado" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
    • OpenGL Version: {version}
    • " msgstr "
    • Versão do OpenGL: {version}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
    • OpenGL Vendor: {vendor}
    • " msgstr "
    • Vendedor do OpenGL: {vendor}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
    • OpenGL Renderer: {renderer}
    • " msgstr "
    • Processador do OpenGL: {renderer}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Determinação da origem do erro" -# rever! -# Registos? -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "Relatórios" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "Enviar relatório" -#: /home/clamboo/Desktop/Cura/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/CuraApplication.py:531 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "A carregar máquinas..." -#: /home/clamboo/Desktop/Cura/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." +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "A configurar as preferências..." -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "A Inicializar a Máquina Ativa..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "A inicializar o gestor das máquinas..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "A inicializar o volume de construção..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "A configurar cenário..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "A carregar interface..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "A inicializar o motor..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#, 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 +#, 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 msgctxt "@info:title" -msgid "Log-in failed" -msgstr "O Log-in falhou" +msgid "Warning" +msgstr "Aviso" -#: /home/clamboo/Desktop/Cura/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/CuraApplication.py:1810 +#, 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/clamboo/Desktop/Cura/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/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 +msgctxt "@info:title" +msgid "Error" +msgstr "Erro" -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 -msgctxt "@message" -msgid "Could not read response." -msgstr "Não foi possível ler a resposta." - -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "Multiplicar e posicionar objetos" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "A posicionar objetos" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "A Posicionar Objeto" -#: /home/clamboo/Desktop/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/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "Não foi possível ler a resposta." -#: /home/clamboo/Desktop/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/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "O estado apresentado não está correto." -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 -msgctxt "@label" -msgid "Nozzle" -msgstr "Nozzle" +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 -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/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/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info" +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 msgctxt "@info:title" -msgid "Settings updated" -msgstr "Definições atualizadas" +msgid "Log-in failed" +msgstr "O Log-in falhou" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "Extrusor(es) desativado(s)" +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 msgctxt "@title:window" msgid "File Already Exists" msgstr "O Ficheiro Já Existe" -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "URL de ficheiro inválido:" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Exportação bem-sucedida" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Perfil {0} importado com êxito." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Perfil personalizado" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "Ainda não existe qualquer impressora ativa." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Não é possível adicionar o perfil." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: /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 msgctxt "@label" -msgid "Per Model Settings" -msgstr "Definições Por-Modelo" +msgid "Nozzle" +msgstr "Nozzle" -#: /home/clamboo/Desktop/Cura/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/cura/Settings/MachineManager.py:857 +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/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Perfil Cura" - -#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "Ficheiro X3D" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 msgctxt "@info:title" -msgid "Backups" -msgstr "Cópias de segurança" +msgid "Settings updated" +msgstr "Definições atualizadas" -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Gerir cópias de segurança" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Definições da Máquina" - -#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "Remover Suportes" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Disco Externo" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "Guardar no Disco Externo" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "Guardar no Disco Externo {0}" - -# rever! -# contexto -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 msgctxt "@info:title" -msgid "Saving" -msgstr "A Guardar" +msgid "Extruder(s) Disabled" +msgstr "Extrusor(es) desativado(s)" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "Guardado no Disco Externo {0} como {1}" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 -msgctxt "@info:title" -msgid "File Saved" -msgstr "Ficheiro Guardado" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" -msgid "Eject" -msgstr "Ejetar" +msgid "Add" +msgstr "Adicionar" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Cancelar" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 #, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "Ejetar Disco Externo {0}" +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "Grupo #{group_nr}" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 -#, 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/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Parede Exterior" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "Paredes Interiores" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "Revestimento" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "Enchimento" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Enchimento dos Suportes" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Interface dos Suportes" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "Suportes" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Contorno" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "Torre de preparação" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "Deslocação" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Retrações" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Close" +msgstr "Fechar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "Novos materiais instalados" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Learn more" +msgstr "Saber mais" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@text" +msgid "Unknown error." +msgstr "Erro desconhecido." + +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Remover Hardware de forma segura" +msgid "3D Model Assistant" +msgstr "Assistente de Modelos 3D" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 #, 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." +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 "" +"

      Um, ou mais, dos modelos 3D podem ter menos qualidade de impressão devido à dimensão do modelo 3D e definição de material:

      \n" +"

      {model_names}

      \n" +"

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

      \n" +"

      Ver o guia de qualidade da impressão

      " -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Atualizar firmware" - -#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Perfis Cura 15.04" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Recomendado" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Personalizado" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 +#: /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." -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 msgctxt "@info:title" msgid "Open Project File" msgstr "Abrir ficheiro de projeto" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 +#: /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 "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." + +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:392 +msgctxt "@info:title" +msgid "Material profiles not installed" +msgstr "Perfis do material não instalados" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:405 +msgctxt "@action:button" +msgid "Install Materials" +msgstr "Instalar materiais" + +#: /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/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 -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/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "O plug-in Gravador 3MF está danificado." -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 -#: /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Arquivo Ultimaker Format" +#: /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/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "Ficheiro G-code" +#: /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/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "Pré-visualizar" +#: /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/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Vista Raio-X" +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "A Processar Camadas" +#: /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 "Não foi possível guardar a informação do pacote do material no ficheiro do projecto: {material}. Este projeto poderá não abrir corretamente em outros sistemas." -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:283 msgctxt "@info:title" -msgid "Information" -msgstr "Informações" +msgid "Failed to save material package information" +msgstr "Não foi possível guardar a informação do pacote do material" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 msgctxt "@message:title" msgid "Slicing failed" msgstr "O seccionamento falhou" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 msgctxt "@message:button" msgid "Report a bug" msgstr "Reportar um erro" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 msgctxt "@info:status" msgid "" "Please review settings and check if your models:\n" @@ -1169,436 +1072,516 @@ msgstr "" "- Estão atribuídos a uma extrusora ativada\n" "- Não estão todos definidos como objetos modificadores" -#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "Ficheiro AMF" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "Ficheiro G-code comprimido" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "Pós-Processamento" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "Modificar G-Code" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "Impressão USB" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Imprimir por USB" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Imprimir por USB" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Ligado via USB" +msgid "Processing Layers" +msgstr "A Processar Camadas" -#: /home/clamboo/Desktop/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 "Existe uma impressão por USB em curso; fechar o Cura irá interromper esta impressão. Tem a certeza?" - -#: /home/clamboo/Desktop/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 "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/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 -msgctxt "@message" -msgid "Print in Progress" -msgstr "Impressão em curso" - -#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "Preparar" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "A analisar G-code" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 msgctxt "@info:title" -msgid "G-code Details" -msgstr "Detalhes do G-code" +msgid "Information" +msgstr "Informações" -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 -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/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 msgctxt "@item:inlistbox" -msgid "G File" -msgstr "Ficheiro G" +msgid "Cura Profile" +msgstr "Perfil Cura" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "Imagem JPG" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "Imagem JPEG" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "Imagem PNG" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "Imagem BMP" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "Imagem GIF" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "Nivelar base de construção" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "Selecionar atualizações" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +#: /home/trin/Gedeeld/Projects/Cura/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." -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#: /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}." -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#: /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" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 msgctxt "@action:button" msgid "How to update" msgstr "Como atualizar" -#: /home/clamboo/Desktop/Cura/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/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Atualizar firmware" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 -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/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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "A sincronizar..." +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +#: /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 "Changes detected from your Ultimaker account" -msgstr "Foram detetadas alterações da sua conta Ultimaker" +msgid "G-code Details" +msgstr "Detalhes do G-code" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 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?" +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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 -msgctxt "@action:button" -msgid "Sync" -msgstr "Sincronizar" +#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "Ficheiro G" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Rejeitar e remover da conta" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "Falhou a transferência de {} plug-ins" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "Rejeitar" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "Concordar" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Contrato de licença do plug-in" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +#: /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/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +#: /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 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "Monitorizar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@item:inmenu" +msgid "Post Processing" +msgstr "Pós-Processamento" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@item:inmenu" +msgid "Prepare" +msgstr "Preparar" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 +msgctxt "@item:inmenu" +msgid "Preview" +msgstr "Pré-visualizar" + +#: /home/trin/Gedeeld/Projects/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 +#, 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 +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 +#, 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 +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 +#, 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 +#, 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 +#, 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 +#, 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 +msgctxt "@info:title" +msgid "File Saved" +msgstr "Ficheiro Guardado" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +msgctxt "@action:button" +msgid "Eject" +msgstr "Ejetar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +#, 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 +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "Remover Hardware de forma segura" + +#: /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 "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 +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." -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 msgctxt "@info:title" msgid "Simulation View" msgstr "Visualização por Camadas" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:133 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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 msgctxt "@info:title" msgid "No layers to show" msgstr "Sem camadas para visualizar" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +#: /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 "Não mostrar esta mensagem novamente" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Vista Camadas" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "Imprimir através da rede" +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Imprimir através da rede" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Ligado através da rede" +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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "amanhã" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 +msgctxt "@info:title" +msgid "Model Errors" +msgstr "Erros no modelo" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "hoje" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Solid view" +msgstr "Vista Sólidos" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 +msgctxt "@label" +msgid "Support Blocker" +msgstr "Remover Suportes" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 Triangle Format" + +#: /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 "Arquivo Ultimaker Format" + +#: /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 "Não é possível escrever no ficheiro UFP:" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" -msgid "Connect via Network" -msgstr "Ligar Através da Rede" +msgid "Level build plate" +msgstr "Nivelar base de construção" -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "Erro de impressão" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Dados Enviados" - -#: /home/clamboo/Desktop/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 "Está a tentar ligar a uma impressora que não tem o Ultimaker Connect. Atualize a impressora para o firmware mais recente." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 -msgctxt "@info:title" -msgid "Update your printer" -msgstr "Atualizar a impressora" - -#: /home/clamboo/Desktop/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 "A fila de trabalhos de impressão está cheia. A impressora não consegue aceitar um novo trabalho." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "Fila cheia" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "A enviar trabalho de impressão" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/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 "O Cura detetou perfis de material que ainda não estavam instalados na impressora que aloja o grupo {0}." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "Enviar materiais para a impressora" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "Erro de rede" - -#: /home/clamboo/Desktop/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 "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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "Não é Host do grupo" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 msgctxt "@action" -msgid "Configure group" -msgstr "Configurar grupo" +msgid "Select upgrades" +msgstr "Selecionar atualizações" -#: /home/clamboo/Desktop/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 "" -"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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 -msgctxt "@action" -msgid "Get started" -msgstr "Iniciar" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 -msgctxt "@action" -msgid "Learn more" -msgstr "Saber mais" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 msgctxt "@action:button" msgid "Print via cloud" msgstr "Imprimir através da cloud" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Imprimir através da cloud" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Ligada através da cloud" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 msgctxt "@action:button" msgid "Monitor print" msgstr "Monitorizar a impressão" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 msgctxt "@action:tooltip" msgid "Track the print in Ultimaker Digital Factory" msgstr "Controle a impressão no Ultimaker Digital Factory" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#: /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 "Código de erro desconhecido ao carregar trabalho de impressão: {0}" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 +#: /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" @@ -1606,71 +1589,71 @@ msgid_plural "... and {0} others" msgstr[0] "... e {0} outra" msgstr[1] "... e {0} outras" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:361 msgctxt "@action:button" msgid "Remove printers" msgstr "Remover impressoras" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 +#: /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 "A impressora {printer_name} vai ser removida até à próxima sincronização de conta." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 +#: /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 "Para remover a impressora {printer_name} de forma permanente, visite {digital_factory_link}" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 +#: /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 "Tem a certeza de que pretende remover a impressora {printer_name} temporariamente?" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 msgctxt "@title:window" msgid "Remove printers?" msgstr "Remover impressoras?" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 #, python-brace-format msgctxt "@label" msgid "" @@ -1686,1655 +1669,1100 @@ 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +#: /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 "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/clamboo/Desktop/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 "Open Compressed Triangle Mesh" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA Digital Asset Exchange" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "glTF Binary" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF Embedded JSON" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Stanford Triangle Format" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Compressed COLLADA Digital Asset Exchange" - -#: /home/clamboo/Desktop/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 "As áreas destacadas indicam superfícies em falta ou separadas. Corrija o modelo e volte a abri-lo no Cura." - -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "Erros no modelo" - -#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Vista Sólidos" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Erro ao gravar ficheiro 3mf." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "Ficheiro 3MF" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Ficheiro 3MF de Projeto Cura" - -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "Monitorizar" - -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 -msgctxt "@info:title" -msgid "3D Model Assistant" -msgstr "Assistente de Modelos 3D" - -# rever! -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 #, 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

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

      Um, ou mais, dos modelos 3D podem ter menos qualidade de impressão devido à dimensão do modelo 3D e definição de material:

      \n" -"

      {model_names}

      \n" -"

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

      \n" -"

      Ver o guia de qualidade da impressão

      " +"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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action" +msgid "Get started" +msgstr "Iniciar" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +msgctxt "@action" +msgid "Learn more" +msgstr "Saber mais" + +#: /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 "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 +msgctxt "@info:title" +msgid "Update your printer" +msgstr "Atualizar a impressora" + +#: /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 "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 +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 +#, 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 +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 +msgctxt "@action" +msgid "Configure group" +msgstr "Configurar grupo" + +#: /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 "Aguarde até o trabalho atual ter sido enviado." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info:title" +msgid "Network error" +msgstr "Erro de rede" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "Fila cheia" + +#: /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 "O trabalho de impressão foi enviado com sucesso para a impressora." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@action" +msgid "Connect via Network" +msgstr "Ligar Através da Rede" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "amanhã" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "hoje" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "Imprimir por USB" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" -msgid "Mesh Type" -msgstr "Tipo de Objecto" +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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "Modelo normal" +#: /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 "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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "Imprimir como suporte" +#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "Impressão em curso" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Modificar definições para sobreposições" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Não suportar sobreposições" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 +#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Apenas objeto de enchimento" +msgid "X3D File" +msgstr "Ficheiro X3D" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 +#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Malha de corte" +msgid "X-Ray view" +msgstr "Vista Raio-X" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Selecionar definições" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Selecionar definições a personalizar para este modelo" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtrar..." - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Mostrar tudo" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cópias de segurança do Cura" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Versão do Cura" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Máquinas" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Materiais" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Perfis" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Plug-ins" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Deseja mais?" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Efetuar cópia de segurança agora" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Efetuar cópia de segurança automaticamente" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "Restaurar" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Eliminar cópia de segurança" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Restaurar cópia de segurança" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 -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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 -msgctxt "@button" -msgid "Sign in" -msgstr "Iniciar sessão" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "As minhas cópias de segurança" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -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/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Definições da impressora" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (Largura)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Profundidade)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Altura)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 -msgctxt "@label" -msgid "Build plate shape" -msgstr "Forma da base de construção" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 -msgctxt "@label" -msgid "Origin at center" -msgstr "Origem no centro" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 -msgctxt "@label" -msgid "Heated bed" -msgstr "Base aquecida" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 -msgctxt "@label" -msgid "Heated build volume" -msgstr "Volume de construção aquecido" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 -msgctxt "@label" -msgid "G-code flavor" -msgstr "Variante do G-code" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Definições da cabeça de impressão" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -msgctxt "@label" -msgid "X min" -msgstr "X mín" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -msgctxt "@label" -msgid "Y min" -msgstr "Y mín" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -msgctxt "@label" -msgid "X max" -msgstr "X máx" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -msgctxt "@label" -msgid "Y max" -msgstr "Y máx" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "Gantry Height" -msgstr "Altura do pórtico" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Número de Extrusores" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Aplicar desvios da extrusora ao GCode" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "G-code inicial" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "G-code final" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Definições do nozzle" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 -msgctxt "@label" -msgid "Nozzle size" -msgstr "Tamanho do nozzle" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Diâmetro do material compatível" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Desvio X do Nozzle" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Desvio Y do Nozzle" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Número de ventoinha de arrefecimento" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "G-code inicial do extrusor" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "G-code final do extrusor" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "Impressora" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Atualizar firmware" - -# rever! -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Atualizar firmware automaticamente" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Carregar firmware personalizado" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Selecionar firmware personalizado" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Atualização de firmware" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Updating firmware." -msgstr "A atualizar firmware." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Atualização de firmware concluída." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "A atualização de firmware falhou devido a um erro desconhecido." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "A atualização de firmware falhou devido à ausência de firmware." - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 msgctxt "@title:window" msgid "Open Project" msgstr "Abrir Projeto" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 msgctxt "@action:ComboBox Update/override existing profile" msgid "Update existing" msgstr "Atualizar existente" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Definições da impressora" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Definições do perfil" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 +#: /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" -# rever! -# contexto?! -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 msgctxt "@action:label" msgid "Derivative from" msgstr "Derivado de" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 -msgctxt "@action:label" -msgid "Material settings" -msgstr "Definições de material" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 msgctxt "@action:label" msgid "Mode" msgstr "Modo" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 msgctxt "@action:label" msgid "Visible settings:" msgstr "Definições visíveis:" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 de %2" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 msgctxt "@action:button" msgid "Open" msgstr "Abrir" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "De qualquer modo, abrir o projecto" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:529 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "Instalar material em falta" + +#: /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 "Post Processing Plugin" -msgstr "Plug-in de pós-processamento" +msgid "Cura Backups" +msgstr "Cópias de segurança do Cura" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 +#: /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 "Guardar o projeto Cura e o ficheiro de impressão" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "Guardar projeto Cura" + +#: /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 "Post Processing Scripts" -msgstr "Scripts de pós-processamento" +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/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "Adicionar um script" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 msgctxt "@label" -msgid "Settings" -msgstr "Definições" +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/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Altere os scripts de pós-processamento." +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Atualizar firmware automaticamente" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 -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/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Carregar firmware personalizado" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /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 "Convert Image..." -msgstr "Converter imagem..." +msgid "Select custom firmware" +msgstr "Selecionar firmware personalizado" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 -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/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Atualização de firmware" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /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)" -# rever! -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 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." +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "A distância máxima de cada pixel desde a \"Base\"" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 msgctxt "@action:label" msgid "Base (mm)" msgstr "Base (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate." -msgstr "A largura em milímetros na base de construção." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 msgctxt "@action:label" msgid "Width (mm)" msgstr "Largura (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "A profundidade em milímetros na base de construção" +msgid "The width in millimeters on the build plate" +msgstr "A largura em milímetros na base de construção" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 msgctxt "@action:label" msgid "Depth (mm)" msgstr "Profundidade (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 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." +msgid "The depth in millimeters on the build plate" +msgstr "A profundidade em milímetros na base de construção" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "Mais escuro é mais alto" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "Mais claro é mais alto" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 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." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "Translucidez" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 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." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "(%) transmitância de 1 mm" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "A quantidade de suavização a aplicar à imagem." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 msgctxt "@action:label" msgid "Smoothing" msgstr "Suavização" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /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/clamboo/Desktop/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" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Nivelamento da Base de Construção" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Iniciar Nivelamento da base de construção" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Avançar para Posição Seguinte" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Mais informações sobre a recolha anónima de dados" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -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/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Não pretendo enviar dados anónimos" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Permitir o envio de dados anónimos" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" -msgid "Marketplace" -msgstr "Mercado" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -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." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "Sair %1" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "Instalar" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -msgctxt "@action:button" -msgid "Installed" -msgstr "Instalado" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "Premium" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 -msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "Ir para Mercado na Web" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 -msgctxt "@label" -msgid "Search materials" -msgstr "Procurar materiais" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "Compatibilidade" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "Máquina" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "Base de construção" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "Suportes" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "Qualidade" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "Ficha técnica" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "Ficha de segurança" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "Instruções de impressão" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "Site" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -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" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "Comprar bobinas de material" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "Atualizar" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "A Actualizar" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "Atualizado" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "Anterior" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 msgctxt "@title:tab" -msgid "Plugins" -msgstr "Plug-ins" +msgid "Printer" +msgstr "Impressora" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materiais" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Definições do nozzle" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "Instalado" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 msgctxt "@label" -msgid "Will install upon restarting" -msgstr "Será instalado após reiniciar" +msgid "Nozzle size" +msgstr "Tamanho do nozzle" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "É necessário Log in para atualizar" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Downgrade" -msgstr "Repor Versão Anterior" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "Desinstalar" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /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 "Community Contributions" -msgstr "Contribuições comunitárias" +msgid "mm" +msgstr "mm" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 msgctxt "@label" -msgid "Community Plugins" -msgstr "Plug-ins comunitários" +msgid "Compatible material diameter" +msgstr "Diâmetro do material compatível" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 msgctxt "@label" -msgid "Generic Materials" -msgstr "Materiais genéricos" +msgid "Nozzle offset X" +msgstr "Desvio X do Nozzle" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "A obter pacotes..." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 msgctxt "@label" -msgid "Website" -msgstr "Site" +msgid "Nozzle offset Y" +msgstr "Desvio Y do Nozzle" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 msgctxt "@label" -msgid "Email" -msgstr "E-mail" +msgid "Cooling Fan Number" +msgstr "Número de ventoinha de arrefecimento" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -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" +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 +#: /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 "Version" -msgstr "Versão" +msgid "X (Width)" +msgstr "X (Largura)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 msgctxt "@label" -msgid "Last updated" -msgstr "Actualizado em" +msgid "Y (Depth)" +msgstr "Y (Profundidade)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 msgctxt "@label" -msgid "Brand" -msgstr "Marca" +msgid "Z (Height)" +msgstr "Z (Altura)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 msgctxt "@label" -msgid "Downloads" -msgstr "Transferências" +msgid "Build plate shape" +msgstr "Forma da base de construção" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "Plug-ins instalados" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "Não foi instalado qualquer plug-in." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "Materiais instalados" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 -msgctxt "@info" -msgid "No material has been installed." -msgstr "Não foi instalado qualquer material." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "Plug-ins em pacote" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "Materiais em pacote" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -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." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "É necessário aceitar a licença para instalar o pacote" +msgid "Origin at center" +msgstr "Origem no centro" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 msgctxt "@button" msgid "Dismiss" msgstr "Descartar" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "Confirmar desinstalação" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "Instalar os materiais em falta" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -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." +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "Materiais" +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "Perfis" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "Aceitar" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "Confirmar" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 +msgctxt "@header" +msgid "Manage packages" +msgstr "Gerir os pacotes" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "Esquema de cores" +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Cor do Material" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "Gerir os pacotes" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Tipo de Linha" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Velocidade" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Espessura da Camada" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Diâmetro da Linha" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Fluxo" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Modo Compatibilidade" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "Deslocações" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "Auxiliares" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "Invólucro" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "Enchimento" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "A Iniciar" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Só Camadas Superiores" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "5 Camadas Superiores Detalhadas" - -# rever! -# todas as strings com a frase -# Topo / Base ?? -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Superior / Inferior" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Parede Interior" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "mín" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "máx" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Gerir impressora" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -msgctxt "@label" -msgid "Glass" -msgstr "Vidro" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" msgid "Loading..." msgstr "A carregar..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Indisponível" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "Plug-ins" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Inacessível" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "Materiais" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "Inativa" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193 +msgctxt "@info" +msgid "Search in the browser" +msgstr "Pesquisar no browser" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "A preparar..." +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "A Imprimir" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 +#: /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 "Untitled" -msgstr "Sem título" +msgid "You need to accept the license to install the package" +msgstr "É necessário aceitar a licença para instalar o pacote" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anónimo" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Requer alterações na configuração" +#: /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 "Por" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "Detalhes" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Enable" +msgstr "Ativar" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Impressora indisponível" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Disable" +msgstr "Desativar" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "Primeira disponível" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "Em fila" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 +msgctxt "@button" +msgid "Downgrade" +msgstr "Repor a Versão Anterior" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Gerir no browser" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 +msgctxt "@button" +msgid "Installing..." +msgstr "A instalar..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -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/Marketplace/resources/qml/PackageCardHeader.qml:250 +msgctxt "@button" +msgid "Install" +msgstr "Instalar" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "Trabalhos em Impressão" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254 +msgctxt "@button" +msgid "Uninstall" +msgstr "Desinstalar" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "Tempo de impressão total" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Updating..." +msgstr "A actualizar..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "A aguardar" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Imprimir Através da Rede" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 -msgctxt "@action:button" -msgid "Print" -msgstr "Imprimir" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 -msgctxt "@label" -msgid "Printer selection" -msgstr "Seleção de Impressora" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Alterações na configuração" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "Ignorar" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Alterar o material %1 de %2 para %3." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Substituir o print core %1 de %2 para %3." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "Alumínio" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Finished" -msgstr "Impressão terminada" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "A cancelar..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Cancelado" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Failed" -msgstr "Falhou" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "A colocar em pausa..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Paused" -msgstr "Em Pausa" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "A recomeçar..." - -# rever! -# ver contexto! -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 -msgctxt "@label:status" -msgid "Action required" -msgstr "Ação necessária" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Termina %1 a %2" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Ligar a uma Impressora em Rede" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Selecione a impressora a partir da lista abaixo:" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "Editar" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 -msgctxt "@action:button" -msgid "Remove" -msgstr "Remover" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Update" msgstr "Atualizar" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -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/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "Detalhes do pacote" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "Tipo" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "Anterior" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "Versão de Firmware" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "Descrição" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "Endereço" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:110 +msgctxt "@header" +msgid "Compatible printers" +msgstr "Impressoras compatíveis" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -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/Marketplace/resources/qml/PackagePage.qml:134 +msgctxt "@info" +msgid "No compatibility information" +msgstr "Sem informações sobre compatibilidade" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -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/Marketplace/resources/qml/PackagePage.qml:152 +msgctxt "@header" +msgid "Compatible support materials" +msgstr "Materiais de suporte compatíveis" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -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/Marketplace/resources/qml/PackagePage.qml:176 +msgctxt "@info No materials" +msgid "None" +msgstr "Nenhum" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "Ligar" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Endereço IP inválido" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +#: /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 "Please enter a valid IP address." -msgstr "Introduza um endereço IP válido." +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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Endereço da Impressora" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 -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/Marketplace/resources/qml/VerifiedIcon.qml:22 +msgctxt "@info" +msgid "Ultimaker Certified Material" +msgstr "Material Certificado pela Ultimaker" -#: /home/clamboo/Desktop/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/Marketplace/resources/qml/VerifiedIcon.qml:23 +msgctxt "@info" +msgid "Ultimaker Verified Package" +msgstr "Pacote Aprovado pela Ultimaker" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Eliminar" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "Retomar" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "A colocar em pausa..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "A recomeçar..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "Colocar em pausa" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "A cancelar..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Cancelar" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Mover trabalho de impressão para o topo" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Eliminar trabalho de impressão" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Cancelar impressão" - -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" msgid "" "Please make sure your printer has a connection:\n" @@ -3347,2184 +2775,681 @@ msgstr "" "- Verifique se a impressora está ligada à rede.\n" "- Verifique se tem sessão iniciada para encontrar impressoras ligadas através da cloud." -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /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/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /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/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /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/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "Vista 3D" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "Vista Frente" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "Vista Cima" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "Vista esquerda" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "Vista direita" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 msgctxt "@label" -msgid "Object list" -msgstr "Lista de objetos" +msgid "Mesh Type" +msgstr "Tipo de Objecto" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 +#: /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 "Marketplace" -msgstr "Mercado" +msgid "Select settings" +msgstr "Selecionar definições" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "&Ficheiro" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "&Editar" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "&Visualizar" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "&Definições" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "E&xtensões" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "P&referências" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "&Ajuda" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 msgctxt "@title:window" -msgid "New project" -msgstr "Novo projeto" +msgid "Select Settings to Customize for this model" +msgstr "Selecionar definições a personalizar para este modelo" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 -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/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filtrar..." -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 -msgctxt "@label:PrintjobStatus" -msgid "Slicing..." -msgstr "A Seccionar..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Mostrar tudo" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 -msgctxt "@label:PrintjobStatus" -msgid "Unable to slice" -msgstr "Não é possível seccionar" +#: /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/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Processing" -msgstr "A processar" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Slice" -msgstr "Seccionar" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 msgctxt "@label" -msgid "Start the slicing process" -msgstr "Iniciar o processo de seccionamento" +msgid "Post Processing Scripts" +msgstr "Scripts de pós-processamento" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 -msgctxt "@button" -msgid "Cancel" -msgstr "Cancelar" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +msgctxt "@action" +msgid "Add a script" +msgstr "Adicionar um script" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 msgctxt "@label" -msgid "Time estimation" -msgstr "Estimativa de tempo" +msgid "Settings" +msgstr "Definições" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +#: /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 "Material estimation" -msgstr "Estimativa de material" +msgid "Color scheme" +msgstr "Esquema de cores" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1 m" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Cor do Material" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1 g" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Tipo de Linha" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: /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 "No time estimation available" -msgstr "Nenhuma estimativa de tempo disponível" +msgid "Compatibility Mode" +msgstr "Modo Compatibilidade" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 msgctxt "@label" -msgid "No cost estimation available" -msgstr "Nenhuma estimativa de custos disponível" +msgid "Travels" +msgstr "Deslocações" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "Pré-visualizar" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 msgctxt "@label" -msgid "Add a printer" -msgstr "Adicionar uma impressora" +msgid "Helpers" +msgstr "Auxiliares" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 msgctxt "@label" -msgid "Add a networked printer" -msgstr "Adicionar uma impressora em rede" +msgid "Shell" +msgstr "Invólucro" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +#: /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 "Add a non-networked printer" -msgstr "Adicionar uma impressora sem rede" +msgid "Infill" +msgstr "Enchimento" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "Adicionar uma impressora de cloud" +msgid "Starts" +msgstr "A Iniciar" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "A aguardar resposta da cloud" +msgid "Only Show Top Layers" +msgstr "Só Camadas Superiores" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 msgctxt "@label" -msgid "No printers found in your account?" -msgstr "Não foram encontradas impressoras na sua conta?" +msgid "Show 5 Detailed Layers On Top" +msgstr "5 Camadas Superiores Detalhadas" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 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:" +msgid "Top / Bottom" +msgstr "Superior / Inferior" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "Adicionar impressora manualmente" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 msgctxt "@label" -msgid "Add printer by IP address" -msgstr "Adicionar impressora por endereço IP" +msgid "Inner Wall" +msgstr "Parede Interior" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "Introduza o endereço IP da sua impressora." - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "Adicionar" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 msgctxt "@label" -msgid "Could not connect to device." -msgstr "Não foi possível ligar ao dispositivo." +msgid "min" +msgstr "mín" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Não se consegue ligar a uma impressora Ultimaker?" +msgid "max" +msgstr "máx" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +#: /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 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "Nivelamento da Base de Construção" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 msgctxt "@label" -msgid "The printer at this address has not responded yet." +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 +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 +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 +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" + +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 -msgctxt "@button" -msgid "Back" -msgstr "Anterior" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +msgctxt "@action:button" msgid "Connect" msgstr "Ligar" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "Contrato de utilizador" +#: /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/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "Rejeitar e fechar" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Bem-vindo ao Ultimaker Cura" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +#: /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 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." +msgid "Please enter a valid IP address." +msgstr "Introduza um endereço IP válido." -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "Iniciar" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Endereço da Impressora" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +#: /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 +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 msgctxt "@label" msgid "Sign in to the Ultimaker platform" msgstr "Inicie a sessão na plataforma Ultimaker" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "Adicione definições de materiais e plug-ins do Marketplace" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -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" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 -msgctxt "@button" -msgid "Skip" -msgstr "Ignorar" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Crie uma Conta Ultimaker gratuita" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 -msgctxt "@label" -msgid "Manufacturer" -msgstr "Fabricante" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 -msgctxt "@label" -msgid "Profile author" -msgstr "Autor do perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 -msgctxt "@label" -msgid "Printer name" -msgstr "Nome da impressora" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 -msgctxt "@text" -msgid "Please name your printer" -msgstr "Atribuir um nome à impressora" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "Atualizar" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "Adicionar impressora por IP" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "Adicionar impressora de cloud" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "Resolução de problemas" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "Tipos de máquina" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "Utilização do material" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "Número de Secções" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "Definições de impressão" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "Mais informações" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 -msgctxt "@label" -msgid "What's New" -msgstr "Novidades" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "Vazio" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "Notas da versão" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 -msgctxt "@title:window The argument is the application name." -msgid "About %1" -msgstr "Acerca de %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 -msgctxt "@label" -msgid "version: %1" -msgstr "versão: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 -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:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 -msgctxt "@label" -msgid "Graphical user interface" -msgstr "Interface gráfica do utilizador" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" -msgid "Application framework" -msgstr "Framework da aplicação" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" -msgid "G-code generator" -msgstr "Gerador de G-code" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" -msgid "Interprocess communication library" -msgstr "Biblioteca de comunicação interprocessual" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" -msgid "Programming language" -msgstr "Linguagem de programação" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" -msgid "GUI framework" -msgstr "GUI framework" - -# rever! -# use eng programing terms? -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" -msgid "GUI framework bindings" -msgstr "Ligações de estrutura da GUI" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" -msgid "C/C++ Binding library" -msgstr "Biblioteca de ligações C/C++" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 -msgctxt "@label" -msgid "Data interchange format" -msgstr "Formato de intercâmbio de dados" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 -msgctxt "@label" -msgid "Support library for scientific computing" -msgstr "Biblioteca de apoio para computação científica" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" -msgid "Support library for faster math" -msgstr "Biblioteca de apoio para cálculos mais rápidos" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" -msgid "Support library for handling STL files" -msgstr "Biblioteca de apoio para processamento de ficheiros STL" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" -msgid "Support library for handling planar objects" -msgstr "Biblioteca de apoio para processamento de objetos planos" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" -msgid "Support library for handling triangular meshes" -msgstr "Biblioteca de apoio para processamento de malhas triangulares" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" -msgid "Support library for handling 3MF files" -msgstr "Biblioteca de apoio para processamento de ficheiros 3MF" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 -msgctxt "@label" -msgid "Support library for file metadata and streaming" -msgstr "Biblioteca de apoio para transmissões de fluxo e metadados de ficheiros" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 -msgctxt "@label" -msgid "Serial communication library" -msgstr "Biblioteca de comunicação em série" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 -msgctxt "@label" -msgid "ZeroConf discovery library" -msgstr "Biblioteca de deteção ZeroConf" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" -msgid "Polygon clipping library" -msgstr "Biblioteca de recortes de polígonos" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@Label" -msgid "Static type checker for Python" -msgstr "Verificador de tipo estático para Python" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@Label" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "Certificados de raiz para validar a credibilidade SSL" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 -msgctxt "@Label" -msgid "Python Error tracking library" -msgstr "Biblioteca de controlo de erros de Python" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 -msgctxt "@label" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "Biblioteca de embalagens de polígonos, desenvolvida pela Prusa Research" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -msgctxt "@label" -msgid "Python bindings for libnest2d" -msgstr "Ligações Python para libnest2d" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" -msgid "Support library for system keyring access" -msgstr "Biblioteca de apoio para acesso às chaves de sistema" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" -msgid "Python extensions for Microsoft Windows" -msgstr "Extensões Python para Microsoft Windows" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" -msgid "Font" -msgstr "Tipo de letra" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" -msgid "SVG icons" -msgstr "Ícones SVG" - -# rever! -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" -msgid "Linux cross-distribution application deployment" -msgstr "Implementação da aplicação de distribuição cruzada Linux" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Abrir ficheiro(s)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 -msgctxt "@action:button" -msgid "Import all as models" -msgstr "Importar tudo como modelos 3D" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 -msgctxt "@title:window" -msgid "Save Project" -msgstr "Guardar projeto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Extrusor %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 -msgctxt "@action:label" -msgid "Material" -msgstr "Material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "Não mostrar novamente o resumo do projeto ao guardar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 -msgctxt "@action:button" -msgid "Save" -msgstr "Guardar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 -msgctxt "@title:window" -msgid "Discard or Keep changes" -msgstr "Descartar ou Manter as alterações" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 -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'." - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 -msgctxt "@title:column" -msgid "Profile settings" -msgstr "Definições do perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 -msgctxt "@title:column" -msgid "Current changes" -msgstr "Alterações atuais" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 -msgctxt "@option:discardOrKeep" -msgid "Always ask me this" -msgstr "Perguntar sempre isto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 -msgctxt "@option:discardOrKeep" -msgid "Discard and never ask again" -msgstr "Descartar e não perguntar novamente" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 -msgctxt "@option:discardOrKeep" -msgid "Keep and never ask again" -msgstr "Manter e não perguntar novamente" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 -msgctxt "@action:button" -msgid "Discard changes" -msgstr "Descartar alterações" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 -msgctxt "@action:button" -msgid "Keep changes" -msgstr "Manter alterações" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 -msgctxt "@title:window" -msgid "Open project file" -msgstr "Abrir ficheiro de projeto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "Memorizar a minha escolha" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 -msgctxt "@action:button" -msgid "Open as project" -msgstr "Abrir como projeto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 -msgctxt "@action:button" -msgid "Import models" -msgstr "Importar modelos" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 -msgctxt "@label" -msgid "Active print" -msgstr "Impressão ativa" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 -msgctxt "@label" -msgid "Job Name" -msgstr "Nome do trabalho" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 -msgctxt "@label" -msgid "Printing Time" -msgstr "Tempo de Impressão" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 -msgctxt "@label" -msgid "Estimated time left" -msgstr "Tempo restante estimado" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Add printer" -msgstr "Adicionar Impressora" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 -msgctxt "@button" -msgid "Manage printers" -msgstr "Gerir impressoras" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "Impressoras ligadas" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "Impressoras predefinidas" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 -msgctxt "@label" -msgid "Print settings" -msgstr "Definições de impressão" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -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/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 -msgctxt "@label" -msgid "Profile" -msgstr "Perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 -msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "" -"Alguns valores de definição/substituição são diferentes dos valores armazenados no perfil.\n" -"\n" -"Clique para abrir o gestor de perfis." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 -msgctxt "@label:header" -msgid "Custom profiles" -msgstr "Perfis personalizados" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "Descartar alterações atuais" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "Recomendado" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "Personalizado" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "Ligado" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "Desligado" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" -msgstr "Experimental" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 -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" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 -msgctxt "@label" -msgid "Profiles" -msgstr "Perfis" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 -msgctxt "@label" -msgid "Support" -msgstr "Suportes" - -# rever! -# collapse ? -# desmoronar? desabar? -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 -msgctxt "@label" -msgid "Gradual infill" -msgstr "Enchimento gradual" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 -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/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "Aderência à Base de Construção" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 -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/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "Guardar projeto..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "Impressoras em rede" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "Impressoras locais" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "Material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "Favoritos" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "Genérico" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 -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/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "Multiplicar Modelo Selecionado" -msgstr[1] "Multiplicar modelos selecionados" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "Número de Cópias" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "&Guardar projeto..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "&Exportar..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "Exportar seleção..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "Configurações" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "Personalizado" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "Impressora" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "Ativado" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "Material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 -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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 -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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 -msgctxt "@label" -msgid "Select configuration" -msgstr "Selecionar configuração" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 -msgctxt "@label" -msgid "Configurations" -msgstr "Configurações" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "Mercado" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "Abrir ficheiro(s)..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "&Impressora" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Definir como Extrusor Ativo" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Ativar Extrusor" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Desativar Extrusor" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "Abrir &Recente" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "Definições Visíveis" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "Fechar todas as categorias" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "Gerir Visibilidade das Definições..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "&Posição da câmara" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "Vista da câmara" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "Perspetiva" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "Ortográfica" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "&Base de construção" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 -msgctxt "@label" -msgid "View type" -msgstr "Ver tipo" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 -msgctxt "@label" -msgid "Is printed as support." -msgstr "É imprimido como suporte." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "Foram modificados outros modelos sobrepostos com este modelo." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "Foi modificada a sobreposição de enchimento com este modelo." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "Não são suportadas sobreposições com este modelo." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Perfis" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 -msgctxt "@action:button" -msgid "Activate" -msgstr "Ativar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "Criar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "Duplicar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 -msgctxt "@action:button" -msgid "Rename" -msgstr "Mudar Nome" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -msgctxt "@action:button" -msgid "Import" -msgstr "Importar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -msgctxt "@action:button" -msgid "Export" -msgstr "Exportar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Criar Perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "Forneça um nome para este perfil." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Duplicar Perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Confirmar Remoção" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Mudar Nome do Perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Importar Perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Exportar Perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "Impressora: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "Atualizar perfil com as definições/substituições atuais" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "As suas definições atuais correspondem ao perfil selecionado." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Definições Globais" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 -msgctxt "@title:tab" -msgid "General" -msgstr "Geral" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 -msgctxt "@label" -msgid "Interface" -msgstr "Interface" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 -msgctxt "@label" -msgid "Currency:" -msgstr "Moeda:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 -msgctxt "@label" -msgid "Theme:" -msgstr "Tema:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Seccionar automaticamente ao alterar as definições." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Seccionar automaticamente" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "Comportamento da janela" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 -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." - -# rever! -# consolas? -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Mostrar Saliências (Overhangs)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "Apresentar erros de modelo" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Centrar câmara ao selecionar item" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Inverta a direção do zoom da câmera." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "Fazer Zoom na direção do rato" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "Garantir que os modelos não se interceptam" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "Pousar automaticamente os modelos na base de construção" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "Mostrar mensagem de aviso no leitor de g-code." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "Mensagem de aviso no leitor de g-code" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "Restaurar posição da janela ao iniciar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "Composição de câmara:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 -msgid "Perspective" -msgstr "Perspetiva" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 -msgid "Orthographic" -msgstr "Ortográfica" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Abrir e guardar ficheiros" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Utilizar uma única instância do Cura" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Redimensionar modelos demasiado grandes" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Redimensionar modelos extremamente pequenos" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "Selecionar os modelos depois de abertos?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "Selecionar os modelos depois de abertos" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "Adicionar prefixo da máquina ao nome do trabalho" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "Mostrar caixa de diálogo de resumo ao guardar projeto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "Comportamento predefinido ao abrir um ficheiro de projeto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "Comportamento predefinido ao abrir um ficheiro de projeto: " - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "Perguntar sempre isto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Abrir sempre como projeto" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Importar sempre modelos" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "Descartar sempre definições alteradas" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "Transferir sempre definições alteradas para o novo perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 -msgctxt "@label" -msgid "Privacy" -msgstr "Privacidade" - -# rever! -# legal wording -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "Enviar dados (anónimos) sobre a impressão" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 -msgctxt "@action:button" -msgid "More information" -msgstr "Mais informações" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 -msgctxt "@label" -msgid "Updates" -msgstr "Atualizações" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Procurar atualizações ao iniciar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 -msgctxt "@option:radio" -msgid "Stable releases only" -msgstr "Apenas versões estáveis" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 -msgctxt "@option:radio" -msgid "Stable and Beta releases" -msgstr "Versões estáveis e beta" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 -msgctxt "@option:check" -msgid "Get notifications for plugin updates" -msgstr "Receber notificações para atualizações de plug-ins" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "Informações" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "Confirmar Alteração de Diâmetro" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "Nome" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "Tipo de Material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "Cor" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "Propriedades" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "Densidade" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "Diâmetro" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "Custo do Filamento" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "Peso do Filamento" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "Comprimento do filamento" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Custo por Metro" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "Desassociar Material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "Descrição" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Informações de Aderência" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "Criar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Duplicar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "Sincronizar com Impressoras" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "Impressora" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Importar material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Material %1 importado com êxito" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Exportar Material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Material exportado com êxito para %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 -msgctxt "@title:window" -msgid "Sync materials with printers" -msgstr "Sincronizar materiais com impressoras" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 -msgctxt "@title:header" -msgid "Sync materials with printers" -msgstr "Sincronizar materiais com impressoras" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 -msgctxt "@button" -msgid "Start" -msgstr "Começar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 -msgctxt "@button" -msgid "Why do I need to sync material profiles?" -msgstr "Por que motivo tenho de sincronizar os perfis de materiais?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 -msgctxt "@title:header" -msgid "Sign in" -msgstr "Iniciar sessão" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 -msgctxt "@button" -msgid "Sync materials with USB" -msgstr "Sincronizar materiais através de USB" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 -msgctxt "@button" -msgid "Troubleshooting" -msgstr "Resolução de problemas" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 -msgctxt "@text Asking the user whether printers are missing in a list." -msgid "Printers missing?" -msgstr "Faltam impressoras?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 -msgctxt "@button" -msgid "Refresh List" -msgstr "Atualizar lista" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 -msgctxt "@button" -msgid "Try again" -msgstr "Tente novamente" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Done" -msgstr "Concluído" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 -msgctxt "@button" -msgid "Sync" -msgstr "Sincronizar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 -msgctxt "@button" -msgid "Syncing" -msgstr "A sincronizar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 -msgctxt "@title:header" -msgid "No printers found" -msgstr "Não foi encontrada nenhuma impressora" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 -msgctxt "@button" -msgid "Learn how to connect your printer to Digital Factory" -msgstr "Saiba como ligar a sua impressora à Digital Factory" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 -msgctxt "@button" -msgid "Refresh" -msgstr "Atualizar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 -msgctxt "@title:header" -msgid "Sync material profiles via USB" -msgstr "Sincronizar perfis de materiais via USB" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 -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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 -msgctxt "@button" -msgid "How to load new material profiles to my printer" -msgstr "Como carregar novos perfis de materiais para a minha impressora" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Export material archive" -msgstr "Exportar ficheiro de material" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "Exportar Todos os Materiais" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Visibilidade das Definições" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Selecionar tudo" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 -msgctxt "@title:tab" -msgid "Printers" -msgstr "Impressoras" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Calculado" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "Definição" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "Perfil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "Atual" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "Unidade" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "Sem ligação a uma impressora" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "A impressora não aceita comandos" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "Em manutenção. Verifique a impressora" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "Perdeu-se a ligação com a impressora" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "A imprimir..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "Em pausa" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "A preparar..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Remova a impressão" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "Cancelar impressão" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "Tem a certeza de que deseja cancelar a impressão?" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 -msgctxt "@label:button" -msgid "My printers" -msgstr "As minhas impressoras" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 -msgctxt "@label:button" -msgid "Print jobs" -msgstr "Trabalhos em Impressão" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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." - -#: /home/clamboo/Desktop/Cura/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." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 -msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "Suporte da Ultimaker" - -#: /home/clamboo/Desktop/Cura/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." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 -msgctxt "@label:button" -msgid "Ask a question" -msgstr "Faça uma pergunta" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 -msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "Consulte a Comunidade Ultimaker." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 -msgctxt "@label:button" -msgid "Report a bug" -msgstr "Reportar um erro" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 -msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "Visite o site da Ultimaker." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "Controlo da impressora" - -# rever! -# contexto?! -# Jog? -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "Posição de deslocação" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -# rever! -# contexto?! -# Jog? -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Distância de deslocação" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "Enviar G-code" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "Extrusor" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "A temperatura atual deste extrusor." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "A temperatura-alvo de preaquecimento do extrusor." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Cancelar" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Preaquecer" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "A cor do material neste extrusor." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "O material neste extrusor." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "O nozzle inserido neste extrusor." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "A impressora não está ligada." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "Base de construção" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -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/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "A temperatura de pré-aquecimento da base." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -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/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "Iniciar sessão" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 msgctxt "@text" msgid "" "- Add material profiles and plug-ins from the Marketplace\n" @@ -5535,386 +3460,2289 @@ msgstr "" "- 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/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" msgid "Create a free Ultimaker account" msgstr "Crie uma conta Ultimaker gratuita" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "Atualização mais recente: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Conta Ultimaker" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 -msgctxt "@button" -msgid "Sign Out" -msgstr "Terminar sessão" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "A verificar..." -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "Conta sincronizada" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "Ocorreu um problema..." -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "Instalar atualizações pendentes" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "Verificar atualizações de conta" -#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "Sem título" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "Atualização mais recente: %1" -#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "Conta Ultimaker" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" -msgid "No items to select from" -msgstr "Nenhum item para selecionar" +msgid "No time estimation available" +msgstr "Nenhuma estimativa de tempo disponível" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Preview" +msgstr "Pré-visualizar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Material estimation" +msgstr "Estimativa de material" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1 g" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:PrintjobStatus" +msgid "Unable to slice" +msgstr "Não é possível seccionar" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +msgctxt "@button" +msgid "Processing" +msgstr "A processar" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +msgctxt "@button" +msgid "Slice" +msgstr "Segmentação" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Cancel" +msgstr "Cancelar" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "Mostrar Guia de resolução de problemas online" +msgid "Show Online Troubleshooting" +msgstr "Ver online o guia de resolução de problemas" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "Alternar para ecrã inteiro" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "Sair do Ecrã Inteiro" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "&Desfazer" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "&Refazer" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "&Sair" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "Vista 3D" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Vista Frente" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "Vista Cima" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "Vista Inferior" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "Vista Lado Esquerdo" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "Vista Lado Direito" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "Configurar Cura..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "&Adicionar Impressora..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "Gerir Im&pressoras..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Gerir Materiais..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu" +#: /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." msgid "Add more materials from Marketplace" -msgstr "Use o Mercado para adicionar outros materiais" +msgstr "Adicionar mais materiais disponíveis no Marketplace" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 msgctxt "@action:inmenu menubar:profile" msgid "&Update profile with current settings/overrides" msgstr "&Atualizar perfil com as definições/substituições atuais" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "&Descartar alterações atuais" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." msgstr "&Criar perfil a partir das definições/substituições atuais..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "Gerir Perfis..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Mostrar &documentação online" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "Reportar um &erro" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "Novidades" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "Sobre..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "Apagar seleção" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "Centrar seleção" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "Multiplicar seleção" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Apagar Modelo" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "Ce&ntrar Modelo na Base" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "&Agrupar Modelos" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Desagrupar Modelos" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "&Combinar Modelos" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "&Multiplicar Modelo..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "Selecionar todos os modelos" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "Limpar base de construção" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "Recarregar todos os modelos" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 -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" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Dispor todos os modelos" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Dispor seleção" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Repor todas as posições de modelos" -# rever! -# Cancelar todas? -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "Repor Todas as Transformações do Modelo" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "&Abrir Ficheiro(s)..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&Novo Projeto..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Mostrar pasta de configuração" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Configurar visibilidade das definições..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "&Mercado" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "As minhas impressoras" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "Trabalhos em Impressão" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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." + +#: /home/trin/Gedeeld/Projects/Cura/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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "Suporte da Ultimaker" + +#: /home/trin/Gedeeld/Projects/Cura/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." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "Consulte a Comunidade Ultimaker." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "Visite o site da Ultimaker." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 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." +msgid "Hex" +msgstr "Hex" -# rever! -# Afeta? -# Influencia? -# Altera? -# Modifica? -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 -msgctxt "@label Header for list of settings." -msgid "Affects" -msgstr "Modifica" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 -msgctxt "@label Header for list of settings." -msgid "Affected By" -msgstr "Modificado Por" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 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." +msgid "This package will be installed after restarting." +msgstr "Este pacote será instalado após reiniciar." -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 -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/Cura.qml:463 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +msgctxt "@title:tab" +msgid "General" +msgstr "Geral" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +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 +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 +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 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Perfis" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +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 +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 +msgctxt "@title:window" +msgid "Open file(s)" +msgstr "Abrir ficheiro(s)" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +msgctxt "@window:title" +msgid "Install Package" +msgstr "Instalar Pacote" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Abrir ficheiro(s)" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +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 +msgctxt "@title:window" +msgid "Add Printer" +msgstr "Adicionar Impressora" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +msgctxt "@title:window" +msgid "What's New" +msgstr "Novidades" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" +msgid "version: %1" +msgstr "versão: %1" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +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 +msgctxt "@info:credit" msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." +"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura proudly uses the following open source projects:" msgstr "" -"Esta definição tem um valor que é diferente do perfil.\n" -"\n" -"Clique para restaurar o valor do perfil." +"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/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"Normalmente, o valor desta definição é calculado, mas atualmente tem definido um valor diferente.\n" -"\n" -"Clique para restaurar o valor calculado." +msgid "Graphical user interface" +msgstr "Interface gráfica do utilizador" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +msgctxt "@label" +msgid "Application framework" +msgstr "Framework da aplicação" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label" +msgid "G-code generator" +msgstr "Gerador de G-code" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label" +msgid "Interprocess communication library" +msgstr "Biblioteca de comunicação interprocessual" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label" +msgid "Python bindings for libnest2d" +msgstr "Ligações Python para libnest2d" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 +msgctxt "@label" +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" +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" +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" +msgid "Programming language" +msgstr "Linguagem de programação" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +msgctxt "@label" +msgid "GUI framework" +msgstr "GUI framework" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label" +msgid "GUI framework bindings" +msgstr "Ligações de estrutura da GUI" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label" +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" +msgid "Data interchange format" +msgstr "Formato de intercâmbio de dados" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label" +msgid "Font" +msgstr "Tipo de letra" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +msgctxt "@label" +msgid "Polygon clipping library" +msgstr "Biblioteca de recortes de polígonos" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +msgctxt "@label" +msgid "JSON parser" +msgstr "JSON parser" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label" +msgid "Utility functions, including an image loader" +msgstr "Funções utilitárias, incluindo um carregador de imagens" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label" +msgid "Utility library, including Voronoi generation" +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" +msgid "Root Certificates for validating SSL trustworthiness" +msgstr "Certificados de raiz para validar a credibilidade SSL" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +msgctxt "@label" +msgid "Compatibility between Python 2 and 3" +msgstr "Compatibilidade entre Python 2 e 3" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label" +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" +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" +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" +msgid "Python bindings for Clipper" +msgstr "Ligações Python para Clipper" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label" +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" +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" +msgid "Python Error tracking library" +msgstr "Biblioteca de controlo de erros de Python" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label" +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" +msgid "ZeroConf discovery library" +msgstr "Biblioteca de deteção ZeroConf" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 +msgctxt "@label" +msgid "Universal build system configuration" +msgstr "Configuração de sistema de construção universal" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 +msgctxt "@label" +msgid "Dependency and package manager" +msgstr "Dependência e gestor de pacotes" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label" +msgid "Packaging Python-applications" +msgstr "A empacotar aplicativos Python" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label" +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" +msgid "Generating Windows installers" +msgstr "A gerar instaladores Windows" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "Memorizar a minha escolha" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +msgctxt "@action:button" +msgid "Open as project" +msgstr "Abrir como projeto" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +msgctxt "@action:button" +msgid "Import models" +msgstr "Importar modelos" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 "" +"Alterou algumas definições do perfil.\n" +"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 +msgctxt "@title:column" +msgid "Profile settings" +msgstr "Definições do perfil" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +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 +msgctxt "@option:discardOrKeep" +msgid "Always ask me this" +msgstr "Perguntar sempre isto" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +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 +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 +msgctxt "@action:button" +msgid "Discard changes" +msgstr "Descartar alterações" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +msgctxt "@action:button" +msgid "Keep changes" +msgstr "Manter alterações" + +#: /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?" +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 +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 +msgctxt "@title:window" +msgid "Save Project" +msgstr "Guardar projeto" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:175 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Extrusor %1" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & material" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +msgctxt "@action:label" +msgid "Material" +msgstr "Material" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +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 +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 +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 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "&Definições" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Marketplace" +msgstr "Mercado" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Marketplace" +msgstr "Mercado" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@label" +msgid "Select configuration" +msgstr "Selecionar configuração" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Enabled" +msgstr "Ativado" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +msgctxt "@label" +msgid "Material" +msgstr "Material" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +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 +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 +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 +msgctxt "@label" +msgid "Number of Copies" +msgstr "Número de Cópias" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "E&xtensões" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "&Guardar projeto..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "Exportar seleção..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "Material" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "Genérico" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "P&referências" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "Impressoras em rede" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "Abrir &Recente" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "Definições Visíveis" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "Gerir Visibilidade das Definições..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:inmenu menubar:view" +msgid "Camera view" +msgstr "Vista da câmara" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "Ortográfica" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "A imprimir..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "Em pausa" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "A preparar..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Abort Print" +msgstr "Cancelar impressão" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Is printed as support." +msgstr "É imprimido como suporte." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Defaults" +msgstr "Predefinições" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +msgctxt "@label" +msgid "Interface" +msgstr "Interface" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +msgctxt "@heading" +msgid "-- incomplete --" +msgstr "-- incompleto --" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +msgctxt "@label" +msgid "Currency:" +msgstr "Moeda:" + +#: /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." +msgid "Theme*:" +msgstr "Tema*:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +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 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "Seccionar automaticamente" + +#: /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." +msgstr "*Terá de reiniciar a aplicação para ativar estas alterações." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "Comportamento da janela" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +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 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "Mostrar Saliências (Overhangs)" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +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 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "Apresentar erros de modelo" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "Composição de câmara:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +msgid "Perspective" +msgstr "Perspetiva" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +msgid "Orthographic" +msgstr "Ortográfica" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "Abrir e guardar ficheiros" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +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 +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 +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 +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 +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 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "Redimensionar modelos demasiado grandes" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +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 +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "Redimensionar modelos extremamente pequenos" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:665 +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 +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 +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 +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 +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 +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 +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 +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 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "Perguntar sempre isto" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +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 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "Importar sempre modelos" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +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 +msgctxt "@label" +msgid "Profiles" +msgstr "Perfis" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +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 +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 +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 +msgctxt "@label" +msgid "Privacy" +msgstr "Privacidade" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +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 +msgctxt "@label" +msgid "Updates" +msgstr "Atualizações" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +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 +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 +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 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "Apenas versões estáveis" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +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 +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 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Rename" +msgstr "Mudar Nome" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Import" +msgstr "Importar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Importar material" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Exportar Material" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +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 +msgctxt "@button" +msgid "Start" +msgstr "Começar" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +msgctxt "@title:header" +msgid "Sign in" +msgstr "Iniciar sessão" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +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 +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 +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 +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 +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 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "Resolução de problemas" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +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 +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 +msgctxt "@button" +msgid "Refresh List" +msgstr "Atualizar lista" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +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 +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 +msgctxt "@button" +msgid "Sync" +msgstr "Sincronizar" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +msgctxt "@button" +msgid "Syncing" +msgstr "A sincronizar" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +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 +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 +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 +msgctxt "@button" +msgid "Refresh" +msgstr "Atualizar" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +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 +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 +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 +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 +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 +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 +msgctxt "@button" +msgid "Back" +msgstr "Anterior" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +msgctxt "@button" +msgid "Export material archive" +msgstr "Exportar ficheiro de material" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "Exportar Todos os Materiais" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Display Name" +msgstr "Nome" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Material Type" +msgstr "Tipo de Material" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title" +msgid "Material color picker" +msgstr "Selecionador de cores do material" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Density" +msgstr "Densidade" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Filament Cost" +msgstr "Custo do Filamento" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Filament length" +msgstr "Comprimento do filamento" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Unlink Material" +msgstr "Desassociar Material" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Adhesion Information" +msgstr "Informações de Aderência" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Print settings" +msgstr "Definições de impressão" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@action:button" +msgid "Update profile." +msgstr "Atualizar o perfil." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "Descartar alterações atuais" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Definições Globais" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Exportar Perfil" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "Visibilidade das Definições" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" -msgid "Search settings" -msgstr "Procurar definições" +msgid "Check all" +msgstr "Selecionar tudo" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 -msgctxt "@action:menu" -msgid "Copy value to all extruders" -msgstr "Copiar valor para todos os extrusores" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "Extrusor" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 -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/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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 -msgctxt "@action:menu" -msgid "Hide this setting" -msgstr "Esconder esta definição" +#: /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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 -msgctxt "@action:menu" -msgid "Don't show this setting" -msgstr "Não mostrar esta definição" +#: /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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 -msgctxt "@action:menu" -msgid "Keep this setting visible" -msgstr "Manter esta definição visível" +#: /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" -# rever! -# ocultas? -# escondidas? -# valor normal? automatico? -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 +#: /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 +msgctxt "@label" +msgid "Active print" +msgstr "Impressão ativa" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +msgctxt "@label" +msgid "Job Name" +msgstr "Nome do trabalho" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Estimated time left" +msgstr "Tempo restante estimado" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip" +msgid "" +"Some setting/override values are different from the values stored in the profile.\n" +"\n" +"Click to open the profile manager." +msgstr "" +"Alguns valores de definição/substituição são diferentes dos valores armazenados no perfil.\n" +"\n" +"Clique para abrir o gestor de perfis." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@label:Should be short" +msgid "On" +msgstr "Ligado" + +#: /home/trin/Gedeeld/Projects/Cura/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" + +#: /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 "o perfil personalizado está ativo e substituiu algumas definições." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +msgctxt "@info" +msgid "custom profile is overriding some settings." +msgstr "o perfil personalizado está a substituir algumas definições." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 +msgctxt "@info" +msgid "Some settings were changed." +msgstr "Algumas definições foram alteradas." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +msgctxt "@label" +msgid "Adhesion" +msgstr "Aderência à Base de Construção" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +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 +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" +msgstr "Resolução" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +msgctxt "@label" +msgid "Support" +msgstr "Suportes" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +msgctxt "@error" +msgid "Configuration not supported" +msgstr "Configuração não suportada" + +#: /home/trin/Gedeeld/Projects/Cura/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 "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 +msgctxt "@button:label" +msgid "Learn more" +msgstr "Saber mais" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +msgctxt "@title:column" +msgid "Setting" +msgstr "Definição" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +msgctxt "@title:column" +msgid "Profile" +msgstr "Perfil" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +msgctxt "@title:column" +msgid "Current" +msgstr "Atual" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@placeholder" +msgid "Search" +msgstr "Pesquisar" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5925,141 +5753,358 @@ msgstr "" "\n" "Clique para tornar estas definições visíveis." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "Este pacote será instalado após reiniciar." +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/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 -msgctxt "@title:tab" -msgid "Settings" -msgstr "Definições" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +msgctxt "@label Header for list of settings." +msgid "Affects" +msgstr "Modifica" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "A fechar %1" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +msgctxt "@label Header for list of settings." +msgid "Affected By" +msgstr "Modificado Por" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 -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/Settings/SettingItem.qml:190 +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/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 -msgctxt "@window:title" -msgid "Install Package" -msgstr "Instalar Pacote" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +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/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Abrir ficheiro(s)" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +msgctxt "@label" +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"Esta definição tem um valor que é diferente do perfil.\n" +"\n" +"Clique para restaurar o valor do perfil." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 -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/Settings/SettingItem.qml:334 +msgctxt "@label" +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"Normalmente, o valor desta definição é calculado, mas atualmente tem definido um valor diferente.\n" +"\n" +"Clique para restaurar o valor calculado." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 -msgctxt "@title:window" -msgid "Add Printer" -msgstr "Adicionar Impressora" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +msgctxt "@label:textbox" +msgid "Search settings" +msgstr "Procurar definições" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 -msgctxt "@title:window" +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:menu" +msgid "Hide this setting" +msgstr "Esconder esta definição" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info:tooltip" +msgid "3D View" +msgstr "Vista 3D" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +msgctxt "@info:tooltip" +msgid "Front View" +msgstr "Vista Frente" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "Vista Cima" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "Vista esquerda" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "Vista direita" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "Ver tipo" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "A aguardar resposta da cloud" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Add printer manually" +msgstr "Adicionar impressora manualmente" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +msgctxt "@label" +msgid "Manufacturer" +msgstr "Fabricante" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Printer name" +msgstr "Nome da impressora" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Refresh" +msgstr "Atualizar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "Resolução de problemas" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Add" +msgstr "Adicionar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +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 +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 +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 +msgctxt "@button" +msgid "Connect" +msgstr "Ligar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +msgctxt "@button" +msgid "Skip" +msgstr "Ignorar" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +msgctxt "@text" +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 +msgctxt "@label" +msgid "Empty" +msgstr "Vazio" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" msgid "What's New" msgstr "Novidades" -#: PerObjectSettingsTool/plugin.json +#: /home/trin/Gedeeld/Projects/Cura/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 "Provides the Per Model Settings." -msgstr "Fornece as definições por-modelo." +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." -#: PerObjectSettingsTool/plugin.json +#: ModelChecker/plugin.json msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Ferramenta de definições Por-Modelo" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" +msgid "Model Checker" +msgstr "Verificador de Modelos" #: 3MFReader/plugin.json msgctxt "description" @@ -6071,65 +6116,15 @@ msgctxt "name" msgid "3MF Reader" msgstr "Leitor de 3MF" -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Permite a gravação de arquivos Ultimaker Format." +msgid "Provides support for writing 3MF files." +msgstr "Possiblita a gravação de ficheiros 3MF." -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "name" -msgid "UFP Writer" -msgstr "Gravador de UFP" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" +msgid "3MF Writer" +msgstr "Gravador 3MF" #: AMFReader/plugin.json msgctxt "description" @@ -6141,28 +6136,36 @@ msgctxt "name" msgid "AMF Reader" msgstr "Leitor de AMF" -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Lê o g-code a partir de um arquivo comprimido." +msgid "Backup and restore your configuration." +msgstr "Efetua uma cópia de segurança e repõe a sua configuração." -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Leitor de G-code comprimido" +msgid "Cura Backups" +msgstr "Cópias de segurança do Cura" -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/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" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Fornece a hiperligação para o back-end de seccionamento do CuraEngine." -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "Pós-Processamento" +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" -# rever! -# Fornece suporte para exportar perfis Cura. #: CuraProfileWriter/plugin.json msgctxt "description" msgid "Provides support for exporting Cura profiles." @@ -6173,96 +6176,6 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Gravador de perfis Cura" -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - #: DigitalLibrary/plugin.json msgctxt "description" msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." @@ -6273,15 +6186,65 @@ msgctxt "name" msgid "Ultimaker Digital Library" msgstr "Biblioteca Digital Ultimaker" -#: Toolbox/plugin.json +#: FirmwareUpdateChecker/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "Encontre, organize e instale novos pacotes para o Cura." +msgid "Checks for firmware updates." +msgstr "Procura e verifica se existem atualizações de firmware." -#: Toolbox/plugin.json +#: FirmwareUpdateChecker/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "Toolbox" +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" @@ -6293,246 +6256,155 @@ 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 Simulation view." -msgstr "Permite a visualização por camadas." +msgid "Provides the preview of sliced layerdata." +msgstr "Permite pré-visualizar os dados das camadas seccionadas." -# rever! #: SimulationView/plugin.json msgctxt "name" msgid "Simulation View" msgstr "Visualização por camadas" -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/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." +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." -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/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" +msgid "Slice info" +msgstr "Informações do seccionamento" -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/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." +msgid "Provides a normal solid mesh view." +msgstr "Permite a visualização (simples) dos objetos como sólidos." -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/plugin.json msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Atualização da versão 2.5 para 2.6" +msgid "Solid View" +msgstr "Vista Sólidos" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/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." +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" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/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/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/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/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/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/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/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/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/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" - -#: 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/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/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/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/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/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/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/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/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/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" - -#: 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" +msgid "Support Eraser" +msgstr "Eliminador de suportes" #: TrimeshReader/plugin.json msgctxt "description" @@ -6554,45 +6426,645 @@ msgctxt "name" msgid "UFP Reader" msgstr "Leitor de UFP" -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Permite a visualização (simples) dos objetos como sólidos." +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Permite a gravação de arquivos Ultimaker Format." -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "name" -msgid "Solid View" -msgstr "Vista Sólidos" +msgid "UFP Writer" +msgstr "Gravador de UFP" -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Possiblita a gravação de ficheiros 3MF." +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.)." -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "name" -msgid "3MF Writer" -msgstr "Gravador 3MF" +msgid "Ultimaker machine actions" +msgstr "Funções para impressoras Ultimaker" -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Fornece uma fase de monitorização no Cura." +msgid "Manages network connections to Ultimaker networked printers." +msgstr "Gere as ligações de rede com as impressoras em rede Ultimaker." -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "name" -msgid "Monitor Stage" -msgstr "Fase de monitorização" +msgid "Ultimaker Network Connection" +msgstr "Ligação de rede Ultimaker" -#: ModelChecker/plugin.json +#: USBPrinting/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." +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." -#: ModelChecker/plugin.json +#: USBPrinting/plugin.json msgctxt "name" -msgid "Model Checker" -msgstr "Verificador de Modelos" +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 "@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 tipo estático para Python" + +#~ msgctxt "@Label" +#~ msgid "Root Certificates for validating SSL trustworthiness" +#~ msgstr "Certificados de raiz para validar a credibilidade SSL" + +#~ msgctxt "@label" +#~ msgid "Python extensions for Microsoft Windows" +#~ msgstr "Extensões Python para 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 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 "@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 "@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 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" + +#~ msgctxt "@info:tooltip" +#~ msgid "Go to Web Marketplace" +#~ msgstr "Ir para Mercado na Web" + +#~ 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" + +#~ 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 "@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." diff --git a/resources/i18n/pt_PT/fdmextruder.def.json.po b/resources/i18n/pt_PT/fdmextruder.def.json.po index d843296f89..8e8248ca13 100644 --- a/resources/i18n/pt_PT/fdmextruder.def.json.po +++ b/resources/i18n/pt_PT/fdmextruder.def.json.po @@ -1,21 +1,19 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0000\n" -"PO-Revision-Date: 2021-04-16 14:56+0200\n" -"Last-Translator: Portuguese \n" -"Language-Team: Paulo Miranda , Portuguese \n" -"Language: pt_PT\n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE\n" +"Language: \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 2.4.1\n" #: fdmextruder.def.json msgctxt "machine_settings label" diff --git a/resources/i18n/pt_PT/fdmprinter.def.json.po b/resources/i18n/pt_PT/fdmprinter.def.json.po index 8f81248f64..4036a548bd 100644 --- a/resources/i18n/pt_PT/fdmprinter.def.json.po +++ b/resources/i18n/pt_PT/fdmprinter.def.json.po @@ -1,21 +1,19 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 11:59+0000\n" -"PO-Revision-Date: 2021-04-16 14:56+0200\n" -"Last-Translator: Lionbridge \n" -"Language-Team: Portuguese , Paulo Miranda , Portuguese \n" -"Language: pt_PT\n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE\n" +"Language: \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 2.4.1\n" #: fdmprinter.def.json msgctxt "machine_settings label" @@ -57,7 +55,9 @@ 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." +msgstr "" +"Comandos G-code a serem executados no início – separados por \n" +"." #: fdmprinter.def.json msgctxt "machine_end_gcode label" @@ -69,7 +69,9 @@ 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." +msgstr "" +"Comandos G-code a serem executados no fim – separados por \n" +"." #: fdmprinter.def.json msgctxt "material_guid label" @@ -246,8 +248,6 @@ msgctxt "machine_extruder_count label" msgid "Number of Extruders" msgstr "Número de Extrusores" -# train? -# nucleo? #: 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." @@ -318,7 +318,6 @@ msgctxt "machine_nozzle_heat_up_speed label" msgid "Heat Up Speed" msgstr "Velocidade de aquecimento" -# intervalo? #: 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." @@ -329,7 +328,6 @@ msgctxt "machine_nozzle_cool_down_speed label" msgid "Cool Down Speed" msgstr "Velocidade de arrefecimento" -# intervalo? #: 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." @@ -467,8 +465,8 @@ msgstr "Polígono da cabeça e do ventilador da máquina" #: fdmprinter.def.json 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))." +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" @@ -695,10 +693,6 @@ msgctxt "machine_endstop_positive_direction_x label" msgid "X Endstop in Positive Direction" msgstr "Endstop X no Sentido Positivo" -# rever! -# contexto -# Alta baixa? -# em cima em baixo? #: 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)." @@ -729,7 +723,6 @@ msgctxt "machine_minimum_feedrate label" msgid "Minimum Feedrate" msgstr "Velocidade Mínima de Alimentação" -# english string correct? #: fdmprinter.def.json msgctxt "machine_minimum_feedrate description" msgid "The minimal movement speed of the print head." @@ -745,6 +738,16 @@ 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" @@ -760,8 +763,6 @@ msgctxt "layer_height label" msgid "Layer Height" msgstr "Espessura das Camadas" -# Valores? ou numeros? ou espessura? -# mais elevadas ou maiores? #: 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." @@ -777,10 +778,6 @@ 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." -# rever! -# Diâmetro da linha? -# ou -# Largura da linha? #: fdmprinter.def.json msgctxt "line_width label" msgid "Line Width" @@ -926,9 +923,6 @@ msgctxt "wall_extruder_nr label" msgid "Wall Extruder" msgstr "Extrusor Paredes" -# Este é utilizado em extrusões múltiplas. ?? -# Definição utilizada com múltiplos extrusores. ?? -# Definição para 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." @@ -974,6 +968,56 @@ 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" @@ -984,9 +1028,6 @@ 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." -# Inserção? -# desvio? -# Movimento? #: fdmprinter.def.json msgctxt "wall_0_inset label" msgid "Outer Wall Inset" @@ -997,9 +1038,6 @@ 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." -# rever! -# ordem de -impressão- das paredes? -# incluir _Impressão_? #: fdmprinter.def.json msgctxt "optimize_wall_printing_order label" msgid "Optimize Wall Printing Order" @@ -1010,110 +1048,85 @@ 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." -# antes das interiores? #: fdmprinter.def.json -msgctxt "outer_inset_first label" -msgid "Outer Before Inner Walls" -msgstr "Paredes Exteriores Primeiro" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Ordenação de paredes" #: fdmprinter.def.json -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 "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" -# capturado? -# integrado? #: 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 "travel_compensate_overlapping_walls_enabled label" -msgid "Compensate Wall Overlaps" -msgstr "Compensar Sobreposição Paredes" +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Diâmetro mínimo de linha da parede" #: fdmprinter.def.json -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 "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 "travel_compensate_overlapping_walls_0_enabled label" -msgid "Compensate Outer Wall Overlaps" -msgstr "Compensar Paredes Exteriores" +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 "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 "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 "travel_compensate_overlapping_walls_x_enabled label" -msgid "Compensate Inner Wall Overlaps" -msgstr "Compensar Paredes Interiores" +msgctxt "wall_split_middle_threshold label" +msgid "Split Middle Line Threshold" +msgstr "Dividir limiar da linha do meio" #: fdmprinter.def.json -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_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 "wall_min_flow label" -msgid "Minimum Wall Flow" -msgstr "Fluxo de parede mínimo" +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 "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 "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_min_flow_retract label" -msgid "Prefer Retract" -msgstr "Preferir retração" +msgctxt "wall_add_middle_threshold label" +msgid "Add Middle Line Threshold" +msgstr "Adicionar limiar da linha do meio" #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps label" -msgid "Fill Gaps Between Walls" -msgstr "Preencher Folgas Entre Paredes" - -# rever! -# onde nenhuma parede cabe -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option nowhere" -msgid "Nowhere" -msgstr "Em lado nenhum" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option everywhere" -msgid "Everywhere" -msgstr "Em todo o lado" - -#: fdmprinter.def.json -msgctxt "filter_out_tiny_gaps label" -msgid "Filter Out Tiny Gaps" -msgstr "Descartar Folgas Mínimas" - -#: fdmprinter.def.json -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 "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" @@ -1125,6 +1138,26 @@ 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" @@ -1140,8 +1173,6 @@ msgctxt "xy_offset_layer_0 label" msgid "Initial Layer Horizontal Expansion" msgstr "Expansão Horizontal Camada Inicial" -# conhecido como? -# o chamado ? #: 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\"." @@ -1162,7 +1193,6 @@ msgctxt "z_seam_type label" msgid "Z Seam Alignment" msgstr "Alinhamento da Junta-Z" -# adoptar? #: 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." @@ -1183,8 +1213,6 @@ msgctxt "z_seam_type option random" msgid "Random" msgstr "Aleatório" -# canto? ou esquina? angulo? -# acentuado? agudo? #: fdmprinter.def.json msgctxt "z_seam_type option sharpest_corner" msgid "Sharpest Corner" @@ -1260,8 +1288,6 @@ 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." -# rever! -# canto? esquina? angulo? #: fdmprinter.def.json msgctxt "z_seam_corner label" msgid "Seam Corner Preference" @@ -1277,22 +1303,16 @@ msgctxt "z_seam_corner option z_seam_corner_none" msgid "None" msgstr "Nenhum" -# rever! -# ocultar? esconder? #: fdmprinter.def.json msgctxt "z_seam_corner option z_seam_corner_inner" msgid "Hide Seam" msgstr "Ocultar Junta" -# rever! -# expor? mostrar? #: fdmprinter.def.json msgctxt "z_seam_corner option z_seam_corner_outer" msgid "Expose Seam" msgstr "Expor Junta" -# rever! -# ocultar ou esconder? #: fdmprinter.def.json msgctxt "z_seam_corner option z_seam_corner_any" msgid "Hide or Expose Seam" @@ -1438,13 +1458,11 @@ msgctxt "top_bottom_pattern option zigzag" msgid "Zig Zag" msgstr "Ziguezague" -# Is the English string correct? meaning? #: fdmprinter.def.json msgctxt "top_bottom_pattern_0 label" msgid "Bottom Pattern Initial Layer" msgstr "Padrão da Base na Camada Inicial" -# Is the English string correct? meaning? #: fdmprinter.def.json msgctxt "top_bottom_pattern_0 description" msgid "The pattern on the bottom of the print on the first layer." @@ -1510,10 +1528,6 @@ msgctxt "skin_outline_count label" msgid "Extra Skin Wall Count" msgstr "Paredes Revestimento Extra" -# rever! -# tetos ? tectos? -# iniciados? que começam? -# materialde enchimento? #: 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." @@ -1584,8 +1598,6 @@ msgctxt "ironing_flow label" msgid "Ironing Flow" msgstr "Fluxo de Engomar" -# rever! -# filled - abastecido? cheio? #: 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." @@ -1626,8 +1638,6 @@ msgctxt "jerk_ironing label" msgid "Ironing Jerk" msgstr "Jerk de Engomar" -# rever! -# A velocidade máxima da alteração da velocidade instantânea #: fdmprinter.def.json msgctxt "jerk_ironing description" msgid "The maximum instantaneous velocity change while performing ironing." @@ -1763,8 +1773,6 @@ msgctxt "infill_sparse_density description" msgid "Adjusts the density of infill of the print." msgstr "Ajusta a densidade do enchimento da impressão." -# rever! -# Distância? espaço? intervalo? #: fdmprinter.def.json msgctxt "infill_line_distance label" msgid "Infill Line Distance" @@ -1783,10 +1791,7 @@ 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." +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" @@ -1898,9 +1903,6 @@ 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." -# Desvio? -# Delocar? deslocamento -# Mover? #: fdmprinter.def.json msgctxt "infill_offset_y label" msgid "Infill Y Offset" @@ -2130,11 +2132,6 @@ msgctxt "default_material_print_temperature label" msgid "Default Printing Temperature" msgstr "Temperatura Impressão Predefinida" -# rever! -# english string missing period -# devem ter como base este valor. -# devem ser baseadas neste valor. -# devem utilizar desvios com base neste valor. #: 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" @@ -2260,6 +2257,26 @@ 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" @@ -2575,11 +2592,6 @@ msgctxt "speed_print label" msgid "Print Speed" msgstr "Velocidade de Impressão" -# rever! -# a que -# em que -# com que ?? -# com qual #: fdmprinter.def.json msgctxt "speed_print description" msgid "The speed at which printing happens." @@ -2590,11 +2602,6 @@ msgctxt "speed_infill label" msgid "Infill Speed" msgstr "Velocidade Enchimento" -# rever! -# a que -# em que -# com que ?? -# com qual #: fdmprinter.def.json msgctxt "speed_infill description" msgid "The speed at which infill is printed." @@ -2615,8 +2622,6 @@ msgctxt "speed_wall_0 label" msgid "Outer Wall Speed" msgstr "Velocidade Parede Exterior" -# rever! -# english string correct? plural? #: 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." @@ -2627,8 +2632,6 @@ msgctxt "speed_wall_x label" msgid "Inner Wall Speed" msgstr "Velocidade Parede Interior" -# rever! -# É conveniente introduzir esta definição entre a velocidade de parede exterior e a velocidade de enchimento. #: 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." @@ -2785,24 +2788,14 @@ msgid "The first few layers are printed slower than the rest of the model, to ge 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_enabled label" -msgid "Equalize Filament Flow" -msgstr "Equilibrar fluxo de filamento" +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_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." - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_max label" -msgid "Maximum Speed for Flow Equalization" -msgstr "Velocidade máxima para equilíbrio de fluxo" - -#: fdmprinter.def.json -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 "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" @@ -2814,6 +2807,17 @@ 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 "Ativar a aceleração da viagem" + +#: 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 "acceleration_print label" msgid "Print Acceleration" @@ -2999,23 +3003,27 @@ msgctxt "jerk_enabled label" msgid "Enable Jerk Control" msgstr "Ativar Controlo do Jerk" -# rever! -# solavanco? -# movimento brusco #: 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 "Ativar Jerk de Viagem" + +#: 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 "jerk_print label" msgid "Print Jerk" msgstr "Jerk da Impressão" -# rever! -# all jerk strings -# ver qual a trad é mais aproximada doo sentido original -# tradução original - A mudança de velocidade instantânea máxima da cabeça de impressão. #: fdmprinter.def.json msgctxt "jerk_print description" msgid "The maximum instantaneous velocity change of the print head." @@ -3121,8 +3129,6 @@ 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." -# rever! -# piso? #: fdmprinter.def.json msgctxt "jerk_support_bottom label" msgid "Support Floor Jerk" @@ -3193,13 +3199,6 @@ 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." -# rever! -# Deslocação? -# Deslocamento? -# Movimento? -# Viagem? -# Trajectória? -# Travel? #: fdmprinter.def.json msgctxt "travel label" msgid "Travel" @@ -3250,21 +3249,11 @@ 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." -# rever! -# retrair? -# é retraido? -# recuo? -# recolhido? #: fdmprinter.def.json msgctxt "retraction_retract_speed label" msgid "Retraction Retract Speed" msgstr "Velocidade Retrair na Retração" -# rever! -# retrair? -# é retraido? -# recuo? -# recolhido? #: fdmprinter.def.json msgctxt "retraction_retract_speed description" msgid "The speed at which the filament is retracted during a retraction move." @@ -3315,7 +3304,6 @@ msgctxt "retraction_extrusion_window label" msgid "Minimum Extrusion Distance Window" msgstr "Intervalo Mínimo Distância Extrusão" -# de forma a que o número de vezes que uma retração acontece na mesma área do material seja efetivamente limitado. #: 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." @@ -3466,16 +3454,11 @@ msgctxt "retraction_hop description" msgid "The height difference when performing a Z Hop." msgstr "A diferença de altura ao efetuar um salto Z." -# rever! -# Salto? -# Pulo? -# Rebaixar? #: fdmprinter.def.json msgctxt "retraction_hop_after_extruder_switch label" msgid "Z Hop After Extruder Switch" msgstr "Salto Z após mudança extrusor" -# rever! #: 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." @@ -3491,11 +3474,6 @@ 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." -# rever! -# todoas as strings de Arrefecimento -# limiar? -# intervalo? -# limite? #: fdmprinter.def.json msgctxt "cooling label" msgid "Cooling" @@ -3521,11 +3499,6 @@ msgctxt "cool_fan_speed label" msgid "Fan Speed" msgstr "Velocidade Ventiladores" -# rever! -# ...giram. -# A velocidade a que giram os ventiladores... -# rotação? -# A velocidade de rotação dos ventiladores... #: fdmprinter.def.json msgctxt "cool_fan_speed description" msgid "The speed at which the print cooling fans spin." @@ -3861,9 +3834,6 @@ msgctxt "zig_zaggify_support label" msgid "Connect Support Lines" msgstr "Ligar Linhas de Suporte" -# rever! -# underext -# gasto #: 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." @@ -4299,14 +4269,11 @@ msgctxt "support_roof_pattern option zigzag" msgid "Zig Zag" msgstr "Ziguezague" -# rever! -# piso? chão? base? #: fdmprinter.def.json msgctxt "support_bottom_pattern label" msgid "Support Floor Pattern" msgstr "Padrão Piso Suporte" -# pisos? #: fdmprinter.def.json msgctxt "support_bottom_pattern description" msgid "The pattern with which the floors of the support are printed." @@ -4522,9 +4489,6 @@ msgctxt "prime_blob_enable label" msgid "Enable Prime Blob" msgstr "\"Blob\" de Preparação" -# rever! -# borrão? -# antes de começar a impressã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." @@ -4590,6 +4554,46 @@ 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" @@ -4709,7 +4713,6 @@ msgctxt "layer_0_z_overlap label" msgid "Initial Layer Z Overlap" msgstr "Sobreposição Z Camada Inicial" -# 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 "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." @@ -4755,6 +4758,16 @@ 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" @@ -5055,7 +5068,6 @@ 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\"." -# rever! #: fdmprinter.def.json msgctxt "ooze_shield_enabled label" msgid "Enable Ooze Shield" @@ -5086,8 +5098,6 @@ 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." -# rever! -# restantes retração srtings #: fdmprinter.def.json msgctxt "switch_extruder_retraction_amount label" msgid "Nozzle Switch Retraction Distance" @@ -5138,10 +5148,6 @@ 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." -# rever! -# correção? reparação? -# correções? reparações? Emendas? -# objectos? mesh? malha? #: fdmprinter.def.json msgctxt "meshfix label" msgid "Mesh Fixes" @@ -5172,10 +5178,6 @@ 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." -# rever! -# english meaning -# extensiva ou intensiva -# coser extensivamente #: fdmprinter.def.json msgctxt "meshfix_extensive_stitching label" msgid "Extensive Stitching" @@ -5186,10 +5188,6 @@ 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." -# rever! -# desconectadas? -# soltas? -# Separadas? #: fdmprinter.def.json msgctxt "meshfix_keep_open_polygons label" msgid "Keep Disconnected Faces" @@ -5200,9 +5198,6 @@ 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." -# rever! -# does it apply only to Merged obkects (menu) or individual objects that touch -# merged - combinadas? - fundidas? #: fdmprinter.def.json msgctxt "multiple_mesh_overlap label" msgid "Merged Meshes Overlap" @@ -5218,7 +5213,6 @@ msgctxt "carve_multiple_volumes label" msgid "Remove Mesh Intersection" msgstr "Remover interceção de malhas" -# rever! #: 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." @@ -5274,6 +5268,16 @@ 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" @@ -5309,8 +5313,6 @@ msgctxt "infill_mesh label" msgid "Infill Mesh" msgstr "Objecto de Enchimento" -# rever! -# mesh - malha? - objecto? - modelo? #: 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." @@ -5426,8 +5428,6 @@ msgctxt "magic_spiralize label" msgid "Spiralize Outer Contour" msgstr "\"Spiralize\" Contorno Exterior" -# rever! -# um aumento em Z #: 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." @@ -5583,14 +5583,6 @@ msgctxt "minimum_polygon_circumference description" msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." msgstr "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." -# rever! -# Is the english string correct? for the label? -# -Break up -# Partir? -# Dividir? -# -chunks -# Partes? -# Pedaços? #: fdmprinter.def.json msgctxt "support_skip_some_zags label" msgid "Break Up Support In Chunks" @@ -5601,8 +5593,6 @@ 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." -# rever! -# Is the english string correct? for the label? #: fdmprinter.def.json msgctxt "support_skip_zag_per_mm label" msgid "Support Chunk Size" @@ -5613,8 +5603,6 @@ 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." -# rever! -# Is the english string correct? for the label? #: fdmprinter.def.json msgctxt "support_zag_skip_count label" msgid "Support Chunk Line Count" @@ -5710,8 +5698,6 @@ msgctxt "coasting_enable label" msgid "Enable Coasting" msgstr "Ativar desaceleração" -# rever! -# fios soltos? #: 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." @@ -6586,6 +6572,36 @@ 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 "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "Direções de parede alternadas" + +#: 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 "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" + +#: 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 "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Número de paredes da base do raft" + +#: 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 "command_line_settings label" msgid "Command Line Settings" @@ -6646,6 +6662,101 @@ 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." diff --git a/resources/i18n/ru_RU/cura.po b/resources/i18n/ru_RU/cura.po index 858f640f24..f2a291cf06 100644 --- a/resources/i18n/ru_RU/cura.po +++ b/resources/i18n/ru_RU/cura.po @@ -1,415 +1,211 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0100\n" -"PO-Revision-Date: 2022-01-10 12:09+0100\n" -"Last-Translator: Lionbridge \n" -"Language-Team: Russian , Ruslan Popov , Russian \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" "Language: ru_RU\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.3\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" +"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/clamboo/Desktop/Cura/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/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "Неизвестно" -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 -msgctxt "@info:title" -msgid "Backup" -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/clamboo/Desktop/Cura/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/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Доступные сетевые принтеры" -#: /home/clamboo/Desktop/Cura/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/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Не переопределен" -#: /home/clamboo/Desktop/Cura/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/Machines/Models/GlobalStacksModel.py:138 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 +msgctxt "@label" +msgid "Connected printers" +msgstr "Подключенные принтеры" -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 -msgctxt "@action:button" -msgid "Please sync the material profiles with your printers before starting to print." -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/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 -msgctxt "@action:button" -msgid "New materials installed" -msgstr "Установлены новые материалы" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 -msgctxt "@action:button" -msgid "Sync materials with printers" -msgstr "Синхронизация материалов" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 -msgctxt "@action:button" -msgid "Learn more" -msgstr "Узнать больше" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 -msgctxt "@message:text" -msgid "Could not save material archive to {}:" -msgstr "Невозможно сохранить архив материалов в {}:" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 -msgctxt "@message:title" -msgid "Failed to save material archive" -msgstr "Архив материалов не сохранен" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 -msgctxt "@text" -msgid "Unknown error." -msgstr "Неизвестная ошибка." - -#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 -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/clamboo/Desktop/Cura/cura/BuildVolume.py:102 -msgctxt "@info:title" -msgid "Build Volume" -msgstr "Объём печати" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Не переопределен" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "Неизвестно" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Доступные сетевые принтеры" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Все файлы (*)" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Визуальный" +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Вычислено" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Черновой" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 -msgctxt "@label" -msgid "Custom Material" -msgstr "Собственный материал" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 -msgctxt "@label" -msgid "Custom" -msgstr "Своё" - -#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 +#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "Вход не выполнен" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Поиск места для новых объектов" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 msgctxt "@info:title" msgid "Finding Location" msgstr "Поиск места" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Невозможно разместить все объекты внутри печатаемого объёма" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Не могу найти место" -#: /home/clamboo/Desktop/Cura/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/Backups/Backup.py:115 +msgctxt "@info:backup_failed" +msgid "Could not create archive from user data directory: {}" +msgstr "Не удалось создать архив из каталога с данными пользователя: {}" -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 -msgctxt "@text:error" -msgid "Failed to load the archive of materials to sync it with printers." -msgstr "Архив материалов для синхронизации с принтерами не загружен." - -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 -msgctxt "@text:error" -msgid "The response from Digital Factory appears to be corrupted." -msgstr "Ответ от Digital Factory поврежден." - -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 -msgctxt "@text:error" -msgid "The response from Digital Factory is missing important information." -msgstr "В ответе от Digital Factory отсутствует важная информация." - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 -msgctxt "@text:error" -msgid "Failed to connect to Digital Factory." -msgstr "Подключение к Digital Factory не установлено." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "Загрузка принтеров..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "Настройка параметров..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "Инициализация активной машины..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "Инициализация диспетчера машин..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "Инициализация объема печати..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "Настройка сцены..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "Загрузка интерфейса..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "Инициализация ядра..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 +#: /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 msgctxt "@info:title" -msgid "Warning" -msgstr "Внимание" +msgid "Backup" +msgstr "Резервное копирование" -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 -#, python-brace-format +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 msgctxt "@info:status" -msgid "Can't open any other file if G-code is loading. Skipped importing {0}" -msgstr "Невозможно открыть любой другой файл, если G-code файл уже загружен. Пропускаю импортирование {0}" +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/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 msgctxt "@info:title" -msgid "Error" -msgstr "Ошибка" +msgid "Build Volume" +msgstr "Объём печати" -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 -msgctxt "@action:button" -msgid "Skip" -msgstr "Пропустить" - -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "Закрыть" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 -msgctxt "@action:button" -msgid "Next" -msgstr "Следующий" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 -msgctxt "@action:button" -msgid "Finish" -msgstr "Завершить" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "Добавить" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 -msgctxt "@action:button" -msgid "Cancel" -msgstr "Отмена" - -#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 -#, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "Группа #{group_nr}" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Внешняя стенка" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "Внутренние стенки" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Skin" -msgstr "Покрытие" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Infill" -msgstr "Заполнение" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Заполнение поддержек" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Связующий слой поддержек" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Support" -msgstr "Поддержки" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Юбка" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "Черновая башня" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 -msgctxt "@tooltip" -msgid "Travel" -msgstr "Перемещение" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Откаты" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 -msgctxt "@tooltip" -msgid "Other" -msgstr "Другое" - -#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 -msgctxt "@text:window" -msgid "The release notes could not be opened." -msgstr "Невозможно открыть примечания к версии." - -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Не удалось запустить Cura" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

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

      \n" @@ -424,32 +220,32 @@ msgstr "" "

      Отправьте нам этот отчет о сбое для устранения проблемы.

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

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

      \n" " " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Информация о системе" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Неизвестно" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Версия Cura" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Язык Cura" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "Язык ОС" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Платформа" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Версия Qt" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "Версия PyQt" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 msgctxt "@label" -msgid "Not yet initialized
      " -msgstr "Еще не инициализировано
      " +msgid "Not yet initialized" +msgstr "Еще не инициализировано" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
    • OpenGL Version: {version}
    • " msgstr "
    • Версия OpenGL: {version}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
    • OpenGL Vendor: {vendor}
    • " msgstr "
    • Поставщик OpenGL: {vendor}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
    • OpenGL Renderer: {renderer}
    • " msgstr "
    • Средство визуализации OpenGL: {renderer}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Обратное отслеживание ошибки" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "Журналы" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "Отправить отчёт" -#: /home/clamboo/Desktop/Cura/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/CuraApplication.py:531 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "Загрузка принтеров..." -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 -msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." -msgstr "Нет связи с сервером учетных записей Ultimaker." +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "Настройка параметров..." -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "Инициализация активной машины..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "Инициализация диспетчера машин..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "Инициализация объема печати..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "Настройка сцены..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "Загрузка интерфейса..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "Инициализация ядра..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#, 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 +#, 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 msgctxt "@info:title" -msgid "Log-in failed" -msgstr "Вход в систему не выполнен" +msgid "Warning" +msgstr "Внимание" -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "Указано неверное состояние." +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 +#, 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/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 -msgctxt "@message" -msgid "Timeout when authenticating with the account server." -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 +msgctxt "@info:title" +msgid "Error" +msgstr "Ошибка" -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 -msgctxt "@message" -msgid "Please give the required permissions when authorizing this application." -msgstr "Дайте необходимые разрешения при авторизации в этом приложении." - -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 -msgctxt "@message" -msgid "Something unexpected happened when trying to log in, please try again." -msgstr "Возникла непредвиденная ошибка при попытке входа в систему. Повторите попытку." - -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 -msgctxt "@message" -msgid "Could not read response." -msgstr "Не удалось прочитать ответ." - -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "Размножение и размещение объектов" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "Размещение объектов" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Размещение объекта" -#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "Не поддерживается" +#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "Не удалось прочитать ответ." -#: /home/clamboo/Desktop/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/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "Указано неверное состояние." -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 -msgctxt "@label" -msgid "Nozzle" -msgstr "Сопло" +#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "Истекло время аутентификации на сервере учетной записи." -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 -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/OAuth2/AuthorizationRequestHandler.py:97 +msgctxt "@message" +msgid "Please give the required permissions when authorizing this application." +msgstr "Дайте необходимые разрешения при авторизации в этом приложении." -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info" +msgid "Unable to reach the Ultimaker account server." +msgstr "Нет связи с сервером учетных записей Ultimaker." + +#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:278 msgctxt "@info:title" -msgid "Settings updated" -msgstr "Настройки обновлены" +msgid "Log-in failed" +msgstr "Вход в систему не выполнен" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "Экструдер (-ы) отключен (-ы)" +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." +msgstr "Архив материалов для синхронизации с принтерами не создан." -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 msgctxt "@title:window" msgid "File Already Exists" msgstr "Файл уже существует" -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "Неправильный URL-адрес файла:" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Экспорт успешно завершен" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Профиль {0} успешно импортирован." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "В файле {0} нет подходящих профилей." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Собственный профиль" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "У профайла отсутствует тип качества." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "Еще нет активных принтеров." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Невозможно добавить профиль." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: /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 msgctxt "@label" -msgid "Per Model Settings" -msgstr "Параметры модели" +msgid "Nozzle" +msgstr "Сопло" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "Правка параметров модели" +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +msgctxt "@info:message Followed by a list of settings." +msgid "Settings have been changed to match the current availability of extruders:" +msgstr "Настройки изменены в соответствии с текущей доступностью экструдеров:" -#: /home/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Профиль Cura" - -#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "Файл X3D" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "При попытке восстановления данных из резервной копии возникла ошибка." - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 msgctxt "@info:title" -msgid "Backups" -msgstr "Резервные копии" +msgid "Settings updated" +msgstr "Настройки обновлены" -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "При заливке вашей резервной копии возникла ошибка." - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Создание резервной копии..." - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "При создании резервной копии возникла ошибка." - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Выполняется заливка вашей резервной копии..." - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "Заливка вашей резервной копии завершена." - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "Размер файла резервной копии превышает максимально допустимый." - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Управление резервными копиями" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Параметры принтера" - -#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "Блокировщик поддержки" - -#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:13 -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "Создание объема без печати элементов поддержки." - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Внешний носитель" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "Сохранить на внешний носитель" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "Сохранить на внешний носитель {0}" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 -msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "Ни один из форматов файлов не доступен для записи!" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "Сохранение на внешний носитель {0}" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 msgctxt "@info:title" -msgid "Saving" -msgstr "Сохранение" +msgid "Extruder(s) Disabled" +msgstr "Экструдер (-ы) отключен (-ы)" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Не могу записать {0}: {1}" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "Невозможно сохранить на внешний носитель {0}: {1}" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "Сохранено на внешний носитель {0} как {1}" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 -msgctxt "@info:title" -msgid "File Saved" -msgstr "Файл сохранён" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" -msgid "Eject" -msgstr "Извлечь" +msgid "Add" +msgstr "Добавить" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Cancel" +msgstr "Отмена" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 #, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "Извлекает внешний носитель {0}" +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "Группа #{group_nr}" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "Извлечено {0}. Вы можете теперь безопасно извлечь носитель." +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Внешняя стенка" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "Внутренние стенки" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "Покрытие" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "Заполнение" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Заполнение поддержек" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Связующий слой поддержек" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "Поддержки" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Юбка" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "Черновая башня" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "Перемещение" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Откаты" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Close" +msgstr "Закрыть" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "Установлены новые материалы" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Learn more" +msgstr "Узнать больше" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "Архив материалов не сохранен" + +#: /home/trin/Gedeeld/Projects/Cura/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 "Safely Remove Hardware" -msgstr "Безопасное извлечение устройства" +msgid "3D Model Assistant" +msgstr "Помощник по 3D-моделям" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "Невозможно извлечь {0}. Другая программа может использовать это устройство." +msgid "" +"

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

      \n" +"

      {model_names}

      \n" +"

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

      \n" +"

      View print quality guide

      " +msgstr "" +"

      Одна или несколько 3D-моделей могут не напечататься оптимальным образом из-за размера модели и конфигурации материала:

      \n" +"

      {model_names}

      \n" +"

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

      \n" +"

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

      " -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Обновить прошивку" - -#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Профили Cura 15.04" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Рекомендованная" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Своя" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 +#: /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}. Не удалось импортировать принтер. Вместо этого будут импортированы модели." -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 msgctxt "@info:title" msgid "Open Project File" msgstr "Открыть файл проекта" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 +#: /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 "Используемый в этом проекте материал основывается на определениях материалов, недоступных в Cura, что может привести к нежелательным результатам при печати." +" Мы настоятельно рекомендуем установить полный пакет материалов из магазина." + +#: /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/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "Невозможно записать в файл UFP:" +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "Подключаемый модуль для записи 3MF поврежден." -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Пакет формата Ultimaker" +#: /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/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "Файл G-code" +#: /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/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -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/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Просмотр в рентгене" +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:238 +msgctxt "@error:zip" +msgid "Error writing 3mf file." +msgstr "Ошибка в ходе записи файла 3MF." -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -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 "Не удалось сохранить информацию о пакете материалов в файле проекта: {material}. Этот проект может некорректно открываться на других системах." -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:283 msgctxt "@info:title" -msgid "Information" -msgstr "Информация" +msgid "Failed to save material package information" +msgstr "Информация о пакете материалов не сохранена" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 msgctxt "@message:title" msgid "Slicing failed" msgstr "Нарезка на слои не выполнена" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 msgctxt "@message:button" msgid "Report a bug" msgstr "Сообщить об ошибке" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 msgctxt "@info:status" msgid "" "Please review settings and check if your models:\n" @@ -1084,431 +1072,517 @@ msgstr "" "- назначены активированному экструдеру\n" "- не заданы как объекты-модификаторы" -#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "Файл AMF" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "Сжатый файл с G-кодом" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "Пост-обработка" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "Изменить G-код" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "Печать через USB" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Печатать через USB" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Печатать через USB" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Подключено через USB" +msgid "Processing Layers" +msgstr "Обработка слоёв" -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 -msgctxt "@message" -msgid "Print in Progress" -msgstr "Идет печать" - -#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "Подготовка" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "Обработка G-code" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 msgctxt "@info:title" -msgid "G-code Details" -msgstr "Параметры G-code" +msgid "Information" +msgstr "Информация" -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 -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/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 msgctxt "@item:inlistbox" -msgid "G File" -msgstr "Файл G" +msgid "Cura Profile" +msgstr "Профиль Cura" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG изображение" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG изображение" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG изображение" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP изображение" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF изображение" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "Выравнивание стола" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "Выбор обновлений" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "Средство записи G-кода с расширением GZ (GCodeGzWriter) не поддерживает текстовый режим." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 msgctxt "@info" msgid "Could not access update information." msgstr "Не могу получить информацию об обновлениях." -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#: /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/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#: /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/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 msgctxt "@action:button" msgid "How to update" msgstr "Порядок обновления" -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 -msgctxt "@text" -msgid "Unable to read example data file." -msgstr "Невозможно прочитать пример файла данных." +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Обновить прошивку" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Синхронизация..." +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +#: /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 "Changes detected from your Ultimaker account" -msgstr "В вашей учетной записи Ultimaker обнаружены изменения" +msgid "G-code Details" +msgstr "Параметры G-code" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "Хотите синхронизировать пакеты материалов и программного обеспечения со своей учетной записью?" +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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 -msgctxt "@action:button" -msgid "Sync" -msgstr "Синхронизация" +#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "Файл G" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Отклонить и удалить из учетной записи" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "Встраиваемые модули ({} шт.) не загружены" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "Отклонить" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "Принимаю" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Лицензионное соглашение плагина" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +#: /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/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +#: /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-код" + +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 msgctxt "@info:title" msgid "Simulation View" msgstr "Вид моделирования" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 msgctxt "@info:title" msgid "No layers to show" msgstr "Нет слоев для отображения" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Просмотр слоёв" -#: /home/clamboo/Desktop/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/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "Невозможно прочитать пример файла данных." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Печать через сеть" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Подключен по сети" +msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." +msgstr "Выделены области с отсутствующими или лишними поверхностями. Исправьте модель и снова откройте ее в Cura." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "завтра" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 +msgctxt "@info:title" +msgid "Model Errors" +msgstr "Ошибки модели" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "сегодня" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Solid view" +msgstr "Просмотр модели" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +#: /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 "Open Compressed Triangle Mesh" + +#: /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 Triangle Format" + +#: /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 "Connect via Network" -msgstr "Подключиться через сеть" +msgid "Level build plate" +msgstr "Выравнивание стола" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "Дождитесь окончания отправки текущего задания." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "Ошибка печати" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "Задание печати успешно отправлено на принтер." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Данные отправлены" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 -msgctxt "@info:title" -msgid "Update your printer" -msgstr "Обновите свой принтер" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "Очередь заполнена" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "Отправка задания печати" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Загрузка задания печати в принтер." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "Отправка материалов на принтер" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "Облако не залило данные на принтер." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "Ошибка сети" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "Не главный принтер группы" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 msgctxt "@action" -msgid "Configure group" -msgstr "Настроить группу" +msgid "Select upgrades" +msgstr "Выбор обновлений" -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 -msgctxt "@info:title" -msgid "Are you ready for cloud printing?" -msgstr "Вы готовы к облачной печати?" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 -msgctxt "@action" -msgid "Get started" -msgstr "Приступить" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 -msgctxt "@action" -msgid "Learn more" -msgstr "Узнать больше" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 msgctxt "@action:button" msgid "Print via cloud" msgstr "Печать через облако" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Печать через облако" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Подключено через облако" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 msgctxt "@action:button" msgid "Monitor print" msgstr "Мониторинг печати" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 +#: /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" -msgstr[1] "Новых принтера обнаружено из учетной записи Ultimaker" -msgstr[2] "Новых принтеров обнаружено из учетной записи Ultimaker" +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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 +#: /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" @@ -1517,12 +1591,12 @@ msgstr[0] "... и еще {0} другой" msgstr[1] "... и еще {0} других" msgstr[2] "... и еще {0} других" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 +#: /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" @@ -1530,7 +1604,7 @@ msgstr[0] "Подключение к облаку недоступно для п msgstr[1] "Подключение к облаку недоступно для некоторых принтеров" msgstr[2] "Подключение к облаку недоступно для некоторых принтеров" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +#: /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:" @@ -1538,51 +1612,52 @@ msgstr[0] "Это принтер не подключен Digital Factory:" msgstr[1] "Эти принтеры не подключены Digital Factory:" msgstr[2] "Эти принтеры не подключены Digital Factory:" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:356 msgctxt "@action:button" msgid "Keep printer configurations" msgstr "Сохранить конфигурации принтера" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:361 msgctxt "@action:button" msgid "Remove printers" msgstr "Удалить принтеры" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 msgctxt "@title:window" msgid "Remove printers?" msgstr "Удалить принтеры?" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 #, python-brace-format msgctxt "@label" msgid "" @@ -1601,562 +1676,277 @@ msgstr[2] "" "Вы удаляете {0} принтеров из Cura. Это действие невозможно будет отменить.\n" "Продолжить?" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +#: /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. Это действие невозможно будет отменить.Продолжить?" -#: /home/clamboo/Desktop/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 "Open Compressed Triangle Mesh" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA Digital Asset Exchange" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "glTF Binary" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF Embedded JSON" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Stanford Triangle Format" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Compressed COLLADA Digital Asset Exchange" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "Ошибки модели" - -#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Просмотр модели" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "Ошибка в ходе записи файла 3MF." - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "Подключаемый модуль для записи 3MF поврежден." - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "Нет рабочей среды для записи. Сначала добавьте принтер." - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "Права на запись рабочей среды отсутствуют." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MF файл" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "3MF файл проекта Cura" - -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "Монитор" - -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 -msgctxt "@info:title" -msgid "3D Model Assistant" -msgstr "Помощник по 3D-моделям" - -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 #, 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

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

      Одна или несколько 3D-моделей могут не напечататься оптимальным образом из-за размера модели и конфигурации материала:

      \n" -"

      {model_names}

      \n" -"

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

      \n" -"

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

      " +"Ваш принтер {printer_name} может быть подключен через облако.\n" +" Управляйте очередью печати и следите за результатом из любого места благодаря подключению принтера к Digital Factory" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 +#: /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 "Mesh Type" -msgstr "Тип объекта" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "Выполняется печать через USB, закрытие Cura остановит эту печать. Вы уверены?" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -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 "Печать еще выполняется. Cura не может начать другую печать через USB, пока предыдущая печать не будет завершена." -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "Печать в качестве поддержки" +#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "Идет печать" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Изменить настройки для перекрытий" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Не поддерживать перекрытия" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 +#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Заполнение объекта" +msgid "X3D File" +msgstr "Файл X3D" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 +#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Ограничивающий объект" +msgid "X-Ray view" +msgstr "Просмотр в рентгене" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Выберите параметры" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Выберите параметр для изменения этой модели" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Фильтр..." - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Показать всё" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Резервные копии Cura" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Версия Cura" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Принтеры" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Материалы" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Профили" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Плагины" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "Желаете большего?" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Создать резервную копию" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Автоматическое резервное копирование" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "Восстановить" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Удалить резервную копию" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "Вы уверены, что хотите удалить указанную резервную копию? Данное действие невозможно отменить." - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Восстановить резервную копию" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Резервное копирование и синхронизация ваших параметров Cura." - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 -msgctxt "@button" -msgid "Sign in" -msgstr "Войти" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Мои резервные копии" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "В данный момент у вас отсутствуют резервные копии. Для создания резервной копии нажмите кнопку «Создать резервную копию»." - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -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/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Параметры принтера" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (Ширина)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -msgctxt "@label" -msgid "mm" -msgstr "мм" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Глубина)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Высота)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 -msgctxt "@label" -msgid "Build plate shape" -msgstr "Форма стола" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 -msgctxt "@label" -msgid "Origin at center" -msgstr "Начало координат в центре" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 -msgctxt "@label" -msgid "Heated bed" -msgstr "Нагреваемый стол" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 -msgctxt "@label" -msgid "Heated build volume" -msgstr "Подогреваемый объем печати" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 -msgctxt "@label" -msgid "G-code flavor" -msgstr "Вариант G-кода" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Параметры головы" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -msgctxt "@label" -msgid "X min" -msgstr "X минимум" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -msgctxt "@label" -msgid "Y min" -msgstr "Y минимум" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -msgctxt "@label" -msgid "X max" -msgstr "X максимум" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -msgctxt "@label" -msgid "Y max" -msgstr "Y максимум" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "Gantry Height" -msgstr "Высота портала" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Количество экструдеров" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Применить смещения экструдера к GCode" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "Стартовый G-код" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "Завершающий G-код" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Параметры сопла" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 -msgctxt "@label" -msgid "Nozzle size" -msgstr "Диаметр сопла" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Диаметр совместимого материала" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Смещение сопла по оси X" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Смещение сопла по оси Y" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Номер охлаждающего вентилятора" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "Стартовый G-код экструдера" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "Завершающий G-код экструдера" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "Принтер" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Обновить прошивку" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 -msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "Поставляемая с новыми принтерами прошивка работоспособна, но обновления предоставляют больше возможностей и усовершенствований." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Автоматическое обновление прошивки" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Залить собственную прошивку" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "Невозможно обновить прошивку, так как нет подключения к принтеру." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "Невозможно обновить прошивку, так как подключение к принтеру не поддерживает функцию обновления прошивки." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Выбрать собственную прошивку" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Обновление прошивки" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Updating firmware." -msgstr "Обновление прошивки." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Обновление прошивки завершено." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "Обновление прошивки не удалось из-за неизвестной ошибки." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "Обновление прошивки не удалось из-за ошибки связи." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "Обновление прошивки не удалось из-за ошибки ввода-вывода." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "Обновление прошивки не удалось из-за её отсутствия." - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 msgctxt "@title:window" msgid "Open Project" msgstr "Открытие проекта" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 msgctxt "@action:ComboBox Update/override existing profile" msgid "Update existing" msgstr "Обновить существующий" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:64 msgctxt "@action:ComboBox Save settings in a new profile" msgid "Create new" msgstr "Создать новый" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Параметры принтера" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Параметры профиля" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 +#: /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" @@ -2164,12 +1954,12 @@ msgstr[0] "%1 перекрыт" msgstr[1] "%1 перекрыто" msgstr[2] "%1 перекрыто" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 msgctxt "@action:label" msgid "Derivative from" msgstr "Производное от" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:311 msgctxt "@action:label" msgid "%1, %2 override" msgid_plural "%1, %2 overrides" @@ -2177,1012 +1967,811 @@ msgstr[0] "%1, %2 перекрыто" msgstr[1] "%1, %2 перекрыто" msgstr[2] "%1, %2 перекрыто" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 -msgctxt "@action:label" -msgid "Material settings" -msgstr "Параметры материала" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 msgctxt "@action:label" msgid "Mode" msgstr "Режим" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 msgctxt "@action:label" msgid "Visible settings:" msgstr "Видимые параметры:" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 из %2" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 msgctxt "@action:button" msgid "Open" msgstr "Открыть" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 +#: /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 "Post Processing Plugin" -msgstr "Плагин пост-обработки" +msgid "Cura Backups" +msgstr "Резервные копии Cura" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 +#: /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 "Сохранить проекта Cura и распечатать файл" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "Сохранить проект Cura" + +#: /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 "Post Processing Scripts" -msgstr "Скрипты пост-обработки" +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/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "Добавить скрипт" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 msgctxt "@label" -msgid "Settings" -msgstr "Параметры" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "Поставляемая с новыми принтерами прошивка работоспособна, но обновления предоставляют больше возможностей и усовершенствований." -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Измените активные скрипты пост-обработки." +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Автоматическое обновление прошивки" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 -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/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Залить собственную прошивку" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /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 "Convert Image..." -msgstr "Преобразование изображения..." +msgid "Select custom firmware" +msgstr "Выбрать собственную прошивку" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 -msgctxt "@info:tooltip" -msgid "The maximum distance of each pixel from \"Base.\"" -msgstr "Максимальная дистанция каждого пикселя от \"Основания.\"" +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Обновление прошивки" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "Высота основания от стола в миллиметрах." +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "Максимальная дистанция каждого пикселя от \"Основания.\"" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 msgctxt "@action:label" msgid "Base (mm)" msgstr "Основание (мм)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate." -msgstr "Ширина в миллиметрах на столе." +msgid "The base height from the build plate in millimeters." +msgstr "Высота основания от стола в миллиметрах." -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 msgctxt "@action:label" msgid "Width (mm)" msgstr "Ширина (мм)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "Глубина в миллиметрах на столе" +msgid "The width in millimeters on the build plate" +msgstr "Ширина в миллиметрах на печатной пластине" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 msgctxt "@action:label" msgid "Depth (mm)" msgstr "Глубина (мм)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 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-модели." +msgid "The depth in millimeters on the build plate" +msgstr "Глубина в миллиметрах на столе" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "Тёмные выше" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "Светлые выше" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 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 "Для литофании предусмотрена простая логарифмическая модель светопроходимости. В картах высот значения пикселей линейно соответствуют высотам." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "Светопроходимость" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 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 миллиметр. Если уменьшить это значение, контрастность в темных областях изображения увеличится, а в светлых — уменьшится." +msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." +msgstr "Для литофании предусмотрена простая логарифмическая модель светопроходимости. В картах высот значения пикселей линейно соответствуют высотам." -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "Проходимость через 1 мм (%)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "Величина сглаживания для применения к изображению." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 msgctxt "@action:label" msgid "Smoothing" msgstr "Сглаживание" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "Пожалуйста, укажите любые изменения, внесённые в Ultimaker Original" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "Нагреваемый стол (официальный набор или самодельный)" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Выравнивание стола" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Начало выравнивания стола" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Перейти к следующей позиции" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Дополнительная информация о сборе анонимных данных" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -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/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Не хочу отправлять анонимные данные" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Разрешить отправку анонимных данных" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" -msgid "Marketplace" -msgstr "Магазин" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -msgctxt "@info" -msgid "You will need to restart Cura before changes in packages have effect." -msgstr "Вам потребуется перезапустить Cura для активации изменений в пакетах." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "Выйти из %1" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "Установить" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -msgctxt "@action:button" -msgid "Installed" -msgstr "Установлено" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "Премиум" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 -msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "Перейти в интернет-магазин" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 -msgctxt "@label" -msgid "Search materials" -msgstr "Поиск материалов" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "Совместимость" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +msgctxt "@title:tab" +msgid "Printer" msgstr "Принтер" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "Рабочий стол" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Параметры сопла" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "Поддержки" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "Качество" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "Таблица технических характеристик" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "Паспорт безопасности" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "Инструкции по печати" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "Веб-сайт" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to install or update" -msgstr "Для выполнения установки или обновления необходимо войти" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "Приобретение катушек с материалом" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "Обновить" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "Обновление" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "Обновлено" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "Назад" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 -msgctxt "@title:tab" -msgid "Plugins" -msgstr "Плагины" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Материалы" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "Установлено" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 msgctxt "@label" -msgid "Will install upon restarting" -msgstr "Установка выполнится при перезагрузке" +msgid "Nozzle size" +msgstr "Диаметр сопла" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "Для выполнения обновления необходимо войти" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Downgrade" -msgstr "Переход на более раннюю версию" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "Удалить" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /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 "Community Contributions" -msgstr "Вклад в развитие сообщества" +msgid "mm" +msgstr "мм" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 msgctxt "@label" -msgid "Community Plugins" -msgstr "Плагины сообщества" +msgid "Compatible material diameter" +msgstr "Диаметр совместимого материала" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 msgctxt "@label" -msgid "Generic Materials" -msgstr "Универсальные материалы" +msgid "Nozzle offset X" +msgstr "Смещение сопла по оси X" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "Выборка пакетов..." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 msgctxt "@label" -msgid "Website" -msgstr "Веб-сайт" +msgid "Nozzle offset Y" +msgstr "Смещение сопла по оси Y" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 msgctxt "@label" -msgid "Email" -msgstr "Электронная почта" +msgid "Cooling Fan Number" +msgstr "Номер охлаждающего вентилятора" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -msgctxt "@description" -msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -msgstr "Войдите, чтобы получить проверенные встраиваемые модули и материалы для Ultimaker Cura Enterprise" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "Стартовый G-код экструдера" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 +#: /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 "Version" -msgstr "Версия" +msgid "X (Width)" +msgstr "X (Ширина)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 msgctxt "@label" -msgid "Last updated" -msgstr "Последнее обновление" +msgid "Y (Depth)" +msgstr "Y (Глубина)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 msgctxt "@label" -msgid "Brand" -msgstr "Брэнд" +msgid "Z (Height)" +msgstr "Z (Высота)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 msgctxt "@label" -msgid "Downloads" -msgstr "Загрузки" +msgid "Build plate shape" +msgstr "Форма стола" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "Установленные встраиваемые модули" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "Встраиваемые модули не установлены." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "Установленные материалы" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 -msgctxt "@info" -msgid "No material has been installed." -msgstr "Материалы не установлены." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "Связанные встраиваемые модули" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "Связанные материалы" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -msgctxt "@info" -msgid "Could not connect to the Cura Package database. Please check your connection." -msgstr "Не удалось подключиться к базе данных пакета Cura. Проверьте свое подключение." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "Для установки пакета необходимо принять лицензию" +msgid "Origin at center" +msgstr "Начало координат в центре" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 msgctxt "@button" msgid "Dismiss" msgstr "Отклонить" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 msgctxt "@label" msgid "The following packages will be added:" msgstr "Будут добавлены следующие пакеты:" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "Подтвердить удаление" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "Установить недостающие материалы" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -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 "Вы удаляете материалы и/или профили, которые все еще используются. Подтверждение приведет к сбросу указанных ниже материалов/профилей к их настройкам по умолчанию." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "Лицензионное соглашение плагина" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "Профили" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "Принять" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "Подтвердить" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 +msgctxt "@header" +msgid "Manage packages" +msgstr "Управление пакетами" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Цвет материала" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "Управление пакетами" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Тип линии" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Скорость" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Толщина слоя" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Ширина линии" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Поток" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Режим совместимости" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "Перемещения" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "Помощники" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "Ограждение" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "Заполнение" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "Запуск" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Показать только верхние слои" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "Показать 5 детализированных слоёв сверху" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Дно / крышка" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "Внутренняя стенка" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "мин" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "макс" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Управление принтером" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -msgctxt "@label" -msgid "Glass" -msgstr "Стекло" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "Для удаленного управления очередью необходимо обновить программное обеспечение принтера." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" msgid "Loading..." msgstr "Загрузка..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Недоступен" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "Плагины" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Недостижимо" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "Материалы" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "Простой" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193 +msgctxt "@info" +msgid "Search in the browser" +msgstr "Поиск в браузере" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Preparing..." -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 +#: /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 "Untitled" -msgstr "Без имени" +msgid "You need to accept the license to install the package" +msgstr "Для установки пакета необходимо принять лицензию" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "Подробности" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Enable" +msgstr "Включить" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Недоступный принтер" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Disable" +msgstr "Выключить" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "Первое доступное" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 +msgctxt "@button" +msgid "Downgrading..." +msgstr "Переход на более раннюю версию..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "Запланировано" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 +msgctxt "@button" +msgid "Downgrade" +msgstr "Переход на более раннюю версию" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Управление через браузер" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 +msgctxt "@button" +msgid "Installing..." +msgstr "Установка..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -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/Marketplace/resources/qml/PackageCardHeader.qml:250 +msgctxt "@button" +msgid "Install" +msgstr "Установить" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "Задания печати" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "Общее время печати" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "Ожидание" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Печать через сеть" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 -msgctxt "@action:button" -msgid "Print" -msgstr "Печать" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 -msgctxt "@label" -msgid "Printer selection" -msgstr "Выбор принтера" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Изменения конфигурации" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "Переопределить" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "Принтер %1 назначен, однако в задании указана неизвестная конфигурация материала." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Изменить материал %1 с %2 на %3." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "Загрузите %3 как материал %1 (переопределение этого действия невозможно)." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Изменить экструдер %1 с %2 на %3." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "Заменить рабочий стол на %1 (переопределение этого действия невозможно)." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "При переопределении к имеющейся конфигурации принтера будут применены указанные настройки. Это может привести к ошибке печати." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "Алюминий" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Finished" -msgstr "Завершено" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Прерывается..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Прервано" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Failed" -msgstr "Сбой" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Приостановка..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Paused" -msgstr "Приостановлено" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Возобновляется..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 -msgctxt "@label:status" -msgid "Action required" -msgstr "Необходимое действие" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Завершение %1 в %2" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Подключение к сетевому принтеру" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Выберите свой принтер из приведенного ниже списка:" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "Правка" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 -msgctxt "@action:button" -msgid "Remove" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254 +msgctxt "@button" +msgid "Uninstall" msgstr "Удалить" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "Если ваш принтер отсутствует в списке, обратитесь к руководству по решению проблем с сетевой печатью" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "Сведения о пакете" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "Тип" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "Назад" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "Версия прошивки" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "Описание" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "Адрес" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:110 +msgctxt "@header" +msgid "Compatible printers" +msgstr "Совместимые принтеры" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "Данный принтер не настроен для управления группой принтеров." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:134 +msgctxt "@info" +msgid "No compatibility information" +msgstr "Нет информации о совместимости" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "Данный принтер управляет группой из %1 принтера (-ов)." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:152 +msgctxt "@header" +msgid "Compatible support materials" +msgstr "Совместимые вспомогательные материалы" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "Принтер по этому адресу ещё не отвечал." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:176 +msgctxt "@info No materials" +msgid "None" +msgstr "Нет" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "Подключить" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:193 +msgctxt "@header" +msgid "Compatible with Material Station" +msgstr "Совместимо с Material Station" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Недействительный IP-адрес" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +#: /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 "Please enter a valid IP address." -msgstr "Введите действительный IP-адрес." +msgid "Streamline your workflow and customize your Ultimaker Cura experience with plugins contributed by our amazing community of users." +msgstr "Оптимизируйте свои рабочие процессы и настройте Ultimaker Cura с помощью встраиваемых модулей, разработанных экспертами нашего замечательного сообщества." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Адрес принтера" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:21 +msgctxt "@info" +msgid "Ultimaker Verified Plug-in" +msgstr "Проверенный плагин Ultimaker" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "Введите IP-адрес принтера в сети." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:22 +msgctxt "@info" +msgid "Ultimaker Certified Material" +msgstr "Сертифицированный материал Ultimaker" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "Переместить в начало" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23 +msgctxt "@info" +msgid "Ultimaker Verified Package" +msgstr "Проверенный пакет Ultimaker" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Удалить" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "Продолжить" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Приостановка..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Возобновляется..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "Пауза" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "Прерывается..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Прервать" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Переместить задание печати в начало очереди" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "Вы уверены, что хотите удалить %1?" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Удалить задание печати" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "Вы уверены, что хотите прервать %1?" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Прервать печать" - -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" msgid "" "Please make sure your printer has a connection:\n" @@ -3195,2143 +2784,683 @@ msgstr "" "- Убедитесь, что принтер подключен к сети.\n" "- Убедитесь, что вы вошли в систему (это необходимо для поиска принтеров, подключенных к облаку)." -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:113 msgctxt "@info" msgid "Please connect your printer to the network." msgstr "Подключите принтер к сети." -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:147 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "Просмотр руководств пользователей онлайн" -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /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/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 -msgctxt "@info:tooltip" -msgid "Some things could be problematic in this print. Click to see tips for adjustment." -msgstr "С этой печатью могут быть связаны некоторые проблемы. Щелкните для просмотра советов по регулировке." - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "Трехмерный вид" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "Вид спереди" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "Вид сверху" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "Вид слева" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "Вид справа" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 msgctxt "@label" -msgid "Object list" -msgstr "Список объектов" +msgid "Mesh Type" +msgstr "Тип объекта" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 +#: /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 "Marketplace" -msgstr "Магазин" +msgid "Select settings" +msgstr "Выберите параметры" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "Файл" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "Выберите параметр для изменения этой модели" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" +#: /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 +msgctxt "@action" +msgid "Add a script" +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 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "Выравнивание стола" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "Начало выравнивания стола" + +#: /home/trin/Gedeeld/Projects/Cura/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" + +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -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/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "&Параметры" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90 +msgctxt "@action:button" +msgid "Refresh" +msgstr "Обновить" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "Расширения" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "Настройки" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "Справка" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 -msgctxt "@title:window" -msgid "New project" -msgstr "Новый проект" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 -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/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 -msgctxt "@label:PrintjobStatus" -msgid "Slicing..." -msgstr "Нарезка на слои..." - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 -msgctxt "@label:PrintjobStatus" -msgid "Unable to slice" -msgstr "Невозможно нарезать" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Processing" -msgstr "Обработка" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Slice" -msgstr "Нарезка на слои" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161 msgctxt "@label" -msgid "Start the slicing process" -msgstr "Запустить нарезку на слои" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "Если ваш принтер отсутствует в списке, обратитесь к руководству по решению проблем с сетевой печатью" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 -msgctxt "@button" -msgid "Cancel" -msgstr "Отмена" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: /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 "Time estimation" -msgstr "Оценка времени" +msgid "Type" +msgstr "Тип" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +#: /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 "Material estimation" -msgstr "Оценка материала" +msgid "Firmware version" +msgstr "Версия прошивки" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1 м" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1 г" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: /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 "No time estimation available" -msgstr "Оценка времени недоступна" +msgid "Address" +msgstr "Адрес" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232 msgctxt "@label" -msgid "No cost estimation available" -msgstr "Оценка расходов недоступна" +msgid "This printer is not set up to host a group of printers." +msgstr "Данный принтер не настроен для управления группой принтеров." -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "Предварительный просмотр" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236 msgctxt "@label" -msgid "Add a printer" -msgstr "Добавить принтер" +msgid "This printer is the host for a group of %1 printers." +msgstr "Данный принтер управляет группой из %1 принтера (-ов)." -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245 msgctxt "@label" -msgid "Add a networked printer" -msgstr "Добавить сетевой принтер" +msgid "The printer at this address has not yet responded." +msgstr "Принтер по этому адресу ещё не отвечал." -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Добавить принтер, не подключенный к сети" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 -msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "Добавить облачный принтер" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 -msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "Ожидается ответ от облака" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 -msgctxt "@label" -msgid "No printers found in your account?" -msgstr "В учетной записи нет принтеров?" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 -msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" -msgstr "Следующие принтеры в вашей учетной записи добавлены в Cura:" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "Добавить принтер вручную" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 -msgctxt "@label" -msgid "Add printer by IP address" -msgstr "Добавить принтер по IP-адресу" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "Введите IP-адрес своего принтера." - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "Добавить" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 -msgctxt "@label" -msgid "Could not connect to device." -msgstr "Не удалось подключиться к устройству." - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 -msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Не удается подключиться к принтеру Ultimaker?" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 -msgctxt "@label" -msgid "The printer at this address has not responded yet." -msgstr "От принтера с этим адресом еще не поступал ответ." - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 -msgctxt "@button" -msgid "Back" -msgstr "Назад" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +msgctxt "@action:button" msgid "Connect" msgstr "Подключить" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "Пользовательское соглашение" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Недействительный IP-адрес" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "Отклонить и закрыть" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Приветствуем в Ultimaker Cura" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +#: /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 follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "" -"Выполните указанные ниже действия для настройки\n" -"Ultimaker Cura. Это займет немного времени." +msgid "Please enter a valid IP address." +msgstr "Введите действительный IP-адрес." -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "Приступить" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Адрес принтера" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +#: /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 +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 msgctxt "@label" msgid "Sign in to the Ultimaker platform" msgstr "Войдите на платформу Ultimaker" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "Добавляйте настройки материалов и плагины из Marketplace" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "Выполняйте резервное копирование и синхронизацию своих настроек материалов и плагинов" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "Делитесь идеями и получайте помощь от 48 000 пользователей в сообществе Ultimaker" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 -msgctxt "@button" -msgid "Skip" -msgstr "Пропустить" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Создайте бесплатную учетную запись Ultimaker" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 -msgctxt "@label" -msgid "Manufacturer" -msgstr "Производитель" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 -msgctxt "@label" -msgid "Profile author" -msgstr "Автор профиля" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 -msgctxt "@label" -msgid "Printer name" -msgstr "Имя принтера" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 -msgctxt "@text" -msgid "Please name your printer" -msgstr "Присвойте имя принтеру" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 -msgctxt "@label" -msgid "There is no printer found over your network." -msgstr "В вашей сети не найден принтер." - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "Обновить" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "Добавить принтер по IP-адресу" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "Добавить облачный принтер" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "Поиск и устранение неисправностей" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "Помогите нам улучшить Ultimaker Cura" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Ultimaker Cura собирает анонимные данные для повышения качества печати и улучшения взаимодействия с пользователем, включая перечисленные ниже:" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "Типы принтера" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "Использование материала" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "Количество слоев" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "Параметры печати" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Данные, собранные Ultimaker Cura, не содержат каких-либо персональных данных." - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "Дополнительная информация" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 -msgctxt "@label" -msgid "What's New" -msgstr "Что нового" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "Пусто" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "Примечания к выпуску" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 -msgctxt "@title:window The argument is the application name." -msgid "About %1" -msgstr "О программе %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 -msgctxt "@label" -msgid "version: %1" -msgstr "версия: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 -msgctxt "@label" -msgid "End-to-end solution for fused filament 3D printing." -msgstr "Полное решение для 3D печати методом наплавления материала." - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 -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 "" -"Cura разработана компанией Ultimaker B.V. совместно с сообществом.\n" -"Cura использует следующие проекты с открытым исходным кодом:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 -msgctxt "@label" -msgid "Graphical user interface" -msgstr "Графический интерфейс пользователя" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" -msgid "Application framework" -msgstr "Фреймворк приложения" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" -msgid "G-code generator" -msgstr "Генератор G-кода" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" -msgid "Interprocess communication library" -msgstr "Библиотека межпроцессного взаимодействия" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" -msgid "Programming language" -msgstr "Язык программирования" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" -msgid "GUI framework" -msgstr "Фреймворк GUI" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" -msgid "GUI framework bindings" -msgstr "Фреймворк GUI, интерфейс" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" -msgid "C/C++ Binding library" -msgstr "C/C++ библиотека интерфейса" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 -msgctxt "@label" -msgid "Data interchange format" -msgstr "Формат обмена данными" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 -msgctxt "@label" -msgid "Support library for scientific computing" -msgstr "Вспомогательная библиотека для научных вычислений" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" -msgid "Support library for faster math" -msgstr "Вспомогательная библиотека для быстрых расчётов" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" -msgid "Support library for handling STL files" -msgstr "Вспомогательная библиотека для работы с STL файлами" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" -msgid "Support library for handling planar objects" -msgstr "Вспомогательная библиотека для работы с плоскими объектами" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" -msgid "Support library for handling triangular meshes" -msgstr "Вспомогательная библиотека для работы с треугольными сетками" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" -msgid "Support library for handling 3MF files" -msgstr "Вспомогательная библиотека для работы с 3MF файлами" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 -msgctxt "@label" -msgid "Support library for file metadata and streaming" -msgstr "Вспомогательная библиотека для метаданных файла и потоковой передачи" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 -msgctxt "@label" -msgid "Serial communication library" -msgstr "Библиотека последовательного интерфейса" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 -msgctxt "@label" -msgid "ZeroConf discovery library" -msgstr "Библиотека ZeroConf" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" -msgid "Polygon clipping library" -msgstr "Библиотека обрезки полигонов" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@Label" -msgid "Static type checker for Python" -msgstr "Средство проверки статического типа для Python" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@Label" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "Корневые сертификаты для проверки надежности SSL" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 -msgctxt "@Label" -msgid "Python Error tracking library" -msgstr "Библиотека отслеживания ошибок Python" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 -msgctxt "@label" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "Библиотека упаковки полигонов, разработанная Prusa Research" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -msgctxt "@label" -msgid "Python bindings for libnest2d" -msgstr "Интерфейс Python для libnest2d" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" -msgid "Support library for system keyring access" -msgstr "Вспомогательная библиотека для доступа к набору ключей системы" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" -msgid "Python extensions for Microsoft Windows" -msgstr "Расширения Python для Microsoft Windows" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" -msgid "Font" -msgstr "Шрифт" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" -msgid "SVG icons" -msgstr "Иконки SVG" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" -msgid "Linux cross-distribution application deployment" -msgstr "Развертывание приложений для различных дистрибутивов Linux" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Открыть файл(ы)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 -msgctxt "@action:button" -msgid "Import all as models" -msgstr "Импортировать всё как модели" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 -msgctxt "@title:window" -msgid "Save Project" -msgstr "Сохранить проект" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Экструдер %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 и материал" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 -msgctxt "@action:label" -msgid "Material" -msgstr "Материал" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "Больше не показывать сводку по проекту" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 -msgctxt "@action:button" -msgid "Save" -msgstr "Сохранить" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 -msgctxt "@title:window" -msgid "Discard or Keep changes" -msgstr "Сбросить или сохранить изменения" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 -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\"." - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 -msgctxt "@title:column" -msgid "Profile settings" -msgstr "Параметры профиля" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 -msgctxt "@title:column" -msgid "Current changes" -msgstr "Текущие изменения" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 -msgctxt "@option:discardOrKeep" -msgid "Always ask me this" -msgstr "Всегда спрашивать меня" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 -msgctxt "@option:discardOrKeep" -msgid "Discard and never ask again" -msgstr "Сбросить и никогда больше не спрашивать" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 -msgctxt "@option:discardOrKeep" -msgid "Keep and never ask again" -msgstr "Сохранить и никогда больше не спрашивать" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 -msgctxt "@action:button" -msgid "Discard changes" -msgstr "Отменить изменения" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 -msgctxt "@action:button" -msgid "Keep changes" -msgstr "Сохранить изменения" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 -msgctxt "@title:window" -msgid "Open project file" -msgstr "Открыть файл проекта" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "Запомнить мой выбор" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 -msgctxt "@action:button" -msgid "Open as project" -msgstr "Открыть как проект" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 -msgctxt "@action:button" -msgid "Import models" -msgstr "Импортировать модели" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 -msgctxt "@label" -msgid "Active print" -msgstr "Идёт печать" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 -msgctxt "@label" -msgid "Job Name" -msgstr "Имя задачи" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 -msgctxt "@label" -msgid "Printing Time" -msgstr "Время печати" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 -msgctxt "@label" -msgid "Estimated time left" -msgstr "Осталось примерно" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "В настоящий момент нет подключения к облаку. Проверьте подключение к Интернету." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Add printer" -msgstr "Добавить принтер" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 -msgctxt "@button" -msgid "Manage printers" -msgstr "Управление принтерами" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "Подключенные принтеры" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "Предварительно настроенные принтеры" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 -msgctxt "@label" -msgid "Print settings" -msgstr "Параметры печати" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -msgctxt "@label shown when we load a Gcode file" -msgid "Print setup disabled. G-code file can not be modified." -msgstr "Настройка печати отключена. Невозможно изменить файл с G-кодом." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 -msgctxt "@label" -msgid "Profile" -msgstr "Профиль" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 -msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "" -"Значения некоторых параметров отличаются от значений профиля.\n" -"\n" -"Нажмите для открытия менеджера профилей." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 -msgctxt "@label:header" -msgid "Custom profiles" -msgstr "Собственные профили" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "Сбросить текущие параметры" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "Рекомендован" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "Свое" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "Вкл" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "Выкл" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" -msgstr "Экспериментальное" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 -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. Вместо этого будет использоваться функция по умолчанию" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 -msgctxt "@label" -msgid "Profiles" -msgstr "Профили" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 -msgctxt "@tooltip" -msgid "You have modified some profile settings. If you want to change these go to custom mode." -msgstr "В некоторые настройки профиля были внесены изменения. Если их необходимо изменить, перейдите в пользовательский режим." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 -msgctxt "@label" -msgid "Support" -msgstr "Поддержки" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 -msgctxt "@label" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Генерация структур для поддержки нависающих частей модели. Без этих структур такие части будут складываться во время печати." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 -msgctxt "@label" -msgid "Gradual infill" -msgstr "Постепенное заполнение" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "Постепенное заполнение будет постепенно увеличивать объём заполнения по направлению вверх." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "Прилипание" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 -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/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "Сохранить проект..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "Подключенные к сети принтеры" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "Локальные принтеры" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "Материал" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "Избранные" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "Универсальные" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 -msgctxt "@label" -msgid "Print Selected Model With:" -msgid_plural "Print Selected Models With:" -msgstr[0] "Печать выбранной модели:" -msgstr[1] "Печать выбранных моделей:" -msgstr[2] "Печать выбранных моделей:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "Размножить выбранную модель" -msgstr[1] "Размножить выбранные модели" -msgstr[2] "Размножить выбранные модели" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "Количество копий" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "&Сохранить проект..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "&Экспорт..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "Экспорт выбранного..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "Конфигурации" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "Свое" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "Принтер" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "Включено" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "Материал" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "Использовать клей для лучшего прилипания с этой комбинацией материалов." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 -msgctxt "@tooltip" -msgid "The configuration of this extruder is not allowed, and prohibits slicing." -msgstr "Конфигурация этого экструдера не разрешается и запрещает нарезку на слои." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 -msgctxt "@tooltip" -msgid "There are no profiles matching the configuration of this extruder." -msgstr "Нет профилей, соответствующих конфигурации этого экструдера." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 -msgctxt "@label" -msgid "Select configuration" -msgstr "Выберите конфигурации" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 -msgctxt "@label" -msgid "Configurations" -msgstr "Конфигурации" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "Загрузка доступных конфигураций из принтера..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 -msgctxt "@label" -msgid "The configurations are not available because the printer is disconnected." -msgstr "Конфигурации недоступны, поскольку принтер отключен." - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "Магазин" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "Открыть файл(ы)..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "Принтер" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "Материал" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Установить как активный экструдер" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Включить экструдер" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Отключить экструдер" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "Открыть недавние" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "Видимые параметры" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "Свернуть все категории" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "Управление видимостью настроек..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "Положение камеры" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "Вид камеры" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "Перспективная" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "Ортографическая" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "Рабочий стол" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 -msgctxt "@label" -msgid "View type" -msgstr "Просмотр типа" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 -msgctxt "@label" -msgid "Is printed as support." -msgstr "Печатается как поддержка." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "Другие модели, имеющие перекрытия с этой моделью, изменены." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "Изменено заполнение перекрытия с этой моделью." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "Перекрытия с этой моделью не поддерживаются." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "Переопределяет %1 настройку." -msgstr[1] "Переопределяет %1 настройки." -msgstr[2] "Переопределяет %1 настроек." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Профили" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 -msgctxt "@action:button" -msgid "Activate" -msgstr "Активировать" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "Создать" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "Дублировать" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 -msgctxt "@action:button" -msgid "Rename" -msgstr "Переименовать" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -msgctxt "@action:button" -msgid "Import" -msgstr "Импорт" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -msgctxt "@action:button" -msgid "Export" -msgstr "Экспорт" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Создать профиль" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "Укажите имя для данного профиля." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Скопировать профиль" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Подтвердите удаление" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "Вы уверены, что желаете удалить %1? Это нельзя будет отменить!" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Переименовать профиль" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Импорт профиля" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Экспорт профиля" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "Принтер: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "Обновить профиль текущими параметрами" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "Ваши текущие параметры совпадают с выбранным профилем." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Общие параметры" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 -msgctxt "@title:tab" -msgid "General" -msgstr "Общее" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 -msgctxt "@label" -msgid "Interface" -msgstr "Интерфейс" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 -msgctxt "@label" -msgid "Currency:" -msgstr "Валюта:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 -msgctxt "@label" -msgid "Theme:" -msgstr "Тема:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 -msgctxt "@label" -msgid "You will need to restart the application for these changes to have effect." -msgstr "Для применения данных изменений вам потребуется перезапустить приложение." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Нарезать автоматически при изменении настроек." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Нарезать автоматически" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "Поведение окна" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 -msgctxt "@info:tooltip" -msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." -msgstr "Подсвечивать красным области модели, требующие поддержек. Без поддержек эти области не будут напечатаны правильно." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Отобразить нависания" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "Показывать ошибки модели" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 -msgctxt "@info:tooltip" -msgid "Moves the camera so the model is in the center of the view when a model is selected" -msgstr "Перемещать камеру так, чтобы выбранная модель помещалась в центр экрана" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Центрировать камеру на выбранном объекте" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "Следует ли инвертировать стандартный способ увеличения в Cura?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Инвертировать направление увеличения камеры." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "Увеличивать по мере движения мышкой?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -msgctxt "@info:tooltip" -msgid "Zooming towards the mouse is not supported in the orthographic perspective." -msgstr "В ортогональной проекции изменение масштаба мышью не поддерживается." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "Увеличивать по движению мышки" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved so that they no longer intersect?" -msgstr "Следует ли размещать модели на столе так, чтобы они больше не пересекались?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "Удостовериться, что модели размещены рядом" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved down to touch the build plate?" -msgstr "Следует ли опустить модели на стол?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "Автоматически опускать модели на стол" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "Показывать предупреждающее сообщение в средстве считывания G-кода." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "Предупреждающее сообщение в средстве считывания G-кода" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "Должен ли слой быть переведён в режим совместимости?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "Просматривать слои в режиме совместимости (требуется перезапуск)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "Открыть Cura на том месте, где вы остановились в прошлый раз?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "Восстановить положение окна при запуске" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "Рендеринг камеры какого типа следует использовать?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "Рендеринг камеры:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 -msgid "Perspective" -msgstr "Перспективная" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 -msgid "Orthographic" -msgstr "Ортографическая" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Открытие и сохранение файлов" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 -msgctxt "@info:tooltip" -msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "Открывать файлы с компьютера и из внешних приложений в одном экземпляре Cura?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Использовать один экземпляр Cura" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 -msgctxt "@info:tooltip" -msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" -msgstr "Следует ли очищать печатную пластину перед загрузкой новой модели в единственный экземпляр Cura?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 -msgctxt "@option:check" -msgid "Clear buildplate before loading model into the single instance" -msgstr "Очистите печатную пластину перед загрузкой модели в единственный экземпляр" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 -msgctxt "@info:tooltip" -msgid "Should models be scaled to the build volume if they are too large?" -msgstr "Масштабировать ли модели для размещения внутри печатаемого объёма, если они не влезают в него?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Масштабировать большие модели" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Масштабировать очень маленькие модели" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "Выбрать модели после их загрузки?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "Выбрать модели при загрузке" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 -msgctxt "@info:tooltip" -msgid "Should a prefix based on the printer name be added to the print job name automatically?" -msgstr "Надо ли автоматически добавлять префикс, основанный на имени принтера, к названию задачи на печать?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "Добавить префикс принтера к имени задачи" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "Показывать сводку при сохранении файла проекта?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "Показывать сводку при сохранении проекта" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "Стандартное поведение при открытии файла проекта" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "Стандартное поведение при открытии файла проекта: " - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "Всегда спрашивать меня" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Всегда открывать как проект" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Всегда импортировать модели" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 -msgctxt "@window:text" -msgid "Default behavior for changed setting values when switching to a different profile: " -msgstr "Поведение по умолчанию для измененных значений настройки при переключении на другой профиль: " - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "Всегда сбрасывать измененные настройки" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "Всегда передавать измененные настройки новому профилю" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 -msgctxt "@label" -msgid "Privacy" -msgstr "Приватность" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 -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-адреса и никакая другая персональная информация не будет отправлена или сохранена." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "Отправлять (анонимно) информацию о печати" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 -msgctxt "@action:button" -msgid "More information" -msgstr "Дополнительная информация" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 -msgctxt "@label" -msgid "Updates" -msgstr "Обновления" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 -msgctxt "@info:tooltip" -msgid "Should Cura check for updates when the program is started?" -msgstr "Должна ли Cura проверять обновления программы при старте?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Проверять обновления при старте" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 -msgctxt "@info:tooltip" -msgid "When checking for updates, only check for stable releases." -msgstr "При проверке обновлений проверяйте только стабильные версии." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 -msgctxt "@option:radio" -msgid "Stable releases only" -msgstr "Только стабильные версии" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 -msgctxt "@info:tooltip" -msgid "When checking for updates, check for both stable and for beta releases." -msgstr "При проверке обновлений проверяйте как стабильные, так и бета-версии." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 -msgctxt "@option:radio" -msgid "Stable and Beta releases" -msgstr "Стабильные и бета-версии" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 -msgctxt "@option:check" -msgid "Get notifications for plugin updates" -msgstr "Получать уведомления об обновлениях плагинов" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "Информация" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "Подтвердить изменение диаметра" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "Отображаемое имя" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "Тип материала" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "Цвет" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "Свойства" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "Плотность" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "Диаметр" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "Стоимость материала" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "Вес материала" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "Длина материала" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Стоимость метра" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -msgctxt "@label" -msgid "This material is linked to %1 and shares some of its properties." -msgstr "Данный материал привязан к %1 и имеет ряд его свойств." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "Отвязать материал" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "Описание" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Информация об адгезии" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "Создать" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Дублировать" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "Синхронизация с принтерами" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "Принтер" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Импортировать материал" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "Не могу импортировать материал %1: %2" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Успешно импортированный материал %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Экспортировать материал" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "Не могу экспортировать материал %1: %2" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Материал успешно экспортирован в %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 -msgctxt "@title:window" -msgid "Sync materials with printers" -msgstr "Синхронизировать материалы с принтерами" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 -msgctxt "@title:header" -msgid "Sync materials with printers" -msgstr "Синхронизировать материалы с принтерами" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 -msgctxt "@text" -msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." -msgstr "Выполнив несколько простых действий, вы сможете синхронизировать все профили материалов со своими принтерами." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 -msgctxt "@button" -msgid "Start" -msgstr "Пуск" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 -msgctxt "@button" -msgid "Why do I need to sync material profiles?" -msgstr "Зачем нужна синхронизация профилей материалов?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 -msgctxt "@title:header" -msgid "Sign in" -msgstr "Войти" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 -msgctxt "@button" -msgid "Sync materials with USB" -msgstr "Синхронизация материалов с помощью USB" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 -msgctxt "@title:header" -msgid "The following printers will receive the new material profiles:" -msgstr "Следующие принтеры получат новые профили материалов:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 -msgctxt "@title:header" -msgid "Something went wrong when sending the materials to the printers." -msgstr "При отправке материалов на принтеры что-то пошло не так." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 -msgctxt "@title:header" -msgid "Material profiles successfully synced with the following printers:" -msgstr "Профили материалов успешно синхронизированы со следующими принтерами:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 -msgctxt "@button" -msgid "Troubleshooting" -msgstr "Поиск и устранение неисправностей" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 -msgctxt "@text Asking the user whether printers are missing in a list." -msgid "Printers missing?" -msgstr "Отсутствуют принтеры?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 -msgctxt "@text" -msgid "Make sure all your printers are turned ON and connected to Digital Factory." -msgstr "Убедитесь, что все ваши принтеры включены и подключены к Digital Factory." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 -msgctxt "@button" -msgid "Refresh List" -msgstr "Обновить список" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 -msgctxt "@button" -msgid "Try again" -msgstr "Повторить попытку" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Done" -msgstr "Готово" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 -msgctxt "@button" -msgid "Sync" -msgstr "Синхронизация" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 -msgctxt "@button" -msgid "Syncing" -msgstr "Синхронизация" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 -msgctxt "@title:header" -msgid "No printers found" -msgstr "Принтеры не обнаружены" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 -msgctxt "@button" -msgid "Learn how to connect your printer to Digital Factory" -msgstr "Узнайте, как подключить принтер к Digital Factory" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 -msgctxt "@button" -msgid "Refresh" -msgstr "Обновить" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 -msgctxt "@title:header" -msgid "Sync material profiles via USB" -msgstr "Синхронизация профилей материалов с помощью USB" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 -msgctxt "@text" -msgid "Click the export material archive button." -msgstr "Нажмите кнопку экспорта архива материалов." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 -msgctxt "@text" -msgid "Save the .umm file on a USB stick." -msgstr "Сохраните UMM-файл на USB-накопителе." - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 -msgctxt "@button" -msgid "How to load new material profiles to my printer" -msgstr "Загрузка новых профилей материалов в принтер" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Export material archive" -msgstr "Экспорт архива материалов" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "Экспорт всех материалов" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Видимость параметров" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Выбрать все" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 -msgctxt "@title:tab" -msgid "Printers" -msgstr "Принтеры" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Вычислено" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "Параметр" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "Профиль" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "Текущий" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "Единица" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "Не подключен к принтеру" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "Принтер не принимает команды" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "В режиме обслуживания. Пожалуйста, проверьте принтер" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "Потеряно соединение с принтером" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "Печать..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "Приостановлен" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "Подготовка..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Пожалуйста, удалите напечатанное" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "Прервать печать" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "Вы уверены, что желаете прервать печать?" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 -msgctxt "@label:button" -msgid "My printers" -msgstr "Мои принтеры" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 -msgctxt "@tooltip:button" -msgid "Monitor printers in Ultimaker Digital Factory." -msgstr "Следите за своими принтерами в Ultimaker Digital Factory." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 -msgctxt "@tooltip:button" -msgid "Create print projects in Digital Library." -msgstr "Создавайте проекты печати в электронной библиотеке." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 -msgctxt "@label:button" -msgid "Print jobs" -msgstr "Задания печати" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 -msgctxt "@tooltip:button" -msgid "Monitor print jobs and reprint from your print history." -msgstr "Отслеживайте задания печати и запускайте их повторно из истории печати." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 -msgctxt "@tooltip:button" -msgid "Extend Ultimaker Cura with plugins and material profiles." -msgstr "Расширяйте возможности Ultimaker Cura за счет плагинов и профилей материалов." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 -msgctxt "@tooltip:button" -msgid "Become a 3D printing expert with Ultimaker e-learning." -msgstr "Пройдите электронное обучение Ultimaker и станьте экспертом в области 3D-печати." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 -msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "Поддержка Ultimaker" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 -msgctxt "@tooltip:button" -msgid "Learn how to get started with Ultimaker Cura." -msgstr "Узнайте, как начать работу с Ultimaker Cura." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 -msgctxt "@label:button" -msgid "Ask a question" -msgstr "Задать вопрос" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 -msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "Посоветуйтесь со специалистами в сообществе Ultimaker." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 -msgctxt "@label:button" -msgid "Report a bug" -msgstr "Сообщить об ошибке" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 -msgctxt "@tooltip:button" -msgid "Let developers know that something is going wrong." -msgstr "Сообщите разработчикам о неполадках." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 -msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "Посетите веб-сайт Ultimaker." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "Управление принтером" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "Положение толчковой подачи" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Расстояние толчковой подачи" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "Отправить G-код" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "Экструдер" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "Текущая температура данного сопла." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "Температура предварительного нагрева сопла." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Отмена" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Преднагрев" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Цвет материала в данном экструдере." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Материал в данном экструдере." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "Сопло, вставленное в данный экструдер." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "Принтер не подключен." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "Рабочий стол" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "Текущая температура горячего стола." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "Температура преднагрева горячего стола." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -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/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "Войти" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 msgctxt "@text" msgid "" "- Add material profiles and plug-ins from the Marketplace\n" @@ -5342,374 +3471,2294 @@ msgstr "" " - Выполняйте резервное копирование и синхронизацию своих настроек материалов и плагинов \n" " - Делитесь идеями и получайте помощь от 48 000 пользователей в сообществе Ultimaker" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" msgid "Create a free Ultimaker account" msgstr "Создайте бесплатную учетную запись Ultimaker" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "Последнее обновление: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Учетная запись Ultimaker" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 -msgctxt "@button" -msgid "Sign Out" -msgstr "Выйти" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "Проверка..." -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "Учетная запись синхронизирована" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "Что-то пошло не так..." -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "Установить ожидающие обновления" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "Проверить наличие обновлений учетной записи" -#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "Без имени" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "Последнее обновление: %1" -#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "Учетная запись Ultimaker" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "Выйти" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" -msgid "No items to select from" -msgstr "Нет элементов для выбора" +msgid "No time estimation available" +msgstr "Оценка времени недоступна" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Preview" +msgstr "Предварительный просмотр" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +msgctxt "@label" +msgid "Time estimation" +msgstr "Оценка времени" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107 +msgctxt "@label" +msgid "Material estimation" +msgstr "Оценка материала" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1 г" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +msgctxt "@label:PrintjobStatus" +msgid "Slicing..." +msgstr "Нарезка на слои..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Processing" +msgstr "Обработка" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +msgctxt "@button" +msgid "Slice" +msgstr "Нарезка на слои" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Cancel" +msgstr "Отмена" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "Показать онлайн-руководство по решению проблем" +msgid "Show Online Troubleshooting" +msgstr "Показать сетевое руководство по устранению неполадок" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "Полный экран" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "Выйти из полноэкранного режима" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "Отмена" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "Возврат" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "Выход" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "Трехмерный вид" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Вид спереди" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "Вид сверху" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "Вид снизу" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "Вид слева" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "Вид справа" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "Настроить Cura..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "Добавить принтер..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "Управление принтерами..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Управление материалами..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu" +#: /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." msgid "Add more materials from Marketplace" msgstr "Добавить больше материалов из Магазина" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 msgctxt "@action:inmenu menubar:profile" msgid "&Update profile with current settings/overrides" msgstr "Обновить профиль текущими параметрами" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "Сбросить текущие параметры" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." msgstr "Создать профиль из текущих параметров..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "Управление профилями..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Показать онлайн документацию" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "Отправить отчёт об ошибке" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "Что нового" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "О Cura..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "Удалить выбранное" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "Центрировать выбранное" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "Размножить выбранное" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Удалить модель" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "Поместить модель по центру" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "Сгруппировать модели" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Разгруппировать модели" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "Объединить модели" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "Дублировать модель..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "Выбрать все модели" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "Очистить стол" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "Перезагрузить все модели" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "Выровнять все модели по всем рабочим столам" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Выровнять все модели" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Выровнять выбранные" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Сбросить позиции всех моделей" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "Сбросить преобразования всех моделей" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "Открыть файл(ы)..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "Новый проект..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Показать конфигурационный каталог" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "Видимость параметров..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "&Магазин" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "Мои принтеры" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "Создавайте проекты печати в электронной библиотеке." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "Задания печати" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Extend Ultimaker Cura with plugins and material profiles." +msgstr "Расширяйте возможности Ultimaker Cura за счет плагинов и профилей материалов." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +msgctxt "@tooltip:button" +msgid "Become a 3D printing expert with Ultimaker e-learning." +msgstr "Пройдите электронное обучение Ultimaker и станьте экспертом в области 3D-печати." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "Поддержка Ultimaker" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +msgctxt "@tooltip:button" +msgid "Learn how to get started with Ultimaker Cura." +msgstr "Узнайте, как начать работу с Ultimaker Cura." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "Посоветуйтесь со специалистами в сообществе Ultimaker." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "Сообщите разработчикам о неполадках." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "Посетите веб-сайт Ultimaker." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 msgctxt "@label" -msgid "This setting is not used because all the settings that it influences are overridden." -msgstr "Этот параметр не используется, поскольку все параметры, на которые он влияет, переопределяются." +msgid "Hex" +msgstr "Шестигранный" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 -msgctxt "@label Header for list of settings." -msgid "Affects" -msgstr "Влияет на" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 -msgctxt "@label Header for list of settings." -msgid "Affected By" -msgstr "Зависит от" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 msgctxt "@label" -msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." -msgstr "Данная настройка всегда используется совместно всеми экструдерами. Изменение данного значения приведет к изменению значения для всех экструдеров." +msgid "This package will be installed after restarting." +msgstr "Этот пакет будет установлен после перезапуска." -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 -msgctxt "@label" -msgid "This setting is resolved from conflicting extruder-specific values:" -msgstr "Эта настройка получена из конфликтующих значений экструдера:" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:463 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +msgctxt "@title:tab" +msgid "General" +msgstr "Общее" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +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 +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 +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 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Профили" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +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 +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 +msgctxt "@title:window" +msgid "Open file(s)" +msgstr "Открыть файл(ы)" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +msgctxt "@window:title" +msgid "Install Package" +msgstr "Установить пакет" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Открыть файл(ы)" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +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 +msgctxt "@title:window" +msgid "Add Printer" +msgstr "Добавление принтера" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +msgctxt "@title:window" +msgid "What's New" +msgstr "Что нового" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" +msgid "version: %1" +msgstr "версия: %1" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +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 +msgctxt "@info:credit" msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." +"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura proudly uses the following open source projects:" msgstr "" -"Значение этого параметра отличается от значения в профиле.\n" -"\n" -"Щёлкните для восстановления значения из профиля." +"Cura разработана компанией Ultimaker B.V. совместно с сообществом.\n" +"Cura использует следующие проекты с открытым исходным кодом:" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"Обычно это значение вычисляется, но в настоящий момент было установлено явно.\n" -"\n" -"Щёлкните для восстановления вычисленного значения." +msgid "Graphical user interface" +msgstr "Графический интерфейс пользователя" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +msgctxt "@label" +msgid "Application framework" +msgstr "Фреймворк приложения" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label" +msgid "G-code generator" +msgstr "Генератор G-кода" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label" +msgid "Interprocess communication library" +msgstr "Библиотека межпроцессного взаимодействия" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label" +msgid "Python bindings for libnest2d" +msgstr "Интерфейс Python для libnest2d" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 +msgctxt "@label" +msgid "Polygon packing library, developed by Prusa Research" +msgstr "Библиотека упаковки полигонов, разработанная Prusa Research" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 +msgctxt "@label" +msgid "Support library for handling 3MF files" +msgstr "Вспомогательная библиотека для работы с 3MF файлами" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 +msgctxt "@label" +msgid "Support library for file metadata and streaming" +msgstr "Вспомогательная библиотека для метаданных файла и потоковой передачи" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 +msgctxt "@label" +msgid "Programming language" +msgstr "Язык программирования" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +msgctxt "@label" +msgid "GUI framework" +msgstr "Фреймворк GUI" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label" +msgid "GUI framework bindings" +msgstr "Фреймворк GUI, интерфейс" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label" +msgid "C/C++ Binding library" +msgstr "C/C++ библиотека интерфейса" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label" +msgid "Data interchange format" +msgstr "Формат обмена данными" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label" +msgid "Font" +msgstr "Шрифт" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +msgctxt "@label" +msgid "Polygon clipping library" +msgstr "Библиотека обрезки полигонов" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +msgctxt "@label" +msgid "JSON parser" +msgstr "Парсер JSON" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label" +msgid "Utility functions, including an image loader" +msgstr "Вспомогательные функции, включая загрузчик изображений" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label" +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" +msgid "Root Certificates for validating SSL trustworthiness" +msgstr "Корневые сертификаты для проверки надежности SSL" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +msgctxt "@label" +msgid "Compatibility between Python 2 and 3" +msgstr "Совместимость между Python 2 и 3" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label" +msgid "Support library for system keyring access" +msgstr "Вспомогательная библиотека для доступа к набору ключей системы" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +msgctxt "@label" +msgid "Support library for faster math" +msgstr "Вспомогательная библиотека для быстрых расчётов" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +msgctxt "@label" +msgid "Support library for handling STL files" +msgstr "Вспомогательная библиотека для работы с STL файлами" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:166 +msgctxt "@label" +msgid "Python bindings for Clipper" +msgstr "Привязки Python для Clipper" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label" +msgid "Serial communication library" +msgstr "Библиотека последовательного интерфейса" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label" +msgid "Support library for scientific computing" +msgstr "Вспомогательная библиотека для научных вычислений" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:169 +msgctxt "@Label" +msgid "Python Error tracking library" +msgstr "Библиотека отслеживания ошибок Python" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label" +msgid "Support library for handling triangular meshes" +msgstr "Вспомогательная библиотека для работы с треугольными сетками" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:171 +msgctxt "@label" +msgid "ZeroConf discovery library" +msgstr "Библиотека ZeroConf" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 +msgctxt "@label" +msgid "Universal build system configuration" +msgstr "Конфигурация универсальной системы сборки" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 +msgctxt "@label" +msgid "Dependency and package manager" +msgstr "Менеджер зависимостей и пакетов" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label" +msgid "Packaging Python-applications" +msgstr "Упаковка Python-приложений" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label" +msgid "Linux cross-distribution application deployment" +msgstr "Развертывание приложений для различных дистрибутивов Linux" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:178 +msgctxt "@label" +msgid "Generating Windows installers" +msgstr "Генерация установщиков для Windows" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "Запомнить мой выбор" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +msgctxt "@action:button" +msgid "Open as project" +msgstr "Открыть как проект" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +msgctxt "@action:button" +msgid "Import models" +msgstr "Импортировать модели" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 "" +"Вы изменили некоторые настройки профиля.\n" +"Сохранить измененные настройки после переключения профилей?\n" +"Изменения можно отменить и загрузить настройки по умолчанию из \"%1\"." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +msgctxt "@title:column" +msgid "Profile settings" +msgstr "Параметры профиля" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +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 +msgctxt "@option:discardOrKeep" +msgid "Always ask me this" +msgstr "Всегда спрашивать меня" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +msgctxt "@option:discardOrKeep" +msgid "Discard and never ask again" +msgstr "Сбросить и никогда больше не спрашивать" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:106 +msgctxt "@option:discardOrKeep" +msgid "Keep and never ask again" +msgstr "Сохранить и никогда больше не спрашивать" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:136 +msgctxt "@action:button" +msgid "Discard changes" +msgstr "Отменить изменения" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +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?" +msgstr "Мы нашли один или более проектных файлов среди выбранных вами. Вы можете открыть только один файл проекта. Мы предлагаем импортировать только модели их этих файлов. Желаете продолжить?" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:window" +msgid "Save Project" +msgstr "Сохранить проект" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:175 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Экструдер %1" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 и материал" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +msgctxt "@action:label" +msgid "Material" +msgstr "Материал" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +msgctxt "@action:label" +msgid "Don't show project summary on save again" +msgstr "Больше не показывать сводку по проекту" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:296 +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 +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 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "&Параметры" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87 +msgctxt "@title:window" +msgid "New project" +msgstr "Новый проект" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Marketplace" +msgstr "Магазин" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +msgctxt "@header" +msgid "Configurations" +msgstr "Конфигурации" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Marketplace" +msgstr "Магазин" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@label" +msgid "Select configuration" +msgstr "Выберите конфигурации" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 +msgctxt "@label" +msgid "Configurations" +msgstr "Конфигурации" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Enabled" +msgstr "Включено" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +msgctxt "@label" +msgid "Material" +msgstr "Материал" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "Использовать клей для лучшего прилипания с этой комбинацией материалов." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:29 +msgctxt "@label" +msgid "Print Selected Model With:" +msgid_plural "Print Selected Models With:" +msgstr[0] "Печать выбранной модели:" +msgstr[1] "Печать выбранных моделей:" +msgstr[2] "Печать выбранных моделей:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:92 +msgctxt "@title:window" +msgid "Multiply Selected Model" +msgid_plural "Multiply Selected Models" +msgstr[0] "Размножить выбранную модель" +msgstr[1] "Размножить выбранные модели" +msgstr[2] "Размножить выбранные модели" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:123 +msgctxt "@label" +msgid "Number of Copies" +msgstr "Количество копий" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "Расширения" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "&Сохранить проект..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "Экспорт выбранного..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "Материал" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "Универсальные" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "Настройки" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "Подключенные к сети принтеры" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "Открыть недавние" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "Видимые параметры" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "Управление видимостью настроек..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "Положение камеры" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "Перспективная" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59 +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "Ортографическая" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "Принтер не принимает команды" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:MonitorStatus" +msgid "Lost connection with the printer" +msgstr "Потеряно соединение с принтером" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:142 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "Печать..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "Приостановлен" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "Подготовка..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:150 +msgctxt "@label:MonitorStatus" +msgid "Please remove the print" +msgstr "Пожалуйста, удалите напечатанное" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:318 +msgctxt "@label" +msgid "Abort Print" +msgstr "Прервать печать" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Is printed as support." +msgstr "Печатается как поддержка." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "Изменено заполнение перекрытия с этой моделью." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label %1 is the number of settings it overrides." +msgid "Overrides %1 setting." +msgid_plural "Overrides %1 settings." +msgstr[0] "Переопределяет %1 настройку." +msgstr[1] "Переопределяет %1 настройки." +msgstr[2] "Переопределяет %1 настроек." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Defaults" +msgstr "Стандартные" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +msgctxt "@label" +msgid "Interface" +msgstr "Интерфейс" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +msgctxt "@heading" +msgid "-- incomplete --" +msgstr "-- неполный --" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +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." +msgid "Theme*:" +msgstr "Тема*:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +msgctxt "@info:tooltip" +msgid "Slice automatically when changing settings." +msgstr "Нарезать автоматически при изменении настроек." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:328 +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." +msgstr "*Для применения данных изменений вам потребуется перезапустить приложение." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "Поведение окна" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +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 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "Отобразить нависания" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +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 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "Показывать ошибки модели" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +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 +msgctxt "@action:button" +msgid "Center camera when item is selected" +msgstr "Центрировать камеру на выбранном объекте" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:411 +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 +msgctxt "@action:button" +msgid "Invert the direction of camera zoom." +msgstr "Инвертировать направление увеличения камеры." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +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 +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 +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "Увеличивать по движению мышки" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:463 +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 +msgctxt "@option:check" +msgid "Ensure models are kept apart" +msgstr "Удостовериться, что модели размещены рядом" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:477 +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 +msgctxt "@option:check" +msgid "Automatically drop models to the build plate" +msgstr "Автоматически опускать модели на стол" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:494 +msgctxt "@info:tooltip" +msgid "Show caution message in g-code reader." +msgstr "Показывать предупреждающее сообщение в средстве считывания G-кода." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:503 +msgctxt "@option:check" +msgid "Caution message in g-code reader" +msgstr "Предупреждающее сообщение в средстве считывания G-кода" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:511 +msgctxt "@info:tooltip" +msgid "Should layer be forced into compatibility mode?" +msgstr "Должен ли слой быть переведён в режим совместимости?" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:516 +msgctxt "@option:check" +msgid "Force layer view compatibility mode (restart required)" +msgstr "Просматривать слои в режиме совместимости (требуется перезапуск)" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:526 +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 +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "Восстановить положение окна при запуске" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:541 +msgctxt "@info:tooltip" +msgid "What type of camera rendering should be used?" +msgstr "Рендеринг камеры какого типа следует использовать?" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "Рендеринг камеры:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +msgid "Perspective" +msgstr "Перспективная" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +msgid "Orthographic" +msgstr "Ортографическая" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "Открытие и сохранение файлов" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +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 +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "Использовать один экземпляр Cura" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619 +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 +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 +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 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "Масштабировать большие модели" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +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 +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "Масштабировать очень маленькие модели" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:665 +msgctxt "@info:tooltip" +msgid "Should models be selected after they are loaded?" +msgstr "Выбрать модели после их загрузки?" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "Выбрать модели при загрузке" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:680 +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 +msgctxt "@option:check" +msgid "Add machine prefix to job name" +msgstr "Добавить префикс принтера к имени задачи" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:695 +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 +msgctxt "@option:check" +msgid "Show summary dialog when saving project" +msgstr "Показывать сводку при сохранении проекта" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:709 +msgctxt "@info:tooltip" +msgid "Default behavior when opening a project file" +msgstr "Стандартное поведение при открытии файла проекта" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:717 +msgctxt "@window:text" +msgid "Default behavior when opening a project file: " +msgstr "Стандартное поведение при открытии файла проекта: " + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:732 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "Всегда спрашивать меня" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +msgctxt "@option:openProject" +msgid "Always open as a project" +msgstr "Всегда открывать как проект" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "Всегда импортировать модели" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +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 +msgctxt "@label" +msgid "Profiles" +msgstr "Профили" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +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 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "Всегда сбрасывать измененные настройки" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:801 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "Всегда передавать измененные настройки новому профилю" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:835 +msgctxt "@label" +msgid "Privacy" +msgstr "Приватность" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +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-адреса и никакая другая персональная информация не будет отправлена или сохранена." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "Отправлять (анонимно) информацию о печати" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:876 +msgctxt "@label" +msgid "Updates" +msgstr "Обновления" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +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 +msgctxt "@option:check" +msgid "Check for updates on start" +msgstr "Проверять обновления при старте" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:904 +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 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "Только стабильные версии" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +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 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "Стабильные и бета-версии" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +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 +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "Получать уведомления об обновлениях плагинов" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Rename" +msgstr "Переименовать" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Import" +msgstr "Импорт" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Импортировать материал" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Экспортировать материал" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "Синхронизировать материалы с принтерами" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Why do I need to sync material profiles?" +msgstr "Зачем нужна синхронизация профилей материалов?" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 +msgctxt "@button" +msgid "Start" +msgstr "Пуск" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +msgctxt "@title:header" +msgid "Sign in" +msgstr "Войти" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +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 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "Синхронизация материалов с помощью USB" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +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 +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 +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 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "Поиск и устранение неисправностей" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +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 +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 +msgctxt "@button" +msgid "Refresh List" +msgstr "Обновить список" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +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 +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 +msgctxt "@button" +msgid "Sync" +msgstr "Синхронизация" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +msgctxt "@button" +msgid "Syncing" +msgstr "Синхронизация" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +msgctxt "@title:header" +msgid "No printers found" +msgstr "Принтеры не обнаружены" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +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 +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 +msgctxt "@button" +msgid "Refresh" +msgstr "Обновить" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +msgctxt "@title:header" +msgid "Sync material profiles via USB" +msgstr "Синхронизация профилей материалов с помощью USB" + +#: /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." +msgstr "Чтобы загрузить новые профили материалов в принтер, выполните следующие действия." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:663 +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "Нажмите кнопку экспорта архива материалов." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:664 +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 +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 +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 +msgctxt "@button" +msgid "Back" +msgstr "Назад" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +msgctxt "@button" +msgid "Export material archive" +msgstr "Экспорт архива материалов" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "Экспорт всех материалов" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Display Name" +msgstr "Отображаемое имя" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171 +msgctxt "@label" +msgid "Brand" +msgstr "Брэнд" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Color" +msgstr "Цвет" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Properties" +msgstr "Свойства" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:286 +msgctxt "@label" +msgid "Density" +msgstr "Плотность" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:319 +msgctxt "@label" +msgid "Diameter" +msgstr "Диаметр" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Filament weight" +msgstr "Вес материала" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Cost per Meter" +msgstr "Стоимость метра" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Unlink Material" +msgstr "Отвязать материал" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:485 +msgctxt "@label" +msgid "Description" +msgstr "Описание" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Print settings" +msgstr "Параметры печати" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:tooltip" +msgid "Create new profile from current settings/overrides" +msgstr "Создать новый профиль из текущих настроек/переопределений" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Update profile." +msgstr "Обновить профиль." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "Сбросить текущие параметры" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:label" +msgid "Your current settings match the selected profile." +msgstr "Ваши текущие параметры совпадают с выбранным профилем." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:175 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Общие параметры" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +msgctxt "@title:window" +msgid "Create Profile" +msgstr "Создать профиль" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Экспорт профиля" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:382 +msgctxt "@title:window" +msgid "Duplicate Profile" +msgstr "Скопировать профиль" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@item:tooltip %1 is list of setting names" +msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible." +msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible." +msgstr[0] "Этот параметр был скрыт значением %1. Измените это значение, чтобы параметр стал отображаться." +msgstr[1] "Эти параметры были скрыты значением %1. Измените это значение, чтобы параметр стал отображаться." +msgstr[2] "Эти параметры были скрыты значением %1. Измените это значение, чтобы параметр стал отображаться." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:13 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "Видимость параметров" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" -msgid "Search settings" -msgstr "Параметры поиска" +msgid "Check all" +msgstr "Выбрать все" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 -msgctxt "@action:menu" -msgid "Copy value to all extruders" -msgstr "Скопировать значение для всех экструдеров" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "Экструдер" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 -msgctxt "@action:menu" -msgid "Copy all changed values to all extruders" -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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 -msgctxt "@action:menu" -msgid "Hide this setting" -msgstr "Спрятать этот параметр" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "Текущая температура данного сопла." -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 -msgctxt "@action:menu" -msgid "Don't show this setting" -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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 -msgctxt "@action:menu" -msgid "Keep this setting visible" -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/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 +#: /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 +msgctxt "@label" +msgid "Active print" +msgstr "Идёт печать" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +msgctxt "@label" +msgid "Job Name" +msgstr "Имя задачи" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +msgctxt "@label" +msgid "Printing Time" +msgstr "Время печати" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:180 +msgctxt "@label" +msgid "Estimated time left" +msgstr "Осталось примерно" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 +msgctxt "@label" +msgid "Profile" +msgstr "Профиль" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 +msgctxt "@tooltip" +msgid "" +"Some setting/override values are different from the values stored in the profile.\n" +"\n" +"Click to open the profile manager." +msgstr "" +"Значения некоторых параметров отличаются от значений профиля.\n" +"\n" +"Нажмите для открытия менеджера профилей." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@label:Should be short" +msgid "On" +msgstr "Вкл" + +#: /home/trin/Gedeeld/Projects/Cura/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." +msgstr "активен собственный профиль, и вы переписали некоторые настройки." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +msgctxt "@info" +msgid "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." +msgstr "Некоторые настройки были изменены." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +msgctxt "@label" +msgid "Adhesion" +msgstr "Прилипание" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +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 +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" +msgstr "Разрешение" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +msgctxt "@label" +msgid "Support" +msgstr "Поддержки" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +msgctxt "@label" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "Генерация структур для поддержки нависающих частей модели. Без этих структур такие части будут складываться во время печати." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 "Нет профилей для выбранного материала/конфигурации %1. Пожалуйста, измените конфигурацию." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 +msgctxt "@button:label" +msgid "Learn more" +msgstr "Узнать больше" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +msgctxt "@title:column" +msgid "Setting" +msgstr "Параметр" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +msgctxt "@title:column" +msgid "Profile" +msgstr "Профиль" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +msgctxt "@title:column" +msgid "Current" +msgstr "Текущий" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:39 +msgctxt "@title:column Unit of measurement" +msgid "Unit" +msgstr "Единица" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/SearchBar.qml:17 +msgctxt "@placeholder" +msgid "Search" +msgstr "Поиск" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5720,140 +5769,360 @@ msgstr "" "\n" "Щёлкните, чтобы сделать эти параметры видимыми." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "Этот пакет будет установлен после перезапуска." +msgid "This setting is not used because all the settings that it influences are overridden." +msgstr "Этот параметр не используется, поскольку все параметры, на которые он влияет, переопределяются." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 -msgctxt "@title:tab" -msgid "Settings" -msgstr "Параметры" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +msgctxt "@label Header for list of settings." +msgid "Affects" +msgstr "Влияет на" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "Закрытие %1" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +msgctxt "@label Header for list of settings." +msgid "Affected By" +msgstr "Зависит от" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 -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/Settings/SettingItem.qml:190 +msgctxt "@label" +msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." +msgstr "Данная настройка всегда используется совместно всеми экструдерами. Изменение данного значения приведет к изменению значения для всех экструдеров." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 -msgctxt "@window:title" -msgid "Install Package" -msgstr "Установить пакет" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +msgctxt "@label" +msgid "This setting is resolved from conflicting extruder-specific values:" +msgstr "Эта настройка получена из конфликтующих значений экструдера:" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Открыть файл(ы)" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +msgctxt "@label" +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"Значение этого параметра отличается от значения в профиле.\n" +"\n" +"Щёлкните для восстановления значения из профиля." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 -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/Settings/SettingItem.qml:334 +msgctxt "@label" +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"Обычно это значение вычисляется, но в настоящий момент было установлено явно.\n" +"\n" +"Щёлкните для восстановления вычисленного значения." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 -msgctxt "@title:window" -msgid "Add Printer" -msgstr "Добавление принтера" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +msgctxt "@label:textbox" +msgid "Search settings" +msgstr "Параметры поиска" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 -msgctxt "@title:window" +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:menu" +msgid "Copy all changed values to all extruders" +msgstr "Копировать все измененные значения для всех экструдеров" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:menu" +msgid "Don't show this setting" +msgstr "Не показывать этот параметр" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:tooltip" +msgid "3D View" +msgstr "Трехмерный вид" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +msgctxt "@info:tooltip" +msgid "Front View" +msgstr "Вид спереди" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "Вид сверху" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "Вид слева" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "Вид справа" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "Просмотр типа" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "Ожидается ответ от облака" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Add printer manually" +msgstr "Добавить принтер вручную" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +msgctxt "@label" +msgid "Manufacturer" +msgstr "Производитель" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 +msgctxt "@label" +msgid "Profile author" +msgstr "Автор профиля" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 +msgctxt "@label" +msgid "Printer name" +msgstr "Имя принтера" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "В вашей сети не найден принтер." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 +msgctxt "@label" +msgid "Refresh" +msgstr "Обновить" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "Поиск и устранение неисправностей" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "Введите IP-адрес своего принтера." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 +msgctxt "@button" +msgid "Add" +msgstr "Добавить" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Can't connect to your Ultimaker printer?" +msgstr "Не удается подключиться к принтеру Ultimaker?" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Connect" +msgstr "Подключить" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +msgctxt "@label" +msgid "Release Notes" +msgstr "Примечания к выпуску" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "Выполняйте резервное копирование и синхронизацию своих настроек материалов и плагинов" + +#: /home/trin/Gedeeld/Projects/Cura/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" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +msgctxt "@button" +msgid "Skip" +msgstr "Пропустить" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +msgctxt "@text" +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 +msgctxt "@label" +msgid "Empty" +msgstr "Пусто" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +msgctxt "@label" +msgid "User Agreement" +msgstr "Пользовательское соглашение" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" msgid "What's New" msgstr "Что нового" -#: PerObjectSettingsTool/plugin.json +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:18 +msgctxt "@label" +msgid "No items to select from" +msgstr "Нет элементов для выбора" + +#: ModelChecker/plugin.json msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Предоставляет параметры для каждой модели." +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Проверка моделей и конфигурации печати для выявления возможных проблем печати; рекомендации." -#: PerObjectSettingsTool/plugin.json +#: ModelChecker/plugin.json msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Инструмент для настройки каждой модели" - -#: 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" - -#: X3DReader/plugin.json -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Предоставляет поддержку для чтения X3D файлов." - -#: X3DReader/plugin.json -msgctxt "name" -msgid "X3D Reader" -msgstr "Чтение X3D" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Резервное копирование и восстановление конфигурации." - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -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 "Параметры принтера действие" - -#: 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 "Средство стирания элемента поддержки" - -#: 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 "Плагин для работы с внешним носителем" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Обеспечение действий принтера для обновления прошивки." - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -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" +msgid "Model Checker" +msgstr "Средство проверки моделей" #: 3MFReader/plugin.json msgctxt "description" @@ -5865,65 +6134,15 @@ msgctxt "name" msgid "3MF Reader" msgstr "Чтение 3MF" -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Предоставляет поддержку для записи пакетов формата Ultimaker." +msgid "Provides support for writing 3MF files." +msgstr "Предоставляет возможность записи 3MF файлов." -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "name" -msgid "UFP Writer" -msgstr "Средство записи UFP" - -#: 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 "Контрольный журнал" - -#: 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-кода" - -#: PreviewStage/plugin.json -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Обеспечивает действия на этапе предварительного просмотра в Cura." - -#: PreviewStage/plugin.json -msgctxt "name" -msgid "Preview Stage" -msgstr "Этап предварительного просмотра" - -#: XRayView/plugin.json -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Предоставляет рентгеновский вид." - -#: XRayView/plugin.json -msgctxt "name" -msgid "X-Ray View" -msgstr "Просмотр в рентгене" - -#: 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" +msgid "3MF Writer" +msgstr "Запись 3MF" #: AMFReader/plugin.json msgctxt "description" @@ -5935,25 +6154,35 @@ msgctxt "name" msgid "AMF Reader" msgstr "Средство чтения AMF" -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Считывает G-код из сжатого архива." +msgid "Backup and restore your configuration." +msgstr "Резервное копирование и восстановление конфигурации." -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Средство считывания сжатого G-кода" +msgid "Cura Backups" +msgstr "Резервные копии Cura" -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/plugin.json msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Расширение, которое позволяет пользователю создавать скрипты для постобработки" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Предоставляет интерфейс к движку CuraEngine." -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "Пост обработка" +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" @@ -5965,65 +6194,15 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Запись профиля Cura" -#: USBPrinting/plugin.json +#: DigitalLibrary/plugin.json msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Принимает G-Code и отправляет его на принтер. Плагин также может обновлять прошивку." +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Подключается к цифровой библиотеке, позволяя Cura открывать файлы из цифровой библиотеки и сохранять файлы в нее." -#: USBPrinting/plugin.json +#: DigitalLibrary/plugin.json msgctxt "name" -msgid "USB printing" -msgstr "Печать через USB" - -#: PrepareStage/plugin.json -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Обеспечивает подготовительный этап в Cura." - -#: PrepareStage/plugin.json -msgctxt "name" -msgid "Prepare Stage" -msgstr "Подготовительный этап" - -#: 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" - -#: 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 "Чтение изображений" - -#: 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" - -#: 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-кода" +msgid "Ultimaker Digital Library" +msgstr "Цифровая библиотека Ultimaker" #: FirmwareUpdateChecker/plugin.json msgctxt "description" @@ -6035,45 +6214,55 @@ msgctxt "name" msgid "Firmware Update Checker" msgstr "Проверка обновлений" -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Отправляет анонимную информацию о нарезке моделей. Может быть отключено через настройки." +msgid "Provides a machine actions for updating firmware." +msgstr "Обеспечение действий принтера для обновления прошивки." -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Slice info" -msgstr "Информация о нарезке модели" +msgid "Firmware Updater" +msgstr "Средство обновления прошивки" -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/plugin.json msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Предоставляет возможности по чтению и записи профилей материалов в виде XML." +msgid "Reads g-code from a compressed archive." +msgstr "Считывает G-код из сжатого архива." -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "Профили материалов" +msgid "Compressed G-code Reader" +msgstr "Средство считывания сжатого G-кода" -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/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 открывать файлы из цифровой библиотеки и сохранять файлы в нее." +msgid "Writes g-code to a compressed archive." +msgstr "Записывает G-код в сжатый архив." -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/plugin.json msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Цифровая библиотека Ultimaker" +msgid "Compressed G-code Writer" +msgstr "Средство записи сжатого G-кода" -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "Поиск, управление и установка новых пакетов Cura." +msgid "Provides support for importing profiles from g-code files." +msgstr "Предоставляет поддержку для импортирования профилей из G-Code файлов." -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "Панель инструментов" +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" @@ -6085,245 +6274,155 @@ 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 Simulation view." -msgstr "Открытие вида моделирования." +msgid "Provides the preview of sliced layerdata." +msgstr "Обеспечивает предварительный просмотр нарезанных данных слоя." #: SimulationView/plugin.json msgctxt "name" msgid "Simulation View" msgstr "Вид моделирования" -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Обновляет конфигурации Cura 4.5 до Cura 4.6." +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Отправляет анонимную информацию о нарезке моделей. Может быть отключено через настройки." -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/plugin.json msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Обновление версии 4.5 до 4.6" +msgid "Slice info" +msgstr "Информация о нарезке модели" -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Обновляет настройки Cura 2.5 до Cura 2.6." +msgid "Provides a normal solid mesh view." +msgstr "Предоставляет просмотр твёрдого тела." -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/plugin.json msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Обновление версии 2.5 до 2.6" +msgid "Solid View" +msgstr "Обзор" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/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." +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Создание объекта стирания для блокировки печати элемента поддержки в определенных местах" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/plugin.json msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Обновление версии с 4.6.0 до 4.6.2" - -#: 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/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/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/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/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/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/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/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" - -#: 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/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/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/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/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/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/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/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/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/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" - -#: 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" +msgid "Support Eraser" +msgstr "Средство стирания элемента поддержки" #: TrimeshReader/plugin.json msgctxt "description" @@ -6345,45 +6444,646 @@ msgctxt "name" msgid "UFP Reader" msgstr "Средство считывания UFP" -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Предоставляет просмотр твёрдого тела." +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Предоставляет поддержку для записи пакетов формата Ultimaker." -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "name" -msgid "Solid View" -msgstr "Обзор" +msgid "UFP Writer" +msgstr "Средство записи UFP" -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Предоставляет возможность записи 3MF файлов." +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Предоставляет дополнительные возможности для принтеров Ultimaker (такие как мастер выравнивания стола, выбора обновления и так далее)" -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "name" -msgid "3MF Writer" -msgstr "Запись 3MF" +msgid "Ultimaker machine actions" +msgstr "Действия с принтерами Ultimaker" -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Обеспечивает этап мониторинга в Cura." +msgid "Manages network connections to Ultimaker networked printers." +msgstr "Управляет сетевыми соединениями с сетевыми принтерами Ultimaker 3." -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "name" -msgid "Monitor Stage" -msgstr "Этап мониторинга" +msgid "Ultimaker Network Connection" +msgstr "Соединение с сетью Ultimaker" -#: ModelChecker/plugin.json +#: USBPrinting/plugin.json msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Проверка моделей и конфигурации печати для выявления возможных проблем печати; рекомендации." +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Принимает G-Code и отправляет его на принтер. Плагин также может обновлять прошивку." -#: ModelChecker/plugin.json +#: USBPrinting/plugin.json msgctxt "name" -msgid "Model Checker" -msgstr "Средство проверки моделей" +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." @@ -8210,8 +8910,7 @@ msgstr "Средство проверки моделей" #~ " - Thomas Karl Pietrowski" #~ msgstr "" #~ "Уважаемый клиент!\n" -#~ "В данный момент этот плагин запущен в операционной системе, отличной от Windows. Плагин функционирует исключительно под управлением ОС Windows с установленным ПО SolidWorks, для которого имеется подходящая лицензия. Установите данный плагин на принтер под управлением Windows с установленным ПО " -#~ "SolidWorks.\n" +#~ "В данный момент этот плагин запущен в операционной системе, отличной от Windows. Плагин функционирует исключительно под управлением ОС Windows с установленным ПО SolidWorks, для которого имеется подходящая лицензия. Установите данный плагин на принтер под управлением Windows с установленным ПО SolidWorks.\n" #~ "\n" #~ "С наилучшими пожеланиями,\n" #~ " - Томас Карл Петровски (Thomas Karl Pietrowski)" diff --git a/resources/i18n/ru_RU/fdmextruder.def.json.po b/resources/i18n/ru_RU/fdmextruder.def.json.po index 1b954f3ce2..41edf176ea 100644 --- a/resources/i18n/ru_RU/fdmextruder.def.json.po +++ b/resources/i18n/ru_RU/fdmextruder.def.json.po @@ -1,21 +1,19 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0000\n" -"PO-Revision-Date: 2021-04-16 14:58+0200\n" -"Last-Translator: Bothof \n" -"Language-Team: Ruslan Popov , Russian \n" -"Language: ru_RU\n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.4.1\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" #: fdmextruder.def.json msgctxt "machine_settings label" diff --git a/resources/i18n/ru_RU/fdmprinter.def.json.po b/resources/i18n/ru_RU/fdmprinter.def.json.po index 810f0034a4..44ca2ff808 100644 --- a/resources/i18n/ru_RU/fdmprinter.def.json.po +++ b/resources/i18n/ru_RU/fdmprinter.def.json.po @@ -1,21 +1,20 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 11:59+0000\n" -"PO-Revision-Date: 2021-04-16 14:58+0200\n" -"Last-Translator: Lionbridge \n" -"Language-Team: Russian , Ruslan Popov , Russian \n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"PO-Revision-Date: 2022-07-15 11:08+0200\n" +"Last-Translator: \n" +"Language-Team: LANGUAGE\n" "Language: ru_RU\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.4.1\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" +"X-Generator: Poedit 3.1.1\n" #: fdmprinter.def.json msgctxt "machine_settings label" @@ -57,7 +56,9 @@ msgctxt "machine_start_gcode description" msgid "" "G-code commands to be executed at the very start - separated by \n" "." -msgstr "Команды в G-коде, которые будут выполнены в самом начале, разделенные с помощью \n." +msgstr "" +"Команды в G-коде, которые будут выполнены в самом начале, разделенные с помощью \n" +"." #: fdmprinter.def.json msgctxt "machine_end_gcode label" @@ -69,7 +70,9 @@ msgctxt "machine_end_gcode description" msgid "" "G-code commands to be executed at the very end - separated by \n" "." -msgstr "Команды в G-коде, которые будут выполнены в самом конце, разделенные с помощью \n." +msgstr "" +"Команды в G-коде, которые будут выполнены в самом конце, разделенные с помощью \n" +"." #: fdmprinter.def.json msgctxt "material_guid label" @@ -463,8 +466,8 @@ msgstr "Полигон головки принтера и вентилятора #: fdmprinter.def.json msgctxt "machine_head_with_fans_polygon description" -msgid "A 2D silhouette of the print head (fan caps included)." -msgstr "2D контур головы принтера (включая крышки вентилятора)." +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" @@ -736,6 +739,16 @@ 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" @@ -956,6 +969,56 @@ 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" @@ -987,14 +1050,24 @@ msgid "Optimize the order in which walls are printed so as to reduce the number msgstr "Оптимизирует порядок, в котором печатаются стенки, для уменьшения количества откатов и перемещений. Большинство моделей будут распечатываться быстрее, но не все. Сравнивайте оценочное время печати с оптимизацией и без нее. При выборе каймы в качестве типа приклеивания к рабочему столу первый слой не оптимизируется." #: fdmprinter.def.json -msgctxt "outer_inset_first label" -msgid "Outer Before Inner Walls" -msgstr "Печать внешних стенок" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Порядок стенок" #: fdmprinter.def.json -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 "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" @@ -1007,84 +1080,54 @@ msgid "Prints an extra wall at every other layer. This way infill gets caught be msgstr "Печатает дополнительную стенку через слой. Таким образом, заполнение заключается между этими дополнительными стенками, что приводит к повышению прочности печати." #: fdmprinter.def.json -msgctxt "travel_compensate_overlapping_walls_enabled label" -msgid "Compensate Wall Overlaps" -msgstr "Компенсация перекрытия стен" +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Минимальная ширина линии стенки" #: fdmprinter.def.json -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 "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 "travel_compensate_overlapping_walls_0_enabled label" -msgid "Compensate Outer Wall Overlaps" -msgstr "Компенсация перекрытия внешних стен" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Минимальная ширина линии четных стенок" #: fdmprinter.def.json -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 "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 "travel_compensate_overlapping_walls_x_enabled label" -msgid "Compensate Inner Wall Overlaps" -msgstr "Компенсация перекрытия внутренних стен" +msgctxt "wall_split_middle_threshold label" +msgid "Split Middle Line Threshold" +msgstr "Порог разделения средней линии" #: fdmprinter.def.json -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_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 "wall_min_flow label" -msgid "Minimum Wall Flow" -msgstr "Минимальный поток для стенки" +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Минимальная ширина линии нечетных стенок" #: fdmprinter.def.json -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 "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_min_flow_retract label" -msgid "Prefer Retract" -msgstr "Предпочтительный откат" +msgctxt "wall_add_middle_threshold label" +msgid "Add Middle Line Threshold" +msgstr "Добавление порога средней линии" #: fdmprinter.def.json -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 "Если включено, вместо комбинга для движений, заменяющих стенки с потоком меньше минимального установленного порога, используется откат." - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps label" -msgid "Fill Gaps Between Walls" -msgstr "Заполнение зазоров между стенками" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps description" -msgid "Fills the gaps between walls where no walls fit." -msgstr "Заполняет зазоры между стенками, когда это необходимо." - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option nowhere" -msgid "Nowhere" -msgstr "Нигде" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option everywhere" -msgid "Everywhere" -msgstr "Везде" - -#: fdmprinter.def.json -msgctxt "filter_out_tiny_gaps label" -msgid "Filter Out Tiny Gaps" -msgstr "Фильтровать только небольшие зазоры" - -#: fdmprinter.def.json -msgctxt "filter_out_tiny_gaps description" -msgid "Filter out tiny gaps to reduce blobs on outside of model." -msgstr "Фильтровать только небольшие зазоры для сокращения пузырей за пределами модели." +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" @@ -1096,6 +1139,26 @@ 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" @@ -1729,10 +1792,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." -msgstr "Шаблон заполняющего материала печати. Линейное и зигзагообразное заполнение меняет направление на чередующихся слоях, снижая расходы на материал. Шаблоны" -" «сетка», «треугольник», «шестигранник из треугольников», «куб», «восьмигранник», «четверть куба», «крестовое», «концентрическое» полностью печатаются" -" в каждом слое. Шаблоны заполнения «гироид», «куб», «четверть куба» и «восьмигранник» меняются в каждом слое, чтобы обеспечить более равномерное распределение" -" прочности в каждом направлении. Шаблон заполнения «молния» пытается минимизировать заполнение, поддерживая только верхнюю область объекта." +msgstr "Шаблон заполняющего материала печати. Линейное и зигзагообразное заполнение меняет направление на чередующихся слоях, снижая расходы на материал. Шаблоны «сетка», «треугольник», «шестигранник из треугольников», «куб», «восьмигранник», «четверть куба», «крестовое», «концентрическое» полностью печатаются в каждом слое. Шаблоны заполнения «гироид», «куб», «четверть куба» и «восьмигранник» меняются в каждом слое, чтобы обеспечить более равномерное распределение прочности в каждом направлении. Шаблон заполнения «молния» пытается минимизировать заполнение, поддерживая только верхнюю область объекта." #: fdmprinter.def.json msgctxt "infill_pattern option grid" @@ -2198,6 +2258,26 @@ 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" @@ -2709,24 +2789,14 @@ msgid "The first few layers are printed slower than the rest of the model, to ge msgstr "Первые несколько слоёв печатаются на медленной скорости, чем вся остальная модель, чтобы получить лучшее прилипание к столу и увеличить вероятность успешной печати. Скорость последовательно увеличивается по мере печати указанного количества слоёв." #: fdmprinter.def.json -msgctxt "speed_equalize_flow_enabled label" -msgid "Equalize Filament Flow" -msgstr "Выравнивание потока материала" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Коэффициент выравнивания потока" #: fdmprinter.def.json -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 "Печатать более тонкие чем обычно линии быстрее, чтобы объём выдавленного материала в секунду оставался постоянным. Тонкие части в вашей модели могут требовать, чтобы линии были напечатаны с меньшей шириной, чем разрешено настройками. Этот параметр управляет скоростью изменения таких линий." - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_max label" -msgid "Maximum Speed for Flow Equalization" -msgstr "Максимальная скорость выравнивания потока" - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_max description" -msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -msgstr "Максимальная скорость печати до которой может увеличиваться скорость печати при выравнивании потока." +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "Поправочный коэффициент ширины экструзии в зависимости от скорости. При значении 0 % скорость перемещения сохраняется на уровне скорости печати. При значении 100 % скорость перемещения корректируется таким образом, чтобы расход (в мм3/с) оставался постоянным, то есть линии в половину нормальной ширины линии, печатаются в два раза быстрее, а линии вдвое шире — в два раза быстрее. Значение выше 100 % может помочь компенсировать более высокое давление, необходимое для экструдирования широких линий." #: fdmprinter.def.json msgctxt "acceleration_enabled label" @@ -2738,6 +2808,16 @@ 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" @@ -2928,6 +3008,16 @@ 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" @@ -4463,6 +4553,46 @@ 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" @@ -4627,6 +4757,16 @@ 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" @@ -5127,6 +5267,16 @@ 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" @@ -6421,6 +6571,36 @@ 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 "Чередуйте направления стенок каждые вторые слой и вставку. Это полезно для материалов, которые могут накапливать напряжение, например для металлической печати." + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +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" +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 "command_line_settings label" msgid "Command Line Settings" @@ -6481,6 +6661,98 @@ 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." diff --git a/resources/i18n/tr_TR/cura.po b/resources/i18n/tr_TR/cura.po index c69664af1c..440963e04c 100644 --- a/resources/i18n/tr_TR/cura.po +++ b/resources/i18n/tr_TR/cura.po @@ -1,415 +1,211 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0100\n" -"PO-Revision-Date: 2022-01-10 11:57+0100\n" -"Last-Translator: Lionbridge \n" -"Language-Team: Turkish , Turkish \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" "Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.3\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" -#: /home/clamboo/Desktop/Cura/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/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "Bilinmiyor" -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 -msgctxt "@info:title" -msgid "Backup" -msgstr "Yedekle" +#: /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/clamboo/Desktop/Cura/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/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "Mevcut ağ yazıcıları" -#: /home/clamboo/Desktop/Cura/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/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Geçersiz kılınmadı" -#: /home/clamboo/Desktop/Cura/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/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/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 -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/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/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 -msgctxt "@action:button" -msgid "New materials installed" -msgstr "Yeni malzemeler yüklendi" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 -msgctxt "@action:button" -msgid "Sync materials with printers" -msgstr "Malzemeleri yazıcılarla senkronize et" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 -msgctxt "@action:button" -msgid "Learn more" -msgstr "Daha fazla bilgi edinin" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 -msgctxt "@message:text" -msgid "Could not save material archive to {}:" -msgstr "Malzeme arşivi {} konumuna kaydedilemedi:" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 -msgctxt "@message:title" -msgid "Failed to save material archive" -msgstr "Malzeme arşivi kaydedilemedi" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 -msgctxt "@text" -msgid "Unknown error." -msgstr "Bilinmeyen hata." - -#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 -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/clamboo/Desktop/Cura/cura/BuildVolume.py:102 -msgctxt "@info:title" -msgid "Build Volume" -msgstr "Yapı Disk Bölümü" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Geçersiz kılınmadı" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "Bilinmiyor" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "Mevcut ağ yazıcıları" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Tüm Dosyalar (*)" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "Görsel" +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "Hesaplanmış" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "Taslak" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 -msgctxt "@label" -msgid "Custom Material" -msgstr "Özel Malzeme" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 -msgctxt "@label" -msgid "Custom" -msgstr "Özel" - -#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 +#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "Giriş başarısız" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "Nesneler için yeni konum bulunuyor" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 msgctxt "@info:title" msgid "Finding Location" msgstr "Konumu Buluyor" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 msgctxt "@info:title" msgid "Can't Find Location" msgstr "Konum Bulunamıyor" -#: /home/clamboo/Desktop/Cura/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/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 -msgctxt "@text:error" -msgid "Failed to connect to Digital Factory." -msgstr "Digital Factory'ye bağlanılamadı." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "Makineler yükleniyor..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "Tercihler ayarlanıyor..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "Etkin Makine Başlatılıyor..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "Makine yöneticisi başlatılıyor..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "Yapı hacmi başlatılıyor..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "Görünüm ayarlanıyor..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "Arayüz yükleniyor..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "Motor başlatılıyor..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 +#: /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 msgctxt "@info:title" -msgid "Warning" -msgstr "Uyarı" +msgid "Backup" +msgstr "Yedekle" -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 -#, python-brace-format +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 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ı" +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/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 msgctxt "@info:title" -msgid "Error" -msgstr "Hata" +msgid "Build Volume" +msgstr "Yapı Disk Bölümü" -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 -msgctxt "@action:button" -msgid "Skip" -msgstr "Atla" - -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "Kapat" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 -msgctxt "@action:button" -msgid "Next" -msgstr "Sonraki" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 -msgctxt "@action:button" -msgid "Finish" -msgstr "Bitir" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "Ekle" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 -msgctxt "@action:button" -msgid "Cancel" -msgstr "İptal Et" - -#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 -#, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "Grup #{group_nr}" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Dış Duvar" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "İç Duvarlar" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Skin" -msgstr "Yüzey Alanı" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Infill" -msgstr "Dolgu" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Destek Dolgusu" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Destek Arayüzü" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Support" -msgstr "Destek" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Etek" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "Astarlama Direği" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 -msgctxt "@tooltip" -msgid "Travel" -msgstr "Hareket" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Geri Çekmeler" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 -msgctxt "@tooltip" -msgid "Other" -msgstr "Diğer" - -#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 -msgctxt "@text:window" -msgid "The release notes could not be opened." -msgstr "Sürüm notları açılamadı." - -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura başlatılamıyor" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

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

      \n" @@ -424,32 +220,32 @@ msgstr "" "

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

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

      Cura’da 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" +"

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

      \n" " " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "Sistem bilgileri" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "Bilinmiyor" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura sürümü" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Cura dili" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "İşletim sistemi dili" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "Platform" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Qt Sürümü" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "PyQt Sürümü" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 msgctxt "@label" -msgid "Not yet initialized
      " -msgstr "Henüz başlatılmadı
      " +msgid "Not yet initialized" +msgstr "Henüz başlatılmadı" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
    • OpenGL Version: {version}
    • " msgstr "
    • OpenGL Sürümü: {version}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
    • OpenGL Vendor: {vendor}
    • " msgstr "
    • OpenGL Satıcısı: {vendor}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
    • OpenGL Renderer: {renderer}
    • " msgstr "
    • OpenGL Oluşturucusu: {renderer}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Hata geri izleme" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "Günlükler" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "Rapor gönder" -#: /home/clamboo/Desktop/Cura/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/CuraApplication.py:531 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "Makineler yükleniyor..." -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 -msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." -msgstr "Ultimaker hesabı sunucusuna ulaşılamadı." +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "Tercihler ayarlanıyor..." -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "Etkin Makine Başlatılıyor..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "Makine yöneticisi başlatılıyor..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "Yapı hacmi başlatılıyor..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "Görünüm ayarlanıyor..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "Arayüz yükleniyor..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "Motor başlatılıyor..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#, 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 +#, 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 msgctxt "@info:title" -msgid "Log-in failed" -msgstr "Giriş başarısız" +msgid "Warning" +msgstr "Uyarı" -#: /home/clamboo/Desktop/Cura/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/CuraApplication.py:1810 +#, 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/clamboo/Desktop/Cura/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/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 +msgctxt "@info:title" +msgid "Error" +msgstr "Hata" -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 -msgctxt "@message" -msgid "Could not read response." -msgstr "Yanıt okunamadı." - -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "Nesneler çoğaltılıyor ve yerleştiriliyor" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "Nesneler Yerleştiriliyor" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "Nesne Yerleştiriliyor" -#: /home/clamboo/Desktop/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/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "Yanıt okunamadı." -#: /home/clamboo/Desktop/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/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "Sağlanan durum doğru değil." -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 -msgctxt "@label" -msgid "Nozzle" -msgstr "Nozül" +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 -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/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/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info" +msgid "Unable to reach the Ultimaker account server." +msgstr "Ultimaker hesabı sunucusuna ulaşılamadı." + +#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:278 msgctxt "@info:title" -msgid "Settings updated" -msgstr "Ayarlar güncellendi" +msgid "Log-in failed" +msgstr "Giriş başarısız" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "Ekstrüder(ler) Devre Dışı Bırakıldı" +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 msgctxt "@title:window" msgid "File Already Exists" msgstr "Dosya Zaten Mevcut" -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "Geçersiz dosya URL’si:" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "Dışa aktarma başarılı" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "Özel profil" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "Profilde eksik bir kalite tipi var." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "Henüz etkin bir yazıcı yok." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Profil eklenemiyor." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: /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 msgctxt "@label" -msgid "Per Model Settings" -msgstr "Model Başına Ayarlar" +msgid "Nozzle" +msgstr "Nozül" -#: /home/clamboo/Desktop/Cura/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/cura/Settings/MachineManager.py:857 +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/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Cura Profili" - -#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3D Dosyası" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "Yedeklemeniz geri yüklenirken bir hata oluştu." - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 msgctxt "@info:title" -msgid "Backups" -msgstr "Yedeklemeler" +msgid "Settings updated" +msgstr "Ayarlar güncellendi" -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Yedeklemeniz oluşturuluyor..." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Yedeklemeniz yükleniyor..." - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "Yedeklemenizin yüklenmesi tamamlandı." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Yedeklemeleri yönet" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "Makine Ayarları" - -#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "Destek Engelleyici" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Çıkarılabilir Sürücü" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 msgctxt "@info:title" -msgid "Saving" -msgstr "Kaydediliyor" +msgid "Extruder(s) Disabled" +msgstr "Ekstrüder(ler) Devre Dışı Bırakıldı" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "Çıkarılabilir aygıta {0} kaydedilemedi: {1}" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 -msgctxt "@info:title" -msgid "File Saved" -msgstr "Dosya Kaydedildi" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" -msgid "Eject" -msgstr "Çıkar" +msgid "Add" +msgstr "Ekle" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Cancel" +msgstr "İptal Et" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 #, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "Çıkarılabilir aygıtı çıkar {0}" +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "Grup #{group_nr}" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 -#, 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/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Dış Duvar" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "İç Duvarlar" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "Yüzey Alanı" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "Dolgu" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Destek Dolgusu" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Destek Arayüzü" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "Destek" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Etek" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "Astarlama Direği" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "Hareket" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Geri Çekmeler" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Close" +msgstr "Kapat" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "Yeni malzemeler yüklendi" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Learn more" +msgstr "Daha fazla bilgi edinin" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "Malzeme arşivi kaydedilemedi" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +msgctxt "@text" +msgid "Unknown error." +msgstr "Bilinmeyen hata." + +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Donanımı Güvenli Bir Şekilde Kaldırın" +msgid "3D Model Assistant" +msgstr "3D Model Yardımcısı" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 #, 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." +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 "" +"

      Model boyutu ve model yapılandırması nedeniyle bir veya daha fazla 3D model optimum yazdırılamayabilir:

      \n" +"

      {model_names}

      \n" +"

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

      \n" +"

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

      " -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "Aygıt Yazılımını Güncelle" - -#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Cura 15.04 profilleri" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Önerilen Ayarlar" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "Özel" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 +#: /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." -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 msgctxt "@info:title" msgid "Open Project File" msgstr "Proje Dosyası Aç" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 +#: /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 "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." + +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:392 +msgctxt "@info:title" +msgid "Material profiles not installed" +msgstr "Malzeme profilleri yüklü değil" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:405 +msgctxt "@action:button" +msgid "Install Materials" +msgstr "Malzeme Yükle" + +#: /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/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "UFP dosyasına yazamıyor:" +#: /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/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Ultimaker Biçim Paketi" +#: /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/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "G-code dosyası" +#: /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/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "Önizleme" +#: /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/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Röntgen Görüntüsü" +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Katmanlar İşleniyor" +#: /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 "{material} proje dosyasında malzeme paketi bilgileri saklanamadı. Bu proje diğer sistemlerde doğru şekilde açılmayabilir." -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:283 msgctxt "@info:title" -msgid "Information" -msgstr "Bilgi" +msgid "Failed to save material package information" +msgstr "Malzeme paketi bilgileri kaydedilemedi" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 msgctxt "@message:title" msgid "Slicing failed" msgstr "Dilimleme başarısız" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 msgctxt "@message:button" msgid "Report a bug" msgstr "Hata bildirin" -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 +#: /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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:494 msgctxt "@info:status" msgid "" "Please review settings and check if your models:\n" @@ -1083,430 +1072,516 @@ msgstr "" "- Etkin bir ekstrüdere atanma\n" "- Değiştirici kafesler olarak ayarlanmama" -#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "AMF Dosyası" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "Sıkıştırılmış G-code Dosyası" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "Son İşleme" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "G-Code Öğesini Değiştir" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "USB yazdırma" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "USB ile yazdır" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "USB ile yazdır" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 msgctxt "@info:status" -msgid "Connected via USB" -msgstr "USB ile bağlı" +msgid "Processing Layers" +msgstr "Katmanlar İşleniyor" -#: /home/clamboo/Desktop/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’den yazdırma devam ediyor, Cura’yı kapatmanız bu yazdırma işlemini durduracak. Emin misiniz?" - -#: /home/clamboo/Desktop/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 "Devam eden bir baskı var. Cura, önceki baskı tamamlanmadan USB aracılığıyla başka bir baskı işi başlatamaz." - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 -msgctxt "@message" -msgid "Print in Progress" -msgstr "Baskı Sürüyor" - -#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "Hazırla" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "G-code ayrıştırma" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 msgctxt "@info:title" -msgid "G-code Details" -msgstr "G-code Ayrıntıları" +msgid "Information" +msgstr "Bilgi" -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 -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/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 +#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14 msgctxt "@item:inlistbox" -msgid "G File" -msgstr "G Dosyası" +msgid "Cura Profile" +msgstr "Cura Profili" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG Resmi" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG Resmi" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG Resmi" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP Resmi" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF Resmi" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "Yapı levhasını dengele" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "Yükseltmeleri seçin" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "GCodeGzWriter yazı modunu desteklemez." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 msgctxt "@info" msgid "Could not access update information." msgstr "Güncelleme bilgilerine erişilemedi." -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17 +#: /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." -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22 +#: /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ı" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 msgctxt "@action:button" msgid "How to update" msgstr "Nasıl güncellenir" -#: /home/clamboo/Desktop/Cura/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/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 +msgctxt "@action" +msgid "Update Firmware" +msgstr "Aygıt Yazılımını Güncelle" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 -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/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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Senkronize ediliyor..." +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 +#: /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 "Changes detected from your Ultimaker account" -msgstr "Ultimaker hesabınızda değişiklik tespit edildi" +msgid "G-code Details" +msgstr "G-code Ayrıntıları" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 +#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:504 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?" +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/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 -msgctxt "@action:button" -msgid "Sync" -msgstr "Senkronize et" +#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18 +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "G Dosyası" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Reddet ve hesaptan kaldır" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "{} eklenti indirilemedi" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "Reddet" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "Kabul ediyorum" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Eklenti Lisans Anlaşması" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 +#: /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/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 +#: /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 +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "Görüntüle" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@item:inmenu" +msgid "Post Processing" +msgstr "Son İşleme" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@item:inmenu" +msgid "Prepare" +msgstr "Hazırla" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13 +msgctxt "@item:inmenu" +msgid "Preview" +msgstr "Önizleme" + +#: /home/trin/Gedeeld/Projects/Cura/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 +#, 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 +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 +#, 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 +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 +#, 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 +#, 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 +#, 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 +#, 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 +msgctxt "@info:title" +msgid "File Saved" +msgstr "Dosya Kaydedildi" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165 +msgctxt "@action:button" +msgid "Eject" +msgstr "Çıkar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +#, 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 +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 +#, 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 +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." -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130 msgctxt "@info:title" msgid "Simulation View" msgstr "Simülasyon Görünümü" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:133 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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134 msgctxt "@info:title" msgid "No layers to show" msgstr "Görüntülenecek katman yok" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 +#: /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 "Bu mesajı bir daha gösterme" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15 msgctxt "@item:inlistbox" msgid "Layer view" msgstr "Katman görünümü" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "Ağ üzerinden yazdır" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "Örnek veri dosyası okunamıyor." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Ağ üzerinden yazdır" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71 msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Ağ üzerinden bağlandı" +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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "yarın" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73 +msgctxt "@info:title" +msgid "Model Errors" +msgstr "Model hataları" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "bugün" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12 +msgctxt "@item:inmenu" +msgid "Solid view" +msgstr "Gerçek görünüm" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12 +msgctxt "@label" +msgid "Support Blocker" +msgstr "Destek Engelleyici" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 Triangle Format" + +#: /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 Biçim Paketi" + +#: /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 dosyasına yazamıyor:" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 msgctxt "@action" -msgid "Connect via Network" -msgstr "Ağ ile Bağlan" +msgid "Level build plate" +msgstr "Yapı levhasını dengele" -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "Baskı hatası" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Veri Gönderildi" - -#: /home/clamboo/Desktop/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 ç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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 -msgctxt "@info:title" -msgid "Update your printer" -msgstr "Yazıcınızı güncelleyin" - -#: /home/clamboo/Desktop/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 "Baskı işi kuyruğu dolu. Yazıcı yeni iş kabul edemez." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "Kuyruk Dolu" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "Yazdırma İşi Gönderiliyor" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/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, henüz {0} grubunun ana yazıcısına yüklenmemiş malzeme profilleri tespit etti." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "Malzemeler yazıcıya gönderiliyor" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "Ağ hatası" - -#: /home/clamboo/Desktop/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} 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "Grup ana makinesi değil" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 msgctxt "@action" -msgid "Configure group" -msgstr "Grubu yapılandır" +msgid "Select upgrades" +msgstr "Yükseltmeleri seçin" -#: /home/clamboo/Desktop/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} 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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 -msgctxt "@action" -msgid "Get started" -msgstr "Başlayın" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 -msgctxt "@action" -msgid "Learn more" -msgstr "Daha fazla bilgi edinin" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 msgctxt "@action:button" msgid "Print via cloud" msgstr "Bulut üzerinden yazdır" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 msgctxt "@properties:tooltip" msgid "Print via cloud" msgstr "Bulut üzerinden yazdır" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 msgctxt "@info:status" msgid "Connected via cloud" msgstr "Bulut üzerinden bağlı" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 msgctxt "@action:button" msgid "Monitor print" msgstr "Baskı izleme" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 +#: /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'de baskıyı izleyin" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279 +#: /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 "Baskı işi yüklenirken bilinmeyen hata kodu: {0}" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 +#: /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" @@ -1514,70 +1589,71 @@ msgid_plural "... and {0} others" msgstr[0] "... ve {0} diğeri" msgstr[1] "... ve {0} diğeri" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 +#: /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} yazıcısı bir sonraki hesap senkronizasyonuna kadar kaldırılacak." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 +#: /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} yazıcısını kalıcı olarak kaldırmak için {digital_factory_link} adresini ziyaret edin" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 +#: /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} yazıcısını geçici olarak kaldırmak istediğinizden emin misiniz?" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 msgctxt "@title:window" msgid "Remove printers?" msgstr "Yazıcılar kaldırılsın mı?" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 #, python-brace-format msgctxt "@label" msgid "" @@ -1593,7 +1669,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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 +#: /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" @@ -1602,1577 +1678,1093 @@ 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/clamboo/Desktop/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 "Open Compressed Triangle Mesh" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA Digital Asset Exchange" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "glTF Binary" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF Embedded JSON" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Stanford Triangle Format" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Compressed COLLADA Digital Asset Exchange" - -#: /home/clamboo/Desktop/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 "Vurgulanan alanlar, eksik ya da ikincil yüzeyleri gösterir. Modelinizi düzeltin ve Cura'da tekrar açın." - -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "Model hataları" - -#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Gerçek görünüm" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "3mf dosyasını yazarken hata oluştu." - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "3MF Writer eklentisi bozuk." - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MF dosyası" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Cura Projesi 3MF dosyası" - -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "Görüntüle" - -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 -msgctxt "@info:title" -msgid "3D Model Assistant" -msgstr "3D Model Yardımcısı" - -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25 #, 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

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

      Model boyutu ve model yapılandırması nedeniyle bir veya daha fazla 3D model optimum yazdırılamayabilir:

      \n" -"

      {model_names}

      \n" -"

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

      \n" -"

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

      " +"{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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action" +msgid "Get started" +msgstr "Başlayın" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 +msgctxt "@action" +msgid "Learn more" +msgstr "Daha fazla bilgi edinin" + +#: /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 ç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 +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 +#, 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 +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 +#, 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 +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 +msgctxt "@action" +msgid "Configure group" +msgstr "Grubu yapılandır" + +#: /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 "Mevcut iş gönderilene kadar bekleyin." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info:title" +msgid "Network error" +msgstr "Ağ hatası" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@info:title" +msgid "Queue Full" +msgstr "Kuyruk Dolu" + +#: /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 "Yazdırma işi yazıcıya başarıyla gönderildi." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "Ağ üzerinden yazdır" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "Ağ üzerinden bağlandı" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:status" +msgid "tomorrow" +msgstr "yarın" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 +msgctxt "@info:status" +msgid "today" +msgstr "bugün" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "USB ile yazdır" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" -msgid "Mesh Type" -msgstr "Ağ Tipi" +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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "Normal model" +#: /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 "Devam eden bir baskı var. Cura, önceki baskı tamamlanmadan USB aracılığıyla başka bir baskı işi başlatamaz." -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -msgstr "Destek olarak yazdır" +#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "Baskı Sürüyor" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Çakışma ayarlarını değiştir" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Çakışmaları destekleme" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 +#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Yalnızca dolgu kafes" +msgid "X3D File" +msgstr "X3D Dosyası" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 +#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12 msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Kesme Örgüsü" +msgid "X-Ray view" +msgstr "Röntgen Görüntüsü" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 -msgctxt "@action:button" -msgid "Select settings" -msgstr "Ayarları seçin" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Bu modeli Özelleştirmek için Ayarları seçin" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtrele..." - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Tümünü göster" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cura Yedeklemeleri" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Cura Sürümü" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Makineler" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Malzemeler" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Profiller" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Eklentiler" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "Şimdi Yedekle" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Otomatik Yedekle" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "Geri Yükle" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Yedeklemeyi Sil" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Yedeklemeyi Geri Yükle" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 -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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 -msgctxt "@button" -msgid "Sign in" -msgstr "Giriş yap" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "Yedeklemelerim" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -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/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Yazıcı Ayarları" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (Genişlik)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Derinlik)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Yükseklik)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 -msgctxt "@label" -msgid "Build plate shape" -msgstr "Yapı levhası şekli" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 -msgctxt "@label" -msgid "Origin at center" -msgstr "Merkez nokta" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 -msgctxt "@label" -msgid "Heated bed" -msgstr "Isıtılmış yatak" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 -msgctxt "@label" -msgid "Heated build volume" -msgstr "Isıtılmış yapı hacmi" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 -msgctxt "@label" -msgid "G-code flavor" -msgstr "G-code türü" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Yazıcı Başlığı Ayarları" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -msgctxt "@label" -msgid "X min" -msgstr "X min" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -msgctxt "@label" -msgid "Y min" -msgstr "Y min" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -msgctxt "@label" -msgid "X max" -msgstr "X maks" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -msgctxt "@label" -msgid "Y max" -msgstr "Y maks" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "Gantry Height" -msgstr "Portal Yüksekliği" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Ekstrüder Sayısı" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Ekstrüder ofsetlerini GCode'a uygula" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "G-code’u Başlat" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "G-code’u Sonlandır" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Nozül Ayarları" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 -msgctxt "@label" -msgid "Nozzle size" -msgstr "Nozzle boyutu" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Uyumlu malzeme çapı" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Nozül X ofseti" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Nozül Y ofseti" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Soğutma Fanı Numarası" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "Ekstruder G-Code'u Başlatma" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "Ekstruder G-Code'u Sonlandırma" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 -msgctxt "@title:tab" -msgid "Printer" -msgstr "Yazıcı" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" -msgid "Update Firmware" -msgstr "Aygıt Yazılımını Güncelle" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Aygıt Yazılımını otomatik olarak yükselt" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Özel Aygıt Yazılımı Yükle" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Özel aygıt yazılımı seçin" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Aygıt Yazılımı Güncellemesi" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 -msgctxt "@label" -msgid "Updating firmware." -msgstr "Aygıt yazılımı güncelleniyor." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Aygıt yazılımı güncellemesi tamamlandı." - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 msgctxt "@title:window" msgid "Open Project" msgstr "Proje Aç" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Yazıcı ayarları" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Profil ayarları" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 msgctxt "@action:label" msgid "Derivative from" msgstr "Kaynağı" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 -msgctxt "@action:label" -msgid "Material settings" -msgstr "Malzeme ayarları" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 msgctxt "@action:label" msgid "Mode" msgstr "Mod" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 msgctxt "@action:label" msgid "Visible settings:" msgstr "Görünür ayarlar:" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 / %2" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 msgctxt "@action:button" msgid "Open" msgstr "Aç" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:520 +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "Projeyi yine de aç" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:529 +msgctxt "@action:button" +msgid "Install missing material" +msgstr "Eksik malzemeyi yükle" + +#: /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 "Post Processing Plugin" -msgstr "Son İşleme Uzantısı" +msgid "Cura Backups" +msgstr "Cura Yedeklemeleri" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 +#: /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 "Cura projesini kaydet ve dosyayı yazdır" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "Cura projesini kaydet" + +#: /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 "Post Processing Scripts" -msgstr "Son İşleme Dosyaları" +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/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "Dosya ekle" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 msgctxt "@label" -msgid "Settings" -msgstr "Ayarlar" +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/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 -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/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Aygıt Yazılımını otomatik olarak yükselt" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 -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/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Özel Aygıt Yazılımı Yükle" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /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 "Convert Image..." -msgstr "Resim Dönüştürülüyor..." +msgid "Select custom firmware" +msgstr "Özel aygıt yazılımı seçin" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 -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/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Aygıt Yazılımı Güncellemesi" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "Tabanın yapı levhasından milimetre cinsinden yüksekliği." +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "Her bir pikselin “Taban”dan en yüksek mesafesi." -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 msgctxt "@action:label" msgid "Base (mm)" msgstr "Taban (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate." -msgstr "Yapı levhasındaki milimetre cinsinden genişlik." +msgid "The base height from the build plate in millimeters." +msgstr "Tabanın yapı levhasından milimetre cinsinden yüksekliği." -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 msgctxt "@action:label" msgid "Width (mm)" msgstr "Genişlik (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "Yapı levhasındaki milimetre cinsinden derinlik" +msgid "The width in millimeters on the build plate" +msgstr "Yapı plakasındaki milimetre cinsinden genişlik" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 msgctxt "@action:label" msgid "Depth (mm)" msgstr "Derinlik (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 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." +msgid "The depth in millimeters on the build plate" +msgstr "Yapı levhasındaki milimetre cinsinden derinlik" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 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." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "Yarı saydamlık" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 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." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "1 mm Geçirgenlik (%)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "Resme uygulanacak düzeltme miktarı." +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 msgctxt "@action:label" msgid "Smoothing" msgstr "Düzeltme" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /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/clamboo/Desktop/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" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Yapı Levhası Dengeleme" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Yapı Levhasını Dengelemeyi Başlat" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Sonraki Konuma Taşı" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Anonim veri toplama hakkında daha fazla bilgi" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -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/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Anonim veri göndermek istemiyorum" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Anonim veri gönderilmesine izin ver" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" -msgid "Marketplace" -msgstr "Mağaza" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -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." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "%1 uygulamasından çık" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "Yükle" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -msgctxt "@action:button" -msgid "Installed" -msgstr "Yüklü" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "Premium" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 -msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "Web Mağazasına Git" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 -msgctxt "@label" -msgid "Search materials" -msgstr "Malzeme ara" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "Uyumluluk" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "Makine" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "Baskı tepsisi" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "Destek" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "Kalite" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "Teknik Veri Sayfası" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "Güvenlik Veri Sayfası" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "Yazdırma Talimatları" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "Web sitesi" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -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" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "Malzeme makarası satın al" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "Güncelle" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "Güncelleniyor" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "Güncellendi" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "Geri" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 msgctxt "@title:tab" -msgid "Plugins" -msgstr "Eklentiler" +msgid "Printer" +msgstr "Yazıcı" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 -msgctxt "@title:tab" -msgid "Materials" -msgstr "Malzemeler" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Nozül Ayarları" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "Yüklü" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 msgctxt "@label" -msgid "Will install upon restarting" -msgstr "Yeniden başlatıldığında kurulacak" +msgid "Nozzle size" +msgstr "Nozzle boyutu" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -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" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Downgrade" -msgstr "Eski Sürümü Yükle" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "Kaldır" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /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 "Community Contributions" -msgstr "Topluluk Katkıları" +msgid "mm" +msgstr "mm" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 msgctxt "@label" -msgid "Community Plugins" -msgstr "Topluluk Eklentileri" +msgid "Compatible material diameter" +msgstr "Uyumlu malzeme çapı" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 msgctxt "@label" -msgid "Generic Materials" -msgstr "Genel Materyaller" +msgid "Nozzle offset X" +msgstr "Nozül X ofseti" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "Paketler alınıyor..." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 msgctxt "@label" -msgid "Website" -msgstr "Web sitesi" +msgid "Nozzle offset Y" +msgstr "Nozül Y ofseti" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 msgctxt "@label" -msgid "Email" -msgstr "E-posta" +msgid "Cooling Fan Number" +msgstr "Soğutma Fanı Numarası" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -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" +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 +#: /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 "Version" -msgstr "Sürüm" +msgid "X (Width)" +msgstr "X (Genişlik)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 msgctxt "@label" -msgid "Last updated" -msgstr "Son güncelleme" +msgid "Y (Depth)" +msgstr "Y (Derinlik)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 msgctxt "@label" -msgid "Brand" -msgstr "Marka" +msgid "Z (Height)" +msgstr "Z (Yükseklik)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 msgctxt "@label" -msgid "Downloads" -msgstr "İndirmeler" +msgid "Build plate shape" +msgstr "Yapı levhası şekli" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "Yüklü eklentiler" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "Hiç eklenti yüklenmedi." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "Yüklü malzemeler" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 -msgctxt "@info" -msgid "No material has been installed." -msgstr "Hiç malzeme yüklenmedi." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "Paketli eklentiler" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "Paketli malzemeler" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -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." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "Paketi yüklemek için lisansı kabul etmeniz gerekir" +msgid "Origin at center" +msgstr "Merkez nokta" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 msgctxt "@button" msgid "Dismiss" msgstr "Kapat" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "Kaldırmayı onayla" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "Eksik Malzemeleri yükle" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -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." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "Eklenti Lisans Anlaşması" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "Malzemeler" +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "Profiller" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "Kabul et" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "Onayla" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 +msgctxt "@header" +msgid "Manage packages" +msgstr "Paketleri yönet" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "Renk şeması" +#: /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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Malzeme Rengi" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "Paketleri yönet" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Çizgi Tipi" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Hız" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Katman kalınlığı" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Hat Genişliği" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Akış" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Uyumluluk Modu" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "Geçişler" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "Yardımcılar" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "Kabuk" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "Dolgu" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "Başlangıçlar" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Yalnızca Üst Katmanları Göster" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "En Üstteki 5 Ayrıntılı Katmanı Göster" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Üst / Alt" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "İç Duvar" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "min" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "maks" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Yazıcıyı yönet" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -msgctxt "@label" -msgid "Glass" -msgstr "Cam" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" msgid "Loading..." msgstr "Yükleniyor..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Mevcut değil" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "Eklentiler" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Ulaşılamıyor" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "Malzemeler" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "Boşta" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Hazırlanıyor..." +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "Yazdırma" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 +#: /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 "Untitled" -msgstr "Başlıksız" +msgid "You need to accept the license to install the package" +msgstr "Paketi yüklemek için lisansı kabul etmeniz gerekir" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "Anonim" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Yapılandırma değişiklikleri gerekiyor" +#: /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 "Oluşturan" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "Detaylar" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Enable" +msgstr "Etkinleştir" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Kullanım dışı yazıcı" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Disable" +msgstr "Devre dışı bırak" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "İlk kullanılabilen" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 +msgctxt "@button" +msgid "Downgrading..." +msgstr "Eski sürüm yükleniyor..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "Kuyrukta" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 +msgctxt "@button" +msgid "Downgrade" +msgstr "Eski Sürümü Yükle" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Tarayıcıda yönet" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 +msgctxt "@button" +msgid "Installing..." +msgstr "Yükleniyor..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -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/Marketplace/resources/qml/PackageCardHeader.qml:250 +msgctxt "@button" +msgid "Install" +msgstr "Yükle" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "Yazdırma görevleri" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "Toplam yazdırma süresi" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "Bekleniyor" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 -msgctxt "@title:window" -msgid "Print over network" -msgstr "Ağ üzerinden yazdır" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 -msgctxt "@action:button" -msgid "Print" -msgstr "Yazdır" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 -msgctxt "@label" -msgid "Printer selection" -msgstr "Yazıcı seçimi" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Yapılandırma Değişiklikleri" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "Geçersiz kıl" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "%2 olan %1 malzemesini %3 yapın." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "%2 olan %1 print core'u %3 yapın." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "Alüminyum" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Finished" -msgstr "Tamamlandı" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "İptal ediliyor..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Aborted" -msgstr "Durduruldu" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Failed" -msgstr "Başarısız" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Duraklatılıyor..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Paused" -msgstr "Duraklatıldı" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Devam ediliyor..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 -msgctxt "@label:status" -msgid "Action required" -msgstr "Eylem gerekli" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "%1 bitiş tarihi: %2" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Ağ Yazıcısına Bağlan" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Aşağıdaki listeden yazıcınızı seçin:" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "Düzenle" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 -msgctxt "@action:button" -msgid "Remove" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254 +msgctxt "@button" +msgid "Uninstall" msgstr "Kaldır" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" -msgstr "Yenile" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Updating..." +msgstr "Güncelleniyor..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -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/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Update" +msgstr "Güncelle" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "Tür" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "Paket ayrıntıları" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "Üretici yazılımı sürümü" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "Geri" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "Adres" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "Tanım" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -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/Marketplace/resources/qml/PackagePage.qml:110 +msgctxt "@header" +msgid "Compatible printers" +msgstr "Uyumlu yazıcılar" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -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/Marketplace/resources/qml/PackagePage.qml:134 +msgctxt "@info" +msgid "No compatibility information" +msgstr "Uyumluluk bilgisi yok" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -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/Marketplace/resources/qml/PackagePage.qml:152 +msgctxt "@header" +msgid "Compatible support materials" +msgstr "Uyumlu destek malzemeleri" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "Bağlan" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:176 +msgctxt "@info No materials" +msgid "None" +msgstr "Hiçbiri" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Geçersiz IP adresi" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +#: /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 "Please enter a valid IP address." -msgstr "Lütfen geçerli bir IP adresi girin." +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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Yazıcı Adresi" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 -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/Marketplace/resources/qml/VerifiedIcon.qml:22 +msgctxt "@info" +msgid "Ultimaker Certified Material" +msgstr "Ultimaker Sertifikalı Malzeme" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -msgstr "En üste taşı" +#: /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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -msgstr "Sil" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "Devam et" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "Duraklatılıyor..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "Devam ediliyor..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "Duraklat" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "İptal ediliyor..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "Durdur" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Yazdırma işini en üste taşı" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Yazdırma işini sil" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "Yazdırmayı durdur" - -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100 msgctxt "@info" msgid "" "Please make sure your printer has a connection:\n" @@ -3185,2138 +2777,681 @@ msgstr "" "- 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/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /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/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /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/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /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/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "3 Boyutlu Görünüm" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "Önden Görünüm" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "Yukarıdan Görünüm" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "Sol görünüm" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "Sağ görünüm" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 msgctxt "@label" -msgid "Object list" -msgstr "Nesne listesi" +msgid "Mesh Type" +msgstr "Ağ Tipi" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 +#: /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 "Marketplace" -msgstr "Mağaza" +msgid "Select settings" +msgstr "Ayarları seçin" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "&Dosya" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "Düz&enle" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "&Görünüm" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "&Ayarlar" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "Uzantılar" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "Tercihler" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "&Yardım" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 msgctxt "@title:window" -msgid "New project" -msgstr "Yeni proje" +msgid "Select Settings to Customize for this model" +msgstr "Bu modeli Özelleştirmek için Ayarları seçin" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 -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/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filtrele..." -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 -msgctxt "@label:PrintjobStatus" -msgid "Slicing..." -msgstr "Dilimleniyor..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Tümünü göster" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 -msgctxt "@label:PrintjobStatus" -msgid "Unable to slice" -msgstr "Dilimlenemedi" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "Son İşleme Uzantısı" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Processing" -msgstr "İşleme" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Slice" -msgstr "Dilimle" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 msgctxt "@label" -msgid "Start the slicing process" -msgstr "Dilimleme sürecini başlat" +msgid "Post Processing Scripts" +msgstr "Son İşleme Dosyaları" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 -msgctxt "@button" -msgid "Cancel" -msgstr "İptal" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +msgctxt "@action" +msgid "Add a script" +msgstr "Dosya ekle" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 msgctxt "@label" -msgid "Time estimation" -msgstr "Süre tahmini" +msgid "Settings" +msgstr "Ayarlar" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +#: /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 "Material estimation" -msgstr "Malzeme tahmini" +msgid "Color scheme" +msgstr "Renk şeması" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1 m" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Malzeme Rengi" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1 g" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Çizgi Tipi" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: /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 "No time estimation available" -msgstr "Süre tahmini yok" +msgid "Compatibility Mode" +msgstr "Uyumluluk Modu" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 msgctxt "@label" -msgid "No cost estimation available" -msgstr "Maliyet tahmini yok" +msgid "Travels" +msgstr "Geçişler" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "Önizleme" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 msgctxt "@label" -msgid "Add a printer" -msgstr "Bir yazıcı ekleyin" +msgid "Helpers" +msgstr "Yardımcılar" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 msgctxt "@label" -msgid "Add a networked printer" -msgstr "Bir ağ yazıcısı ekleyin" +msgid "Shell" +msgstr "Kabuk" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +#: /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 "Add a non-networked printer" -msgstr "Ağ dışı bir yazıcı ekleyin" +msgid "Infill" +msgstr "Dolgu" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "Bulut yazıcısı ekle" +msgid "Starts" +msgstr "Başlangıçlar" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "Bulut yanıtı bekleniyor" +msgid "Only Show Top Layers" +msgstr "Yalnızca Üst Katmanları Göster" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 msgctxt "@label" -msgid "No printers found in your account?" -msgstr "Hesabınızda hiç yazıcı bulunamıyor mu?" +msgid "Show 5 Detailed Layers On Top" +msgstr "En Üstteki 5 Ayrıntılı Katmanı Göster" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 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:" +msgid "Top / Bottom" +msgstr "Üst / Alt" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "Yazıcıyı manuel olarak ekle" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 msgctxt "@label" -msgid "Add printer by IP address" -msgstr "IP adresine göre bir yazıcı ekleyin" +msgid "Inner Wall" +msgstr "İç Duvar" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "Yazıcınızın IP adresini girin." - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "Ekle" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 msgctxt "@label" -msgid "Could not connect to device." -msgstr "Cihaza bağlanılamadı." +msgid "min" +msgstr "min" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "Ultimaker yazıcınıza bağlanamıyor musunuz?" +msgid "max" +msgstr "maks" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +#: /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 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "Yapı Levhası Dengeleme" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 msgctxt "@label" -msgid "The printer at this address has not responded yet." +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 +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 +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 +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" + +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 -msgctxt "@button" -msgid "Back" -msgstr "Geri" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +msgctxt "@action:button" msgid "Connect" msgstr "Bağlan" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "Kullanıcı Anlaşması" +#: /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/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "Reddet ve kapat" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "Ultimaker Cura'ya hoş geldiniz" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +#: /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 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." +msgid "Please enter a valid IP address." +msgstr "Lütfen geçerli bir IP adresi girin." -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "Başlayın" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Yazıcı Adresi" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +#: /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 +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 msgctxt "@label" msgid "Sign in to the Ultimaker platform" msgstr "Ultimaker platformuna giriş yapın" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "Marketplace'den malzeme ayarlarını ve eklentileri ekleyin" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "Malzeme ayarlarınızı ve eklentilerinizi yedekleyin ve senkronize edin" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -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" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 -msgctxt "@button" -msgid "Skip" -msgstr "Atla" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "Ücretsiz Ultimaker Hesabı oluşturun" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 -msgctxt "@label" -msgid "Manufacturer" -msgstr "Üretici" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 -msgctxt "@label" -msgid "Profile author" -msgstr "Profil sahibi" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 -msgctxt "@label" -msgid "Printer name" -msgstr "Yazıcı adı" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 -msgctxt "@text" -msgid "Please name your printer" -msgstr "Lütfen yazıcınızı adlandırın" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "Yenile" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "IP'ye göre bir yazıcı ekleyin" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "Bulut yazıcısı ekle" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "Sorun giderme" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "Makine türleri" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "Malzeme kullanımı" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "Dilim sayısı" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "Yazdırma ayarları" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "Daha fazla bilgi" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 -msgctxt "@label" -msgid "What's New" -msgstr "Yenilikler" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "Boş" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "Sürüm notları" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 -msgctxt "@title:window The argument is the application name." -msgid "About %1" -msgstr "%1 hakkında" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 -msgctxt "@label" -msgid "version: %1" -msgstr "sürüm: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 -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 "" -"Cura, topluluk iş birliği ile Ultimaker B.V. tarafından geliştirilmiştir.\n" -"Cura aşağıdaki açık kaynak projelerini gururla kullanmaktadır:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 -msgctxt "@label" -msgid "Graphical user interface" -msgstr "Grafik kullanıcı arayüzü" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" -msgid "Application framework" -msgstr "Uygulama çerçevesi" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" -msgid "G-code generator" -msgstr "G-code oluşturucu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" -msgid "Interprocess communication library" -msgstr "İşlemler arası iletişim kitaplığı" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" -msgid "Programming language" -msgstr "Programlama dili" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" -msgid "GUI framework" -msgstr "GUI çerçevesi" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" -msgid "GUI framework bindings" -msgstr "GUI çerçeve bağlantıları" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" -msgid "C/C++ Binding library" -msgstr "C/C++ Bağlantı kitaplığı" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 -msgctxt "@label" -msgid "Data interchange format" -msgstr "Veri değişim biçimi" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 -msgctxt "@label" -msgid "Support library for scientific computing" -msgstr "Bilimsel bilgi işlem için destek kitaplığı" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" -msgid "Support library for faster math" -msgstr "Daha hızlı matematik için destek kitaplığı" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" -msgid "Support library for handling STL files" -msgstr "STL dosyalarının işlenmesi için destek kitaplığı" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" -msgid "Support library for handling planar objects" -msgstr "Düzlemsel nesnelerin işlenmesi için destek kitaplığı" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" -msgid "Support library for handling triangular meshes" -msgstr "Üçgen birleşimlerin işlenmesi için destek kitaplığı" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" -msgid "Support library for handling 3MF files" -msgstr "3MF dosyalarının işlenmesi için destek kitaplığı" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 -msgctxt "@label" -msgid "Support library for file metadata and streaming" -msgstr "Dosya meta verileri ve akış için destek kitaplığı" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 -msgctxt "@label" -msgid "Serial communication library" -msgstr "Seri iletişim kitaplığı" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 -msgctxt "@label" -msgid "ZeroConf discovery library" -msgstr "ZeroConf keşif kitaplığı" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" -msgid "Polygon clipping library" -msgstr "Poligon kırpma kitaplığı" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@Label" -msgid "Static type checker for Python" -msgstr "Python için statik tür denetleyicisi" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@Label" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "SSL güvenilirliğini doğrulamak için kök sertifikalar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 -msgctxt "@Label" -msgid "Python Error tracking library" -msgstr "Python Hata takip kitaplığı" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 -msgctxt "@label" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "Prusa Research tarafından geliştirilen Poligon paketleme kitaplığı" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -msgctxt "@label" -msgid "Python bindings for libnest2d" -msgstr "libnest2d için Python bağlamaları" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" -msgid "Support library for system keyring access" -msgstr "Sistem anahtarlık erişimi için destek kitaplığı" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" -msgid "Python extensions for Microsoft Windows" -msgstr "Microsoft Windows için Python uzantıları" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" -msgid "Font" -msgstr "Yazı tipi" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" -msgid "SVG icons" -msgstr "SVG simgeleri" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" -msgid "Linux cross-distribution application deployment" -msgstr "Linux çapraz-dağıtım uygulama dağıtımı" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Dosya aç" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 -msgctxt "@action:button" -msgid "Import all as models" -msgstr "Tümünü model olarak içe aktar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 -msgctxt "@title:window" -msgid "Save Project" -msgstr "Projeyi Kaydet" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Ekstruder %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & malzeme" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 -msgctxt "@action:label" -msgid "Material" -msgstr "Malzeme" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "Kaydederken proje özetini bir daha gösterme" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 -msgctxt "@action:button" -msgid "Save" -msgstr "Kaydet" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 -msgctxt "@title:window" -msgid "Discard or Keep changes" -msgstr "Değişiklikleri iptal et veya kaydet" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 -msgctxt "@title:column" -msgid "Profile settings" -msgstr "Profil ayarları" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 -msgctxt "@title:column" -msgid "Current changes" -msgstr "Mevcut değişiklikler" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 -msgctxt "@option:discardOrKeep" -msgid "Always ask me this" -msgstr "Her zaman sor" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 -msgctxt "@option:discardOrKeep" -msgid "Discard and never ask again" -msgstr "İptal et ve bir daha sorma" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 -msgctxt "@option:discardOrKeep" -msgid "Keep and never ask again" -msgstr "Kaydet ve bir daha sorma" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 -msgctxt "@action:button" -msgid "Discard changes" -msgstr "Değişiklikleri sil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 -msgctxt "@action:button" -msgid "Keep changes" -msgstr "Değişiklikleri tut" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 -msgctxt "@title:window" -msgid "Open project file" -msgstr "Proje dosyası aç" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "Seçimimi hatırla" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 -msgctxt "@action:button" -msgid "Open as project" -msgstr "Proje olarak aç" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 -msgctxt "@action:button" -msgid "Import models" -msgstr "Modelleri içe aktar" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 -msgctxt "@label" -msgid "Active print" -msgstr "Geçerli yazdırma" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 -msgctxt "@label" -msgid "Job Name" -msgstr "İşin Adı" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 -msgctxt "@label" -msgid "Printing Time" -msgstr "Yazdırma süresi" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 -msgctxt "@label" -msgid "Estimated time left" -msgstr "Kalan tahmini süre" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Add printer" -msgstr "Yazıcı ekle" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 -msgctxt "@button" -msgid "Manage printers" -msgstr "Yazıcıları yönet" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "Bağlı yazıcılar" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "Önayarlı yazıcılar" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 -msgctxt "@label" -msgid "Print settings" -msgstr "Yazdırma ayarları" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -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/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 -msgctxt "@label" -msgid "Profile" -msgstr "Profil" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 -msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "" -"Bazı ayar/geçersiz kılma değerleri profilinizde saklanan değerlerden farklıdır.\n" -"\n" -"Profil yöneticisini açmak için tıklayın." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 -msgctxt "@label:header" -msgid "Custom profiles" -msgstr "Özel profiller" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "Geçerli değişiklikleri iptal et" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "Önerilen" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "Özel" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "Açık" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "Kapalı" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" -msgstr "Deneysel" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 -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" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 -msgctxt "@label" -msgid "Profiles" -msgstr "Profiller" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 -msgctxt "@label" -msgid "Support" -msgstr "Destek" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 -msgctxt "@label" -msgid "Gradual infill" -msgstr "Aşamalı dolgu" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 -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/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "Yapıştırma" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 -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/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "Projeyi Kaydet..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "Ağ etkin yazıcılar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "Yerel yazıcılar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "Malzeme" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "Favoriler" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "Genel" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 -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/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 -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/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "Kopya Sayısı" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "&Projeyi Kaydet..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "&Dışa Aktar..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "Seçimi Dışa Aktar..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "Yapılandırmalar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "Özel" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "Yazıcı" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "Etkin" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "Malzeme" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 -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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 -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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 -msgctxt "@label" -msgid "Select configuration" -msgstr "Yapılandırma seç" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 -msgctxt "@label" -msgid "Configurations" -msgstr "Yapılandırmalar" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "Mağaza" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "Dosya Aç..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "&Yazıcı" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Malzeme" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Etkin Ekstruder olarak ayarla" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Ekstruderi Etkinleştir" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Ekstruderi Devre Dışı Bırak" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "En Son Öğeyi Aç" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "Görünür ayarlar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "Tüm Kategorileri Daralt" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "Ayar Görünürlüğünü Yönet..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "&Kamera konumu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "Kamera görüşü" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "Perspektif" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "Ortografik" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "&Yapı levhası" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 -msgctxt "@label" -msgid "View type" -msgstr "Görüntüleme tipi" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 -msgctxt "@label" -msgid "Is printed as support." -msgstr "Destek olarak basıldı." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "Bu model ile çakışan diğer modeller değiştirilir." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "Bu model ile çakışan dolgu değiştirilir." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "Bu model ile çakışmalar desteklenmez." - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Profiller" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 -msgctxt "@action:button" -msgid "Activate" -msgstr "Etkinleştir" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "Oluştur" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "Çoğalt" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 -msgctxt "@action:button" -msgid "Rename" -msgstr "Yeniden adlandır" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -msgctxt "@action:button" -msgid "Import" -msgstr "İçe Aktar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -msgctxt "@action:button" -msgid "Export" -msgstr "Dışa Aktar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Profil Oluştur" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "Bu profil için lütfen bir ad girin." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Profili Çoğalt" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Kaldırmayı Onayla" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Profili Yeniden Adlandır" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Profili İçe Aktar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Profili Dışa Aktar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "Yazıcı: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "Profili geçerli ayarlar/geçersiz kılmalar ile güncelle" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "Geçerli ayarlarınız seçilen profille uyumlu." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Küresel Ayarlar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 -msgctxt "@title:tab" -msgid "General" -msgstr "Genel" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 -msgctxt "@label" -msgid "Interface" -msgstr "Arayüz" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 -msgctxt "@label" -msgid "Currency:" -msgstr "Para Birimi:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 -msgctxt "@label" -msgid "Theme:" -msgstr "Tema:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Ayarlar değiştirilirken otomatik olarak dilimle." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Otomatik olarak dilimle" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "Görünüm şekli" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Dışarıda kalan alanı göster" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "Model hatalarını görüntüle" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Öğeyi seçince kamerayı ortalayın" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Kamera yakınlaştırma yönünü ters çevir." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "Farenin hareket yönüne göre yakınlaştır" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "Modellerin birbirinden ayrı olduğundan emin olduğundan emin olun" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "Modelleri otomatik olarak yapı tahtasına indirin" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "G-code okuyucuda uyarı mesajı göster." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "G-code okuyucuda uyarı mesajı" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "Katman, uyumluluk moduna zorlansın mı?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "Cura kapatıldığı yerden mi başlatılsın?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "Başlangıçtaki pencere konumuna dönülsün" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "Kamera oluşturma:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 -msgid "Perspective" -msgstr "Perspektif" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 -msgid "Orthographic" -msgstr "Ortografik" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Dosyaların açılması ve kaydedilmesi" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Tek bir Cura örneği kullan" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Büyük modelleri ölçeklendirin" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Çok küçük modelleri ölçeklendirin" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "Yüklendikten sonra modeller seçilsin mi?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "Yüklendiğinde modelleri seç" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "Makine ön ekini iş adına ekleyin" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "Projeyi kaydederken özet iletişim kutusunu göster" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "Bir proje dosyası açıldığında varsayılan davranış" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "Bir proje dosyası açıldığında varsayılan davranış: " - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "Her zaman sor" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Her zaman proje olarak aç" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Her zaman modelleri içe aktar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "Değiştirilen ayarları her zaman at" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "Değiştirilen ayarları her zaman yeni profile taşı" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 -msgctxt "@label" -msgid "Privacy" -msgstr "Gizlilik" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 -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." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "(Anonim) yazdırma bilgisi gönder" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 -msgctxt "@action:button" -msgid "More information" -msgstr "Daha fazla bilgi" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 -msgctxt "@label" -msgid "Updates" -msgstr "Güncellemeler" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Başlangıçta güncellemeleri kontrol edin" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 -msgctxt "@option:radio" -msgid "Stable releases only" -msgstr "Yalnızca istikrarlı sürümler" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 -msgctxt "@option:radio" -msgid "Stable and Beta releases" -msgstr "İstikrarlı ve Beta sürümler" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 -msgctxt "@option:check" -msgid "Get notifications for plugin updates" -msgstr "Eklenti güncellemeleri için bildirim alın" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "Bilgi" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "Çap Değişikliğini Onayla" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "Görünen Ad" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "Malzeme Türü" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "Renk" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "Özellikler" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "Yoğunluk" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "Çap" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "Filaman masrafı" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "Filaman ağırlığı" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "Filaman uzunluğu" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Metre başına maliyet" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "Malzemeyi Ayır" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "Tanım" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Yapışma Bilgileri" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "Oluştur" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Çoğalt" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "Yazıcılarla Senkronize Et" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "Yazıcı" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "Malzemeyi İçe Aktar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "Malzemeyi Dışa Aktar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 -msgctxt "@title:window" -msgid "Sync materials with printers" -msgstr "Malzemeleri yazıcılarla senkronize et" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 -msgctxt "@title:header" -msgid "Sync materials with printers" -msgstr "Malzemeleri yazıcılarla senkronize et" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 -msgctxt "@button" -msgid "Start" -msgstr "Başlat" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 -msgctxt "@button" -msgid "Why do I need to sync material profiles?" -msgstr "Malzeme profillerini neden senkronize etmem gerekiyor?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 -msgctxt "@title:header" -msgid "Sign in" -msgstr "Giriş yap" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 -msgctxt "@button" -msgid "Sync materials with USB" -msgstr "Malzemeleri USB ile senkronize et" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 -msgctxt "@button" -msgid "Troubleshooting" -msgstr "Sorun giderme" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 -msgctxt "@text Asking the user whether printers are missing in a list." -msgid "Printers missing?" -msgstr "Yazıcı eksik mi?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 -msgctxt "@button" -msgid "Refresh List" -msgstr "Listeyi Yenile" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 -msgctxt "@button" -msgid "Try again" -msgstr "Yeniden dene" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Done" -msgstr "Bitti" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 -msgctxt "@button" -msgid "Sync" -msgstr "Senkronize et" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 -msgctxt "@button" -msgid "Syncing" -msgstr "Senkronize ediliyor" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 -msgctxt "@title:header" -msgid "No printers found" -msgstr "Yazıcı bulunamadı" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 -msgctxt "@button" -msgid "Refresh" -msgstr "Yenile" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 -msgctxt "@title:header" -msgid "Sync material profiles via USB" -msgstr "Malzeme profillerini USB üzerinden senkronize edin" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 -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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 -msgctxt "@button" -msgid "How to load new material profiles to my printer" -msgstr "Yazıcıma yeni malzeme profilleri nasıl yüklenir" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Export material archive" -msgstr "Malzeme arşivini dışa aktar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "Tüm Malzemeleri Dışa Aktar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Görünürlüğü Ayarlama" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Tümünü denetle" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 -msgctxt "@title:tab" -msgid "Printers" -msgstr "Yazıcılar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "Hesaplanmış" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "Ayar" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "Profil" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "Geçerli" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "Birim" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "Yazıcıya bağlı değil" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "Yazıcı komutları kabul etmiyor" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "Bakımda. Lütfen yazıcıyı kontrol edin" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "Yazıcı bağlantısı koptu" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "Yazdırılıyor..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "Duraklatıldı" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "Hazırlanıyor..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Lütfen yazıcıyı çıkarın" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "Yazdırmayı Durdur" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "Yazdırmayı iptal etmek istediğinizden emin misiniz?" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 -msgctxt "@label:button" -msgid "My printers" -msgstr "Yazıcılarım" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 -msgctxt "@label:button" -msgid "Print jobs" -msgstr "Yazdırma görevleri" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/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." - -#: /home/clamboo/Desktop/Cura/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." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 -msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "Ultimaker desteği" - -#: /home/clamboo/Desktop/Cura/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." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 -msgctxt "@label:button" -msgid "Ask a question" -msgstr "Soru gönder" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 -msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "Ultimaker Topluluğundan yardım alın." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 -msgctxt "@label:button" -msgid "Report a bug" -msgstr "Hata bildirin" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 -msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "Ultimaker web sitesini ziyaret edin." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "Yazıcı kontrolü" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "Jog Konumu" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "Jog Mesafesi" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "G-code Gönder" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "Ekstrüder" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "Bu sıcak ucun geçerli sıcaklığı." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "Sıcak ucun ön ısıtma sıcaklığı." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "İptal Et" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "Ön ısıtma" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "Bu ekstruderdeki malzemenin rengi." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "Bu ekstruderdeki malzeme." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "Bu ekstrudere takılan nozül." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "Yazıcı bağlı değil." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "Yapı levhası" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -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/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "Yatağın ön ısıtma sıcaklığı." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -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/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "Giriş yap" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 msgctxt "@text" msgid "" "- Add material profiles and plug-ins from the Marketplace\n" @@ -5327,374 +3462,2289 @@ msgstr "" "- 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" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" msgid "Create a free Ultimaker account" msgstr "Ücretsiz Ultimaker hesabı oluşturun" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "Son güncelleme: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Ultimaker hesabı" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 -msgctxt "@button" -msgid "Sign Out" -msgstr "Çıkış yap" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "Kontrol ediliyor..." -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "Hesap senkronize edildi" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "Bir sorun oluştu..." -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "Bekleyen güncellemeleri yükle" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "Hesap güncellemelerini kontrol et" -#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "Başlıksız" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "Son güncelleme: %1" -#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "Ultimaker hesabı" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" -msgid "No items to select from" -msgstr "Seçilecek öğe yok" +msgid "No time estimation available" +msgstr "Süre tahmini yok" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Preview" +msgstr "Önizleme" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Material estimation" +msgstr "Malzeme tahmini" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1 g" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +msgctxt "@label:PrintjobStatus" +msgid "Slicing..." +msgstr "Dilimleniyor..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Processing" +msgstr "İşleme" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +msgctxt "@button" +msgid "Slice" +msgstr "Dilimle" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Cancel" +msgstr "İptal" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "Çevrimiçi Sorun Giderme Kılavuzunu" +msgid "Show Online Troubleshooting" +msgstr "Çevrimiçi Sorun Giderme Kılavuzunu Göster" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "Tam Ekrana Geç" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "Tam Ekrandan Çık" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "&Geri Al" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "&Yinele" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "&Çıkış" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "3 Boyutlu Görünüm" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "Önden Görünüm" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "Yukarıdan Görünüm" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "Alttan Görünüm" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "Sol Taraftan Görünüm" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "Sağ Taraftan Görünüm" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "Cura’yı yapılandır..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "&Yazıcı Ekle..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "Yazıcıları Yönet..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Malzemeleri Yönet..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu" +#: /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." msgid "Add more materials from Marketplace" msgstr "Mağazadan daha fazla malzeme ekle" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 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/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "&Geçerli değişiklikleri iptal et" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 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/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "Profilleri Yönet..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Çevrimiçi Belgeleri Göster" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "Hata Bildir" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "Yenilikler" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "Hakkında..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "Seçileni Sil" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "Seçileni Ortala" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "Seçileni Çoğalt" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "Modeli Sil" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "Modeli Platformda Ortala" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "Modelleri Gruplandır" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "Model Grubunu Çöz" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "&Modelleri Birleştir" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "&Modeli Çoğalt..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "Tüm modelleri Seç" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "Yapı Levhasını Temizle" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "Tüm Modelleri Yeniden Yükle" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "Tüm Modelleri Tüm Yapı Levhalarına Yerleştir" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "Tüm Modelleri Düzenle" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "Seçimi Düzenle" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "Tüm Model Konumlarını Sıfırla" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "Tüm Model ve Dönüşümleri Sıfırla" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "&Dosya Aç..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "&Yeni Proje..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "Yapılandırma Klasörünü Göster" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "&Mağazayı Göster" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "Yazıcılarım" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "Yazdırma görevleri" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +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 +msgctxt "@tooltip:button" +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 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "Ultimaker desteği" + +#: /home/trin/Gedeeld/Projects/Cura/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." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "Ultimaker Topluluğundan yardım alın." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "Ultimaker web sitesini ziyaret edin." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 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." +msgid "Hex" +msgstr "Altıgen" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 -msgctxt "@label Header for list of settings." -msgid "Affects" -msgstr "Etkileri" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 -msgctxt "@label Header for list of settings." -msgid "Affected By" -msgstr ".........den etkilenir" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 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." +msgid "This package will be installed after restarting." +msgstr "Bu paket yeniden başlatmanın ardından kurulacak." -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 -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/Cura.qml:463 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +msgctxt "@title:tab" +msgid "General" +msgstr "Genel" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +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 +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 +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 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Profiller" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +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 +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 +msgctxt "@title:window" +msgid "Open file(s)" +msgstr "Dosya aç" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +msgctxt "@window:title" +msgid "Install Package" +msgstr "Paketi Kur" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Dosya Aç" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +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 +msgctxt "@title:window" +msgid "Add Printer" +msgstr "Yazıcı Ekle" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +msgctxt "@title:window" +msgid "What's New" +msgstr "Yenilikler" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" +msgid "version: %1" +msgstr "sürüm: %1" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +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 +msgctxt "@info:credit" msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." +"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura proudly uses the following open source projects:" msgstr "" -"Bu ayarın değeri profilden farklıdır.\n" -"\n" -"Profil değerini yenilemek için tıklayın." +"Cura, topluluk iş birliği ile Ultimaker B.V. tarafından geliştirilmiştir.\n" +"Cura aşağıdaki açık kaynak projelerini gururla kullanmaktadır:" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"Bu ayar normal olarak yapılır ama şu anda mutlak değer ayarı var.\n" -"\n" -"Hesaplanan değeri yenilemek için tıklayın." +msgid "Graphical user interface" +msgstr "Grafik kullanıcı arayüzü" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +msgctxt "@label" +msgid "Application framework" +msgstr "Uygulama çerçevesi" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label" +msgid "G-code generator" +msgstr "G-code oluşturucu" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label" +msgid "Interprocess communication library" +msgstr "İşlemler arası iletişim kitaplığı" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label" +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" +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" +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" +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" +msgid "Programming language" +msgstr "Programlama dili" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +msgctxt "@label" +msgid "GUI framework" +msgstr "GUI çerçevesi" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label" +msgid "GUI framework bindings" +msgstr "GUI çerçeve bağlantıları" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label" +msgid "C/C++ Binding library" +msgstr "C/C++ Bağlantı kitaplığı" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label" +msgid "Data interchange format" +msgstr "Veri değişim biçimi" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label" +msgid "Font" +msgstr "Yazı tipi" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +msgctxt "@label" +msgid "Polygon clipping library" +msgstr "Poligon kırpma kitaplığı" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +msgctxt "@label" +msgid "JSON parser" +msgstr "JSON ayrıştırıcı" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label" +msgid "Utility functions, including an image loader" +msgstr "Kullanım işlevleri, bir resim yükleyici dâhil" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label" +msgid "Utility library, including Voronoi generation" +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" +msgid "Root Certificates for validating SSL trustworthiness" +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" +msgid "Compatibility between Python 2 and 3" +msgstr "Python 2 ve 3 arasında uyumluluk" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label" +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" +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" +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" +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" +msgid "Serial communication library" +msgstr "Seri iletişim kitaplığı" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label" +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" +msgid "Python Error tracking library" +msgstr "Python Hata takip kitaplığı" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label" +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" +msgid "ZeroConf discovery library" +msgstr "ZeroConf keşif kitaplığı" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 +msgctxt "@label" +msgid "Universal build system configuration" +msgstr "Evrensel yapı sistemi yapılandırması" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 +msgctxt "@label" +msgid "Dependency and package manager" +msgstr "Bağımlılık ve paket yöneticisi" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label" +msgid "Packaging Python-applications" +msgstr "Python uygulamalarını paketleme" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label" +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" +msgid "Generating Windows installers" +msgstr "Windows yükleyicileri oluşturma" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "Seçimimi hatırla" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +msgctxt "@action:button" +msgid "Open as project" +msgstr "Proje olarak aç" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +msgctxt "@action:button" +msgid "Import models" +msgstr "Modelleri içe aktar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 "" +"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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +msgctxt "@title:column" +msgid "Profile settings" +msgstr "Profil ayarları" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +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 +msgctxt "@option:discardOrKeep" +msgid "Always ask me this" +msgstr "Her zaman sor" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +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 +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 +msgctxt "@action:button" +msgid "Discard changes" +msgstr "Değişiklikleri sil" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +msgctxt "@action:button" +msgid "Keep changes" +msgstr "Değişiklikleri tut" + +#: /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?" +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 +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 +msgctxt "@title:window" +msgid "Save Project" +msgstr "Projeyi Kaydet" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:175 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Ekstruder %1" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & malzeme" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +msgctxt "@action:label" +msgid "Material" +msgstr "Malzeme" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +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 +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 +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 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "&Ayarlar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Marketplace" +msgstr "Mağaza" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Marketplace" +msgstr "Mağaza" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@label" +msgid "Select configuration" +msgstr "Yapılandırma seç" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Enabled" +msgstr "Etkin" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +msgctxt "@label" +msgid "Material" +msgstr "Malzeme" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +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 +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 +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 +msgctxt "@label" +msgid "Number of Copies" +msgstr "Kopya Sayısı" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "Uzantılar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "&Projeyi Kaydet..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:menu menubar:toplevel" +msgid "&Help" +msgstr "&Yardım" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "Favoriler" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "Open File(s)..." +msgstr "Dosya Aç..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:settings" +msgid "&Printer" +msgstr "&Yazıcı" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Local printers" +msgstr "Yerel yazıcılar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "Görünür ayarlar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:menu menubar:toplevel" +msgid "&View" +msgstr "&Görünüm" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "Camera view" +msgstr "Kamera görüşü" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "Ortografik" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "Yazdırılıyor..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "Duraklatıldı" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "Hazırlanıyor..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Abort Print" +msgstr "Yazdırmayı Durdur" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Is printed as support." +msgstr "Destek olarak basıldı." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Defaults" +msgstr "Varsayılanlar" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +msgctxt "@label" +msgid "Interface" +msgstr "Arayüz" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +msgctxt "@heading" +msgid "-- incomplete --" +msgstr "-- eksik --" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +msgctxt "@label" +msgid "Currency:" +msgstr "Para Birimi:" + +#: /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." +msgid "Theme*:" +msgstr "Tema*:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +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 +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "Otomatik olarak dilimle" + +#: /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." +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 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "Görünüm şekli" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "Kamera oluşturma:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +msgid "Perspective" +msgstr "Perspektif" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +msgid "Orthographic" +msgstr "Ortografik" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "Her zaman sor" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +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 +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 +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 +msgctxt "@label" +msgid "Profiles" +msgstr "Profiller" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +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 +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 +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 +msgctxt "@label" +msgid "Privacy" +msgstr "Gizlilik" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +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 +msgctxt "@label" +msgid "Updates" +msgstr "Güncellemeler" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +msgctxt "@action:button" +msgid "Rename" +msgstr "Yeniden adlandır" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Import" +msgstr "İçe Aktar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@title:window" +msgid "Import Material" +msgstr "Malzemeyi İçe Aktar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Material" +msgstr "Malzemeyi Dışa Aktar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +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 +msgctxt "@button" +msgid "Start" +msgstr "Başlat" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +msgctxt "@title:header" +msgid "Sign in" +msgstr "Giriş yap" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +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 +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 +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 +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 +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 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "Sorun giderme" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +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 +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 +msgctxt "@button" +msgid "Refresh List" +msgstr "Listeyi Yenile" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +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 +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 +msgctxt "@button" +msgid "Sync" +msgstr "Senkronize et" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +msgctxt "@button" +msgid "Syncing" +msgstr "Senkronize ediliyor" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +msgctxt "@title:header" +msgid "No printers found" +msgstr "Yazıcı bulunamadı" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +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 +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 +msgctxt "@button" +msgid "Refresh" +msgstr "Yenile" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +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 +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 +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 +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 +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 +msgctxt "@button" +msgid "How to load new material profiles to my printer" +msgstr "How to load new material profiles to my printer" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:687 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:299 +msgctxt "@button" +msgid "Back" +msgstr "Geri" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +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 +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 +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 +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 +msgctxt "@label" +msgid "Display Name" +msgstr "Görünen Ad" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Material Type" +msgstr "Malzeme Türü" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title" +msgid "Material color picker" +msgstr "Malzeme rengi seçici" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Density" +msgstr "Yoğunluk" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Filament Cost" +msgstr "Filaman masrafı" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Filament length" +msgstr "Filaman uzunluğu" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Unlink Material" +msgstr "Malzemeyi Ayır" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Adhesion Information" +msgstr "Yapışma Bilgileri" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Print settings" +msgstr "Yazdırma ayarları" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@action:button" +msgid "Update profile." +msgstr "Profili güncelleyin." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Küresel Ayarlar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Profili Dışa Aktar" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "Görünürlüğü Ayarlama" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" -msgid "Search settings" -msgstr "Arama ayarları" +msgid "Check all" +msgstr "Tümünü denetle" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 -msgctxt "@action:menu" -msgid "Copy value to all extruders" -msgstr "Değeri tüm ekstruderlere kopyala" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "Ekstrüder" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 -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/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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 -msgctxt "@action:menu" -msgid "Hide this setting" -msgstr "Bu ayarı gizle" +#: /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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 -msgctxt "@action:menu" -msgid "Don't show this setting" -msgstr "Bu ayarı gösterme" +#: /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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 -msgctxt "@action:menu" -msgid "Keep this setting visible" -msgstr "Bu ayarı görünür yap" +#: /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/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 +#: /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 +msgctxt "@label" +msgid "Active print" +msgstr "Geçerli yazdırma" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +msgctxt "@label" +msgid "Job Name" +msgstr "İşin Adı" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Estimated time left" +msgstr "Kalan tahmini süre" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip" +msgid "" +"Some setting/override values are different from the values stored in the profile.\n" +"\n" +"Click to open the profile manager." +msgstr "" +"Bazı ayar/geçersiz kılma değerleri profilinizde saklanan değerlerden farklıdır.\n" +"\n" +"Profil yöneticisini açmak için tıklayın." + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@label:Should be short" +msgid "On" +msgstr "Açık" + +#: /home/trin/Gedeeld/Projects/Cura/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" + +#: /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 "özel profili etkin ve bazı ayarların üstüne yazdınız." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +msgctxt "@info" +msgid "custom profile is overriding some settings." +msgstr "özel profili bazı ayarları geçersiz kılıyor." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79 +msgctxt "@info" +msgid "Some settings were changed." +msgstr "Bazı ayarlar değiştirildi." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +msgctxt "@label" +msgid "Adhesion" +msgstr "Yapıştırma" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +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 +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" +msgstr "Çözünürlük" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +msgctxt "@label" +msgid "Support" +msgstr "Destek" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +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." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31 +msgctxt "@error" +msgid "Configuration not supported" +msgstr "Yapılandırma desteklenmiyor" + +#: /home/trin/Gedeeld/Projects/Cura/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 "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 +msgctxt "@button:label" +msgid "Learn more" +msgstr "Daha fazla bilgi edinin" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +msgctxt "@title:column" +msgid "Setting" +msgstr "Ayar" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +msgctxt "@title:column" +msgid "Profile" +msgstr "Profil" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +msgctxt "@title:column" +msgid "Current" +msgstr "Geçerli" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@placeholder" +msgid "Search" +msgstr "Ara" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5705,140 +5755,360 @@ msgstr "" "\n" "Bu ayarları görmek için tıklayın." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "Bu paket yeniden başlatmanın ardından kurulacak." +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/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 -msgctxt "@title:tab" -msgid "Settings" -msgstr "Ayarlar" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +msgctxt "@label Header for list of settings." +msgid "Affects" +msgstr "Etkileri" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "%1 kapatılıyor" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +msgctxt "@label Header for list of settings." +msgid "Affected By" +msgstr ".........den etkilenir" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 -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/Settings/SettingItem.qml:190 +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/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 -msgctxt "@window:title" -msgid "Install Package" -msgstr "Paketi Kur" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +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/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Dosya Aç" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +msgctxt "@label" +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"Bu ayarın değeri profilden farklıdır.\n" +"\n" +"Profil değerini yenilemek için tıklayın." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 -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/Settings/SettingItem.qml:334 +msgctxt "@label" +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"Bu ayar normal olarak yapılır ama şu anda mutlak değer ayarı var.\n" +"\n" +"Hesaplanan değeri yenilemek için tıklayın." -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 -msgctxt "@title:window" -msgid "Add Printer" -msgstr "Yazıcı Ekle" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +msgctxt "@label:textbox" +msgid "Search settings" +msgstr "Arama ayarları" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 -msgctxt "@title:window" +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:menu" +msgid "Hide this setting" +msgstr "Bu ayarı gizle" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info:tooltip" +msgid "3D View" +msgstr "3 Boyutlu Görünüm" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "Yukarıdan Görünüm" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "Sağ görünüm" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Add a Cloud printer" +msgstr "Bulut yazıcısı ekle" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@button" +msgid "Add printer manually" +msgstr "Yazıcıyı manuel olarak ekle" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +msgctxt "@label" +msgid "Manufacturer" +msgstr "Üretici" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Printer name" +msgstr "Yazıcı adı" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Refresh" +msgstr "Yenile" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "Sorun giderme" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Add" +msgstr "Ekle" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +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 +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 +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 +msgctxt "@button" +msgid "Connect" +msgstr "Bağlan" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +msgctxt "@button" +msgid "Skip" +msgstr "Atla" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +msgctxt "@text" +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 +msgctxt "@label" +msgid "Empty" +msgstr "Boş" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" msgid "What's New" msgstr "Yenilikler" -#: PerObjectSettingsTool/plugin.json +#: /home/trin/Gedeeld/Projects/Cura/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 "Provides the Per Model Settings." -msgstr "Model Başına Ayarları sağlar." +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." -#: PerObjectSettingsTool/plugin.json +#: ModelChecker/plugin.json msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Model Başına Ayarlar Aracı" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" - -#: 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" +msgid "Model Checker" +msgstr "Model Kontrol Edici" #: 3MFReader/plugin.json msgctxt "description" @@ -5850,65 +6120,15 @@ msgctxt "name" msgid "3MF Reader" msgstr "3MF Okuyucu" -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Ultimaker Biçim Paketleri yazmak için destek sağlar." +msgid "Provides support for writing 3MF files." +msgstr "3MF dosyalarının yazılması için destek sağlar." -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "name" -msgid "UFP Writer" -msgstr "UPF Yazıcı" - -#: 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çü" - -#: 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" - -#: 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ı" - -#: 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ü" - -#: 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ç" +msgid "3MF Writer" +msgstr "3MF Yazıcı" #: AMFReader/plugin.json msgctxt "description" @@ -5920,25 +6140,35 @@ msgctxt "name" msgid "AMF Reader" msgstr "AMF Okuyucu" -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Bir sıkıştırılmış arşivden g-code okur." +msgid "Backup and restore your configuration." +msgstr "Yapılandırmanızı yedekleyin ve geri yükleyin." -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Sıkıştırılmış G-code Okuyucusu" +msgid "Cura Backups" +msgstr "Cura Yedeklemeleri" -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/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ı" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "CuraEngine arka dilimleme ucuna bağlantı sağlar." -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "Son İşleme" +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" @@ -5950,65 +6180,15 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Cura Profili Yazıcı" -#: USBPrinting/plugin.json +#: DigitalLibrary/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." +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." -#: USBPrinting/plugin.json +#: DigitalLibrary/plugin.json msgctxt "name" -msgid "USB printing" -msgstr "USB yazdırma" - -#: 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ı" - -#: 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" - -#: 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" - -#: 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" - -#: 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ı" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" #: FirmwareUpdateChecker/plugin.json msgctxt "description" @@ -6020,45 +6200,55 @@ msgctxt "name" msgid "Firmware Update Checker" msgstr "Bellenim Güncelleme Denetleyicisi" -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/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." +msgid "Provides a machine actions for updating firmware." +msgstr "Aygıt yazılımını güncellemeye yönelik makine eylemleri sağlar." -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Slice info" -msgstr "Dilim bilgisi" +msgid "Firmware Updater" +msgstr "Aygıt Yazılımı Güncelleyici" -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/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." +msgid "Reads g-code from a compressed archive." +msgstr "Bir sıkıştırılmış arşivden g-code okur." -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "Malzeme Profilleri" +msgid "Compressed G-code Reader" +msgstr "Sıkıştırılmış G-code Okuyucusu" -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/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." +msgid "Writes g-code to a compressed archive." +msgstr "G-code’u bir sıkıştırılmış arşive yazar." -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/plugin.json msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" +msgid "Compressed G-code Writer" +msgstr "Sıkıştırılmış G-code Yazıcısı" -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "Yeni Cura paketleri bulun, yönetin ve kurun." +msgid "Provides support for importing profiles from g-code files." +msgstr "G-code dosyalarından profilleri içe aktarmak için destek sağlar." -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "Araç kutusu" +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" @@ -6070,245 +6260,155 @@ 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 Simulation view." -msgstr "Simülasyon görünümünü sunar." +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ü" -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/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." +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Anonim dilim bilgisi gönderir. Tercihlerden devre dışı bırakılabilir." -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/plugin.json msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "4.5'ten 4.6'ya Sürüm Yükseltme" +msgid "Slice info" +msgstr "Dilim bilgisi" -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/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." +msgid "Provides a normal solid mesh view." +msgstr "Normal gerçek bir ağ görünümü sağlar." -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/plugin.json msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "2.5’ten 2.6’ya Sürüm Yükseltme" +msgid "Solid View" +msgstr "Gerçek Görünüm" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/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." +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" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/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/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/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/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/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/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/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/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/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" - -#: 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/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/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/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/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/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/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/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/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/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" - -#: 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ı" +msgid "Support Eraser" +msgstr "Destek Silici" #: TrimeshReader/plugin.json msgctxt "description" @@ -6330,45 +6430,645 @@ msgctxt "name" msgid "UFP Reader" msgstr "UFP Okuyucu" -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Normal gerçek bir ağ görünümü sağlar." +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Ultimaker Biçim Paketleri yazmak için destek sağlar." -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "name" -msgid "Solid View" -msgstr "Gerçek Görünüm" +msgid "UFP Writer" +msgstr "UPF Yazıcı" -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "3MF dosyalarının yazılması için destek sağlar." +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.)" -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "name" -msgid "3MF Writer" -msgstr "3MF Yazıcı" +msgid "Ultimaker machine actions" +msgstr "Ultimaker makine eylemleri" -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Cura’da görüntüleme aşaması sunar." +msgid "Manages network connections to Ultimaker networked printers." +msgstr "Ultimaker ağındaki yazıcılar için ağ bağlantılarını yönetir." -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "name" -msgid "Monitor Stage" -msgstr "Görüntüleme Aşaması" +msgid "Ultimaker Network Connection" +msgstr "Ultimaker Ağ Bağlantısı" -#: ModelChecker/plugin.json +#: USBPrinting/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." +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." -#: ModelChecker/plugin.json +#: USBPrinting/plugin.json msgctxt "name" -msgid "Model Checker" -msgstr "Model Kontrol Edici" +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." diff --git a/resources/i18n/tr_TR/fdmextruder.def.json.po b/resources/i18n/tr_TR/fdmextruder.def.json.po index e4fc701181..96099fd69a 100644 --- a/resources/i18n/tr_TR/fdmextruder.def.json.po +++ b/resources/i18n/tr_TR/fdmextruder.def.json.po @@ -1,20 +1,19 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0000\n" -"PO-Revision-Date: 2021-04-16 15:03+0200\n" -"Last-Translator: Bothof \n" -"Language-Team: Turkish\n" -"Language: tr_TR\n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.4.1\n" #: fdmextruder.def.json msgctxt "machine_settings label" diff --git a/resources/i18n/tr_TR/fdmprinter.def.json.po b/resources/i18n/tr_TR/fdmprinter.def.json.po index f3362c7c9f..cb5e93676a 100644 --- a/resources/i18n/tr_TR/fdmprinter.def.json.po +++ b/resources/i18n/tr_TR/fdmprinter.def.json.po @@ -1,20 +1,19 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 11:59+0000\n" -"PO-Revision-Date: 2022-01-10 12:00+0100\n" -"Last-Translator: Lionbridge \n" -"Language-Team: Turkish , Turkish \n" -"Language: tr_TR\n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.3\n" #: fdmprinter.def.json msgctxt "machine_settings label" @@ -71,8 +70,8 @@ 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" -"." +"En son çalıştırılacak G-code komutları (\n" +" ile ayrılır)." #: fdmprinter.def.json msgctxt "material_guid label" @@ -466,8 +465,8 @@ msgstr "Makinenin Başlığı ve Fan Poligonu" #: fdmprinter.def.json 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)." +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" @@ -739,6 +738,16 @@ 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" @@ -959,6 +968,56 @@ 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" @@ -990,14 +1049,24 @@ msgid "Optimize the order in which walls are printed so as to reduce the number 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 "outer_inset_first label" -msgid "Outer Before Inner Walls" -msgstr "Önce Dış Sonra İç Duvarlar" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Duvar Sıralaması" #: fdmprinter.def.json -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 "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" @@ -1010,84 +1079,54 @@ msgid "Prints an extra wall at every other layer. This way infill gets caught be 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 "travel_compensate_overlapping_walls_enabled label" -msgid "Compensate Wall Overlaps" -msgstr "Duvar Çakışmalarının Telafi Edilmesi" +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Minimum Duvar Hattı Genişliği" #: fdmprinter.def.json -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 "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 "travel_compensate_overlapping_walls_0_enabled label" -msgid "Compensate Outer Wall Overlaps" -msgstr "Dış Duvar Çakışmalarının Telafi Edilmesi" +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 "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 "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 "travel_compensate_overlapping_walls_x_enabled label" -msgid "Compensate Inner Wall Overlaps" -msgstr "İç Duvar Çakışmalarının Telafi Edilmesi" +msgctxt "wall_split_middle_threshold label" +msgid "Split Middle Line Threshold" +msgstr "Bölünmüş Orta Hat Eşiği" #: fdmprinter.def.json -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_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 "wall_min_flow label" -msgid "Minimum Wall Flow" -msgstr "Minimum Duvar Akışı" +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 "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 "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_min_flow_retract label" -msgid "Prefer Retract" -msgstr "Geri Çekmeyi Tercih Et" +msgctxt "wall_add_middle_threshold label" +msgid "Add Middle Line Threshold" +msgstr "Orta Hat Eşiği Ekle" #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps label" -msgid "Fill Gaps Between Walls" -msgstr "Duvarlar Arasındaki Boşlukları Doldur" - -#: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option nowhere" -msgid "Nowhere" -msgstr "Hiçbir yerde" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option everywhere" -msgid "Everywhere" -msgstr "Her bölüm" - -#: fdmprinter.def.json -msgctxt "filter_out_tiny_gaps label" -msgid "Filter Out Tiny Gaps" -msgstr "Küçük Boşlukların Filtrelenmesi" - -#: fdmprinter.def.json -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 "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" @@ -1099,6 +1138,26 @@ 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" @@ -2198,6 +2257,26 @@ 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" @@ -2709,24 +2788,14 @@ msgid "The first few layers are printed slower than the rest of the model, to ge 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_enabled label" -msgid "Equalize Filament Flow" -msgstr "Filaman Akışını Eşitle" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Akış Eşitleme Oranı" #: fdmprinter.def.json -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." - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_max label" -msgid "Maximum Speed for Flow Equalization" -msgstr "Akışı Eşitlemek için Maksimum Hız" - -#: fdmprinter.def.json -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 "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" @@ -2738,6 +2807,16 @@ 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 "Hareket İvmesini Etkinleştir" + +#: 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 farklı bir ivme oranı kullanın. Devre dışı bırakılırsa hareket hamleleri, varış noktasındaki yazdırılmış hattın ivme değerini kullanır." + #: fdmprinter.def.json msgctxt "acceleration_print label" msgid "Print Acceleration" @@ -2928,6 +3007,17 @@ 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 "Hareket Salınımını Etkinleştir" + +#: 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 farklı bir salınım oranı kullanın. Devre dışı bırakılırsa hareket hamleleri, varış noktasındaki yazdırılmış hattın salınım değerini" +" kullanır." + #: fdmprinter.def.json msgctxt "jerk_print label" msgid "Print Jerk" @@ -4463,6 +4553,46 @@ 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" @@ -4627,6 +4757,16 @@ 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" @@ -5127,6 +5267,16 @@ 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" @@ -6421,6 +6571,36 @@ 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 "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "Duvar Yönlerini Değiştir" + +#: 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 "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" + +#: 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 "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Radye Tabanı Duvar Sayısı" + +#: 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 "command_line_settings label" msgid "Command Line Settings" @@ -6481,6 +6661,98 @@ 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." diff --git a/resources/i18n/zh_CN/cura.po b/resources/i18n/zh_CN/cura.po index ab248b8cae..7def2c1b57 100644 --- a/resources/i18n/zh_CN/cura.po +++ b/resources/i18n/zh_CN/cura.po @@ -1,465 +1,191 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0100\n" -"PO-Revision-Date: 2021-04-16 15:04+0200\n" -"Last-Translator: Lionbridge \n" -"Language-Team: Chinese , PCDotFan , Chinese \n" +"POT-Creation-Date: 2022-06-21 12:50+0200\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 2.4.1\n" +"X-Generator: Poedit 3.1.1\n" -#: /home/clamboo/Desktop/Cura/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/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "未知" -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 -msgctxt "@info:title" -msgid "Backup" -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/clamboo/Desktop/Cura/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/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "可用的网络打印机" -#: /home/clamboo/Desktop/Cura/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/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "未覆盖" -#: /home/clamboo/Desktop/Cura/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/Machines/Models/GlobalStacksModel.py:138 /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 +msgctxt "@label" +msgid "Connected printers" +msgstr "已连接的打印机" -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 -msgctxt "@action:button" -msgid "Please sync the material profiles with your printers before starting to print." -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/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 -msgctxt "@action:button" -msgid "New materials installed" -msgstr "新材料已装载" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 -msgctxt "@action:button" -msgid "Sync materials with printers" -msgstr "同步材料与打印机" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 -msgctxt "@action:button" -msgid "Learn more" -msgstr "详细了解" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 -msgctxt "@message:text" -msgid "Could not save material archive to {}:" -msgstr "未能将材料存档保存到 {}:" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 -msgctxt "@message:title" -msgid "Failed to save material archive" -msgstr "未能保存材料存档" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 -msgctxt "@text" -msgid "Unknown error." -msgstr "未知错误。" - -#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 -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/clamboo/Desktop/Cura/cura/BuildVolume.py:102 -msgctxt "@info:title" -msgid "Build Volume" -msgstr "成形空间体积" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "未覆盖" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "未知" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "可用的网络打印机" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "所有文件 (*)" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "视觉" +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "已计算" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "Engineering" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "草稿" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 -msgctxt "@label" -msgid "Custom Material" -msgstr "自定义材料" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 -msgctxt "@label" -msgid "Custom" -msgstr "自定义" - -#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 +#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "登录失败" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "正在为模型寻找新位置" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 msgctxt "@info:title" msgid "Finding Location" msgstr "正在寻找位置" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "无法在成形空间体积内放下全部模型" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 msgctxt "@info:title" msgid "Can't Find Location" msgstr "找不到位置" -#: /home/clamboo/Desktop/Cura/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/Backups/Backup.py:115 +msgctxt "@info:backup_failed" +msgid "Could not create archive from user data directory: {}" +msgstr "不能从用户数据目录创建存档: {}" -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 -msgctxt "@text:error" -msgid "Failed to load the archive of materials to sync it with printers." -msgstr "无法加载材料存档以与打印机同步。" - -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 -msgctxt "@text:error" -msgid "The response from Digital Factory appears to be corrupted." -msgstr "来自 Digital Factory 的响应似乎已损坏。" - -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 -msgctxt "@text:error" -msgid "The response from Digital Factory is missing important information." -msgstr "来自 Digital Factory 的响应缺少重要信息。" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 -msgctxt "@text:error" -msgid "Failed to connect to Digital Factory." -msgstr "无法连接至 Digital Factory。" - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "正在载入打印机..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "正在设置偏好设置..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "正在初始化当前机器..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "正在初始化机器管理器..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "正在初始化成形空间体积..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "正在设置场景..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "正在载入界面..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "正在初始化引擎..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 +#: /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 msgctxt "@info:title" -msgid "Warning" -msgstr "警告" +msgid "Backup" +msgstr "备份" -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 -#, python-brace-format +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 msgctxt "@info:status" -msgid "Can't open any other file if G-code is loading. Skipped importing {0}" -msgstr "如果加载 G-code,则无法打开其他任何文件。{0} 已跳过导入" +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/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 msgctxt "@info:title" -msgid "Error" -msgstr "错误" +msgid "Build Volume" +msgstr "成形空间体积" -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 -msgctxt "@action:button" -msgid "Skip" -msgstr "跳过" - -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "关闭" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 -msgctxt "@action:button" -msgid "Next" -msgstr "下一步" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 -msgctxt "@action:button" -msgid "Finish" -msgstr "完成" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "添加" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 -msgctxt "@action:button" -msgid "Cancel" -msgstr "取消" - -#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 -#, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "组 #{group_nr}" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "外壁" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "内壁" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Skin" -msgstr "表层" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Infill" -msgstr "填充" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "支撑填充" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "支撑接触面" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Support" -msgstr "支撑" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Skirt" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "装填塔" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 -msgctxt "@tooltip" -msgid "Travel" -msgstr "移动" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "回抽" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 -msgctxt "@tooltip" -msgid "Other" -msgstr "其它" - -#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 -#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 -msgctxt "@text:window" -msgid "The release notes could not be opened." -msgstr "无法打开版本说明。" - -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura 无法启动" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

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

      \n" @@ -474,32 +200,32 @@ msgstr "" "

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

      \n" " " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122 msgctxt "@action:button" msgid "Send crash report to Ultimaker" msgstr "向 Ultimaker 发送错误报告" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125 msgctxt "@action:button" msgid "Show detailed crash report" msgstr "显示详细的错误报告" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129 msgctxt "@action:button" msgid "Show configuration folder" msgstr "显示配置文件夹" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140 msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "备份并重置配置" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171 msgctxt "@title:window" msgid "Crash Report" msgstr "错误报告" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190 +#: /home/trin/Gedeeld/Projects/Cura/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" @@ -510,1264 +236,543 @@ msgstr "" "

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

      \n" " " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "系统信息" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "未知" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura 版本" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Cura 语言" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "操作系统语言" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "平台" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Qt 版本" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "PyQt 版本" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 msgctxt "@label" -msgid "Not yet initialized
      " -msgstr "尚未初始化
      " +msgid "Not yet initialized" +msgstr "尚未初始化" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
    • OpenGL Version: {version}
    • " msgstr "
    • OpenGL 版本: {version}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
    • OpenGL Vendor: {vendor}
    • " msgstr "
    • OpenGL 供应商: {vendor}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
    • OpenGL Renderer: {renderer}
    • " msgstr "
    • OpenGL 渲染器: {renderer}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "错误追溯" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "日志" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "发送报告" -#: /home/clamboo/Desktop/Cura/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/CuraApplication.py:531 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "正在载入打印机..." -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 -msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." -msgstr "无法连接 Ultimaker 帐户服务器。" +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "正在设置偏好设置..." -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "正在初始化当前机器..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "正在初始化机器管理器..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "正在初始化成形空间体积..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "正在设置场景..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "正在载入界面..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "正在初始化引擎..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#, 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 +#, 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 msgctxt "@info:title" -msgid "Log-in failed" -msgstr "登录失败" +msgid "Warning" +msgstr "警告" -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "所提供的状态不正确。" +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 +#, 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/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 -msgctxt "@message" -msgid "Timeout when authenticating with the account server." -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 +msgctxt "@info:title" +msgid "Error" +msgstr "错误" -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 -msgctxt "@message" -msgid "Please give the required permissions when authorizing this application." -msgstr "在授权此应用程序时,须提供所需权限。" - -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 -msgctxt "@message" -msgid "Something unexpected happened when trying to log in, please try again." -msgstr "尝试登录时出现意外情况,请重试。" - -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 -msgctxt "@message" -msgid "Could not read response." -msgstr "无法读取响应。" - -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "复制并放置模型" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "放置模型" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "放置模型" -#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "不支持" +#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "无法读取响应。" -#: /home/clamboo/Desktop/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/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "所提供的状态不正确。" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 -msgctxt "@label" -msgid "Nozzle" -msgstr "喷嘴" +#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "使用帐户服务器进行身份验证超时。" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 -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/OAuth2/AuthorizationRequestHandler.py:97 +msgctxt "@message" +msgid "Please give the required permissions when authorizing this application." +msgstr "在授权此应用程序时,须提供所需权限。" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info" +msgid "Unable to reach the Ultimaker account server." +msgstr "无法连接 Ultimaker 帐户服务器。" + +#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:278 msgctxt "@info:title" -msgid "Settings updated" -msgstr "设置已更新" +msgid "Log-in failed" +msgstr "登录失败" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "挤出机已禁用" +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." +msgstr "无法创建材料存档以与打印机同步。" -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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." + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@title:window" msgid "File Already Exists" msgstr "文件已存在" -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "文件 URL 无效:" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "导出成功" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "已成功导入配置文件 {0}。" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "文件 {0} 不包含任何有效的配置文件。" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "自定义配置文件" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "配置文件缺少打印质量类型定义。" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "尚无处于活动状态的打印机。" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "无法添加配置文件。" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: /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 msgctxt "@label" -msgid "Per Model Settings" -msgstr "单一模型设置" +msgid "Nozzle" +msgstr "喷嘴" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "设置对每个模型的单独设定" +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +msgctxt "@info:message Followed by a list of settings." +msgid "Settings have been changed to match the current availability of extruders:" +msgstr "已根据挤出机的当前可用性更改设置:" -#: /home/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Cura 配置文件" - -#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3D 文件" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "尝试恢复您的备份时出错。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 msgctxt "@info:title" -msgid "Backups" -msgstr "备份" +msgid "Settings updated" +msgstr "设置已更新" -#: /home/clamboo/Desktop/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/cura/Settings/MachineManager.py:1480 +msgctxt "@info:title" +msgid "Extruder(s) Disabled" +msgstr "挤出机已禁用" -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "正在创建您的备份..." +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 +msgctxt "@action:button" +msgid "Add" +msgstr "添加" -#: /home/clamboo/Desktop/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/cura/UI/AddPrinterPagesModel.py:26 /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:290 +msgctxt "@action:button" +msgid "Finish" +msgstr "完成" -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -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 +msgctxt "@action:button" +msgid "Cancel" +msgstr "取消" -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "您的备份已完成上传。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "备份超过了最大文件大小。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "管理备份" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "打印机设置" - -#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 +#, python-brace-format msgctxt "@label" -msgid "Support Blocker" -msgstr "支撑拦截器" +msgid "Group #{group_nr}" +msgstr "组 #{group_nr}" -#: /home/clamboo/Desktop/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/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "外壁" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "可移动磁盘" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "内壁" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "保存至可移动磁盘" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "表层" -#: /home/clamboo/Desktop/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/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "填充" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 -#: /home/clamboo/Desktop/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/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "支撑填充" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 -#, 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/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "支撑接触面" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 -msgctxt "@info:title" -msgid "Saving" -msgstr "正在保存" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "支撑" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 -#, 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/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Skirt" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 -#, 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/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "装填塔" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "无法保存到可移动磁盘 {0}:{1}" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "移动" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "保存到可移动磁盘 {0} :{1}" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "回抽" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 -msgctxt "@info:title" -msgid "File Saved" -msgstr "文件已保存" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:96 +msgctxt "@tooltip" +msgid "Other" +msgstr "其它" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:37 /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@action:button" -msgid "Eject" -msgstr "弹出" +msgid "Next" +msgstr "下一步" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "弹出可移动设备 {0}" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "已弹出 {0}。现在,您可以安全地拔出磁盘。" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "安全移除硬件" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "无法弹出 {0},另一个程序可能正在使用磁盘。" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "更新固件" - -#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Cura 15.04 配置文件" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "推荐" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "自定义" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 -#, 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}。无法导入机器。将改为导入模型。" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 -msgctxt "@info:title" -msgid "Open Project File" -msgstr "打开项目文件" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 -#, 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/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "无法打开项目文件" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "项目文件 {0} 损坏: {1}。" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 -#, 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/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 -msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "3MF 文件" - -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "无法写入到 UFP 文件:" - -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 -#: /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Ultimaker 格式包" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "GCode 文件" - -#: /home/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "预览" - -#: /home/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "透视视图" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "正在处理层" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 -msgctxt "@info:title" -msgid "Information" -msgstr "信息" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 -msgctxt "@message:title" -msgid "Slicing failed" -msgstr "切片失败" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 -msgctxt "@message:button" -msgid "Report a bug" -msgstr "报告错误" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 -msgctxt "@message:description" -msgid "Report a bug on Ultimaker Cura's issue tracker." -msgstr "在 Ultimaker Cura 问题跟踪器上报告错误。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "无法使用当前材料进行切片,因为该材料与所选机器或配置不兼容。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "无法切片" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "无法使用当前设置进行切片。以下设置存在错误:{0}" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 -#, 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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "无法切片(原因:主塔或主位置无效)。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "无法切片,因为存在与已禁用挤出机 %s 相关联的对象。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 -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/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "AMF 文件" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "压缩 G-code 文件" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "后期处理" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "修改 G-Code" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "USB 联机打印" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "通过 USB 联机打印" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "通过 USB 联机打印" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 -msgctxt "@info:status" -msgid "Connected via USB" -msgstr "通过 USB 连接" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 -msgctxt "@message" -msgid "Print in Progress" -msgstr "正在进行打印" - -#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "准备" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "解析 G-code" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "G-code 详细信息" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 -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/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "G 文件" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG 图像" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG 图像" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG 图像" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP 图像" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF 图像" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "调平打印平台" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "选择升级" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "GCodeGzWriter 不支持文本模式。" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 -msgctxt "@info" -msgid "Could not access update information." -msgstr "无法获取更新信息。" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:286 /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:67 msgctxt "@action:button" -msgid "How to update" -msgstr "如何更新" +msgid "Skip" +msgstr "跳过" -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 -msgctxt "@text" -msgid "Unable to read example data file." -msgstr "无法读取示例数据文件。" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "需要退出并重新启动 {},然后更改才能生效。" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "正在同步..." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "检测到您的 Ultimaker 帐户有更改" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "是否要与您的帐户同步材料和软件包?" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 +#: /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 msgctxt "@action:button" -msgid "Sync" -msgstr "同步" +msgid "Close" +msgstr "关闭" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "拒绝并从帐户中删除" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +msgctxt "@action:button" +msgid "Please sync the material profiles with your printers before starting to print." +msgstr "请在开始打印之前将材料配置文件与您的打印机同步。" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "{} 个插件下载失败" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "新材料已装载" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "拒绝" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +msgctxt "@action:button" +msgid "Sync materials" +msgstr "同步材料" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "同意" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "插件许可协议" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "GCodeWriter 不支持非文本模式。" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "导出前请先准备 G-code。" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129 -msgctxt "@info:status" -msgid "Cura does not accurately display layers when Wire Printing is enabled." -msgstr "启用“单线打印”后,Cura 将无法准确地显示打印层。" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "仿真视图" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "由于需要先切片,因此未显示任何内容。" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 -msgctxt "@info:title" -msgid "No layers to show" -msgstr "无层可显示" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 -#: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74 -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "不再显示此消息" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "分层视图" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "通过网络打印" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "通过网络打印" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "已通过网络连接" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "明天" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "今天" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "通过网络连接" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "请等待当前作业完成发送。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "打印错误" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "打印作业已成功发送到打印机。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "数据已发送" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 -msgctxt "@info:title" -msgid "Update your printer" -msgstr "请更新升级打印机" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "队列已满" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "发送打印作业" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "正在将打印作业上传至打印机。" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "正在将材料发送到打印机" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "无法将数据上传到打印机。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "网络错误" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "非组中的主机" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 -msgctxt "@action" -msgid "Configure group" -msgstr "配置组" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 -msgctxt "@info:title" -msgid "Are you ready for cloud printing?" -msgstr "是否进行云打印?" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 -msgctxt "@action" -msgid "Get started" -msgstr "开始" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 -msgctxt "@action" +#: /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 +msgctxt "@action:button" msgid "Learn more" -msgstr "了解详情" +msgstr "详细了解" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 -msgctxt "@action:button" -msgid "Print via cloud" -msgstr "通过云打印" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +msgctxt "@message:text" +msgid "Could not save material archive to {}:" +msgstr "未能将材料存档保存到 {}:" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 -msgctxt "@properties:tooltip" -msgid "Print via cloud" -msgstr "通过云打印" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "未能保存材料存档" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 -msgctxt "@info:status" -msgid "Connected via cloud" -msgstr "通过云连接" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +msgctxt "@text" +msgid "Unknown error." +msgstr "未知错误。" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 -msgctxt "@action:button" -msgid "Monitor print" -msgstr "监控打印" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 -msgctxt "@action:tooltip" -msgid "Track the print in Ultimaker Digital Factory" -msgstr "在 Ultimaker Digital Factory 中跟踪打印" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "从 Digital Factory 添加的打印机:" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 -msgctxt "info:name" -msgid "Ultimaker Digital Factory" -msgstr "Ultimaker Digital Factory" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "要建立连接,请访问 {website_link}" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "保留打印机配置" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "删除打印机" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 -msgctxt "@title:window" -msgid "Remove printers?" -msgstr "是否删除打印机?" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 -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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA 数据资源交换" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "glTF 二进制" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF 嵌入式 JSON" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "斯坦福三角格式" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "压缩 COLLADA 数据资源交换" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "模型错误" - -#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "实体视图" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "写入 3mf 文件时出错。" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "3MF 编写器插件已损坏。" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "没有可写入的工作区。请先添加打印机。" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "没有在此处写入工作区的权限。" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MF 文件" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Cura 项目 3MF 文件" - -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "监控" - -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" msgid "3D Model Assistant" msgstr "三维模型的助理" -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" msgid "" @@ -1781,1529 +786,1869 @@ msgstr "" "

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

      \n" "

      查看打印质量指南

      " -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 -msgctxt "@label" -msgid "Mesh Type" -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." +msgstr "项目文件 {0} 包含未知机器类型 {1}。无法导入机器。将改为导入模型。" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "正常模式" +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "打开项目文件" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -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 "项目文件 {0} 是用此 Ultimaker Cura 版本未识别的配置文件制作的。" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "切割网格" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 -msgctxt "@action:button" -msgid "Select settings" -msgstr "选择设置" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "选择对此模型的自定义设置" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "筛选..." - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "显示全部" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cura 备份" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Cura 版本" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "机器" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "材料" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "配置文件" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "插件" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "想要更多?" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "立即备份" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "自动备份" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "恢复" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "删除备份" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "您确定要删除此备份吗?此操作无法撤销。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "恢复备份" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "备份并同步您的 Cura 设置。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 -msgctxt "@button" -msgid "Sign in" -msgstr "登录" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "我的备份" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "您目前没有任何备份。使用“立即备份”按钮创建一个备份。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -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/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "打印机设置" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (宽度)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (深度)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (高度)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 -msgctxt "@label" -msgid "Build plate shape" -msgstr "打印平台形状" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 -msgctxt "@label" -msgid "Origin at center" -msgstr "置中" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 -msgctxt "@label" -msgid "Heated bed" -msgstr "加热床" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 -msgctxt "@label" -msgid "Heated build volume" -msgstr "加热的构建体积" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 -msgctxt "@label" -msgid "G-code flavor" -msgstr "G-code 风格" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "打印头设置" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -msgctxt "@label" -msgid "X min" -msgstr "X 最小值" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -msgctxt "@label" -msgid "Y min" -msgstr "Y 最小值" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -msgctxt "@label" -msgid "X max" -msgstr "X 最大值" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -msgctxt "@label" -msgid "Y max" -msgstr "Y 最大值" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "Gantry Height" -msgstr "十字轴高度" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "挤出机数目" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "将挤出器偏移量应用于 GCode" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "开始 G-code" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "结束 G-code" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "喷嘴设置" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 -msgctxt "@label" -msgid "Nozzle size" -msgstr "喷嘴孔径" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "兼容的材料直径" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "喷嘴偏移 X" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "喷嘴偏移 Y" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "冷却风扇数量" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "挤出机的开始 G-code" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "挤出机的结束 G-code" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:212 msgctxt "@title:tab" -msgid "Printer" -msgstr "打印机" +msgid "Recommended" +msgstr "推荐" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" +#: /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 "此项目使用的材料依赖于一些 Cura 中不存在的材料定义,这可能会造成打印效果不如预期。强烈建议安装从 Marketplace 获得的完整材料包。" + +#: /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 "项目文件中无法存储材料包信息:{material}。此项目在其他系统上可能无法正确打开。" + +#: /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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 -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/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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 -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/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "GCodeGzWriter 不支持文本模式。" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 +#: /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 "Automatically upgrade Firmware" -msgstr "自动升级固件" +msgid "Sync" +msgstr "同步" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 +#: /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 "Upload custom Firmware" -msgstr "上传自定义固件" +msgid "Eject" +msgstr "弹出" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 +#: /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 "Firmware can not be updated because there is no connection with the printer." -msgstr "未连接打印机,无法更新固件。" +msgid "Support Blocker" +msgstr "支撑拦截器" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -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/SupportEraser/__init__.py:13 +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "创建一个不打印支撑的体积。" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 +#: /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 "Select custom firmware" -msgstr "选择自定义固件" +msgid "Remove printers?" +msgstr "是否删除打印机?" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "固件升级" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 +#, python-brace-format msgctxt "@label" -msgid "Updating firmware." -msgstr "更新固件中..." +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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:489 msgctxt "@label" -msgid "Firmware update completed." -msgstr "固件更新已完成。" +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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +#: /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 "Firmware update failed due to an unknown error." -msgstr "由于未知错误,固件更新失败。" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "正在进行 USB 打印,关闭 Cura 将停止此打印。您确定吗?" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -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 "正在进行打印在上一次打印完成之前,Cura 无法通过 USB 启动另一次打印。" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "由于输入/输出错误,导致固件升级失败。" +#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "正在进行打印" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "由于固件丢失,导致固件升级失败。" +#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "X3D 文件" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 msgctxt "@action:ComboBox Update/override existing profile" msgid "Update existing" msgstr "更新已有配置" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:64 msgctxt "@action:ComboBox Save settings in a new profile" msgid "Create new" msgstr "新建" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "打印机设置" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "配置文件设置" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 msgctxt "@action:label" msgid "Derivative from" msgstr "衍生自" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 -msgctxt "@action:label" -msgid "Material settings" -msgstr "材料设置" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 msgctxt "@action:label" msgid "Mode" msgstr "模式" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 msgctxt "@action:label" msgid "Visible settings:" msgstr "可见设置:" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 / %2" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 msgctxt "@action:button" msgid "Open" msgstr "打开" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 +#: /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 "Post Processing Plugin" -msgstr "后期处理插件" +msgid "Cura Backups" +msgstr "Cura 备份" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 +#: /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 "保存 Cura 项目并打印文件" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217 +msgctxt "@option" +msgid "Save Cura project" +msgstr "保存 Cura 项目" + +#: /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 "Post Processing Scripts" -msgstr "后期处理脚本" +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/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "添加一个脚本" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 msgctxt "@label" -msgid "Settings" -msgstr "设置" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "新打印机出厂配备的固件完全可以正常使用,但新版本往往具有更多的新功能和改进。" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "更改处于活动状态的后期处理脚本。" +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "自动升级固件" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 -msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "以下脚本处于活动状态:" +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "上传自定义固件" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /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 "Convert Image..." -msgstr "转换图像..." +msgid "Select custom firmware" +msgstr "选择自定义固件" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 -msgctxt "@info:tooltip" -msgid "The maximum distance of each pixel from \"Base.\"" -msgstr "每个像素与底板的最大距离" +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "固件升级" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "距离打印平台的底板高度,以毫米为单位。" +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "每个像素与底板的最大距离" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 msgctxt "@action:label" msgid "Base (mm)" msgstr "底板 (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate." -msgstr "打印平台宽度,以毫米为单位。" +msgid "The base height from the build plate in millimeters." +msgstr "距离打印平台的底板高度,以毫米为单位。" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 msgctxt "@action:label" msgid "Width (mm)" msgstr "宽度 (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "打印平台深度,以毫米为单位" +msgid "The width in millimeters on the build plate" +msgstr "构建板宽度,以毫米为单位" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 msgctxt "@action:label" msgid "Depth (mm)" msgstr "深度 (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 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 模型中较厚的位置。" +msgid "The depth in millimeters on the build plate" +msgstr "打印平台深度,以毫米为单位" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "颜色越深厚度越大" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "颜色越浅厚度越大" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 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 "对于隐雕,提供一个用于半透明的简单对数模型。对于高度图,像素值与高度线性对应。" +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "半透明" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 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 毫米厚的打印件的光线百分比。降低此值将增大图像暗区中的对比度并减小图像亮区中的对比度。" +msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." +msgstr "对于隐雕,提供一个用于半透明的简单对数模型。对于高度图,像素值与高度线性对应。" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "1 毫米透射率 (%)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "要应用到图像的平滑量。" +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 msgctxt "@action:label" msgid "Smoothing" msgstr "平滑" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "请选择适用于 Ultimaker Original 的升级文件" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "热床(官方版本或自制)" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "打印平台调平" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "开始进行打印平台调平" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "移动到下一个位置" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "更多关于匿名数据收集的信息" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -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/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "我不想发送匿名数据" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "允许发送匿名数据" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" -msgid "Marketplace" -msgstr "市场" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -msgctxt "@info" -msgid "You will need to restart Cura before changes in packages have effect." -msgstr "在包装更改生效之前,您需要重新启动Cura。" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "退出 %1" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "安装" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -msgctxt "@action:button" -msgid "Installed" -msgstr "已安装" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "高级" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 -msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "前往网上市场" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 -msgctxt "@label" -msgid "Search materials" -msgstr "搜索材料" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "兼容性" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "机器" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "打印平台" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "支持" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "质量" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "技术数据表" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "安全数据表" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "打印指南" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "网站" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to install or update" -msgstr "安装或更新需要登录" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "购买材料线轴" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "更新" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "更新" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "更新" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "背部" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 msgctxt "@title:tab" -msgid "Plugins" -msgstr "插件" +msgid "Printer" +msgstr "打印机" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 -msgctxt "@title:tab" -msgid "Materials" -msgstr "材料" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "喷嘴设置" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "安装" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 msgctxt "@label" -msgid "Will install upon restarting" -msgstr "将安装后重新启动" +msgid "Nozzle size" +msgstr "喷嘴孔径" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "更新需要登录" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Downgrade" -msgstr "降级" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "卸载" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /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 "Community Contributions" -msgstr "社区贡献" +msgid "mm" +msgstr "mm" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 msgctxt "@label" -msgid "Community Plugins" -msgstr "社区插件" +msgid "Compatible material diameter" +msgstr "兼容的材料直径" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 msgctxt "@label" -msgid "Generic Materials" -msgstr "通用材料" +msgid "Nozzle offset X" +msgstr "喷嘴偏移 X" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "获取包..." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 msgctxt "@label" -msgid "Website" -msgstr "网站" +msgid "Nozzle offset Y" +msgstr "喷嘴偏移 Y" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 msgctxt "@label" -msgid "Email" -msgstr "电子邮件" +msgid "Cooling Fan Number" +msgstr "冷却风扇数量" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -msgctxt "@description" -msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -msgstr "请登录以获取经验证适用于 Ultimaker Cura Enterprise 的插件和材料" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "挤出机的开始 G-code" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 +#: /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 "Version" -msgstr "版本" +msgid "X (Width)" +msgstr "X (宽度)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 msgctxt "@label" -msgid "Last updated" -msgstr "更新日期" +msgid "Y (Depth)" +msgstr "Y (深度)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 msgctxt "@label" -msgid "Brand" -msgstr "品牌" +msgid "Z (Height)" +msgstr "Z (高度)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 msgctxt "@label" -msgid "Downloads" -msgstr "下载项" +msgid "Build plate shape" +msgstr "打印平台形状" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "已安装的插件" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "尚未安装任何插件。" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "已安装的材料" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 -msgctxt "@info" -msgid "No material has been installed." -msgstr "尚未安装任何材料。" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "已捆绑的插件" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "已捆绑的材料" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -msgctxt "@info" -msgid "Could not connect to the Cura Package database. Please check your connection." -msgstr "无法连接到Cura包数据库。请检查您的连接。" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "需要接受许可证才能安装该程序包" +msgid "Origin at center" +msgstr "置中" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 msgctxt "@button" msgid "Dismiss" msgstr "解除" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 msgctxt "@label" msgid "The following packages will be added:" msgstr "将添加以下程序包:" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "确认卸载" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "安装缺少的材料" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -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 "您正在卸载仍在使用的材料和/或配置文件。确认会将以下材料/配置文件重置为默认值。" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "插件许可协议" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "配置文件" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "接受" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "确认" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11 +msgctxt "@header" +msgid "Manage packages" +msgstr "管理包" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "材料颜色" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32 +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "管理包" -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "走线类型" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "速度" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "层厚度" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "走线宽度" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "流量" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "兼容模式" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "空驶" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "打印辅助结构" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "外壳" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "填充" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "开始" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "只显示顶层" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "在顶部显示 5 层打印细节" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "顶 / 底层" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "内壁" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "最小" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "最大" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "管理打印机" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -msgctxt "@label" -msgid "Glass" -msgstr "玻璃" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "请及时更新打印机固件以远程管理打印队列。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87 +msgctxt "@title" msgid "Loading..." msgstr "正在加载..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "不可用" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148 +msgctxt "@button" +msgid "Plugins" +msgstr "插件" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "无法连接" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156 +msgctxt "@button" +msgid "Materials" +msgstr "材料" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "空闲" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193 +msgctxt "@info" +msgid "Search in the browser" +msgstr "在浏览器中搜索" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Preparing..." -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 -msgctxt "@label" -msgid "Untitled" -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "匿名" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "需要更改配置" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "详细信息" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "不可用的打印机" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "第一个可用" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "已排队" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "请于浏览器中进行管理" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "队列中无打印任务。可通过切片和发送添加任务。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "打印作业" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "总打印时间" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "等待" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 -msgctxt "@title:window" -msgid "Print over network" -msgstr "通过网络打印" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 -msgctxt "@action:button" -msgid "Print" -msgstr "打印" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 -msgctxt "@label" -msgid "Printer selection" -msgstr "打印机选择" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "配置更改" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "覆盖" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "已向打印机 %1 分配作业,但作业包含未知的材料配置。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "将材料 %1 从 %2 更改为 %3。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "将 %3 作为材料 %1 进行加载(此操作无法覆盖)。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "将 Print Core %1 从 %2 更改为 %3。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "将打印平台更改为 %1(此操作无法覆盖)。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "覆盖将使用包含现有打印机配置的指定设置。这可能会导致打印失败。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "铝" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Finished" -msgstr "已完成" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "正在中止..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Aborted" -msgstr "已中止" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Failed" -msgstr "失败" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "正在暂停..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Paused" -msgstr "已暂停" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "正在恢复..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 -msgctxt "@label:status" -msgid "Action required" -msgstr "需要采取行动" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "完成 %1 于 %2" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "连接到网络打印机" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "请从以下列表中选择您的打印机:" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "编辑" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 -msgctxt "@action:button" -msgid "Remove" -msgstr "删除" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" -msgstr "刷新" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "如果您的打印机未列出,请阅读网络打印故障排除指南" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "类型" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "固件版本" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "地址" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "这台打印机未设置为运行一组打印机。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "这台打印机是一组共 %1 台打印机的主机。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "该网络地址的打印机尚未响应。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "连接" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "IP 地址无效" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/Materials.qml:12 msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "请输入有效的 IP 地址。" +msgid "Select and install material profiles optimised for your Ultimaker 3D printers." +msgstr "选择并安装针对您的 Ultimaker 3D 打印机经过优化的材料配置文件。" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "打印机网络地址" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35 msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "请输入打印机在网络上的 IP 地址。" +msgid "You need to accept the license to install the package" +msgstr "需要接受许可证才能安装该程序包" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "恢复" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Enable" +msgstr "启用" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "正在暂停..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Disable" +msgstr "禁用" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "正在恢复..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 +msgctxt "@button" +msgid "Downgrading..." +msgstr "正在降级..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "暂停" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 +msgctxt "@button" +msgid "Downgrade" +msgstr "降级" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "正在中止..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 +msgctxt "@button" +msgid "Installing..." +msgstr "正在安装..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "中止" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250 +msgctxt "@button" +msgid "Install" +msgstr "安装" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -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/Marketplace/resources/qml/PackageCardHeader.qml:254 +msgctxt "@button" +msgid "Uninstall" +msgstr "卸载" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "将打印作业移至顶部" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Updating..." +msgstr "正在更新..." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -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/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Update" +msgstr "更新" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "删除打印作业" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "包详情" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -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/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "返回" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "中止打印" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "描述" -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /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" @@ -3316,2164 +2661,655 @@ msgstr "" "- 检查打印机是否连接至网络。\n" "- 检查您是否已登录查找云连接的打印机。" -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:113 msgctxt "@info" msgid "Please connect your printer to the network." msgstr "请将打印机连接到网络。" -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:147 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "查看联机用户手册" -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /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/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 -msgctxt "@info:tooltip" -msgid "Some things could be problematic in this print. Click to see tips for adjustment." -msgstr "此次打印可能出现了某些问题。点击查看调整提示。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "3D 视图" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "正视图" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "顶视图" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "左视图" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "右视图" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 msgctxt "@label" -msgid "Object list" -msgstr "对象列表" +msgid "Mesh Type" +msgstr "网格类型" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 +#: /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 "Marketplace" -msgstr "市场" +msgid "Select settings" +msgstr "选择设置" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "文件(&F)" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "编辑(&E)" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "视图(&V)" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "设置(&S)" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "扩展(&X)" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "偏好设置(&R)" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "帮助(&H)" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 msgctxt "@title:window" -msgid "New project" -msgstr "新建项目" +msgid "Select Settings to Customize for this model" +msgstr "选择对此模型的自定义设置" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 -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/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "筛选..." -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 -msgctxt "@label:PrintjobStatus" -msgid "Slicing..." -msgstr "正在切片..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "显示全部" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 -msgctxt "@label:PrintjobStatus" -msgid "Unable to slice" -msgstr "无法切片" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "后期处理插件" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Processing" -msgstr "正在处理中" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Slice" -msgstr "切片" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 msgctxt "@label" -msgid "Start the slicing process" -msgstr "开始切片流程" +msgid "Post Processing Scripts" +msgstr "后期处理脚本" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 -msgctxt "@button" -msgid "Cancel" -msgstr "取消" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +msgctxt "@action" +msgid "Add a script" +msgstr "添加一个脚本" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 msgctxt "@label" -msgid "Time estimation" -msgstr "预计时间" +msgid "Settings" +msgstr "设置" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +#: /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 "Material estimation" -msgstr "预计材料" +msgid "Color scheme" +msgstr "颜色方案" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "材料颜色" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "走线类型" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: /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 "No time estimation available" -msgstr "无可用时间估计" +msgid "Compatibility Mode" +msgstr "兼容模式" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 msgctxt "@label" -msgid "No cost estimation available" -msgstr "无可用成本估计" +msgid "Travels" +msgstr "空驶" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "预览" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 msgctxt "@label" -msgid "Add a printer" -msgstr "添加打印机" +msgid "Helpers" +msgstr "打印辅助结构" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 msgctxt "@label" -msgid "Add a networked printer" -msgstr "添加已联网打印机" +msgid "Shell" +msgstr "外壳" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +#: /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 "Add a non-networked printer" -msgstr "添加未联网打印机" +msgid "Infill" +msgstr "填充" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "添加云打印机" +msgid "Starts" +msgstr "开始" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "等待云响应" +msgid "Only Show Top Layers" +msgstr "只显示顶层" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 msgctxt "@label" -msgid "No printers found in your account?" -msgstr "在您的帐户中未找到任何打印机?" +msgid "Show 5 Detailed Layers On Top" +msgstr "在顶部显示 5 层打印细节" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" -msgstr "您帐户中的以下打印机已添加到 Cura 中:" +msgid "Top / Bottom" +msgstr "顶 / 底层" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "手动添加打印机" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 msgctxt "@label" -msgid "Add printer by IP address" -msgstr "按 IP 地址添加打印机" +msgid "Inner Wall" +msgstr "内壁" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "输入您打印机的 IP 地址。" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "添加" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 msgctxt "@label" -msgid "Could not connect to device." -msgstr "无法连接到设备。" +msgid "min" +msgstr "最小" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "无法连接到 Ultimaker 打印机?" +msgid "max" +msgstr "最大" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +#: /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 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "打印平台调平" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 msgctxt "@label" -msgid "The printer at this address has not responded yet." +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 +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 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "开始进行打印平台调平" + +#: /home/trin/Gedeeld/Projects/Cura/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 的升级文件" + +#: /home/trin/Gedeeld/Projects/Cura/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-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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 -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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 -msgctxt "@button" -msgid "Back" -msgstr "返回" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250 +msgctxt "@action:button" msgid "Connect" msgstr "连接" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "用户协议" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "IP 地址无效" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "拒绝并关闭" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "欢迎使用 Ultimaker Cura" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +#: /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 follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "" -"请按照以下步骤设置\n" -"Ultimaker Cura。此操作只需要几分钟时间。" +msgid "Please enter a valid IP address." +msgstr "请输入有效的 IP 地址。" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "开始" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "打印机网络地址" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +#: /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 "将 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 +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 +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 msgctxt "@label" msgid "Sign in to the Ultimaker platform" msgstr "登录 Ultimaker 平台" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "从 Marketplace 添加材料设置和插件" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "备份和同步材料设置和插件" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "在 Ultimaker 社区分享观点并获取 48,000 多名用户的帮助" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 -msgctxt "@button" -msgid "Skip" -msgstr "跳过" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "创建免费的 Ultimaker 帐户" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 -msgctxt "@label" -msgid "Manufacturer" -msgstr "制造商" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 -msgctxt "@label" -msgid "Profile author" -msgstr "配置文件作者" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 -msgctxt "@label" -msgid "Printer name" -msgstr "打印机名称" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 -msgctxt "@text" -msgid "Please name your printer" -msgstr "请为您的打印机命名" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 -msgctxt "@label" -msgid "There is no printer found over your network." -msgstr "未找到网络内打印机。" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "刷新" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "按 IP 添加打印机" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "添加云打印机" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "故障排除" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "帮助我们改进 Ultimaker Cura" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "为了改善打印质量和用户体验,Ultimaker Cura 会收集匿名数据,这些数据包括:" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "机器类型" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "材料使用" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "切片数量" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "打印设置" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Ultimaker Cura 收集的数据不会包含任何个人信息。" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "更多信息" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 -msgctxt "@label" -msgid "What's New" -msgstr "新增功能" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "空" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "版本说明" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 -msgctxt "@title:window The argument is the application name." -msgid "About %1" -msgstr "关于 %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 -msgctxt "@label" -msgid "version: %1" -msgstr "版本: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 -msgctxt "@label" -msgid "End-to-end solution for fused filament 3D printing." -msgstr "熔丝 3D 打印技术的的端对端解决方案。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 -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 "" -"Cura 由 Ultimaker B.V. 与社区合作开发。\n" -"Cura 使用以下开源项目:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 -msgctxt "@label" -msgid "Graphical user interface" -msgstr "图形用户界面" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" -msgid "Application framework" -msgstr "应用框架" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" -msgid "G-code generator" -msgstr "G-code 生成器" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" -msgid "Interprocess communication library" -msgstr "进程间通信交互使用库" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" -msgid "Programming language" -msgstr "编程语言" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" -msgid "GUI framework" -msgstr "GUI 框架" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" -msgid "GUI framework bindings" -msgstr "GUI 框架绑定" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" -msgid "C/C++ Binding library" -msgstr "C / C++ 绑定库" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 -msgctxt "@label" -msgid "Data interchange format" -msgstr "数据交换格式" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 -msgctxt "@label" -msgid "Support library for scientific computing" -msgstr "科学计算支持库" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" -msgid "Support library for faster math" -msgstr "高速运算支持库" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" -msgid "Support library for handling STL files" -msgstr "用于处理 STL 文件的支持库" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" -msgid "Support library for handling planar objects" -msgstr "用于处理平面对象的支持库" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" -msgid "Support library for handling triangular meshes" -msgstr "用于处理三角网格的支持库" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" -msgid "Support library for handling 3MF files" -msgstr "用于处理 3MF 文件的支持库" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 -msgctxt "@label" -msgid "Support library for file metadata and streaming" -msgstr "用于文件元数据和流媒体的支持库" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 -msgctxt "@label" -msgid "Serial communication library" -msgstr "串口通讯库" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 -msgctxt "@label" -msgid "ZeroConf discovery library" -msgstr "ZeroConf 发现库" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" -msgid "Polygon clipping library" -msgstr "多边形剪辑库" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@Label" -msgid "Static type checker for Python" -msgstr "适用于 Python 的静态类型检查器" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@Label" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "用于验证 SSL 可信度的根证书" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 -msgctxt "@Label" -msgid "Python Error tracking library" -msgstr "Python 错误跟踪库" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 -msgctxt "@label" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "Prusa Research 开发的多边形打包库" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -msgctxt "@label" -msgid "Python bindings for libnest2d" -msgstr "libnest2d 的 Python 绑定" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" -msgid "Support library for system keyring access" -msgstr "支持系统密钥环访问库" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" -msgid "Python extensions for Microsoft Windows" -msgstr "适用于 Microsoft Windows 的 Python 扩展" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" -msgid "Font" -msgstr "字体" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" -msgid "SVG icons" -msgstr "SVG 图标" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" -msgid "Linux cross-distribution application deployment" -msgstr "Linux 交叉分布应用程序部署" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "打开文件" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 -msgctxt "@action:button" -msgid "Import all as models" -msgstr "导入所有模型" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 -msgctxt "@title:window" -msgid "Save Project" -msgstr "保存项目" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "挤出机 %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & 材料" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 -msgctxt "@action:label" -msgid "Material" -msgstr "材料" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "保存时不再显示项目摘要" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 -msgctxt "@action:button" -msgid "Save" -msgstr "保存" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 -msgctxt "@title:window" -msgid "Discard or Keep changes" -msgstr "舍弃或保留更改" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 -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”加载默认值。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 -msgctxt "@title:column" -msgid "Profile settings" -msgstr "配置文件设置" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 -msgctxt "@title:column" -msgid "Current changes" -msgstr "当前更改" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 -msgctxt "@option:discardOrKeep" -msgid "Always ask me this" -msgstr "总是询问" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 -msgctxt "@option:discardOrKeep" -msgid "Discard and never ask again" -msgstr "舍弃更改,并不再询问此问题" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 -msgctxt "@option:discardOrKeep" -msgid "Keep and never ask again" -msgstr "保留更改,并不再询问此问题" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 -msgctxt "@action:button" -msgid "Discard changes" -msgstr "舍弃更改" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 -msgctxt "@action:button" -msgid "Keep changes" -msgstr "保留更改" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 -msgctxt "@title:window" -msgid "Open project file" -msgstr "打开项目文件" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "记住我的选择" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 -msgctxt "@action:button" -msgid "Open as project" -msgstr "作为项目打开" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 -msgctxt "@action:button" -msgid "Import models" -msgstr "导入模型" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 -msgctxt "@label" -msgid "Active print" -msgstr "正在打印" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 -msgctxt "@label" -msgid "Job Name" -msgstr "作业名" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 -msgctxt "@label" -msgid "Printing Time" -msgstr "打印时间" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 -msgctxt "@label" -msgid "Estimated time left" -msgstr "预计剩余时间" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "云连接当前不可用。请检查您的 Internet 连接。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Add printer" -msgstr "添加打印机" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 -msgctxt "@button" -msgid "Manage printers" -msgstr "管理打印机" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "已连接的打印机" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "预设打印机" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 -msgctxt "@label" -msgid "Print settings" -msgstr "打印设置" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -msgctxt "@label shown when we load a Gcode file" -msgid "Print setup disabled. G-code file can not be modified." -msgstr "打印设置已禁用。无法修改 G code 文件。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 -msgctxt "@label" -msgid "Profile" -msgstr "配置文件" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 -msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "" -"某些设置/重写值与存储在配置文件中的值不同。\n" -"\n" -"点击打开配置文件管理器。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 -msgctxt "@label:header" -msgid "Custom profiles" -msgstr "自定义配置文件" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "舍弃当前更改" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "推荐" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "自定义" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "开" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "关" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" -msgstr "实验性" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 -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 中的配置。将改为使用默认意图" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 -msgctxt "@label" -msgid "Profiles" -msgstr "配置文件" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 -msgctxt "@tooltip" -msgid "You have modified some profile settings. If you want to change these go to custom mode." -msgstr "您已修改部分配置文件设置。 如果您想对其进行更改,请转至自定义模式。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 -msgctxt "@label" -msgid "Support" -msgstr "支持" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 -msgctxt "@label" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "在模型的悬垂(Overhangs)部分生成支撑结构。若不这样做,这些部分在打印时将倒塌。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 -msgctxt "@label" -msgid "Gradual infill" -msgstr "渐层填充" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "渐层填充(Gradual infill)将随着打印高度的提升而逐渐加大填充密度。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "附着" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 -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/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "保存项目..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "网络打印机" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "本地打印机" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "材料" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "收藏" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "通用" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 -msgctxt "@label" -msgid "Print Selected Model With:" -msgid_plural "Print Selected Models With:" -msgstr[0] "打印所选模型:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "复制所选模型" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "复制个数" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "保存项目(&S)..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "导出(&E)..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "导出选择..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "配置" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "自定义" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "打印机" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "已启用" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "材料" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "用胶粘和此材料组合以产生更好的附着。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 -msgctxt "@tooltip" -msgid "The configuration of this extruder is not allowed, and prohibits slicing." -msgstr "不允许此挤出器的配置并禁止切片。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 -msgctxt "@tooltip" -msgid "There are no profiles matching the configuration of this extruder." -msgstr "没有与此挤出器的配置匹配的配置文件。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 -msgctxt "@label" -msgid "Select configuration" -msgstr "选择配置" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 -msgctxt "@label" -msgid "Configurations" -msgstr "配置" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "正在从打印机加载可用配置..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 -msgctxt "@label" -msgid "The configurations are not available because the printer is disconnected." -msgstr "该配置不可用,因为打印机已断开连接。" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "市场" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "打开文件..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "打印机(&P)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "材料(&M)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "设为主要挤出机" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "启用挤出机" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "禁用挤出机" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "打开最近使用过的文件(&R)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "可见设置" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "折叠所有类别" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "管理设置可见性..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "摄像头位置(&C)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "摄像头视图" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "透视" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "正交" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "打印平台(&B)" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 -msgctxt "@label" -msgid "View type" -msgstr "查看类型" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 -msgctxt "@label" -msgid "Is printed as support." -msgstr "打印为支撑。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "修改了与此模型重叠的其他模型。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "修改了与该模型重叠的填充。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "不支持与此模型重叠。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "覆盖 %1 设置。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "配置文件" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 -msgctxt "@action:button" -msgid "Activate" -msgstr "激活" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "创建" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "复制" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 -msgctxt "@action:button" -msgid "Rename" -msgstr "重命名" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -msgctxt "@action:button" -msgid "Import" -msgstr "导入" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -msgctxt "@action:button" -msgid "Export" -msgstr "导出" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "创建配置文件" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "请为此配置文件提供名称。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "复制配置文件" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "确认删除" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "您确认要删除 %1?该操作无法恢复!" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "重命名配置文件" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "导入配置文件" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "导出配置文件" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "打印机:%1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "使用当前设置 / 重写值更新配置文件" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "您当前的设置与选定的配置文件相匹配。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "全局设置" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 -msgctxt "@title:tab" -msgid "General" -msgstr "基本" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 -msgctxt "@label" -msgid "Interface" -msgstr "接口" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 -msgctxt "@label" -msgid "Currency:" -msgstr "币种:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 -msgctxt "@label" -msgid "Theme:" -msgstr "主题:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 -msgctxt "@label" -msgid "You will need to restart the application for these changes to have effect." -msgstr "需重新启动 Cura,新的设置才能生效。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "当设置被更改时自动进行切片。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "自动切片" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "视区行为" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 -msgctxt "@info:tooltip" -msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." -msgstr "以红色突出显示模型需要增加支撑结构的区域。没有支撑,这些区域将无法正确打印。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "显示悬垂(Overhang)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "显示模型错误" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 -msgctxt "@info:tooltip" -msgid "Moves the camera so the model is in the center of the view when a model is selected" -msgstr "当模型被选中时,视角将自动调整到最合适的观察位置(模型处于正中央)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "当项目被选中时,自动对中视角" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "需要令 Cura 的默认缩放操作反转吗?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "反转视角变焦方向。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "是否跟随鼠标方向进行缩放?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -msgctxt "@info:tooltip" -msgid "Zooming towards the mouse is not supported in the orthographic perspective." -msgstr "正交透视不支持通过鼠标进行缩放。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "跟随鼠标方向缩放" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved so that they no longer intersect?" -msgstr "需要移动平台上的模型,使它们不再相交吗?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "确保每个模型都保持分离" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved down to touch the build plate?" -msgstr "需要转动模型,使它们接触打印平台吗?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "自动下降模型到打印平台" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "在 G-code 读取器中显示警告信息。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "G-code 读取器中的警告信息" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "层视图要强制进入兼容模式吗?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "强制层视图兼容模式(需要重新启动)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "Cura 是否应该在关闭的位置打开?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "恢复初始窗口位置" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "应使用哪种类型的摄像头进行渲染?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "摄像头渲染:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 -msgid "Perspective" -msgstr "透视" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 -msgid "Orthographic" -msgstr "正交" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "打开并保存文件" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 -msgctxt "@info:tooltip" -msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "应从桌面打开文件还是在同一 Cura 实例中打开外部应用程序?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "使用单个 Cura 实例" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 -msgctxt "@info:tooltip" -msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" -msgstr "是否应在清理构建板后再将新模型加载到单个 Cura 实例中?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 -msgctxt "@option:check" -msgid "Clear buildplate before loading model into the single instance" -msgstr "在清理构建板后再将模型加载到单个实例中" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 -msgctxt "@info:tooltip" -msgid "Should models be scaled to the build volume if they are too large?" -msgstr "当模型的尺寸过大时,是否将模型自动缩小至成形空间体积?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "缩小过大模型" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "放大过小模型" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "模型是否应该在加载后被选中?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "选择模型时加载" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 -msgctxt "@info:tooltip" -msgid "Should a prefix based on the printer name be added to the print job name automatically?" -msgstr "打印机名是否自动作为打印作业名称的前缀?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "将机器前缀添加到作业名称中" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "保存项目文件时是否显示摘要?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "保存项目时显示摘要对话框" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "打开项目文件时的默认行为" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "打开项目文件时的默认行为: " - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "总是询问" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "始终作为一个项目打开" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "始终导入模型" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 -msgctxt "@window:text" -msgid "Default behavior for changed setting values when switching to a different profile: " -msgstr "切换到不同配置文件时对设置值更改的默认操作: " - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "总是舍失更改的设置" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "总是将更改的设置传输至新配置文件" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 -msgctxt "@label" -msgid "Privacy" -msgstr "隐私" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 -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 地址或其他私人数据。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "(匿名)发送打印信息" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 -msgctxt "@action:button" -msgid "More information" -msgstr "详细信息" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 -msgctxt "@label" -msgid "Updates" -msgstr "更新" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 -msgctxt "@info:tooltip" -msgid "Should Cura check for updates when the program is started?" -msgstr "当 Cura 启动时,是否自动检查更新?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "启动时检查更新" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 -msgctxt "@info:tooltip" -msgid "When checking for updates, only check for stable releases." -msgstr "在检查更新时,只检查稳定版。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 -msgctxt "@option:radio" -msgid "Stable releases only" -msgstr "仅限稳定版" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 -msgctxt "@info:tooltip" -msgid "When checking for updates, check for both stable and for beta releases." -msgstr "在检查更新时,同时检查稳定版和测试版。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 -msgctxt "@option:radio" -msgid "Stable and Beta releases" -msgstr "稳定版和测试版" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 -msgctxt "@option:check" -msgid "Get notifications for plugin updates" -msgstr "获取插件更新通知" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "信息" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "确认直径更改" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "显示名称" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "材料类型" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "颜色" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "属性" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "密度" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "直径" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "耗材成本" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "耗材重量" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "耗材长度" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "每米成本" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -msgctxt "@label" -msgid "This material is linked to %1 and shares some of its properties." -msgstr "此材料与 %1 相关联,并共享其某些属性。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "解绑材料" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "描述" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "粘附信息" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "创建" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "复制" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "与打印机同步" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "打印机" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "导入配置" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "无法导入材料 %1%2" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "成功导入材料 %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "导出材料" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "无法导出材料至 %1%2" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "成功导出材料至: %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 -msgctxt "@title:window" -msgid "Sync materials with printers" -msgstr "匹配材料和打印机" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 -msgctxt "@title:header" -msgid "Sync materials with printers" -msgstr "匹配材料和打印机" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 -msgctxt "@text" -msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." -msgstr "只需遵循几个简单步骤,您就可以将所有材料配置文件与打印机同步。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 -msgctxt "@button" -msgid "Start" -msgstr "开始" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 -msgctxt "@button" -msgid "Why do I need to sync material profiles?" -msgstr "为什么需要同步材料配置文件?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 -msgctxt "@title:header" -msgid "Sign in" -msgstr "登录" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 -msgctxt "@button" -msgid "Sync materials with USB" -msgstr "使用 USB 同步材料" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 -msgctxt "@title:header" -msgid "The following printers will receive the new material profiles:" -msgstr "以下打印机将收到新的材料配置文件:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 -msgctxt "@title:header" -msgid "Something went wrong when sending the materials to the printers." -msgstr "向打印机发送材料时出错。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 -msgctxt "@title:header" -msgid "Material profiles successfully synced with the following printers:" -msgstr "材料配置文件与以下打印机成功同步:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 -msgctxt "@button" -msgid "Troubleshooting" -msgstr "故障排除" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 -msgctxt "@text Asking the user whether printers are missing in a list." -msgid "Printers missing?" -msgstr "缺少打印机?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 -msgctxt "@text" -msgid "Make sure all your printers are turned ON and connected to Digital Factory." -msgstr "请确保所有打印机都已打开并连接到 Digital Factory。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 -msgctxt "@button" -msgid "Refresh List" -msgstr "刷新列表" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 -msgctxt "@button" -msgid "Try again" -msgstr "再试一次" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Done" -msgstr "完成" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 -msgctxt "@button" -msgid "Sync" -msgstr "同步" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 -msgctxt "@button" -msgid "Syncing" -msgstr "正在同步" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 -msgctxt "@title:header" -msgid "No printers found" -msgstr "未找到打印机" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 -msgctxt "@button" -msgid "Learn how to connect your printer to Digital Factory" -msgstr "了解如何将打印机连接到 Digital Factory" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 -msgctxt "@button" -msgid "Refresh" -msgstr "刷新" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 -msgctxt "@title:header" -msgid "Sync material profiles via USB" -msgstr "通过 USB 同步材料配置文件" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 -msgctxt "@text" -msgid "Click the export material archive button." -msgstr "单击导出材料存档按钮。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 -msgctxt "@text" -msgid "Save the .umm file on a USB stick." -msgstr "将 .umm文件保存到 U 盘。" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 -msgctxt "@button" -msgid "How to load new material profiles to my printer" -msgstr "如何将新材料配置文件加载到打印机" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Export material archive" -msgstr "导出材料存档" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "导出所有材料" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "设置可见性" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "全部勾选" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 -msgctxt "@title:tab" -msgid "Printers" -msgstr "打印机" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "已计算" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "设置" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "配置文件" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "当前" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "单位" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "未连接至打印机" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "打印机不接受命令" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "维护中。请检查打印机" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "与打印机的连接中断" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "打印中..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "已暂停" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "初始化中..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "请取出打印件" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "中止打印" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "您确定要中止打印吗?" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 -msgctxt "@label:button" -msgid "My printers" -msgstr "我的打印机" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 -msgctxt "@tooltip:button" -msgid "Monitor printers in Ultimaker Digital Factory." -msgstr "在 Ultimaker Digital Factory 中监控打印机。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 -msgctxt "@tooltip:button" -msgid "Create print projects in Digital Library." -msgstr "在 Digital Library 中创建打印项目。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 -msgctxt "@label:button" -msgid "Print jobs" -msgstr "打印作业" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 -msgctxt "@tooltip:button" -msgid "Monitor print jobs and reprint from your print history." -msgstr "监控打印作业并从打印历史记录重新打印。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 -msgctxt "@tooltip:button" -msgid "Extend Ultimaker Cura with plugins and material profiles." -msgstr "用插件和材料配置文件扩展 Ultimaker Cura。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 -msgctxt "@tooltip:button" -msgid "Become a 3D printing expert with Ultimaker e-learning." -msgstr "通过 Ultimaker 线上课程教学,成为 3D 打印专家。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 -msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "Ultimaker 支持" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 -msgctxt "@tooltip:button" -msgid "Learn how to get started with Ultimaker Cura." -msgstr "了解如何开始使用 Ultimaker Cura。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 -msgctxt "@label:button" -msgid "Ask a question" -msgstr "提问" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 -msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "咨询 Ultimaker 社区。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 -msgctxt "@label:button" -msgid "Report a bug" -msgstr "报告错误" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 -msgctxt "@tooltip:button" -msgid "Let developers know that something is going wrong." -msgstr "向开发人员报错。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 -msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "访问 Ultimaker 网站。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "打印机控制" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "垛齐位置" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "垛齐距离" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "发送 G-code" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "挤出机" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "该热端的当前温度。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "热端的预热温度。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "取消" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "预热" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "该挤出机中材料的颜色。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "该挤出机中的材料。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "该挤出机所使用的喷嘴。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "尚未连接到打印机。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "打印平台" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "热床当前温度。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "热床的预热温度。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -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/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "登录" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 msgctxt "@text" msgid "" "- Add material profiles and plug-ins from the Marketplace\n" @@ -5484,375 +3320,2248 @@ msgstr "" "- 备份和同步材料配置文件和插件\n" "- 在 Ultimaker 社区分享观点并获取 48,000 多名用户的帮助" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" msgid "Create a free Ultimaker account" msgstr "创建免费的 Ultimaker 帐户" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "上次更新时间:%1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Ultimaker 帐户" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 -msgctxt "@button" -msgid "Sign Out" -msgstr "注销" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "正在检查..." -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "帐户已同步" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "发生了错误..." -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "安装挂起的更新" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "检查是否存在帐户更新" -#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "未命名" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "上次更新时间:%1" -#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "Ultimaker 帐户" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "注销" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" -msgid "No items to select from" -msgstr "没有可供选择的项目" +msgid "No time estimation available" +msgstr "无可用时间估计" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Preview" +msgstr "预览" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +msgctxt "@label" +msgid "Time estimation" +msgstr "预计时间" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107 +msgctxt "@label" +msgid "Material estimation" +msgstr "预计材料" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +msgctxt "@label:PrintjobStatus" +msgid "Slicing..." +msgstr "正在切片..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Processing" +msgstr "正在处理中" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +msgctxt "@button" +msgid "Slice" +msgstr "切片" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Cancel" +msgstr "取消" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "显示联机故障排除指南" +msgid "Show Online Troubleshooting" +msgstr "显示联机故障排除" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" -msgstr "切换完整界面" +msgstr "切换全屏" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" -msgstr "退出完整界面" +msgstr "退出全屏" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "撤销(&U)" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "重做(&R)" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "退出(&Q)" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "3D 视图" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "正视图" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "顶视图" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "仰视图" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "左视图" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "右视图" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "配置 Cura..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "新增打印机(&A)..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "管理打印机(&I)..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "管理材料..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu" +#: /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." msgid "Add more materials from Marketplace" msgstr "从市场添加更多材料" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 msgctxt "@action:inmenu menubar:profile" msgid "&Update profile with current settings/overrides" -msgstr "使用当前设置 / 重写值更新配置文件(&U)" +msgstr "使用当前设置 / 重写值更新配置文件(&U)" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" -msgstr "舍弃当前更改(&D)" +msgstr "舍弃当前更改(&D)" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." -msgstr "从当前设置 / 重写值创建配置文件(&C)..." +msgstr "从当前设置 / 重写值创建配置文件(&C)..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "管理配置文件.." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "显示在线文档(&D)" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "BUG 反馈(&B)" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "新增功能" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "关于..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "删除所选项" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "居中所选项" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "复制所选项" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "删除模型" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" -msgstr "使模型居于平台中央(&N)" +msgstr "使模型居于平台中央(&N)" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" -msgstr "绑定模型(&G)" +msgstr "绑定模型(&G)" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "拆分模型" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" -msgstr "合并模型(&M)" +msgstr "合并模型(&M)" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 msgctxt "@action:inmenu" msgid "&Multiply Model..." -msgstr "复制模型…(&M)" +msgstr "复制模型(&M)…" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "选择所有模型" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "清空打印平台" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "重新载入所有模型" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "将所有模型编位到所有打印平台" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "编位所有的模型" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "为所选模型编位" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "复位所有模型的位置" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "复位所有模型的变动" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." -msgstr "打开文件(&O)..." +msgstr "打开文件(&O)..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." -msgstr "新建项目(&N)..." +msgstr "新建项目(&N)..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "显示配置文件夹" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "配置设定可见性..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "市场(&M)" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "我的打印机" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "在 Digital Library 中创建打印项目。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "打印作业" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Extend Ultimaker Cura with plugins and material profiles." +msgstr "用插件和材料配置文件扩展 Ultimaker Cura。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +msgctxt "@tooltip:button" +msgid "Become a 3D printing expert with Ultimaker e-learning." +msgstr "通过 Ultimaker 线上课程教学,成为 3D 打印专家。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "Ultimaker 支持" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +msgctxt "@tooltip:button" +msgid "Learn how to get started with Ultimaker Cura." +msgstr "了解如何开始使用 Ultimaker Cura。" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "咨询 Ultimaker 社区。" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "向开发人员报错。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "访问 Ultimaker 网站。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 msgctxt "@label" -msgid "This setting is not used because all the settings that it influences are overridden." -msgstr "未使用此设置,因为受其影响的所有设置均已覆盖。" +msgid "Hex" +msgstr "六角" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 -msgctxt "@label Header for list of settings." -msgid "Affects" -msgstr "影响" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 -msgctxt "@label Header for list of settings." -msgid "Affected By" -msgstr "受影响项目" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 msgctxt "@label" -msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." -msgstr "此设置始终在所有挤出机之间共享。在此处更改它将改变所有挤出机的值。" +msgid "This package will be installed after restarting." +msgstr "这个包将在重新启动后安装。" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 -msgctxt "@label" -msgid "This setting is resolved from conflicting extruder-specific values:" -msgstr "此设置与挤出器特定值不同:" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:463 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +msgctxt "@title:tab" +msgid "General" +msgstr "基本" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +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 +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 +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 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "配置文件" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +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 +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 +msgctxt "@title:window" +msgid "Open file(s)" +msgstr "打开文件" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +msgctxt "@window:title" +msgid "Install Package" +msgstr "安装包" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "打开文件" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +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 +msgctxt "@title:window" +msgid "Add Printer" +msgstr "新增打印机" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +msgctxt "@title:window" +msgid "What's New" +msgstr "新增功能" + +#: /home/trin/Gedeeld/Projects/Cura/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 msgctxt "@label" +msgid "version: %1" +msgstr "版本: %1" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +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 +msgctxt "@info:credit" msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." +"Cura is developed by Ultimaker B.V. in cooperation with the community.\n" +"Cura proudly uses the following open source projects:" msgstr "" -"此设置的值与配置文件不同。\n" -"\n" -"单击以恢复配置文件的值。" +"Cura 由 Ultimaker B.V. 与社区合作开发。\n" +"Cura 使用以下开源项目:" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"此设置通常可被自动计算,但其当前已被绝对定义。\n" -"\n" -"单击以恢复自动计算的值。" +msgid "Graphical user interface" +msgstr "图形用户界面" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +msgctxt "@label" +msgid "Application framework" +msgstr "应用框架" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label" +msgid "G-code generator" +msgstr "G-code 生成器" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label" +msgid "Interprocess communication library" +msgstr "进程间通信交互使用库" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label" +msgid "Python bindings for libnest2d" +msgstr "libnest2d 的 Python 绑定" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 +msgctxt "@label" +msgid "Polygon packing library, developed by Prusa Research" +msgstr "Prusa Research 开发的多边形打包库" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 +msgctxt "@label" +msgid "Support library for handling 3MF files" +msgstr "用于处理 3MF 文件的支持库" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 +msgctxt "@label" +msgid "Support library for file metadata and streaming" +msgstr "用于文件元数据和流媒体的支持库" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 +msgctxt "@label" +msgid "Programming language" +msgstr "编程语言" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +msgctxt "@label" +msgid "GUI framework" +msgstr "GUI 框架" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label" +msgid "GUI framework bindings" +msgstr "GUI 框架绑定" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label" +msgid "C/C++ Binding library" +msgstr "C / C++ 绑定库" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label" +msgid "Data interchange format" +msgstr "数据交换格式" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label" +msgid "Font" +msgstr "字体" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +msgctxt "@label" +msgid "Polygon clipping library" +msgstr "多边形剪辑库" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +msgctxt "@label" +msgid "JSON parser" +msgstr "JSON 解析器" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label" +msgid "Utility functions, including an image loader" +msgstr "实用程序函数,包括图像加载器" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label" +msgid "Utility library, including Voronoi generation" +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" +msgid "Root Certificates for validating SSL trustworthiness" +msgstr "用于验证 SSL 可信度的根证书" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +msgctxt "@label" +msgid "Compatibility between Python 2 and 3" +msgstr "Python 2 和 3 之间的兼容性" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label" +msgid "Support library for system keyring access" +msgstr "支持系统密钥环访问库" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +msgctxt "@label" +msgid "Support library for faster math" +msgstr "高速运算支持库" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +msgctxt "@label" +msgid "Support library for handling STL files" +msgstr "用于处理 STL 文件的支持库" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:166 +msgctxt "@label" +msgid "Python bindings for Clipper" +msgstr "Clipper 的 Python 绑定" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label" +msgid "Serial communication library" +msgstr "串口通讯库" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label" +msgid "Support library for scientific computing" +msgstr "科学计算支持库" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:169 +msgctxt "@Label" +msgid "Python Error tracking library" +msgstr "Python 错误跟踪库" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label" +msgid "Support library for handling triangular meshes" +msgstr "用于处理三角网格的支持库" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:171 +msgctxt "@label" +msgid "ZeroConf discovery library" +msgstr "ZeroConf 发现库" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 +msgctxt "@label" +msgid "Universal build system configuration" +msgstr "通用构建系统配置" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 +msgctxt "@label" +msgid "Dependency and package manager" +msgstr "依赖性和程序包管理器" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label" +msgid "Packaging Python-applications" +msgstr "打包 Python 应用" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label" +msgid "Linux cross-distribution application deployment" +msgstr "Linux 交叉分布应用程序部署" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:178 +msgctxt "@label" +msgid "Generating Windows installers" +msgstr "生成 Windows 安装程序" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "记住我的选择" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +msgctxt "@action:button" +msgid "Open as project" +msgstr "作为项目打开" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +msgctxt "@action:button" +msgid "Import models" +msgstr "导入模型" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 "" +"您已经自定义了若干配置文件设置。\n" +"是否要在切换配置文件后保留这些更改的设置?\n" +"或者,也可舍弃更改以从“%1”加载默认值。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:75 +msgctxt "@title:column" +msgid "Profile settings" +msgstr "配置文件设置" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +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 +msgctxt "@option:discardOrKeep" +msgid "Always ask me this" +msgstr "总是询问" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +msgctxt "@option:discardOrKeep" +msgid "Discard and never ask again" +msgstr "舍弃更改,并不再询问此问题" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:106 +msgctxt "@option:discardOrKeep" +msgid "Keep and never ask again" +msgstr "保留更改,并不再询问此问题" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:136 +msgctxt "@action:button" +msgid "Discard changes" +msgstr "舍弃更改" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +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?" +msgstr "我们已经在您所选择的文件中找到一个或多个项目文件,但一次只能打开一个项目文件。我们建议只从那些文件中导入模型而不打开项目。您要继续操作吗?" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:window" +msgid "Save Project" +msgstr "保存项目" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:175 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "挤出机 %1" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & 材料" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +msgctxt "@action:label" +msgid "Material" +msgstr "材料" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +msgctxt "@action:label" +msgid "Don't show project summary on save again" +msgstr "保存时不再显示项目摘要" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:296 +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 +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 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "设置(&S)" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87 +msgctxt "@title:window" +msgid "New project" +msgstr "新建项目" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Marketplace" +msgstr "市场" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +msgctxt "@header" +msgid "Configurations" +msgstr "配置" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Marketplace" +msgstr "市场" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@label" +msgid "Select configuration" +msgstr "选择配置" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 +msgctxt "@label" +msgid "Configurations" +msgstr "配置" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Enabled" +msgstr "已启用" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +msgctxt "@label" +msgid "Material" +msgstr "材料" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "用胶粘和此材料组合以产生更好的附着。" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Number of Copies" +msgstr "复制个数" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "扩展(&X)" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "保存项目(&S)..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "导出选择..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "材料" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "通用" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "偏好设置(&R)" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "网络打印机" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "打开最近使用过的文件(&R)" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "可见设置" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "管理设置可见性..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "摄像头位置(&C)" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "透视" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59 +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "正交" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "打印机不接受命令" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:MonitorStatus" +msgid "Lost connection with the printer" +msgstr "与打印机的连接中断" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:142 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "打印中..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "已暂停" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "初始化中..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:150 +msgctxt "@label:MonitorStatus" +msgid "Please remove the print" +msgstr "请取出打印件" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:318 +msgctxt "@label" +msgid "Abort Print" +msgstr "中止打印" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Is printed as support." +msgstr "打印为支撑。" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "修改了与该模型重叠的填充。" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@action:button" +msgid "Defaults" +msgstr "默认" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +msgctxt "@label" +msgid "Interface" +msgstr "接口" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +msgctxt "@heading" +msgid "-- incomplete --" +msgstr "-- 不完整 --" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +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." +msgid "Theme*:" +msgstr "主题*:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +msgctxt "@info:tooltip" +msgid "Slice automatically when changing settings." +msgstr "当设置被更改时自动进行切片。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:328 +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." +msgstr "*需重新启动该应用程序,这些更改才能生效。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "视区行为" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +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 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "显示悬垂(Overhang)" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +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 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "显示模型错误" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +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 +msgctxt "@action:button" +msgid "Center camera when item is selected" +msgstr "当项目被选中时,自动对中视角" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:411 +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 +msgctxt "@action:button" +msgid "Invert the direction of camera zoom." +msgstr "反转视角变焦方向。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +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 +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 +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "跟随鼠标方向缩放" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:463 +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 +msgctxt "@option:check" +msgid "Ensure models are kept apart" +msgstr "确保每个模型都保持分离" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:477 +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 +msgctxt "@option:check" +msgid "Automatically drop models to the build plate" +msgstr "自动下降模型到打印平台" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:494 +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 +msgctxt "@option:check" +msgid "Caution message in g-code reader" +msgstr "G-code 读取器中的警告信息" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:511 +msgctxt "@info:tooltip" +msgid "Should layer be forced into compatibility mode?" +msgstr "层视图要强制进入兼容模式吗?" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:516 +msgctxt "@option:check" +msgid "Force layer view compatibility mode (restart required)" +msgstr "强制层视图兼容模式(需要重新启动)" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:526 +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 +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "恢复初始窗口位置" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:541 +msgctxt "@info:tooltip" +msgid "What type of camera rendering should be used?" +msgstr "应使用哪种类型的摄像头进行渲染?" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "摄像头渲染:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +msgid "Perspective" +msgstr "透视" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +msgid "Orthographic" +msgstr "正交" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "打开并保存文件" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +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 +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "使用单个 Cura 实例" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619 +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 +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 +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 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "缩小过大模型" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +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 +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "放大过小模型" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:665 +msgctxt "@info:tooltip" +msgid "Should models be selected after they are loaded?" +msgstr "模型是否应该在加载后被选中?" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "选择模型时加载" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:680 +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 +msgctxt "@option:check" +msgid "Add machine prefix to job name" +msgstr "将机器前缀添加到作业名称中" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:695 +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 +msgctxt "@option:check" +msgid "Show summary dialog when saving project" +msgstr "保存项目时显示摘要对话框" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:709 +msgctxt "@info:tooltip" +msgid "Default behavior when opening a project file" +msgstr "打开项目文件时的默认行为" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:717 +msgctxt "@window:text" +msgid "Default behavior when opening a project file: " +msgstr "打开项目文件时的默认行为: " + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:732 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "总是询问" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +msgctxt "@option:openProject" +msgid "Always open as a project" +msgstr "始终作为一个项目打开" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "始终导入模型" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +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 +msgctxt "@label" +msgid "Profiles" +msgstr "配置文件" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +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 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "总是舍失更改的设置" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:801 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "总是将更改的设置传输至新配置文件" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:835 +msgctxt "@label" +msgid "Privacy" +msgstr "隐私" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +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 地址或其他私人数据。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "(匿名)发送打印信息" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:876 +msgctxt "@label" +msgid "Updates" +msgstr "更新" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +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 +msgctxt "@option:check" +msgid "Check for updates on start" +msgstr "启动时检查更新" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:904 +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 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "仅限稳定版" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +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 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "稳定版和测试版" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +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 +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "获取插件更新通知" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Rename" +msgstr "重命名" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Import" +msgstr "导入" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@title:window" +msgid "Import Material" +msgstr "导入配置" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Material" +msgstr "导出材料" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "匹配材料和打印机" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Why do I need to sync material profiles?" +msgstr "为什么需要同步材料配置文件?" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 +msgctxt "@button" +msgid "Start" +msgstr "开始" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +msgctxt "@title:header" +msgid "Sign in" +msgstr "登录" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +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 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "使用 USB 同步材料" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +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 +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 +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 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "故障排除" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +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 +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 +msgctxt "@button" +msgid "Refresh List" +msgstr "刷新列表" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +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 +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 +msgctxt "@button" +msgid "Sync" +msgstr "同步" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +msgctxt "@button" +msgid "Syncing" +msgstr "正在同步" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +msgctxt "@title:header" +msgid "No printers found" +msgstr "未找到打印机" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +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 +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 +msgctxt "@button" +msgid "Refresh" +msgstr "刷新" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +msgctxt "@title:header" +msgid "Sync material profiles via USB" +msgstr "通过 USB 同步材料配置文件" + +#: /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." +msgstr "请遵循以下步骤将新材料配置文件加载到打印机。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:663 +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "单击导出材料存档按钮。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:664 +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 +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 +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 +msgctxt "@button" +msgid "Back" +msgstr "返回" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +msgctxt "@button" +msgid "Export material archive" +msgstr "导出材料存档" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "导出所有材料" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Display Name" +msgstr "显示名称" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171 +msgctxt "@label" +msgid "Brand" +msgstr "品牌" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Color" +msgstr "颜色" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Properties" +msgstr "属性" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:286 +msgctxt "@label" +msgid "Density" +msgstr "密度" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:319 +msgctxt "@label" +msgid "Diameter" +msgstr "直径" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Filament weight" +msgstr "耗材重量" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Cost per Meter" +msgstr "每米成本" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Unlink Material" +msgstr "解绑材料" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:485 +msgctxt "@label" +msgid "Description" +msgstr "描述" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Print settings" +msgstr "打印设置" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:tooltip" +msgid "Create new profile from current settings/overrides" +msgstr "使用当前设置/重写值创建新的配置文件" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Update profile." +msgstr "更新配置文件。" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "舍弃当前更改" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:label" +msgid "Your current settings match the selected profile." +msgstr "您当前的设置与选定的配置文件相匹配。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:175 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "全局设置" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +msgctxt "@title:window" +msgid "Create Profile" +msgstr "创建配置文件" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "导出配置文件" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:382 +msgctxt "@title:window" +msgid "Duplicate Profile" +msgstr "复制配置文件" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "设置可见性" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" -msgid "Search settings" -msgstr "搜索设置" +msgid "Check all" +msgstr "全部勾选" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 -msgctxt "@action:menu" -msgid "Copy value to all extruders" -msgstr "将值复制到所有挤出机" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "挤出机" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 -msgctxt "@action:menu" -msgid "Copy all changed values to all extruders" -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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 -msgctxt "@action:menu" -msgid "Hide this setting" -msgstr "隐藏此设置" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "该热端的当前温度。" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 -msgctxt "@action:menu" -msgid "Don't show this setting" -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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 -msgctxt "@action:menu" -msgid "Keep this setting visible" -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/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 +#: /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 +msgctxt "@label" +msgid "Active print" +msgstr "正在打印" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +msgctxt "@label" +msgid "Job Name" +msgstr "作业名" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +msgctxt "@label" +msgid "Printing Time" +msgstr "打印时间" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:180 +msgctxt "@label" +msgid "Estimated time left" +msgstr "预计剩余时间" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 +msgctxt "@label" +msgid "Profile" +msgstr "配置文件" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 +msgctxt "@tooltip" +msgid "" +"Some setting/override values are different from the values stored in the profile.\n" +"\n" +"Click to open the profile manager." +msgstr "" +"某些设置/重写值与存储在配置文件中的值不同。\n" +"\n" +"点击打开配置文件管理器。" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@label:Should be short" +msgid "On" +msgstr "开" + +#: /home/trin/Gedeeld/Projects/Cura/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." +msgstr "自定义配置文件处于活动状态,并且已覆盖某些设置。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +msgctxt "@info" +msgid "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." +msgstr "某些设置已更改。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +msgctxt "@label" +msgid "Adhesion" +msgstr "附着" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +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 +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" +msgstr "分辨率" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +msgctxt "@label" +msgid "Support" +msgstr "支持" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +msgctxt "@label" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "在模型的悬垂(Overhangs)部分生成支撑结构。若不这样做,这些部分在打印时将倒塌。" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 "对于所选材料/%1 配置,无可用的配置文件。请更改配置。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47 +msgctxt "@button:label" +msgid "Learn more" +msgstr "了解详情" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +msgctxt "@title:column" +msgid "Setting" +msgstr "设置" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +msgctxt "@title:column" +msgid "Profile" +msgstr "配置文件" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +msgctxt "@title:column" +msgid "Current" +msgstr "当前" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:39 +msgctxt "@title:column Unit of measurement" +msgid "Unit" +msgstr "单位" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/SearchBar.qml:17 +msgctxt "@placeholder" +msgid "Search" +msgstr "搜索" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5863,141 +5572,359 @@ msgstr "" "\n" "单击以使这些设置可见。" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "这个包将在重新启动后安装。" +msgid "This setting is not used because all the settings that it influences are overridden." +msgstr "未使用此设置,因为受其影响的所有设置均已覆盖。" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 -msgctxt "@title:tab" -msgid "Settings" -msgstr "设置" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +msgctxt "@label Header for list of settings." +msgid "Affects" +msgstr "影响" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "正在关闭 %1" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +msgctxt "@label Header for list of settings." +msgid "Affected By" +msgstr "受影响项目" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 -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/Settings/SettingItem.qml:190 +msgctxt "@label" +msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." +msgstr "此设置始终在所有挤出机之间共享。在此处更改它将改变所有挤出机的值。" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 -msgctxt "@window:title" -msgid "Install Package" -msgstr "安装包" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +msgctxt "@label" +msgid "This setting is resolved from conflicting extruder-specific values:" +msgstr "此设置与挤出器特定值不同:" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "打开文件" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +msgctxt "@label" +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"此设置的值与配置文件不同。\n" +"\n" +"单击以恢复配置文件的值。" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 -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/Settings/SettingItem.qml:334 +msgctxt "@label" +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"此设置通常可被自动计算,但其当前已被绝对定义。\n" +"\n" +"单击以恢复自动计算的值。" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 -msgctxt "@title:window" -msgid "Add Printer" -msgstr "新增打印机" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +msgctxt "@label:textbox" +msgid "Search settings" +msgstr "搜索设置" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 -msgctxt "@title:window" +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:menu" +msgid "Copy all changed values to all extruders" +msgstr "将所有修改值复制到所有挤出机" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:menu" +msgid "Don't show this setting" +msgstr "不再显示此设置" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:tooltip" +msgid "3D View" +msgstr "3D 视图" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +msgctxt "@info:tooltip" +msgid "Front View" +msgstr "正视图" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "顶视图" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "左视图" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "右视图" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "查看类型" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "等待云响应" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Add printer manually" +msgstr "手动添加打印机" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +msgctxt "@label" +msgid "Manufacturer" +msgstr "制造商" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 +msgctxt "@label" +msgid "Profile author" +msgstr "配置文件作者" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 +msgctxt "@label" +msgid "Printer name" +msgstr "打印机名称" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "未找到网络内打印机。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 +msgctxt "@label" +msgid "Refresh" +msgstr "刷新" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "故障排除" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "输入您打印机的 IP 地址。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 +msgctxt "@button" +msgid "Add" +msgstr "添加" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Can't connect to your Ultimaker printer?" +msgstr "无法连接到 Ultimaker 打印机?" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Connect" +msgstr "连接" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +msgctxt "@label" +msgid "Release Notes" +msgstr "版本说明" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "备份和同步材料设置和插件" + +#: /home/trin/Gedeeld/Projects/Cura/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 多名用户的帮助" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +msgctxt "@button" +msgid "Skip" +msgstr "跳过" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +msgctxt "@text" +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 +msgctxt "@label" +msgid "Empty" +msgstr "空" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +msgctxt "@label" +msgid "User Agreement" +msgstr "用户协议" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" msgid "What's New" msgstr "新增功能" -#: PerObjectSettingsTool/plugin.json +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:18 +msgctxt "@label" +msgid "No items to select from" +msgstr "没有可供选择的项目" + +#: ModelChecker/plugin.json msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "提供对每个模型的单独设置。" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "检查模型和打印配置,以了解潜在的打印问题并给出建议。" -#: PerObjectSettingsTool/plugin.json +#: ModelChecker/plugin.json msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "单一模型设置工具" - -#: 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 配置文件读取器" - -#: X3DReader/plugin.json -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "支持读取 X3D 文件。" - -#: X3DReader/plugin.json -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D 读取器" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "备份和还原配置。" - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -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 "打印机设置操作" - -#: 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 "支持橡皮擦" - -#: 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 "可移动磁盘输出设备插件" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "为固件更新提供操作选项。" - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -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 配置文件读取器" +msgid "Model Checker" +msgstr "模型检查器" #: 3MFReader/plugin.json msgctxt "description" @@ -6009,65 +5936,15 @@ msgctxt "name" msgid "3MF Reader" msgstr "3MF 读取器" -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "支持写入 Ultimaker 格式包。" +msgid "Provides support for writing 3MF files." +msgstr "提供对写入 3MF 文件的支持。" -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "name" -msgid "UFP Writer" -msgstr "UFP 写入器" - -#: 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 日志记录" - -#: 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 配置文件读取器" - -#: PreviewStage/plugin.json -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "在 Cura 中提供预览阶段。" - -#: PreviewStage/plugin.json -msgctxt "name" -msgid "Preview Stage" -msgstr "预览阶段" - -#: XRayView/plugin.json -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "提供透视视图。" - -#: XRayView/plugin.json -msgctxt "name" -msgid "X-Ray View" -msgstr "透视视图" - -#: 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 后端" +msgid "3MF Writer" +msgstr "3MF 写入器" #: AMFReader/plugin.json msgctxt "description" @@ -6079,25 +5956,35 @@ msgctxt "name" msgid "AMF Reader" msgstr "AMF 读取器" -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "从压缩存档文件读取 G-code。" +msgid "Backup and restore your configuration." +msgstr "备份和还原配置。" -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "压缩 G-code 读取器" +msgid "Cura Backups" +msgstr "Cura 备份" -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/plugin.json msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "扩展程序(允许用户创建脚本进行后期处理)" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "提供 CuraEngine 切片后端的路径。" -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "后期处理" +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" @@ -6109,65 +5996,15 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Cura 配置文件写入器" -#: USBPrinting/plugin.json +#: DigitalLibrary/plugin.json msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "接受 G-Code 并将其发送到一台打印机。 插件也可以更新固件。" +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 打开文件并将文件保存到其中。" -#: USBPrinting/plugin.json +#: DigitalLibrary/plugin.json msgctxt "name" -msgid "USB printing" -msgstr "USB 联机打印" - -#: PrepareStage/plugin.json -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "在 Cura 中提供准备阶段。" - -#: PrepareStage/plugin.json -msgctxt "name" -msgid "Prepare Stage" -msgstr "准备阶段" - -#: 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 读取器" - -#: 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 "图像读取器" - -#: 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 打印机操作" - -#: 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 写入器" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" #: FirmwareUpdateChecker/plugin.json msgctxt "description" @@ -6179,45 +6016,55 @@ msgctxt "name" msgid "Firmware Update Checker" msgstr "固件更新检查程序" -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "提交匿名切片信息。 可以通过偏好设置禁用。" +msgid "Provides a machine actions for updating firmware." +msgstr "为固件更新提供操作选项。" -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Slice info" -msgstr "切片信息" +msgid "Firmware Updater" +msgstr "固件更新程序" -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/plugin.json msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "提供读取和写入基于 XML 的材料配置文件的功能。" +msgid "Reads g-code from a compressed archive." +msgstr "从压缩存档文件读取 G-code。" -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "材料配置文件" +msgid "Compressed G-code Reader" +msgstr "压缩 G-code 读取器" -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/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 打开文件并将文件保存到其中。" +msgid "Writes g-code to a compressed archive." +msgstr "将 G-code 写入至压缩存档文件。" -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/plugin.json msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" +msgid "Compressed G-code Writer" +msgstr "压缩 G-code 写入器" -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "查找、管理和安装新的Cura包。" +msgid "Provides support for importing profiles from g-code files." +msgstr "提供了从 GCode 文件中导入配置文件的支持。" -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "工具箱" +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" @@ -6229,245 +6076,155 @@ 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 Simulation view." -msgstr "提供仿真视图。" +msgid "Provides the preview of sliced layerdata." +msgstr "提供切片层数据的预览。" #: SimulationView/plugin.json msgctxt "name" msgid "Simulation View" msgstr "仿真视图" -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "将配置从 Cura 4.5 升级至 Cura 4.6。" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "提交匿名切片信息。 可以通过偏好设置禁用。" -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/plugin.json msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "版本从 4.5 升级至 4.6" +msgid "Slice info" +msgstr "切片信息" -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "将配置从 Cura 2.5 版本升级至 2.6 版本。" +msgid "Provides a normal solid mesh view." +msgstr "提供一个基本的实体网格视图。" -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/plugin.json msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "版本自 2.5 升级到 2.6" +msgid "Solid View" +msgstr "实体视图" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/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。" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "创建橡皮擦网格,以便阻止在某些位置打印支撑" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/plugin.json msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "版本从 4.6.0 升级到 4.6.2" - -#: 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/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/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/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/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/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/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/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" - -#: 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/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/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/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/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/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/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/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/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/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" - -#: 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 网络连接" +msgid "Support Eraser" +msgstr "支持橡皮擦" #: TrimeshReader/plugin.json msgctxt "description" @@ -6489,45 +6246,644 @@ msgctxt "name" msgid "UFP Reader" msgstr "UFP 读取器" -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "提供一个基本的实体网格视图。" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "支持写入 Ultimaker 格式包。" -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "name" -msgid "Solid View" -msgstr "实体视图" +msgid "UFP Writer" +msgstr "UFP 写入器" -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "提供对写入 3MF 文件的支持。" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "为最后的机器提供机器操作(例如,热床调平向导,选择升级等)。" -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "name" -msgid "3MF Writer" -msgstr "3MF 写入器" +msgid "Ultimaker machine actions" +msgstr "Ultimaker 打印机操作" -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "在 Cura 中提供监视阶段。" +msgid "Manages network connections to Ultimaker networked printers." +msgstr "管理与 Ultimaker 网络打印机的网络连接。" -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "name" -msgid "Monitor Stage" -msgstr "监视阶段" +msgid "Ultimaker Network Connection" +msgstr "Ultimaker 网络连接" -#: ModelChecker/plugin.json +#: USBPrinting/plugin.json msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "检查模型和打印配置,以了解潜在的打印问题并给出建议。" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "接受 G-Code 并将其发送到一台打印机。 插件也可以更新固件。" -#: ModelChecker/plugin.json +#: USBPrinting/plugin.json msgctxt "name" -msgid "Model Checker" -msgstr "模型检查器" +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." diff --git a/resources/i18n/zh_CN/fdmextruder.def.json.po b/resources/i18n/zh_CN/fdmextruder.def.json.po index ee72d6c03b..8b0e51fd1a 100644 --- a/resources/i18n/zh_CN/fdmextruder.def.json.po +++ b/resources/i18n/zh_CN/fdmextruder.def.json.po @@ -1,21 +1,19 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0000\n" -"PO-Revision-Date: 2019-03-13 14:00+0200\n" -"Last-Translator: Bothof \n" -"Language-Team: PCDotFan , Bothof \n" -"Language: zh_CN\n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.7.3\n" -"Plural-Forms: nplurals=1; plural=0;\n" #: fdmextruder.def.json msgctxt "machine_settings label" diff --git a/resources/i18n/zh_CN/fdmprinter.def.json.po b/resources/i18n/zh_CN/fdmprinter.def.json.po index b4fc48684b..c7caff60bf 100644 --- a/resources/i18n/zh_CN/fdmprinter.def.json.po +++ b/resources/i18n/zh_CN/fdmprinter.def.json.po @@ -1,21 +1,20 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 11:59+0000\n" -"PO-Revision-Date: 2021-04-16 15:04+0200\n" -"Last-Translator: Lionbridge \n" -"Language-Team: Chinese , PCDotFan , Chinese \n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" +"PO-Revision-Date: 2022-07-15 11:06+0200\n" +"Last-Translator: \n" +"Language-Team: LANGUAGE\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.4.1\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Poedit 3.1.1\n" #: fdmprinter.def.json msgctxt "machine_settings label" @@ -57,7 +56,9 @@ msgctxt "machine_start_gcode description" msgid "" "G-code commands to be executed at the very start - separated by \n" "." -msgstr "在开始时执行的 G-code 命令 - 以 \n 分行。" +msgstr "" +"在开始时执行的 G-code 命令 - 以 \n" +" 分行。" #: fdmprinter.def.json msgctxt "machine_end_gcode label" @@ -69,7 +70,9 @@ msgctxt "machine_end_gcode description" msgid "" "G-code commands to be executed at the very end - separated by \n" "." -msgstr "在结束前执行的 G-code 命令 - 以 \n 分行。" +msgstr "" +"在结束前执行的 G-code 命令 - 以 \n" +" 分行。" #: fdmprinter.def.json msgctxt "material_guid label" @@ -463,8 +466,8 @@ msgstr "机器头和风扇多边形" #: fdmprinter.def.json msgctxt "machine_head_with_fans_polygon description" -msgid "A 2D silhouette of the print head (fan caps included)." -msgstr "打印头 2D 轮廓图(包含风扇盖)。" +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" @@ -736,6 +739,16 @@ 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" @@ -956,6 +969,56 @@ 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" @@ -987,14 +1050,24 @@ msgid "Optimize the order in which walls are printed so as to reduce the number msgstr "优化墙壁印刷的顺序,以减少回撤的数量和旅行的距离。大多数部件会从启用这个功能中受益,但有些可能会花费更长的时间,所以请将打印时间估算与不优化进行比较。第一层在选择边缘作为构建板附着力类型时没有进行优化。" #: fdmprinter.def.json -msgctxt "outer_inset_first label" -msgid "Outer Before Inner Walls" -msgstr "先外壁后内壁" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "壁顺序" #: fdmprinter.def.json -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 "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" @@ -1007,84 +1080,54 @@ msgid "Prints an extra wall at every other layer. This way infill gets caught be msgstr "每隔一层打印一个额外的壁。 通过这种方法,填充物会卡在这些额外的壁之间,从而产生更强韧的打印质量。" #: fdmprinter.def.json -msgctxt "travel_compensate_overlapping_walls_enabled label" -msgid "Compensate Wall Overlaps" -msgstr "补偿壁重叠" +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "最小壁走线宽度" #: fdmprinter.def.json -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 "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 "travel_compensate_overlapping_walls_0_enabled label" -msgid "Compensate Outer Wall Overlaps" -msgstr "补偿外壁重叠" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "最小偶数壁走线宽度" #: fdmprinter.def.json -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 "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 "travel_compensate_overlapping_walls_x_enabled label" -msgid "Compensate Inner Wall Overlaps" -msgstr "补偿内壁重叠" +msgctxt "wall_split_middle_threshold label" +msgid "Split Middle Line Threshold" +msgstr "拆分中间走线阈值" #: fdmprinter.def.json -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_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 "wall_min_flow label" -msgid "Minimum Wall Flow" -msgstr "最小壁流量" +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "最小奇数壁走线宽度" #: fdmprinter.def.json -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 "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_min_flow_retract label" -msgid "Prefer Retract" -msgstr "首选回抽" +msgctxt "wall_add_middle_threshold label" +msgid "Add Middle Line Threshold" +msgstr "添加中间走线阈值" #: fdmprinter.def.json -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 "如启用,会使用回抽而不是梳理取代流量低于最小流量阈值的壁的空驶。" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps label" -msgid "Fill Gaps Between Walls" -msgstr "填充壁之间空隙" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps description" -msgid "Fills the gaps between walls where no walls fit." -msgstr "在没有墙壁适合的位置填充墙壁之间的间隙。" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option nowhere" -msgid "Nowhere" -msgstr "都不填充" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option everywhere" -msgid "Everywhere" -msgstr "全部填充" - -#: fdmprinter.def.json -msgctxt "filter_out_tiny_gaps label" -msgid "Filter Out Tiny Gaps" -msgstr "滤除微小的间隙" - -#: fdmprinter.def.json -msgctxt "filter_out_tiny_gaps description" -msgid "Filter out tiny gaps to reduce blobs on outside of model." -msgstr "滤除微小的间隙以减少模型外的光点。" +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" @@ -1096,6 +1139,26 @@ 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" @@ -2195,6 +2258,26 @@ 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" @@ -2706,24 +2789,14 @@ msgid "The first few layers are printed slower than the rest of the model, to ge msgstr "前几层的打印速度比模型的其他层慢,以便实现与打印平台的更好粘着,并改善整体的打印成功率。 该速度在这些层中会逐渐增加。" #: fdmprinter.def.json -msgctxt "speed_equalize_flow_enabled label" -msgid "Equalize Filament Flow" -msgstr "均衡耗材流量" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "流量均衡比" #: fdmprinter.def.json -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 "以较快的速度打印比正常走线更细的走线,使每秒挤出的材料量保持相同。 模型中较薄的部分可能需要以低于设置中所提供宽度的走线宽度来打印走线。 该设置控制这些走线的速度变化。" - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_max label" -msgid "Maximum Speed for Flow Equalization" -msgstr "均流最大速度" - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_max description" -msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -msgstr "调整打印速度以便均衡流量时的最大打印速度。" +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "基于速度校正系数的挤出宽度。在 0% 时,移动速度保持在打印速度不变。在 100% 时,将调整移动速度以使流量(以 mm³/s 为单位)保持恒定,即以两倍的速度打印正常线宽一半的线条,以一半的速度打印两倍宽的线条。大于 100% 的值有助于为挤出宽线所需的更高压力提供补偿。" #: fdmprinter.def.json msgctxt "acceleration_enabled label" @@ -2735,6 +2808,16 @@ 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" @@ -2925,6 +3008,16 @@ 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" @@ -4460,6 +4553,46 @@ 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" @@ -4624,6 +4757,16 @@ 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" @@ -5124,6 +5267,16 @@ 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" @@ -6418,6 +6571,36 @@ 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 "在每一层或嵌入上交替壁方向。这适用于会产生应力的材料,例如在金属打印中。" + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "移除 Raft 内侧角" + +#: 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 "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Raft 底板壁数" + +#: 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 "command_line_settings label" msgid "Command Line Settings" @@ -6478,6 +6661,98 @@ 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 分行。" diff --git a/resources/i18n/zh_TW/cura.po b/resources/i18n/zh_TW/cura.po index 0eab1c49e0..972b982289 100644 --- a/resources/i18n/zh_TW/cura.po +++ b/resources/i18n/zh_TW/cura.po @@ -1,13 +1,13 @@ # Cura -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. -# Ultimaker , 2021. +# Ultimaker , 2022. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0100\n" +"POT-Creation-Date: 2022-06-21 12:50+0200\n" "PO-Revision-Date: 2022-01-02 19:59+0800\n" "Last-Translator: Valen Chang \n" "Language-Team: Valen Chang \n" @@ -18,399 +18,196 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.0\n" -#: /home/clamboo/Desktop/Cura/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/Machines/Models/DiscoveredPrintersModel.py:83 +msgctxt "@label" +msgid "Unknown" +msgstr "未知" -#: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122 /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 -msgctxt "@info:title" -msgid "Backup" -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/clamboo/Desktop/Cura/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/Machines/Models/DiscoveredPrintersModel.py:115 +msgctxt "@label" +msgid "Available networked printers" +msgstr "可用的網路印表機" -#: /home/clamboo/Desktop/Cura/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/Machines/Models/ExtrudersModel.py:219 +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "不覆寫" -#: /home/clamboo/Desktop/Cura/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/Machines/Models/GlobalStacksModel.py:138 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24 +msgctxt "@label" +msgid "Connected printers" +msgstr "已連線印表機" -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55 -msgctxt "@action:button" -msgid "Please sync the material profiles with your printers before starting to print." -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/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56 -msgctxt "@action:button" -msgid "New materials installed" -msgstr "新線材資料安裝" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63 -msgctxt "@action:button" -msgid "Sync materials with printers" -msgstr "列印機同步線材資料" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71 /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80 -msgctxt "@action:button" -msgid "Learn more" -msgstr "學習更多" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 -msgctxt "@message:text" -msgid "Could not save material archive to {}:" -msgstr "無法儲存線材資料至{}:" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 -msgctxt "@message:title" -msgid "Failed to save material archive" -msgstr "線材資料儲存失敗" - -#: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 -msgctxt "@text" -msgid "Unknown error." -msgstr "未知的錯誤." - -#: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99 -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/clamboo/Desktop/Cura/cura/BuildVolume.py:102 -msgctxt "@info:title" -msgid "Build Volume" -msgstr "列印範圍" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219 -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "不覆寫" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361 /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171 -msgctxt "@label" -msgid "Unknown" -msgstr "未知" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115 -msgctxt "@label" -msgid "Available networked printers" -msgstr "可用的網路印表機" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425 +#: /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/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426 +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:427 msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "所有檔案 (*)" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14 -msgctxt "@label" -msgid "Visual" -msgstr "外觀" +#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualitySettingsModel.py:182 +msgctxt "@info:status" +msgid "Calculated" +msgstr "已計算" -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46 /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18 -msgctxt "@label" -msgid "Engineering" -msgstr "工程" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50 /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53 /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22 -msgctxt "@label" -msgid "Draft" -msgstr "草稿" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54 /home/clamboo/Desktop/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/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288 -msgctxt "@label" -msgid "Custom Material" -msgstr "自訂線材資料" - -#: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289 /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346 -msgctxt "@label" -msgid "Custom" -msgstr "自訂" - -#: /home/clamboo/Desktop/Cura/cura/API/Account.py:190 +#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:190 msgctxt "@info:title" msgid "Login failed" msgstr "登入失敗" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24 msgctxt "@info:status" msgid "Finding new location for objects" msgstr "正在為物件尋找新位置" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28 msgctxt "@info:title" msgid "Finding Location" msgstr "尋找位置中" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:99 msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "無法在列印範圍內放下全部物件" -#: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42 /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 +#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42 msgctxt "@info:title" msgid "Can't Find Location" msgstr "無法找到位置" -#: /home/clamboo/Desktop/Cura/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/Backups/Backup.py:115 +msgctxt "@info:backup_failed" +msgid "Could not create archive from user data directory: {}" +msgstr "無法從使用者資料目錄建立備份檔:{}" -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165 -msgctxt "@text:error" -msgid "Failed to load the archive of materials to sync it with printers." -msgstr "無法載入與印表機同步的材料檔案." - -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143 -msgctxt "@text:error" -msgid "The response from Digital Factory appears to be corrupted." -msgstr "從Digital Factory的回應似乎已損壞." - -#: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155 -msgctxt "@text:error" -msgid "The response from Digital Factory is missing important information." -msgstr "從Digital Factory的回應似乎遺漏重要資訊." - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232 -msgctxt "@text:error" -msgid "Failed to connect to Digital Factory." -msgstr "在連接至Digital Factory的過程中失敗." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530 -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "正在載入印表機..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537 -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "正在設定偏好設定..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675 -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "正在初始化啟用的機器..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811 -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "正在初始化機器管理員..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825 -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "正在初始化列印範圍..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896 -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "正在設定場景..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932 -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "正在載入介面..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937 -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "正在初始化引擎..." - -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1807 -#, 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/clamboo/Desktop/Cura/cura/CuraApplication.py:1809 /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 +#: /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 msgctxt "@info:title" -msgid "Warning" -msgstr "警告" +msgid "Backup" +msgstr "備份" -#: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819 -#, python-brace-format +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 msgctxt "@info:status" -msgid "Can't open any other file if G-code is loading. Skipped importing {0}" -msgstr "如果載入 G-code,則無法開啟其他任何檔案。{0} 已跳過匯入" +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/clamboo/Desktop/Cura/cura/CuraApplication.py:1821 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 +#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:103 msgctxt "@info:title" -msgid "Error" -msgstr "錯誤" +msgid "Build Volume" +msgstr "列印範圍" -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286 -msgctxt "@action:button" -msgid "Skip" -msgstr "略過" - -#: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72 /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127 -msgctxt "@action:button" -msgid "Close" -msgstr "關閉" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57 /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277 -msgctxt "@action:button" -msgid "Next" -msgstr "下一步" - -#: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290 /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26 -msgctxt "@action:button" -msgid "Finish" -msgstr "完成" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48 -msgctxt "@action:button" -msgid "Add" -msgstr "增加" - -#: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293 -msgctxt "@action:button" -msgid "Cancel" -msgstr "取消" - -#: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69 -#, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "群組 #{group_nr}" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85 -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "外壁" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86 -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "內壁" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87 -msgctxt "@tooltip" -msgid "Skin" -msgstr "表層" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88 -msgctxt "@tooltip" -msgid "Infill" -msgstr "填充" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89 -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "支撐填充" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90 -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "支撐介面" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91 -msgctxt "@tooltip" -msgid "Support" -msgstr "支撐" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92 -msgctxt "@tooltip" -msgid "Skirt" -msgstr "裙邊" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93 -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "裝填塔" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94 -msgctxt "@tooltip" -msgid "Travel" -msgstr "移動" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95 -msgctxt "@tooltip" -msgid "Retractions" -msgstr "回抽" - -#: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96 -msgctxt "@tooltip" -msgid "Other" -msgstr "其它" - -#: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37 /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61 -msgctxt "@text:window" -msgid "The release notes could not be opened." -msgstr "發佈通知無法開啟." - -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107 msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura 無法啟動" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113 msgctxt "@label crash message" msgid "" "

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

      \n" @@ -425,32 +222,32 @@ msgstr "" "

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

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

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

      \n" " " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198 msgctxt "@title:groupbox" msgid "System information" msgstr "系統資訊" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207 msgctxt "@label unknown version of Cura" msgid "Unknown" msgstr "未知" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228 msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura 版本" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229 msgctxt "@label" msgid "Cura language" msgstr "Cura 語言" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230 msgctxt "@label" msgid "OS language" msgstr "作業系統語言" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231 msgctxt "@label Type of platform" msgid "Platform" msgstr "平台" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232 msgctxt "@label" msgid "Qt version" msgstr "Qt 版本" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233 msgctxt "@label" msgid "PyQt version" msgstr "PyQt 版本" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234 msgctxt "@label OpenGL version" msgid "OpenGL" msgstr "OpenGL" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264 msgctxt "@label" -msgid "Not yet initialized
      " -msgstr "尚未初始化
      " +msgid "Not yet initialized" +msgstr "" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267 #, python-brace-format msgctxt "@label OpenGL version" msgid "
    • OpenGL Version: {version}
    • " msgstr "
    • OpenGL 版本:{version}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268 #, python-brace-format msgctxt "@label OpenGL vendor" msgid "
    • OpenGL Vendor: {vendor}
    • " msgstr "
    • OpenGL 供應商:{vendor}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269 #, python-brace-format msgctxt "@label OpenGL renderer" msgid "
    • OpenGL Renderer: {renderer}
    • " msgstr "
    • OpenGL 渲染器:{renderer}
    • " -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:304 msgctxt "@title:groupbox" msgid "Error traceback" msgstr "錯誤追溯" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:390 msgctxt "@title:groupbox" msgid "Logs" msgstr "日誌" -#: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417 +#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:418 msgctxt "@action:button" msgid "Send report" msgstr "送出報告" -#: /home/clamboo/Desktop/Cura/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/CuraApplication.py:531 +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "正在載入印表機..." -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277 -msgctxt "@info" -msgid "Unable to reach the Ultimaker account server." -msgstr "無法連上 Ultimaker 帳號伺服器。" +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:538 +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "正在設定偏好設定..." -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278 +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:683 +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "正在初始化啟用的機器..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:823 +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "正在初始化機器管理員..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:837 +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "正在初始化列印範圍..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:905 +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "正在設定場景..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:941 +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "正在載入介面..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:946 +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "正在初始化引擎..." + +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1272 +#, 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 +#, 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 msgctxt "@info:title" -msgid "Log-in failed" -msgstr "登入失敗" +msgid "Warning" +msgstr "警告" -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "提供的狀態不正確。" +#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810 +#, 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/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 -msgctxt "@message" -msgid "Timeout when authenticating with the account server." -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 +msgctxt "@info:title" +msgid "Error" +msgstr "錯誤" -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97 -msgctxt "@message" -msgid "Please give the required permissions when authorizing this application." -msgstr "核准此應用程式時,請給予所需的權限。" - -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104 -msgctxt "@message" -msgid "Something unexpected happened when trying to log in, please try again." -msgstr "嘗試登入時出現意外狀況,請再試一次。" - -#: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89 -msgctxt "@message" -msgid "Could not read response." -msgstr "雲端沒有讀取回應。" - -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:30 msgctxt "@info:status" msgid "Multiplying and placing objects" msgstr "正在複製並放置模型" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:32 msgctxt "@info:title" msgid "Placing Objects" msgstr "正在放置模型" -#: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100 +#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:100 msgctxt "@info:title" msgid "Placing Object" msgstr "擺放物件中" -#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:36 -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "不支援" +#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:89 +msgctxt "@message" +msgid "Could not read response." +msgstr "雲端沒有讀取回應。" -#: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:55 -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "預設值" +#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75 +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "提供的狀態不正確。" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 -msgctxt "@label" -msgid "Nozzle" -msgstr "噴頭" +#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80 +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "在向帳戶伺服器進行身分驗證時逾時." -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857 -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/OAuth2/AuthorizationRequestHandler.py:97 +msgctxt "@message" +msgid "Please give the required permissions when authorizing this application." +msgstr "核准此應用程式時,請給予所需的權限。" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@info" +msgid "Unable to reach the Ultimaker account server." +msgstr "無法連上 Ultimaker 帳號伺服器。" + +#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:278 msgctxt "@info:title" -msgid "Settings updated" -msgstr "設定更新" +msgid "Log-in failed" +msgstr "登入失敗" -#: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480 -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "擠出機已停用" +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104 +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." +msgstr "無法建立與印表機同步的材料檔案." -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140 +#: /home/trin/Gedeeld/Projects/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 msgctxt "@title:window" msgid "File Already Exists" msgstr "檔案已經存在" -#: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:208 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459 /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:459 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:462 msgctxt "@info:status" msgid "Invalid file URL:" msgstr "無效的檔案網址:" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:173 msgctxt "@info:title" msgid "Export succeeded" msgstr "匯出成功" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252 /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:252 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:359 #, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "已成功匯入列印參數 {0}。" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:366 #, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "檔案 {0} 內未含有效的列印參數。" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443 msgctxt "@label" msgid "Custom profile" msgstr "自訂列印參數" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:459 msgctxt "@info:status" msgid "Profile is missing a quality type." msgstr "列印參數缺少列印品質類型定義。" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463 msgctxt "@info:status" msgid "There is no active printer yet." msgstr "尚未啟動列印機." -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:469 msgctxt "@info:status" msgid "Unable to add the profile." msgstr "無法新增列印參數。" -#: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488 +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14 +#: /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 msgctxt "@label" -msgid "Per Model Settings" -msgstr "單一模型設定" +msgid "Nozzle" +msgstr "噴頭" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15 -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "設定對每個模型的單獨設定" +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857 +msgctxt "@info:message Followed by a list of settings." +msgid "Settings have been changed to match the current availability of extruders:" +msgstr "設定已被更改為符合目前擠出機:" -#: /home/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Cura 列印參數" - -#: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13 -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "X3D 檔案" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26 /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86 -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "嘗試恢復備份時發生錯誤。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858 msgctxt "@info:title" -msgid "Backups" -msgstr "備份" +msgid "Settings updated" +msgstr "設定更新" -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26 -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "上傳你的備份時發生錯誤。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46 -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "正在建立備份..." - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55 -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "建立備份時發生了錯誤。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59 -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "正在上傳你的備份..." - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69 -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "你的備份上傳完成。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103 -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "備份超過了最大檔案大小。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69 -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "管理備份" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32 -msgctxt "@action" -msgid "Machine Settings" -msgstr "印表機設定" - -#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12 -msgctxt "@label" -msgid "Support Blocker" -msgstr "支撐阻斷器" - -#: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:13 -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "建立一塊不列印支撐的空間。" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76 -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "行動裝置" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "儲存至行動裝置" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24 -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "儲存到行動裝置 {0}" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 -msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "沒有可供寫入的檔案格式!" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97 -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "正在儲存到行動裝置 {0}" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98 +#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1480 msgctxt "@info:title" -msgid "Saving" -msgstr "儲存中" +msgid "Extruder(s) Disabled" +msgstr "擠出機已停用" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111 -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "無法儲存到 {0}{1}" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127 -#, 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/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159 -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "無法儲存到行動裝置 {0}:{1}" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150 -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "儲存到行動裝置 {0}:{1}" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151 -msgctxt "@info:title" -msgid "File Saved" -msgstr "檔案已儲存" - -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61 msgctxt "@action:button" -msgid "Eject" -msgstr "卸載" +msgid "Add" +msgstr "增加" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Cancel" +msgstr "取消" + +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69 #, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "卸載行動裝置 {0}" +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "群組 #{group_nr}" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172 -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "已卸載 {0}。現在你可以安全地移除行動裝置。" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85 +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "外壁" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173 -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "安全移除硬體" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86 +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "內壁" -#: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176 -#, 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/cura/UI/PrintInformation.py:87 +msgctxt "@tooltip" +msgid "Skin" +msgstr "表層" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27 -msgctxt "@action" -msgid "Update Firmware" -msgstr "更新韌體" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88 +msgctxt "@tooltip" +msgid "Infill" +msgstr "填充" -#: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Cura 15.04 列印參數" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89 +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "支撐填充" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203 -msgctxt "@title:tab" -msgid "Recommended" -msgstr "推薦" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90 +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "支撐介面" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205 -msgctxt "@title:tab" -msgid "Custom" -msgstr "自訂選項" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91 +msgctxt "@tooltip" +msgid "Support" +msgstr "支撐" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542 -#, 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}。機器無法被匯入,但模型將被匯入。" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92 +msgctxt "@tooltip" +msgid "Skirt" +msgstr "裙邊" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545 -msgctxt "@info:title" -msgid "Open Project File" -msgstr "開啟專案檔案" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93 +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "裝填塔" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642 -#, 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/cura/UI/PrintInformation.py:94 +msgctxt "@tooltip" +msgid "Travel" +msgstr "移動" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643 /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "無法開啟專案檔案" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:95 +msgctxt "@tooltip" +msgid "Retractions" +msgstr "回抽" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650 -#, 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/cura/UI/PrintInformation.py:96 +msgctxt "@tooltip" +msgid "Other" +msgstr "其它" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703 -#, 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/cura/UI/TextManager.py:37 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:63 +msgctxt "@text:window" +msgid "The release notes could not be opened." +msgstr "發佈通知無法開啟." -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27 /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33 -msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "3MF 檔案" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:57 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:277 +msgctxt "@action:button" +msgid "Next" +msgstr "下一步" -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94 /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149 -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159 -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "無法寫入 UFP 檔案:" +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:286 +#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:67 +msgctxt "@action:button" +msgid "Skip" +msgstr "略過" -#: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28 /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "Ultimaker Format Package" -msgstr "Ultimaker 格式的封包" +#: /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 +msgctxt "@action:button" +msgid "Close" +msgstr "關閉" -#: /home/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16 -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "G-code 檔案" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66 +msgctxt "@action:button" +msgid "Please sync the material profiles with your printers before starting to print." +msgstr "再列印前請先同步線材資料." -#: /home/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13 -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "預覽" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67 +msgctxt "@action:button" +msgid "New materials installed" +msgstr "新線材資料安裝" -#: /home/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12 -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "透視檢視" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260 -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "正在處理層" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261 -msgctxt "@info:title" -msgid "Information" -msgstr "資訊" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162 -msgctxt "@message:title" -msgid "Slicing failed" -msgstr "切片失敗" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167 -msgctxt "@message:button" -msgid "Report a bug" -msgstr "回報問題" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168 -msgctxt "@message:description" -msgid "Report a bug on Ultimaker Cura's issue tracker." -msgstr "於Ultimaker Cura問題追蹤器中回報問題." - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "無法使用目前線材切片,因為它與所選機器或設定不相容。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456 -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493 -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "無法切片" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "無法使用目前設定進行切片。以下設定存在錯誤:{0}" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 -#, 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/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467 -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "無法切片(原因:換料塔或主位置無效)。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479 -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "有物件使用了被停用的擠出機 %s ,因此無法進行切片。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489 -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" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74 +msgctxt "@action:button" +msgid "Sync materials" msgstr "" -"請檢查設定並檢查你的模型是否:\n" -"- 適合列印範圍\n" -"- 分配了一個已啟用的擠出機\n" -"- 沒有全部設定成修改網格" -#: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "AMF 檔案" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17 /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17 -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "壓縮 G-code 檔案" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35 -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "後處理" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36 -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "修改 G-Code 檔案" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42 -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "USB 連線列印" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "透過 USB 連線列印" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44 -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "透過 USB 連線列印" - -#: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80 -msgctxt "@info:status" -msgid "Connected via USB" -msgstr "透過 USB 連接" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 -msgctxt "@message" -msgid "Print in Progress" -msgstr "列印正在進行中" - -#: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "準備" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347 -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "正在解析 G-code" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349 /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503 -msgctxt "@info:title" -msgid "G-code Details" -msgstr "G-code 細項設定" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501 -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/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "G 檔案" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14 -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "JPG 圖片" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18 -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "JPEG 圖片" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22 -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "PNG 圖片" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "BMP 圖片" - -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30 -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "GIF 圖片" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24 -msgctxt "@action" -msgid "Level build plate" -msgstr "調整列印平台水平" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21 -msgctxt "@action" -msgid "Select upgrades" -msgstr "選擇升級" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43 -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "G-code GZ 寫入器不支援非文字模式。" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127 -msgctxt "@info" -msgid "Could not access update information." -msgstr "無法存取更新資訊。" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28 +#: /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 msgctxt "@action:button" -msgid "How to update" -msgstr "如何更新" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95 -msgctxt "@text" -msgid "Unable to read example data file." -msgstr "無法讀取範例資料檔案." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19 -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "你需要結束並重新啟動 {} ,更動才能生效。" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91 -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "同步中..." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95 /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 -msgctxt "@info:title" -msgid "Changes detected from your Ultimaker account" -msgstr "從你的 Ultimaker 帳號偵測到資料更動" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142 -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "你要使用你的帳號同步線材資料和軟體套件嗎?" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145 -msgctxt "@action:button" -msgid "Sync" -msgstr "同步" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41 -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "拒絕並從帳號中刪除" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79 -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "下載外掛 {} 失敗" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9 -msgctxt "@button" -msgid "Decline" -msgstr "拒絕" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56 -msgctxt "@button" -msgid "Agree" -msgstr "同意" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74 -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "外掛授權協議" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74 -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "G-code 寫入器不支援非文字模式。" - -#: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80 /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96 -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "匯出前請先將 G-code 準備好。" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130 -msgctxt "@info:title" -msgid "Simulation View" -msgstr "模擬檢視" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133 -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "因為你還沒切片,沒有東西可顯示。" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134 -msgctxt "@info:title" -msgid "No layers to show" -msgstr "沒有列印層可顯示" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136 /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15 -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "分層檢視" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58 -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "網路連線列印" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59 -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "網路連線列印" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60 -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "透過網路連接" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27 -msgctxt "@info:status" -msgid "tomorrow" -msgstr "明天" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30 -msgctxt "@info:status" -msgid "today" -msgstr "今天" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28 -msgctxt "@action" -msgid "Connect via Network" -msgstr "透過網路連接" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15 -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "請等待目前作業傳送完成。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16 -msgctxt "@info:title" -msgid "Print error" -msgstr "列印錯誤" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15 -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "列印作業已成功傳送到印表機。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16 -msgctxt "@info:title" -msgid "Data Sent" -msgstr "資料傳送" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21 -msgctxt "@info:title" -msgid "Update your printer" -msgstr "更新你印表機" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17 -msgctxt "@info:title" -msgid "Queue Full" -msgstr "隊列已滿" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15 -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "正在傳送列印作業" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16 -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "正在上傳列印作業到印表機。" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26 -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "向印表機傳送線材參數中" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15 -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "雲端服務未上傳資料到印表機。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16 -msgctxt "@info:title" -msgid "Network error" -msgstr "網路錯誤" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30 -msgctxt "@info:title" -msgid "Not a group host" -msgstr "不是印表機群組管理者" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36 -msgctxt "@action" -msgid "Configure group" -msgstr "設定印表機群組" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26 -msgctxt "@info:title" -msgid "Are you ready for cloud printing?" -msgstr "您準備好雲端列印嗎?" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30 -msgctxt "@action" -msgid "Get started" -msgstr "開始" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 -msgctxt "@action" msgid "Learn more" msgstr "學習更多" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154 -msgctxt "@action:button" -msgid "Print via cloud" -msgstr "透過雲端服務列印" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135 +msgctxt "@message:text" +msgid "Could not save material archive to {}:" +msgstr "無法儲存線材資料至{}:" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155 -msgctxt "@properties:tooltip" -msgid "Print via cloud" -msgstr "透過雲端服務列印" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136 +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "線材資料儲存失敗" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156 -msgctxt "@info:status" -msgid "Connected via cloud" -msgstr "透過雲端服務連接" +#: /home/trin/Gedeeld/Projects/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188 +msgctxt "@text" +msgid "Unknown error." +msgstr "未知的錯誤." -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261 -msgctxt "@action:button" -msgid "Monitor print" -msgstr "監控列印" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263 -msgctxt "@action:tooltip" -msgid "Track the print in Ultimaker Digital Factory" -msgstr "在Ultimaker Digital Factory中追蹤您的列印" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262 -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "從 Digital Factory 新增的印表機:" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432 -msgctxt "info:name" -msgid "Ultimaker Digital Factory" -msgstr "Ultimaker Digital Factory" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346 -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "要建立連線,請前往 {website_link}" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350 -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "保留印表機設定" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355 -msgctxt "@action:button" -msgid "Remove printers" -msgstr "移除印表機" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473 -msgctxt "@title:window" -msgid "Remove printers?" -msgstr "移除印表機?" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476 -#, 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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481 -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/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19 -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "COLLADA Digital Asset Exchange" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23 -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "glTF Binary" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27 -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF Embedded JSON" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36 -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Stanford 三角形格式" - -#: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40 -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Compressed COLLADA Digital Asset Exchange" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73 -msgctxt "@info:title" -msgid "Model Errors" -msgstr "模型錯誤" - -#: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12 -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "實體檢視" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226 -msgctxt "@error:zip" -msgid "Error writing 3mf file." -msgstr "寫入 3mf 檔案發生錯誤。" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31 -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "3MF 寫入器外掛已損壞。" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37 -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "無工作區可寫入,請先添加一部印表機." - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97 -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "沒有寫入此處工作區的權限。" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26 -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "3MF 檔案" - -#: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34 -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Cura 專案 3MF 檔案" - -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14 -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "監控" - -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31 msgctxt "@info:title" msgid "3D Model Assistant" msgstr "3D 模型助手" -#: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97 #, python-brace-format msgctxt "@info:status" msgid "" @@ -1702,1469 +838,1926 @@ msgstr "" "

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

      \n" "

      閱讀列印品質指南

      " -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42 -msgctxt "@label" -msgid "Mesh Type" -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." +msgstr "專案檔案 {0} 包含未知的機器類型 {1}。機器無法被匯入,但模型將被匯入。" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82 -msgctxt "@label" -msgid "Normal model" -msgstr "普通模型" +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548 +msgctxt "@info:title" +msgid "Open Project File" +msgstr "開啟專案檔案" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94 -msgctxt "@label" -msgid "Print as support" -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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106 -msgctxt "@label" -msgid "Modify settings for overlaps" -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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118 -msgctxt "@label" -msgid "Don't support overlaps" -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/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151 -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -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 "專案檔案 {0} 使用了此版本 Ultimaker Cura 未知的參數製作。" -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152 -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "切割網格" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382 -msgctxt "@action:button" -msgid "Select settings" -msgstr "選擇設定" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13 -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "選擇對此模型的自訂設定" - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96 -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "篩選..." - -#: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68 -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "顯示全部" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25 -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Cura 備份" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21 -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Cura 版本" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29 -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "印表機" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37 -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "線材" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45 -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "參數" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53 -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "外掛" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22 -msgctxt "@button" -msgid "Want more?" -msgstr "想要更多?" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31 -msgctxt "@button" -msgid "Backup Now" -msgstr "立即備份" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43 -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "自動備份" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71 -msgctxt "@button" -msgid "Restore" -msgstr "復原" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100 -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "刪除備份" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101 -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "你確定要刪除此備份嗎? 這動作無法復原。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109 -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "復原備份" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110 -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/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34 -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "備份並同步你的 Cura 設定。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53 -msgctxt "@button" -msgid "Sign in" -msgstr "登入" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28 -msgctxt "@title" -msgid "My Backups" -msgstr "我的備份" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38 -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "你目前沒有任何備份。 使用「立即備份」按鈕建立一個。" - -#: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60 -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/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56 -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "印表機設定" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70 -msgctxt "@label" -msgid "X (Width)" -msgstr "X (寬度)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109 /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 -msgctxt "@label" -msgid "mm" -msgstr "mm" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85 -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (深度)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100 -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (高度)" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114 -msgctxt "@label" -msgid "Build plate shape" -msgstr "列印平台形狀" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127 -msgctxt "@label" -msgid "Origin at center" -msgstr "原點位於中心" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139 -msgctxt "@label" -msgid "Heated bed" -msgstr "熱床" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151 -msgctxt "@label" -msgid "Heated build volume" -msgstr "熱箱" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163 -msgctxt "@label" -msgid "G-code flavor" -msgstr "G-code 類型" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187 -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "列印頭設定" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 -msgctxt "@label" -msgid "X min" -msgstr "X 最小值" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 -msgctxt "@label" -msgid "Y min" -msgstr "Y 最小值" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241 -msgctxt "@label" -msgid "X max" -msgstr "X 最大值" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 -msgctxt "@label" -msgid "Y max" -msgstr "Y 最大值" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 -msgctxt "@label" -msgid "Gantry Height" -msgstr "吊車高度" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293 -msgctxt "@label" -msgid "Number of Extruders" -msgstr "擠出機數目" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345 -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "將擠出機偏移設定至Gcode" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393 -msgctxt "@title:label" -msgid "Start G-code" -msgstr "起始 G-code" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404 -msgctxt "@title:label" -msgid "End G-code" -msgstr "結束 G-code" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "噴頭設定" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75 -msgctxt "@label" -msgid "Nozzle size" -msgstr "噴頭孔徑" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89 -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "相容的線材直徑" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105 -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "噴頭偏移 X" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120 -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "噴頭偏移 Y" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135 -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "冷卻風扇數量" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163 -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "擠出機起始 G-code" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177 -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "擠出機結束 G-code" - -#: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:212 msgctxt "@title:tab" -msgid "Printer" -msgstr "印表機" +msgid "Recommended" +msgstr "推薦" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31 -msgctxt "@title" +#: /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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39 -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/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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46 -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/GCodeGzWriter/GCodeGzWriter.py:43 +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "G-code GZ 寫入器不支援非文字模式。" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58 +#: /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 "Automatically upgrade Firmware" -msgstr "自動升級韌體" +msgid "Sync" +msgstr "同步" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69 +#: /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 "Upload custom Firmware" -msgstr "上傳自訂韌體" +msgid "Eject" +msgstr "卸載" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83 +#: /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 "Firmware can not be updated because there is no connection with the printer." -msgstr "因為沒有與印表機連線,無法更新韌體。" +msgid "Support Blocker" +msgstr "支撐阻斷器" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91 -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/SupportEraser/__init__.py:13 +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "建立一塊不列印支撐的空間。" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98 +#: /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 "Select custom firmware" -msgstr "選擇自訂韌體" +msgid "Remove printers?" +msgstr "移除印表機?" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119 -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "韌體更新" - -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484 +#, python-brace-format msgctxt "@label" -msgid "Updating firmware." -msgstr "更新韌體中..." +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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:489 msgctxt "@label" -msgid "Firmware update completed." -msgstr "韌體更新已完成。" +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/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147 +#: /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 "Firmware update failed due to an unknown error." -msgstr "由於未知錯誤,韌體更新失敗。" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "USB 列印正在進行中,關閉 Cura 將停止此列印工作。你確定要繼續嗎?" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149 -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -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 "列印仍在進行中。列印完成前,Cura 無法透過 USB 開始另一次列印。" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151 -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "由於輸入/輸出錯誤,導致韌體更新失敗。" +#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136 +msgctxt "@message" +msgid "Print in Progress" +msgstr "列印正在進行中" -#: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153 -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "由於韌體遺失,導致韌體更新失敗。" +#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13 +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "X3D 檔案" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 msgctxt "@action:ComboBox Update/override existing profile" msgid "Update existing" msgstr "更新已有設定" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:64 msgctxt "@action:ComboBox Save settings in a new profile" msgid "Create new" msgstr "新建設定" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94 -msgctxt "@action:label" -msgid "Printer settings" -msgstr "印表機設定" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219 -msgctxt "@action:label" -msgid "Profile settings" -msgstr "列印參數設定" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:305 msgctxt "@action:label" msgid "Derivative from" msgstr "衍生自" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312 -msgctxt "@action:label" -msgid "Material settings" -msgstr "線材設定" - -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:405 msgctxt "@action:label" msgid "Mode" msgstr "模式" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:421 msgctxt "@action:label" msgid "Visible settings:" msgstr "顯示設定:" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:426 msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 / %2" -#: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429 +#: /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/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457 +#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:514 msgctxt "@action:button" msgid "Open" msgstr "開啟" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20 +#: /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 "Post Processing Plugin" -msgstr "後處理外掛" +msgid "Cura Backups" +msgstr "Cura 備份" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59 +#: /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 "Post Processing Scripts" -msgstr "後處理腳本" +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/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235 -msgctxt "@action" -msgid "Add a script" -msgstr "添加一個腳本" - -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282 +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43 msgctxt "@label" -msgid "Settings" -msgstr "設定" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "新印表機出廠配備的韌體完全可以正常使用,但新版本往往具有更多的新功能和改進。" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502 -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "更改目前啟用的後處理腳本。" +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55 +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "自動升級韌體" -#: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506 -msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "下列為啟用中的腳本:" +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66 +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "上傳自訂韌體" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19 +#: /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 "Convert Image..." -msgstr "轉換圖片..." +msgid "Select custom firmware" +msgstr "選擇自訂韌體" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33 -msgctxt "@info:tooltip" -msgid "The maximum distance of each pixel from \"Base.\"" -msgstr "每個像素與底板的最大距離。" +#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113 +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "韌體更新" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56 msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "距離列印平台的底板高度,以毫米為單位。" +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "每個像素與底板的最大距離。" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:66 msgctxt "@action:label" msgid "Base (mm)" msgstr "底板 (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:90 msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate." -msgstr "列印平台寬度,以毫米為單位。" +msgid "The base height from the build plate in millimeters." +msgstr "距離列印平台的底板高度,以毫米為單位。" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:100 msgctxt "@action:label" msgid "Width (mm)" msgstr "寬度 (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:124 msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "列印平台深度,以毫米為單位" +msgid "The width in millimeters on the build plate" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:134 msgctxt "@action:label" msgid "Depth (mm)" msgstr "深度 (mm)" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:158 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 模型中較厚的位置。" +msgid "The depth in millimeters on the build plate" +msgstr "列印平台深度,以毫米為單位" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:187 msgctxt "@item:inlistbox" msgid "Darker is higher" msgstr "顏色越深高度越高" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188 msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "顏色越淺高度越高" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195 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 "若要列印浮雕,使用一個簡易的對數模型計算半透明效果。若要列印高度圖,將像素值線性對應到高度。" +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 +#: /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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161 /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:225 msgctxt "@item:inlistbox" msgid "Translucency" msgstr "半透明" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:232 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 厚度列印件的百分比。降低此值可增加暗部的對比度,並降低亮部的對比度。" +msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." +msgstr "若要列印浮雕,使用一個簡易的對數模型計算半透明效果。若要列印高度圖,將像素值線性對應到高度。" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:242 msgctxt "@action:label" msgid "1mm Transmittance (%)" msgstr "1mm 透明度" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:263 msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "影像平滑程度。" +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/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200 +#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:274 msgctxt "@action:label" msgid "Smoothing" msgstr "平滑" -#: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227 /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 +#: /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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30 -msgctxt "@label" -msgid "Please select any upgrades made to this Ultimaker Original" -msgstr "請選擇適用於 Ultimaker Original 的更新檔案" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41 -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "熱床(官方版本或自製版本)" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30 -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "列印平台調整水平" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57 -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/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75 -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "開始進行列印平台調平" - -#: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87 -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "移動到下一個位置" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17 -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "更多關於匿名資料收集的資訊" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74 -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/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110 -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "我不想傳送匿名資料" - -#: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119 -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "允許傳送匿名資料" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19 -msgctxt "@title" -msgid "Marketplace" -msgstr "市集" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19 -msgctxt "@info" -msgid "You will need to restart Cura before changes in packages have effect." -msgstr "需重新啟動 Cura,套件的更動才能生效。" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46 -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "結束 %1" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18 -msgctxt "@action:button" -msgid "Install" -msgstr "安裝" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 -msgctxt "@action:button" -msgid "Installed" -msgstr "已安裝" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27 -msgctxt "@label" -msgid "Premium" -msgstr "付費會員" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 -msgctxt "@info:tooltip" -msgid "Go to Web Marketplace" -msgstr "前往網路市集" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42 -msgctxt "@label" -msgid "Search materials" -msgstr "搜尋線材" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34 -msgctxt "@label" -msgid "Compatibility" -msgstr "相容性" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124 -msgctxt "@label:table_header" -msgid "Machine" -msgstr "機器" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137 -msgctxt "@label:table_header" -msgid "Build Plate" -msgstr "列印平台" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143 -msgctxt "@label:table_header" -msgid "Support" -msgstr "支撐" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149 -msgctxt "@label:table_header" -msgid "Quality" -msgstr "品質" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170 -msgctxt "@action:label" -msgid "Technical Data Sheet" -msgstr "技術資料表" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179 -msgctxt "@action:label" -msgid "Safety Data Sheet" -msgstr "安全資料表" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188 -msgctxt "@action:label" -msgid "Printing Guidelines" -msgstr "列印指南" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197 -msgctxt "@action:label" -msgid "Website" -msgstr "網站" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to install or update" -msgstr "需要登入才能進行安裝或升級" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80 -msgctxt "@label:The string between and is the highlighted link" -msgid "Buy material spools" -msgstr "購買線材線軸" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 -msgctxt "@action:button" -msgid "Update" -msgstr "更新" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 -msgctxt "@action:button" -msgid "Updating" -msgstr "更新中" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 -msgctxt "@action:button" -msgid "Updated" -msgstr "更新完成" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25 -msgctxt "@action:button" -msgid "Back" -msgstr "返回" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42 msgctxt "@title:tab" -msgid "Plugins" -msgstr "外掛" +msgid "Printer" +msgstr "印表機" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475 -msgctxt "@title:tab" -msgid "Materials" -msgstr "線材" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63 +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "噴頭設定" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58 -msgctxt "@title:tab" -msgid "Installed" -msgstr "已安裝" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74 msgctxt "@label" -msgid "Will install upon restarting" -msgstr "將在重新啟動時安裝" +msgid "Nozzle size" +msgstr "噴頭孔徑" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53 -msgctxt "@label:The string between and is the highlighted link" -msgid "Log in is required to update" -msgstr "需要登入才能進行升級" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Downgrade" -msgstr "降級版本" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71 -msgctxt "@action:button" -msgid "Uninstall" -msgstr "移除" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /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 "Community Contributions" -msgstr "社群貢獻" +msgid "mm" +msgstr "mm" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88 msgctxt "@label" -msgid "Community Plugins" -msgstr "社群外掛" +msgid "Compatible material diameter" +msgstr "相容的線材直徑" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104 msgctxt "@label" -msgid "Generic Materials" -msgstr "通用線材" +msgid "Nozzle offset X" +msgstr "噴頭偏移 X" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17 -msgctxt "@info" -msgid "Fetching packages..." -msgstr "取得套件..." - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119 msgctxt "@label" -msgid "Website" -msgstr "網站" +msgid "Nozzle offset Y" +msgstr "噴頭偏移 Y" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134 msgctxt "@label" -msgid "Email" -msgstr "電子郵件" +msgid "Cooling Fan Number" +msgstr "冷卻風扇數量" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22 -msgctxt "@description" -msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise" -msgstr "請登入以取得 Ultimaker Cura Enterprise 驗証的外掛及線材" +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162 +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "擠出機起始 G-code" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89 +#: /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 "Version" -msgstr "版本" +msgid "X (Width)" +msgstr "X (寬度)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83 msgctxt "@label" -msgid "Last updated" -msgstr "最後更新時間" +msgid "Y (Depth)" +msgstr "Y (深度)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98 msgctxt "@label" -msgid "Brand" -msgstr "品牌" +msgid "Z (Height)" +msgstr "Z (高度)" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112 msgctxt "@label" -msgid "Downloads" -msgstr "下載" +msgid "Build plate shape" +msgstr "列印平台形狀" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33 -msgctxt "@title:tab" -msgid "Installed plugins" -msgstr "已安裝外掛" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72 -msgctxt "@info" -msgid "No plugin has been installed." -msgstr "尚未安裝任何外掛。" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87 -msgctxt "@title:tab" -msgid "Installed materials" -msgstr "已安裝線材" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126 -msgctxt "@info" -msgid "No material has been installed." -msgstr "尚未安裝任何線材。" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141 -msgctxt "@title:tab" -msgid "Bundled plugins" -msgstr "捆綁式外掛" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186 -msgctxt "@title:tab" -msgid "Bundled materials" -msgstr "捆綁式線材" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16 -msgctxt "@info" -msgid "Could not connect to the Cura Package database. Please check your connection." -msgstr "無法連上 Cura 套件資料庫。請檢查你的網路連線。" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125 msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "你必需同意授權協議才能安裝套件" +msgid "Origin at center" +msgstr "原點位於中心" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 msgctxt "@button" msgid "Dismiss" msgstr "捨棄" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52 msgctxt "@label" msgid "The following packages will be added:" msgstr "將新增下列套件:" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97 +#: /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/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20 -msgctxt "@title:window" -msgid "Confirm uninstall" -msgstr "移除確認" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15 +msgctxt "@title" +msgid "Install missing Materials" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50 -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 "你正在移除仍被使用的線材/列印設定。確認後會將下列耗材/列印設定重設為預設值。" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15 +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51 -msgctxt "@text:window" -msgid "Materials" -msgstr "線材" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52 -msgctxt "@text:window" -msgid "Profiles" -msgstr "參數" - -#: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90 -msgctxt "@action:button" -msgid "Confirm" -msgstr "確定" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49 -msgctxt "@label" -msgid "Color scheme" -msgstr "顏色方案" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110 -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "線材顏色" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114 -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "線條類型" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118 -msgctxt "@label:listbox" -msgid "Speed" -msgstr "速度" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122 -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "層厚" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126 -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "線寬" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130 -msgctxt "@label:listbox" -msgid "Flow" -msgstr "流動" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171 -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "相容模式" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245 -msgctxt "@label" -msgid "Travels" -msgstr "移動軌跡" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251 -msgctxt "@label" -msgid "Helpers" -msgstr "輔助結構" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 -msgctxt "@label" -msgid "Shell" -msgstr "外殼" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65 -msgctxt "@label" -msgid "Infill" -msgstr "填充" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271 -msgctxt "@label" -msgid "Starts" -msgstr "啟動" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322 -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "只顯示頂層" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332 -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "顯示頂端 5 層列印細節" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346 -msgctxt "@label" -msgid "Top / Bottom" -msgstr "頂 / 底層" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350 -msgctxt "@label" -msgid "Inner Wall" -msgstr "內壁" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419 -msgctxt "@label" -msgid "min" -msgstr "最小值" - -#: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488 -msgctxt "@label" -msgid "max" -msgstr "最大值" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154 -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "管理印表機" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 -msgctxt "@label" -msgid "Glass" -msgstr "玻璃" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "請更新你印表機的韌體以便遠端管理工作隊列。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348 -msgctxt "@label:status" -msgid "Loading..." -msgstr "正在載入..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352 -msgctxt "@label:status" -msgid "Unavailable" -msgstr "無法使用" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356 -msgctxt "@label:status" -msgid "Unreachable" -msgstr "無法連接" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360 -msgctxt "@label:status" -msgid "Idle" -msgstr "閒置中" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82 -msgctxt "@label:status" -msgid "Preparing..." -msgstr "正在準備..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369 -msgctxt "@label:status" -msgid "Printing" -msgstr "正在列印" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410 -msgctxt "@label" -msgid "Untitled" -msgstr "無標題" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431 -msgctxt "@label" -msgid "Anonymous" -msgstr "匿名" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458 -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "需要修改設定" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496 -msgctxt "@action:button" -msgid "Details" -msgstr "細項" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133 -msgctxt "@label" -msgid "Unavailable printer" -msgstr "無法使用的印表機" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135 -msgctxt "@label" -msgid "First available" -msgstr "可用的第一個" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31 -msgctxt "@label" -msgid "Queued" -msgstr "已排入隊列" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66 -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "使用瀏覽器管理" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99 -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "目前沒有列印作業在隊列中。可透過切片並傳送列印作來增加一個。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110 -msgctxt "@label" -msgid "Print jobs" -msgstr "列印作業" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122 -msgctxt "@label" -msgid "Total print time" -msgstr "總列印時間" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134 -msgctxt "@label" -msgid "Waiting for" -msgstr "等待" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13 -msgctxt "@title:window" -msgid "Print over network" -msgstr "網路連線列印" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54 -msgctxt "@action:button" -msgid "Print" -msgstr "列印" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82 -msgctxt "@label" -msgid "Printer selection" -msgstr "印表機選擇" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20 -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "修改設定" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 -msgctxt "@action:button" -msgid "Override" -msgstr "覆寫" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89 -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "已分配到印表機 %1,但列印工作含有未知的線材設定。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99 -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "將線材 %1 從 %2 改成 %3。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102 -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "將 %3 做為線材 %1 載入(無法覆寫)。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105 -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "將 print core %1 從 %2 改成 %3。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108 -msgctxt "@label" -msgid "Change build plate to %1 (This cannot be overridden)." -msgstr "將列印平台改成 %1(無法覆寫)。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115 -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "覆寫會將指定的設定套用在現有的印表機上。這可能導致列印失敗。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156 -msgctxt "@label" -msgid "Aluminum" -msgstr "鋁" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 -msgctxt "@label:status" -msgid "Finished" -msgstr "已完成" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 -msgctxt "@label:status" -msgid "Aborting..." -msgstr "正在中斷..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92 -msgctxt "@label:status" -msgid "Aborted" -msgstr "已中斷" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96 /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98 -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100 -msgctxt "@label:status" -msgid "Failed" -msgstr "失敗" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102 -msgctxt "@label:status" -msgid "Pausing..." -msgstr "正在暫停..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104 -msgctxt "@label:status" -msgid "Paused" -msgstr "已暫停" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106 -msgctxt "@label:status" -msgid "Resuming..." -msgstr "正在繼續..." - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108 -msgctxt "@label:status" -msgid "Action required" -msgstr "需要採取的動作" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110 -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "在 %2 完成 %1" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45 -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "連接到網路印表機" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57 -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "從下列清單中選擇你的印表機:" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77 -msgctxt "@action:button" -msgid "Edit" -msgstr "編輯" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55 -msgctxt "@action:button" -msgid "Remove" -msgstr "移除" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96 -msgctxt "@action:button" -msgid "Refresh" -msgstr "刷新" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176 -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "如果你的印表機未被列出,請閱讀網路列印故障排除指南" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263 -msgctxt "@label" -msgid "Type" -msgstr "類型" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279 -msgctxt "@label" -msgid "Firmware version" -msgstr "韌體版本" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295 -msgctxt "@label" -msgid "Address" -msgstr "位址" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263 -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "此印表機未被設定為管理印表機群組。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267 -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "此印表機為 %1 印表機群組的管理者。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278 -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "該網路位址的印表機尚無回應。" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283 -msgctxt "@action:button" -msgid "Connect" -msgstr "連接" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296 -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "無效的 IP 位址" - -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146 +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:47 msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "請輸入有效的 IP 位址 。" +msgid "Please read and agree with the plugin licence." +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308 -msgctxt "@title:window" -msgid "Printer Address" -msgstr "印表機網路位址" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70 +msgctxt "@button" +msgid "Accept" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102 +#: /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 "Enter the IP address of your printer on the network." -msgstr "輸入印表機的 IP 位址。" +msgid "You need to accept the license to install the package" +msgstr "你必需同意授權協議才能安裝套件" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54 -msgctxt "@label" -msgid "Move to top" -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70 -msgctxt "@label" -msgid "Delete" -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/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290 -msgctxt "@label" -msgid "Resume" -msgstr "繼續" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Enable" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102 -msgctxt "@label" -msgid "Pausing..." -msgstr "正在暫停..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226 +msgctxt "@button" +msgid "Disable" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104 -msgctxt "@label" -msgid "Resuming..." -msgstr "正在繼續..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244 +msgctxt "@button" +msgid "Downgrading..." +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294 -msgctxt "@label" -msgid "Pause" -msgstr "暫停" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245 +msgctxt "@button" +msgid "Downgrade" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Aborting..." -msgstr "正在中斷..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249 +msgctxt "@button" +msgid "Installing..." +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124 -msgctxt "@label" -msgid "Abort" -msgstr "中斷" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250 +msgctxt "@button" +msgid "Install" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143 -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/Marketplace/resources/qml/PackageCardHeader.qml:254 +msgctxt "@button" +msgid "Uninstall" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144 -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "將列印作業移至最頂端" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Updating..." +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153 -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/Marketplace/resources/qml/PackageCardHeader.qml:269 +msgctxt "@button" +msgid "Update" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154 -msgctxt "@window:title" -msgid "Delete print job" -msgstr "刪除列印作業" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15 +msgctxt "@header" +msgid "Package details" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163 -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/Marketplace/resources/qml/PackageDetails.qml:40 +msgctxt "@button:tooltip" +msgid "Back" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336 -msgctxt "@window:title" -msgid "Abort print" -msgstr "中斷列印" +#: /home/trin/Gedeeld/Projects/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81 +msgctxt "@header" +msgid "Description" +msgstr "" -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100 +#: /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" @@ -3177,2131 +2770,679 @@ msgstr "" "- 檢查印表機是否已連接到網路。\n" "- 檢查是否已登入以尋找雲端連接的印表機。" -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:113 msgctxt "@info" msgid "Please connect your printer to the network." msgstr "請將你的印表機連上網路。" -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155 +#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:147 msgctxt "@label link to technical assistance" msgid "View user manuals online" msgstr "查看線上使用者手冊" -#: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172 +#: /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/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22 -msgctxt "@info:tooltip" -msgid "Some things could be problematic in this print. Click to see tips for adjustment." -msgstr "此列印可能會有些問題。點擊查看調整提示。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27 -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "立體圖" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40 -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "前視圖" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53 -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "上視圖" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66 -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "左視圖" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79 -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "右視圖" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41 msgctxt "@label" -msgid "Object list" -msgstr "物件清單" +msgid "Mesh Type" +msgstr "網格類型" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90 +#: /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 "Marketplace" -msgstr "市集" +msgid "Select settings" +msgstr "選擇設定" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "檔案(&F)" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31 -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "編輯(&E)" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12 -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "檢視(&V)" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13 -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "設定(&S)" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66 -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "擴充功能(&X)" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112 -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "偏好設定(&R)" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120 -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "幫助(&H)" - -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17 msgctxt "@title:window" -msgid "New project" -msgstr "新建專案" +msgid "Select Settings to Customize for this model" +msgstr "選擇對此模型的自訂設定" -#: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167 -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/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102 +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "篩選..." -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55 -msgctxt "@label:PrintjobStatus" -msgid "Slicing..." -msgstr "正在切片..." +#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75 +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "顯示全部" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82 -msgctxt "@label:PrintjobStatus" -msgid "Unable to slice" -msgstr "無法切片" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17 +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "後處理外掛" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Processing" -msgstr "處理中" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121 -msgctxt "@button" -msgid "Slice" -msgstr "切片" - -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57 msgctxt "@label" -msgid "Start the slicing process" -msgstr "開始切片程序" +msgid "Post Processing Scripts" +msgstr "後處理腳本" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136 -msgctxt "@button" -msgid "Cancel" -msgstr "取消" +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215 +msgctxt "@action" +msgid "Add a script" +msgstr "添加一個腳本" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251 msgctxt "@label" -msgid "Time estimation" -msgstr "時間估計" +msgid "Settings" +msgstr "設定" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114 +#: /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 "Material estimation" -msgstr "線材估計" +msgid "Color scheme" +msgstr "顏色方案" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164 -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104 +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "線材顏色" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165 -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108 +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "線條類型" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 +#: /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 "No time estimation available" -msgstr "沒有時間估計" +msgid "Compatibility Mode" +msgstr "相容模式" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231 msgctxt "@label" -msgid "No cost estimation available" -msgstr "沒有成本估算" +msgid "Travels" +msgstr "移動軌跡" -#: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127 -msgctxt "@button" -msgid "Preview" -msgstr "預覽" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237 msgctxt "@label" -msgid "Add a printer" -msgstr "新增印表機" +msgid "Helpers" +msgstr "輔助結構" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243 msgctxt "@label" -msgid "Add a networked printer" -msgstr "新增網路印表機" +msgid "Shell" +msgstr "外殼" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90 +#: /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 "Add a non-networked printer" -msgstr "新增非網路印表機" +msgid "Infill" +msgstr "填充" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257 msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "新增雲端印表機" +msgid "Starts" +msgstr "啟動" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304 msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "等待雲端服務回應" +msgid "Only Show Top Layers" +msgstr "只顯示頂層" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313 msgctxt "@label" -msgid "No printers found in your account?" -msgstr "在你的帳號未發現任何印表機?" +msgid "Show 5 Detailed Layers On Top" +msgstr "顯示頂端 5 層列印細節" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326 msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" -msgstr "下列您帳號中的印表機已新增至 Cura:" +msgid "Top / Bottom" +msgstr "頂 / 底層" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204 -msgctxt "@button" -msgid "Add printer manually" -msgstr "手動新增印表機" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330 msgctxt "@label" -msgid "Add printer by IP address" -msgstr "使用 IP 位址新增印表機" +msgid "Inner Wall" +msgstr "內壁" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133 -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "輸入印表機的 IP 位址。" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158 -msgctxt "@button" -msgid "Add" -msgstr "新增" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397 msgctxt "@label" -msgid "Could not connect to device." -msgstr "無法連接到裝置。" +msgid "min" +msgstr "最小值" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212 +#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462 msgctxt "@label" -msgid "Can't connect to your Ultimaker printer?" -msgstr "無法連接到 Ultimaker 印表機?" +msgid "max" +msgstr "最大值" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211 +#: /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 +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "列印平台調整水平" + +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42 msgctxt "@label" -msgid "The printer at this address has not responded yet." -msgstr "此位址的印表機尚未回應。" +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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245 +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52 msgctxt "@label" -msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." -msgstr "無法添加此印表機,因為它是未知的印表機,或者它不是印表機群組的主機。" +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/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707 -msgctxt "@button" -msgid "Back" -msgstr "返回" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67 +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "開始進行列印平台調平" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347 -msgctxt "@button" +#: /home/trin/Gedeeld/Projects/Cura/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 的更新檔案" + +#: /home/trin/Gedeeld/Projects/Cura/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-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/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 -msgctxt "@label" -msgid "User Agreement" -msgstr "使用者授權" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261 +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "無效的 IP 位址" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70 -msgctxt "@button" -msgid "Decline and close" -msgstr "拒絕並關閉" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56 -msgctxt "@label" -msgid "Welcome to Ultimaker Cura" -msgstr "歡迎來到 Ultimaker Cura" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68 +#: /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 follow these steps to set up Ultimaker Cura. This will only take a few moments." -msgstr "請依照步驟安裝Ultimaker Cura. 這會需要幾分鐘的時間." +msgid "Please enter a valid IP address." +msgstr "請輸入有效的 IP 位址 。" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86 -msgctxt "@button" -msgid "Get started" -msgstr "開始" +#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272 +msgctxt "@title:window" +msgid "Printer Address" +msgstr "印表機網路位址" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64 /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20 +#: /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 "將 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 +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 "在 %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 +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 msgctxt "@label" msgid "Sign in to the Ultimaker platform" msgstr "登入Ultimaker 論壇" -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124 -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "從市集中加入線材設定或插件" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154 -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "備份及同步您的線材設定與插件" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184 -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community" -msgstr "分享創意並可從Ultimaker社群中超過48000的使用者得到幫助" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202 -msgctxt "@button" -msgid "Skip" -msgstr "略過" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214 -msgctxt "@text" -msgid "Create a free Ultimaker Account" -msgstr "創建免費的Ultimaker帳戶" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234 -msgctxt "@label" -msgid "Manufacturer" -msgstr "製造商" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251 -msgctxt "@label" -msgid "Profile author" -msgstr "列印參數作者" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269 -msgctxt "@label" -msgid "Printer name" -msgstr "印表機名稱" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278 -msgctxt "@text" -msgid "Please name your printer" -msgstr "請為你的印表機取一個名稱" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43 -msgctxt "@label" -msgid "There is no printer found over your network." -msgstr "在你的網路上找不到印表機。" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182 -msgctxt "@label" -msgid "Refresh" -msgstr "更新" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193 -msgctxt "@label" -msgid "Add printer by IP" -msgstr "使用 IP 位址新增印表機" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204 -msgctxt "@label" -msgid "Add cloud printer" -msgstr "新增雲端印表機" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241 -msgctxt "@label" -msgid "Troubleshooting" -msgstr "故障排除" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24 -msgctxt "@label" -msgid "Help us to improve Ultimaker Cura" -msgstr "協助我們改進 Ultimaker Cura" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57 -msgctxt "@text" -msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:" -msgstr "Ultimaker Cura 搜集匿名資料以提高列印品質和使用者體驗,包含:" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71 -msgctxt "@text" -msgid "Machine types" -msgstr "機器類型" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77 -msgctxt "@text" -msgid "Material usage" -msgstr "線材用法" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83 -msgctxt "@text" -msgid "Number of slices" -msgstr "切片次數" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89 -msgctxt "@text" -msgid "Print settings" -msgstr "列印設定" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102 -msgctxt "@text" -msgid "Data collected by Ultimaker Cura will not contain any personal information." -msgstr "Ultimaker Cura 收集的資料不包含任何個人資訊。" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103 -msgctxt "@text" -msgid "More information" -msgstr "更多資訊" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29 -msgctxt "@label" -msgid "What's New" -msgstr "新功能" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93 -msgctxt "@label" -msgid "Empty" -msgstr "空的" - -#: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 -msgctxt "@label" -msgid "Release Notes" -msgstr "發佈通知" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15 -msgctxt "@title:window The argument is the application name." -msgid "About %1" -msgstr "關於 %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57 -msgctxt "@label" -msgid "version: %1" -msgstr "版本:%1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72 -msgctxt "@label" -msgid "End-to-end solution for fused filament 3D printing." -msgstr "熔絲 3D 列印技術的的端對端解決方案。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85 -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 "" -"Cura 由 Ultimaker B.V. 與社群合作開發。\n" -"Cura 使用以下開源專案:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135 -msgctxt "@label" -msgid "Graphical user interface" -msgstr "圖形用戶介面" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136 -msgctxt "@label" -msgid "Application framework" -msgstr "應用框架" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137 -msgctxt "@label" -msgid "G-code generator" -msgstr "G-code 產生器" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138 -msgctxt "@label" -msgid "Interprocess communication library" -msgstr "進程間通訊交互使用庫" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140 -msgctxt "@label" -msgid "Programming language" -msgstr "編程語言" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141 -msgctxt "@label" -msgid "GUI framework" -msgstr "GUI 框架" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142 -msgctxt "@label" -msgid "GUI framework bindings" -msgstr "GUI 框架綁定" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143 -msgctxt "@label" -msgid "C/C++ Binding library" -msgstr "C / C++ 綁定庫" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144 -msgctxt "@label" -msgid "Data interchange format" -msgstr "資料交換格式" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145 -msgctxt "@label" -msgid "Support library for scientific computing" -msgstr "科學計算函式庫" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146 -msgctxt "@label" -msgid "Support library for faster math" -msgstr "高速運算函式庫" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147 -msgctxt "@label" -msgid "Support library for handling STL files" -msgstr "用於處理 STL 檔案的函式庫" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148 -msgctxt "@label" -msgid "Support library for handling planar objects" -msgstr "用於處理平面物件的函式庫" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149 -msgctxt "@label" -msgid "Support library for handling triangular meshes" -msgstr "用於處理三角形網格的函式庫" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150 -msgctxt "@label" -msgid "Support library for handling 3MF files" -msgstr "用於處理 3MF 檔案的函式庫" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151 -msgctxt "@label" -msgid "Support library for file metadata and streaming" -msgstr "用於檔案 metadata 和串流的函式庫" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152 -msgctxt "@label" -msgid "Serial communication library" -msgstr "串口通訊函式庫" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153 -msgctxt "@label" -msgid "ZeroConf discovery library" -msgstr "ZeroConf 發現函式庫" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154 -msgctxt "@label" -msgid "Polygon clipping library" -msgstr "多邊形剪輯函式庫" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155 -msgctxt "@Label" -msgid "Static type checker for Python" -msgstr "Python 靜態型別檢查器" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156 /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157 -msgctxt "@Label" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "驗證 SSL 可信度用的根憑證" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158 -msgctxt "@Label" -msgid "Python Error tracking library" -msgstr "Python 錯誤追蹤函式庫" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159 -msgctxt "@label" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "多邊形包裝函式庫,由 Prusa Research 開發" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160 -msgctxt "@label" -msgid "Python bindings for libnest2d" -msgstr "Python bindings for libnest2d" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161 -msgctxt "@label" -msgid "Support library for system keyring access" -msgstr "存取系統金鑰函式庫" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162 -msgctxt "@label" -msgid "Python extensions for Microsoft Windows" -msgstr "Python擴充(windows)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163 -msgctxt "@label" -msgid "Font" -msgstr "字體" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164 -msgctxt "@label" -msgid "SVG icons" -msgstr "SVG 圖標" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165 -msgctxt "@label" -msgid "Linux cross-distribution application deployment" -msgstr "Linux cross-distribution 應用程式部署" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645 -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "開啟檔案" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94 -msgctxt "@action:button" -msgid "Import all as models" -msgstr "匯入所有模型" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16 -msgctxt "@title:window" -msgid "Save Project" -msgstr "儲存專案" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174 -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "擠出機 %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190 -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & 線材" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192 -msgctxt "@action:label" -msgid "Material" -msgstr "線材" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "儲存時不再顯示專案摘要" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301 -msgctxt "@action:button" -msgid "Save" -msgstr "儲存" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16 -msgctxt "@title:window" -msgid "Discard or Keep changes" -msgstr "捨棄或保留更改" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58 -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' 載入預設值。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112 -msgctxt "@title:column" -msgid "Profile settings" -msgstr "列印參數設定" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126 -msgctxt "@title:column" -msgid "Current changes" -msgstr "目前更動" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755 -msgctxt "@option:discardOrKeep" -msgid "Always ask me this" -msgstr "總是詢問" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161 -msgctxt "@option:discardOrKeep" -msgid "Discard and never ask again" -msgstr "捨棄更改,並不再詢問此問題" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162 -msgctxt "@option:discardOrKeep" -msgid "Keep and never ask again" -msgstr "保留更改,並不再詢問此問題" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199 -msgctxt "@action:button" -msgid "Discard changes" -msgstr "忽略更動" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212 -msgctxt "@action:button" -msgid "Keep changes" -msgstr "保留更動" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20 -msgctxt "@title:window" -msgid "Open project file" -msgstr "開啟專案檔案" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88 -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/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98 -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "記住我的選擇" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117 -msgctxt "@action:button" -msgid "Open as project" -msgstr "作為專案開啟" - -#: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126 -msgctxt "@action:button" -msgid "Import models" -msgstr "匯入模型" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140 -msgctxt "@label" -msgid "Active print" -msgstr "正在列印" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148 -msgctxt "@label" -msgid "Job Name" -msgstr "作業名稱" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156 -msgctxt "@label" -msgid "Printing Time" -msgstr "列印時間" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164 -msgctxt "@label" -msgid "Estimated time left" -msgstr "預計剩餘時間" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60 -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "雲端服務目前無法使用。請檢查你的網路連線。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252 -msgctxt "@button" -msgid "Add printer" -msgstr "新增印表機" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269 -msgctxt "@button" -msgid "Manage printers" -msgstr "管理印表機" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Connected printers" -msgstr "已連線印表機" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19 -msgctxt "@label" -msgid "Preset printers" -msgstr "預設印表機" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 -msgctxt "@label" -msgid "Print settings" -msgstr "列印設定" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21 -msgctxt "@label shown when we load a Gcode file" -msgid "Print setup disabled. G-code file can not be modified." -msgstr "列印設定已被停用。 G-code 檔案無法修改。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47 -msgctxt "@label" -msgid "Profile" -msgstr "參數" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170 -msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "" -"部份設定/覆寫值與儲存在列印參數中的值不同。\n" -"\n" -"點擊開啟列印參數管理器。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146 -msgctxt "@label:header" -msgid "Custom profiles" -msgstr "自訂列印參數" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564 -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "捨棄目前更改" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144 -msgctxt "@button" -msgid "Recommended" -msgstr "推薦" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158 -msgctxt "@button" -msgid "Custom" -msgstr "自訂選項" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13 -msgctxt "@label:Should be short" -msgid "On" -msgstr "開啟" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14 -msgctxt "@label:Should be short" -msgid "Off" -msgstr "關閉" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34 -msgctxt "@label" -msgid "Experimental" -msgstr "實驗功能" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31 -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 參數。將使用預設參數" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736 -msgctxt "@label" -msgid "Profiles" -msgstr "列印參數" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82 -msgctxt "@tooltip" -msgid "You have modified some profile settings. If you want to change these go to custom mode." -msgstr "你修改過部份列印參數設定。如果你想改變這些設定,請切換到自訂模式。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30 -msgctxt "@label" -msgid "Support" -msgstr "支撐" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72 -msgctxt "@label" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "在模型的突出部分產生支撐結構。若不這樣做,這些部分在列印時將倒塌。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196 -msgctxt "@label" -msgid "Gradual infill" -msgstr "漸近式填充" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235 -msgctxt "@label" -msgid "Gradual infill will gradually increase the amount of infill towards the top." -msgstr "漸近式填充將隨著列印高度的提升而逐漸加大填充密度。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29 -msgctxt "@label" -msgid "Adhesion" -msgstr "附著" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75 -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/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "儲存專案." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25 -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "支援網路的印表機" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42 -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "本機印表機" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13 -msgctxt "@label:category menu label" -msgid "Material" -msgstr "線材" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54 -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "常用" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79 -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "通用" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27 -msgctxt "@label" -msgid "Print Selected Model With:" -msgid_plural "Print Selected Models With:" -msgstr[0] "列印所選模型:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116 -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "複製所選模型" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141 -msgctxt "@label" -msgid "Number of Copies" -msgstr "複製個數" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41 -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "儲存專案...(&S)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74 -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "匯出...(&E)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85 -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "匯出選擇..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 -msgctxt "@header" -msgid "Configurations" -msgstr "設定" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25 -msgctxt "@header" -msgid "Custom" -msgstr "自訂選項" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61 -msgctxt "@label" -msgid "Printer" -msgstr "印表機" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213 -msgctxt "@label" -msgid "Enabled" -msgstr "已啟用" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267 -msgctxt "@label" -msgid "Material" -msgstr "線材" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407 -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "在此線材組合下,使用膠水以獲得較佳的附著。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102 -msgctxt "@tooltip" -msgid "The configuration of this extruder is not allowed, and prohibits slicing." -msgstr "不允許使用此擠出機的配置並禁止切片功能." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106 -msgctxt "@tooltip" -msgid "There are no profiles matching the configuration of this extruder." -msgstr "目前無對應此擠出機的配置設定." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253 -msgctxt "@label" -msgid "Select configuration" -msgstr "選擇設定" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364 -msgctxt "@label" -msgid "Configurations" -msgstr "設定" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52 -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "從印表機載入可用的設定..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53 -msgctxt "@label" -msgid "The configurations are not available because the printer is disconnected." -msgstr "由於印表機已斷線,因此設定無法使用。" - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138 -msgctxt "@label" -msgid "Marketplace" -msgstr "市集" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "開啟檔案." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15 -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "印表機(&P)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29 -msgctxt "@title:menu" -msgid "&Material" -msgstr "線材(&M)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44 -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "設為主要擠出機" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50 -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "啟用擠出機" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57 -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "關閉擠出機" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15 -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "最近開啟的檔案(&R)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16 -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "顯示設定" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45 -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "折疊所有分類" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54 -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "管理參數顯示..." - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19 -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "視角位置(&C)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45 -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "攝影機檢視" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48 -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "透視" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59 -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "正交" - -#: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79 -msgctxt "@action:inmenu menubar:view" -msgid "&Build plate" -msgstr "列印平台(&B)" - -#: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50 -msgctxt "@label" -msgid "View type" -msgstr "檢示類型" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112 -msgctxt "@label" -msgid "Is printed as support." -msgstr "做為支撐而列印。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115 -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "與此模型重疊的其他模型已被更改。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118 -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "與此模型重疊的填充已被更改。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121 -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "與此模型的重疊沒有支撐。" - -#: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128 -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "覆寫 %1 設定。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477 -msgctxt "@title:tab" -msgid "Profiles" -msgstr "列印參數" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40 -msgctxt "@action:button" -msgid "Activate" -msgstr "啟用" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104 -msgctxt "@label" -msgid "Create" -msgstr "建立" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121 -msgctxt "@label" -msgid "Duplicate" -msgstr "複製" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152 /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63 -msgctxt "@action:button" -msgid "Rename" -msgstr "重命名" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 -msgctxt "@action:button" -msgid "Import" -msgstr "匯入" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 -msgctxt "@action:button" -msgid "Export" -msgstr "匯出" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202 -msgctxt "@title:window" -msgid "Create Profile" -msgstr "建立列印參數" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204 -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "請為此參數提供一個名字。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263 -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "複製列印參數" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312 -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "移除確認" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "你確定要移除 %1 嗎?這動作無法復原!" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294 -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "重命名列印參數" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307 -msgctxt "@title:window" -msgid "Import Profile" -msgstr "匯入列印參數" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336 -msgctxt "@title:window" -msgid "Export Profile" -msgstr "匯出列印參數" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399 -msgctxt "@label %1 is printer name" -msgid "Printer: %1" -msgstr "印表機:%1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557 -msgctxt "@action:button" -msgid "Update profile with current settings/overrides" -msgstr "使用目前設定 / 覆寫值更新列印參數" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583 -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/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591 -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "你目前的設定與選定的列印參數相匹配。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609 -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "全局設定" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468 -msgctxt "@title:tab" -msgid "General" -msgstr "基本" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143 -msgctxt "@label" -msgid "Interface" -msgstr "介面" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215 -msgctxt "@label" -msgid "Currency:" -msgstr "貨幣:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228 -msgctxt "@label" -msgid "Theme:" -msgstr "主題:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273 -msgctxt "@label" -msgid "You will need to restart the application for these changes to have effect." -msgstr "需重新啟動 Cura,新的設定才能生效。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290 -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "當設定變更時自動進行切片。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298 -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "自動切片" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312 -msgctxt "@label" -msgid "Viewport behavior" -msgstr "顯示區設定" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320 -msgctxt "@info:tooltip" -msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." -msgstr "模型缺少支撐的區域已以紅色標示。如果沒有支撐這些區域將無法正常列印。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329 -msgctxt "@option:check" -msgid "Display overhang" -msgstr "顯示突出部分" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348 -msgctxt "@option:check" -msgid "Display model errors" -msgstr "顯示模型錯誤" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356 -msgctxt "@info:tooltip" -msgid "Moves the camera so the model is in the center of the view when a model is selected" -msgstr "當模型被選中時,視角將自動調整到最合適的觀察位置(模型處於正中央)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361 -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "當專案被選中時,自動置中視角" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371 -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "需要讓 Cura 的預設縮放操作反轉嗎?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376 -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "反轉視角縮放方向。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "是否跟隨滑鼠方向進行縮放?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392 -msgctxt "@info:tooltip" -msgid "Zooming towards the mouse is not supported in the orthographic perspective." -msgstr "正交透視不支援游標縮放功能。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397 -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "跟隨滑鼠方向縮放" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved so that they no longer intersect?" -msgstr "需要移動平台上的模型,使它們不再交錯嗎?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428 -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "確保每個模型都保持分離" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437 -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved down to touch the build plate?" -msgstr "要將模型下降到碰觸列印平台嗎?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442 -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "自動下降模型到列印平台" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454 -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "在 g-code 讀取器中顯示警告訊息。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463 -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "G-code 讀取器中的警告訊息" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471 -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "分層檢視要強制進入相容模式嗎?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476 -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "強制分層檢視相容模式(需要重新啟動)" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486 -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "Cura 應該開啟在前次關閉時的位置嗎?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491 -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "開啟時復原視窗位置" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501 -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "使用哪種類型的攝影機渲染?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508 -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "攝影機渲染:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515 -msgid "Perspective" -msgstr "透視" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516 -msgid "Orthographic" -msgstr "正交" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554 -msgctxt "@label" -msgid "Opening and saving files" -msgstr "開啟並儲存檔案" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561 -msgctxt "@info:tooltip" -msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "從桌面或外部程式開啟檔案時,使用同一 Cura 視窗嗎?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566 -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "使用同一 Cura 視窗" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576 -msgctxt "@info:tooltip" -msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" -msgstr "需要再載入新模型前清空視窗內之列印平台嗎?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582 -msgctxt "@option:check" -msgid "Clear buildplate before loading model into the single instance" -msgstr "載入新模型時清空視窗內之列印平台" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592 -msgctxt "@info:tooltip" -msgid "Should models be scaled to the build volume if they are too large?" -msgstr "當模型的尺寸過大時,是否將模型自動縮小至列印範圍嗎?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597 -msgctxt "@option:check" -msgid "Scale large models" -msgstr "縮小過大模型" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612 -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "放大過小模型" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622 -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "模型載入後要設為被選擇的狀態嗎?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627 -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "模型載入後選擇模型" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637 -msgctxt "@info:tooltip" -msgid "Should a prefix based on the printer name be added to the print job name automatically?" -msgstr "是否自動將印表機名稱作為列印作業名稱的前綴?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642 -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "將印表機名稱前綴添加到列印作業名稱中" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652 -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "儲存專案檔案時是否顯示摘要?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656 -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "儲存專案時顯示摘要對話框" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666 -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "開啟專案檔案時的預設行為" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674 -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "開啟專案檔案時的預設行為: " - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688 -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "每次都向我確認" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689 -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "總是作為一個專案開啟" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690 -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "總是匯入模型" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741 -msgctxt "@window:text" -msgid "Default behavior for changed setting values when switching to a different profile: " -msgstr "當切換到另一組列印參數時,對於被修改過的設定的預設行為: " - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756 -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "總是放棄修改過的設定" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757 -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "總是將修改過的設定轉移至新的列印參數" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791 -msgctxt "@label" -msgid "Privacy" -msgstr "隱私權" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797 -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 位址或其他私人資料。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802 -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "(匿名)發送列印資訊" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811 -msgctxt "@action:button" -msgid "More information" -msgstr "更多資訊" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829 -msgctxt "@label" -msgid "Updates" -msgstr "更新" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836 -msgctxt "@info:tooltip" -msgid "Should Cura check for updates when the program is started?" -msgstr "當 Cura 啟動時,是否自動檢查更新?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841 -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "啟動時檢查更新" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852 -msgctxt "@info:tooltip" -msgid "When checking for updates, only check for stable releases." -msgstr "當檢查更新時,只檢查正式版本." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857 -msgctxt "@option:radio" -msgid "Stable releases only" -msgstr "僅正式版本" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868 -msgctxt "@info:tooltip" -msgid "When checking for updates, check for both stable and for beta releases." -msgstr "當檢查更新時,同時檢查正式版本與測試版本." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873 -msgctxt "@option:radio" -msgid "Stable and Beta releases" -msgstr "正式版本與測試版本發佈" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884 -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/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889 -msgctxt "@option:check" -msgid "Get notifications for plugin updates" -msgstr "設定插件更新提示" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72 -msgctxt "@title" -msgid "Information" -msgstr "資訊" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101 -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "直徑更改確認" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128 -msgctxt "@label" -msgid "Display Name" -msgstr "顯示名稱" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148 -msgctxt "@label" -msgid "Material Type" -msgstr "線材類型" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158 -msgctxt "@label" -msgid "Color" -msgstr "顏色" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208 -msgctxt "@label" -msgid "Properties" -msgstr "屬性" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210 -msgctxt "@label" -msgid "Density" -msgstr "密度" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225 -msgctxt "@label" -msgid "Diameter" -msgstr "直徑" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259 -msgctxt "@label" -msgid "Filament Cost" -msgstr "線材成本" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276 -msgctxt "@label" -msgid "Filament weight" -msgstr "線材重量" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294 -msgctxt "@label" -msgid "Filament length" -msgstr "線材長度" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303 -msgctxt "@label" -msgid "Cost per Meter" -msgstr "每公尺成本" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317 -msgctxt "@label" -msgid "This material is linked to %1 and shares some of its properties." -msgstr "此線材與 %1 相關聯,並共享其部份屬性。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324 -msgctxt "@label" -msgid "Unlink Material" -msgstr "解除聯結線材" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335 -msgctxt "@label" -msgid "Description" -msgstr "描述" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348 -msgctxt "@label" -msgid "Adhesion Information" -msgstr "附著資訊" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126 -msgctxt "@action:button" -msgid "Create" -msgstr "建立" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141 -msgctxt "@action:button" -msgid "Duplicate" -msgstr "複製" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199 -msgctxt "@action:button Sending materials to printers" -msgid "Sync with Printers" -msgstr "同步列印機" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248 -msgctxt "@action:label" -msgid "Printer" -msgstr "印表機" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337 -msgctxt "@title:window" -msgid "Import Material" -msgstr "匯入線材設定" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338 -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "無法匯入線材 %1%2" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "成功匯入線材 %1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368 -msgctxt "@title:window" -msgid "Export Material" -msgstr "匯出線材設定" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372 -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "無法匯出線材至 %1%2" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378 -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "成功匯出線材至:%1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17 -msgctxt "@title:window" -msgid "Sync materials with printers" -msgstr "同步印表機線材設定" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47 -msgctxt "@title:header" -msgid "Sync materials with printers" -msgstr "同步印表機線材設定" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53 -msgctxt "@text" -msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." -msgstr "依照下述簡單的步驟。您將同步線材設定檔至您的印表機." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77 -msgctxt "@button" -msgid "Start" -msgstr "開始" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98 -msgctxt "@button" -msgid "Why do I need to sync material profiles?" -msgstr "為何我需要同步線材設定檔?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130 -msgctxt "@title:header" -msgid "Sign in" -msgstr "登入" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611 -msgctxt "@button" -msgid "Sync materials with USB" -msgstr "從USB進行同步線材設定檔" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200 -msgctxt "@title:header" -msgid "The following printers will receive the new material profiles:" -msgstr "下述的印表機將新增新的線材設定檔:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207 -msgctxt "@title:header" -msgid "Something went wrong when sending the materials to the printers." -msgstr "再發送線材設定檔至印表機時發生錯誤." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214 -msgctxt "@title:header" -msgid "Material profiles successfully synced with the following printers:" -msgstr "線材設定檔成功同步至下述的印表機內:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444 -msgctxt "@button" -msgid "Troubleshooting" -msgstr "故障排除" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432 -msgctxt "@text Asking the user whether printers are missing in a list." -msgid "Printers missing?" -msgstr "列印機資訊遺失了?" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434 -msgctxt "@text" -msgid "Make sure all your printers are turned ON and connected to Digital Factory." -msgstr "確認您的列印機已開機並連接至Digital Factory." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 -msgctxt "@button" -msgid "Refresh List" -msgstr "重新載入清單" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487 -msgctxt "@button" -msgid "Try again" -msgstr "再試一次" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Done" -msgstr "完成" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493 /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618 -msgctxt "@button" -msgid "Sync" -msgstr "同步" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549 -msgctxt "@button" -msgid "Syncing" -msgstr "同步中" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566 -msgctxt "@title:header" -msgid "No printers found" -msgstr "未發現任何列印機資訊" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595 -msgctxt "@button" -msgid "Learn how to connect your printer to Digital Factory" -msgstr "學習如何連結您的印表機至Digital Factory" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625 -msgctxt "@button" -msgid "Refresh" -msgstr "重新載入" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647 -msgctxt "@title:header" -msgid "Sync material profiles via USB" -msgstr "透過USB同步您的線材設定檔" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654 -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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679 -msgctxt "@text" -msgid "Click the export material archive button." -msgstr "請點擊輸出材料檔案按鈕." - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680 -msgctxt "@text" -msgid "Save the .umm file on a USB stick." -msgstr "將 .umm 的文件儲存至USB." - -#: /home/clamboo/Desktop/Cura/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/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692 -msgctxt "@button" -msgid "How to load new material profiles to my printer" -msgstr "如何載入新的線材設定檔至我的列印機" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716 -msgctxt "@button" -msgid "Export material archive" -msgstr "輸出線材設定存檔" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753 -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "匯出所有線材設定" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16 -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "參數顯示設定" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48 -msgctxt "@label:textbox" -msgid "Check all" -msgstr "全選" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473 -msgctxt "@title:tab" -msgid "Printers" -msgstr "印表機" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61 -msgctxt "@info:status" -msgid "Calculated" -msgstr "已計算" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75 -msgctxt "@title:column" -msgid "Setting" -msgstr "設定" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82 -msgctxt "@title:column" -msgid "Profile" -msgstr "列印參數" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89 -msgctxt "@title:column" -msgid "Current" -msgstr "目前" - -#: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97 -msgctxt "@title:column" -msgid "Unit" -msgstr "單位" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119 -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "未連接至印表機" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123 -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "印表機不接受命令" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133 -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "維護中。請檢查印表機" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144 -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "與印表機的連線中斷" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146 -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "列印中..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149 -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "已暫停" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152 -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "準備中..." - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154 -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "請取出列印件" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326 -msgctxt "@label" -msgid "Abort Print" -msgstr "中斷列印" - -#: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338 -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "你確定要中斷列印嗎?" - -#: /home/clamboo/Desktop/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/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 -msgctxt "@label:button" -msgid "My printers" -msgstr "我的列印機" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34 -msgctxt "@tooltip:button" -msgid "Monitor printers in Ultimaker Digital Factory." -msgstr "從Ultimaker Digital Factory中監控我的列印機." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41 -msgctxt "@tooltip:button" -msgid "Create print projects in Digital Library." -msgstr "從 Digital Library中創建列印專案." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 -msgctxt "@label:button" -msgid "Print jobs" -msgstr "列印工作" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48 -msgctxt "@tooltip:button" -msgid "Monitor print jobs and reprint from your print history." -msgstr "監控列印工作並於從您的歷史紀錄中再次列印." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55 -msgctxt "@tooltip:button" -msgid "Extend Ultimaker Cura with plugins and material profiles." -msgstr "使用插件及線材參數擴充Ultimaker Cura." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 -msgctxt "@tooltip:button" -msgid "Become a 3D printing expert with Ultimaker e-learning." -msgstr "使用Ultimaker e-learning成為一位3D列印專家." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67 -msgctxt "@label:button" -msgid "Ultimaker support" -msgstr "Ultimaker 支援" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 -msgctxt "@tooltip:button" -msgid "Learn how to get started with Ultimaker Cura." -msgstr "學習如何開始使用Ultimaker Cura." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74 -msgctxt "@label:button" -msgid "Ask a question" -msgstr "提出問題" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76 -msgctxt "@tooltip:button" -msgid "Consult the Ultimaker Community." -msgstr "諮詢Ultimaker社群." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81 -msgctxt "@label:button" -msgid "Report a bug" -msgstr "回報Bug" - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83 -msgctxt "@tooltip:button" -msgid "Let developers know that something is going wrong." -msgstr "讓開發者了解您遇到的問題." - -#: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 -msgctxt "@tooltip:button" -msgid "Visit the Ultimaker website." -msgstr "參觀Ultimaker網站." - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52 -msgctxt "@label" -msgid "Printer control" -msgstr "印表機控制" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67 -msgctxt "@label" -msgid "Jog Position" -msgstr "輕搖位置" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85 -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192 -msgctxt "@label" -msgid "Z" -msgstr "Z" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257 -msgctxt "@label" -msgid "Jog Distance" -msgstr "輕搖距離" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301 -msgctxt "@label" -msgid "Send G-code" -msgstr "傳送 G-code" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41 -msgctxt "@label" -msgid "Extruder" -msgstr "擠出機" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103 -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "此加熱頭的目前溫度。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "加熱頭預熱溫度。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332 -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "取消" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335 -msgctxt "@button" -msgid "Pre-heat" -msgstr "預熱" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406 -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "該擠出機中線材的顏色。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438 -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "該擠出機中的線材。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470 -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "該擠出機所使用的噴頭。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55 -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "尚未連線到印表機。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26 -msgctxt "@label" -msgid "Build plate" -msgstr "列印平台" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56 -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/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88 -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "熱床目前溫度。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161 -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "熱床的預熱溫度。" - -#: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361 -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/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24 -msgctxt "@action:button" -msgid "Sign in" -msgstr "登入" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:39 msgctxt "@text" msgid "" "- Add material profiles and plug-ins from the Marketplace\n" @@ -5312,374 +3453,2281 @@ msgstr "" "-備份及同步您的線材設定與插件 \n" "- 分享創意並可從Ultimaker社群中超過48000的使用者得到幫助" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:58 msgctxt "@button" msgid "Create a free Ultimaker account" msgstr "創建免費的Ultimaker帳戶" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82 -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "最後一次更新:%1" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110 -msgctxt "@button" -msgid "Ultimaker Account" -msgstr "Ultimaker 帳號" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126 -msgctxt "@button" -msgid "Sign Out" -msgstr "登出" - -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35 msgctxt "@label" msgid "Checking..." msgstr "檢查中..." -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42 msgctxt "@label" msgid "Account synced" msgstr "帳號已同步" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:49 msgctxt "@label" msgid "Something went wrong..." msgstr "出了些問題..." -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:102 msgctxt "@button" msgid "Install pending updates" msgstr "安裝待處理的更新" -#: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:123 msgctxt "@button" msgid "Check for account updates" msgstr "檢查帳號更新" -#: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99 -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "無標題" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:78 +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "最後一次更新:%1" -#: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:107 +msgctxt "@button" +msgid "Ultimaker Account" +msgstr "Ultimaker 帳號" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126 +msgctxt "@button" +msgid "Sign Out" +msgstr "登出" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59 msgctxt "@label" -msgid "No items to select from" -msgstr "沒有可選取的專案" +msgid "No time estimation available" +msgstr "沒有時間估計" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Preview" +msgstr "預覽" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31 +msgctxt "@label" +msgid "Time estimation" +msgstr "時間估計" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107 +msgctxt "@label" +msgid "Material estimation" +msgstr "線材估計" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54 +msgctxt "@label:PrintjobStatus" +msgid "Slicing..." +msgstr "正在切片..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Processing" +msgstr "處理中" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114 +msgctxt "@button" +msgid "Slice" +msgstr "切片" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@button" +msgid "Cancel" +msgstr "取消" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:81 msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting Guide" -msgstr "顯示線上故障排除指南" +msgid "Show Online Troubleshooting" +msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:88 msgctxt "@action:inmenu" msgid "Toggle Full Screen" msgstr "切換全螢幕" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:96 msgctxt "@action:inmenu" msgid "Exit Full Screen" msgstr "離開全螢幕" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:103 msgctxt "@action:inmenu menubar:edit" msgid "&Undo" msgstr "復原(&U)" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:113 msgctxt "@action:inmenu menubar:edit" msgid "&Redo" msgstr "取消復原(&R)" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:131 msgctxt "@action:inmenu menubar:file" msgid "&Quit" msgstr "退出(&Q)" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139 msgctxt "@action:inmenu menubar:view" msgid "3D View" msgstr "立體圖" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146 msgctxt "@action:inmenu menubar:view" msgid "Front View" msgstr "前視圖" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153 msgctxt "@action:inmenu menubar:view" msgid "Top View" msgstr "上視圖" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160 msgctxt "@action:inmenu menubar:view" msgid "Bottom View" msgstr "下視圖" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167 msgctxt "@action:inmenu menubar:view" msgid "Left Side View" msgstr "左視圖" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174 msgctxt "@action:inmenu menubar:view" msgid "Right Side View" msgstr "右視圖" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188 msgctxt "@action:inmenu" msgid "Configure Cura..." msgstr "設定 Cura..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195 msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." msgstr "新增印表機(&A)..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:201 msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." msgstr "管理印表機(&I)..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:208 msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "管理線材..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218 -msgctxt "@action:inmenu" +#: /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." msgid "Add more materials from Marketplace" -msgstr "從市集增加更多線材" +msgstr "" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:223 msgctxt "@action:inmenu menubar:profile" msgid "&Update profile with current settings/overrides" msgstr "使用目前設定 / 覆寫更新列印參數(&U)" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:231 msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" msgstr "捨棄目前更改(&D)" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:243 msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." msgstr "從目前設定 / 覆寫值建立列印參數(&C)..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:249 msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." msgstr "管理列印參數.." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:257 msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "顯示線上說明文件(&D)" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265 msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" msgstr "BUG 回報(&B)" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273 msgctxt "@action:inmenu menubar:help" msgid "What's New" msgstr "新功能" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:287 msgctxt "@action:inmenu menubar:help" msgid "About..." msgstr "關於..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:294 msgctxt "@action:inmenu menubar:edit" msgid "Delete Selected" msgstr "刪除選取" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:304 msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" msgstr "置中選取" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:313 msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "複製選取" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:322 msgctxt "@action:inmenu" msgid "Delete Model" msgstr "刪除模型" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:330 msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" msgstr "將模型置中(&N)" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:336 msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" msgstr "群組模型(&G)" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:356 msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" msgstr "取消模型群組" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:366 msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" msgstr "結合模型(&M)" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:376 msgctxt "@action:inmenu" msgid "&Multiply Model..." msgstr "複製模型...(&M)" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383 msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" msgstr "選擇所有模型" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:393 msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" msgstr "清空列印平台" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:403 msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" msgstr "重新載入所有模型" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414 -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models To All Build Plates" -msgstr "將所有模型排列到所有列印平台上" - -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412 msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" msgstr "排列所有模型" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420 msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" msgstr "排列所選模型" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" msgstr "重置所有模型位置" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434 msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" msgstr "重置所有模型旋轉" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443 msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." msgstr "開啟檔案(&O)..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453 msgctxt "@action:inmenu menubar:file" msgid "&New Project..." msgstr "新建專案(&N)..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460 msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" msgstr "顯示設定資料夾" -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476 /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:467 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476 msgctxt "@action:menu" msgid "Configure setting visibility..." msgstr "參數顯示設定..." -#: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483 -msgctxt "@action:menu" -msgid "&Marketplace" -msgstr "市集(&M)" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32 +msgctxt "@label:button" +msgid "My printers" +msgstr "我的列印機" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81 +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "從 Digital Library中創建列印專案." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46 +msgctxt "@label:button" +msgid "Print jobs" +msgstr "列印工作" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Extend Ultimaker Cura with plugins and material profiles." +msgstr "使用插件及線材參數擴充Ultimaker Cura." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62 +msgctxt "@tooltip:button" +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 +msgctxt "@label:button" +msgid "Ultimaker support" +msgstr "Ultimaker 支援" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69 +msgctxt "@tooltip:button" +msgid "Learn how to get started with Ultimaker Cura." +msgstr "學習如何開始使用Ultimaker Cura." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Consult the Ultimaker Community." +msgstr "諮詢Ultimaker社群." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "讓開發者了解您遇到的問題." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90 +msgctxt "@tooltip:button" +msgid "Visit the Ultimaker website." +msgstr "參觀Ultimaker網站." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ColorDialog.qml:107 msgctxt "@label" -msgid "This setting is not used because all the settings that it influences are overridden." -msgstr "此設定未被使用,因為受它影響的設定都被覆寫了。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86 -msgctxt "@label Header for list of settings." -msgid "Affects" -msgstr "影響" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91 -msgctxt "@label Header for list of settings." -msgid "Affected By" -msgstr "影響因素" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188 -msgctxt "@label" -msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." -msgstr "這個設定是所有擠出機共用的。修改它會同時更動到所有擠出機的值。" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192 -msgctxt "@label" -msgid "This setting is resolved from conflicting extruder-specific values:" -msgstr "此設定是透過解決擠出機設定值衝突獲得:" - -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232 -msgctxt "@label" -msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." +msgid "Hex" msgstr "" -"此設定的值與列印參數不同。\n" -"\n" -"單擊以復原列印參數的值。" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:250 msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"這個設定通常由計算得出,可是它目前被設定為一個數值。\n" -"\n" -"點擊以恢復計算得出的數值。" +msgid "This package will be installed after restarting." +msgstr "此套件將在重新啟動後安裝。" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:463 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:14 +msgctxt "@title:tab" +msgid "General" +msgstr "基本" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466 +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 +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 +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 +msgctxt "@title:tab" +msgid "Profiles" +msgstr "列印參數" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589 +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 +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 +msgctxt "@title:window" +msgid "Open file(s)" +msgstr "開啟檔案" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:742 +msgctxt "@window:title" +msgid "Install Package" +msgstr "安裝套件" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:749 +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "開啟檔案" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:751 +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 +msgctxt "@title:window" +msgid "Add Printer" +msgstr "新增印表機" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:839 +msgctxt "@title:window" +msgid "What's New" +msgstr "新功能" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "version: %1" +msgstr "版本:%1" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72 +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 +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 "" +"Cura 由 Ultimaker B.V. 與社群合作開發。\n" +"Cura 使用以下開源專案:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136 +msgctxt "@label" +msgid "Graphical user interface" +msgstr "圖形用戶介面" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137 +msgctxt "@label" +msgid "Application framework" +msgstr "應用框架" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138 +msgctxt "@label" +msgid "G-code generator" +msgstr "G-code 產生器" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:139 +msgctxt "@label" +msgid "Interprocess communication library" +msgstr "進程間通訊交互使用庫" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140 +msgctxt "@label" +msgid "Python bindings for libnest2d" +msgstr "Python bindings for libnest2d" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141 +msgctxt "@label" +msgid "Polygon packing library, developed by Prusa Research" +msgstr "多邊形包裝函式庫,由 Prusa Research 開發" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142 +msgctxt "@label" +msgid "Support library for handling 3MF files" +msgstr "用於處理 3MF 檔案的函式庫" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143 +msgctxt "@label" +msgid "Support library for file metadata and streaming" +msgstr "用於檔案 metadata 和串流的函式庫" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146 +msgctxt "@label" +msgid "Programming language" +msgstr "編程語言" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147 +msgctxt "@label" +msgid "GUI framework" +msgstr "GUI 框架" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148 +msgctxt "@label" +msgid "GUI framework bindings" +msgstr "GUI 框架綁定" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149 +msgctxt "@label" +msgid "C/C++ Binding library" +msgstr "C / C++ 綁定庫" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150 +msgctxt "@label" +msgid "Data interchange format" +msgstr "資料交換格式" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151 +msgctxt "@label" +msgid "Font" +msgstr "字體" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154 +msgctxt "@label" +msgid "Polygon clipping library" +msgstr "多邊形剪輯函式庫" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155 +msgctxt "@label" +msgid "JSON parser" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 +msgctxt "@label" +msgid "Utility functions, including an image loader" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157 +msgctxt "@label" +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" +msgid "Root Certificates for validating SSL trustworthiness" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162 +msgctxt "@label" +msgid "Compatibility between Python 2 and 3" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163 +msgctxt "@label" +msgid "Support library for system keyring access" +msgstr "存取系統金鑰函式庫" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164 +msgctxt "@label" +msgid "Support library for faster math" +msgstr "高速運算函式庫" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165 +msgctxt "@label" +msgid "Support library for handling STL files" +msgstr "用於處理 STL 檔案的函式庫" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:166 +msgctxt "@label" +msgid "Python bindings for Clipper" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:167 +msgctxt "@label" +msgid "Serial communication library" +msgstr "串口通訊函式庫" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:168 +msgctxt "@label" +msgid "Support library for scientific computing" +msgstr "科學計算函式庫" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:169 +msgctxt "@Label" +msgid "Python Error tracking library" +msgstr "Python 錯誤追蹤函式庫" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:170 +msgctxt "@label" +msgid "Support library for handling triangular meshes" +msgstr "用於處理三角形網格的函式庫" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:171 +msgctxt "@label" +msgid "ZeroConf discovery library" +msgstr "ZeroConf 發現函式庫" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 +msgctxt "@label" +msgid "Universal build system configuration" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:175 +msgctxt "@label" +msgid "Dependency and package manager" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:176 +msgctxt "@label" +msgid "Packaging Python-applications" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:177 +msgctxt "@label" +msgid "Linux cross-distribution application deployment" +msgstr "Linux cross-distribution 應用程式部署" + +#: /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 +msgctxt "@title:window" +msgid "Open project file" +msgstr "開啟專案檔案" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:83 +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 +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "記住我的選擇" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:104 +msgctxt "@action:button" +msgid "Open as project" +msgstr "作為專案開啟" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:109 +msgctxt "@action:button" +msgid "Import models" +msgstr "匯入模型" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:column" +msgid "Profile settings" +msgstr "列印參數設定" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:77 +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 +msgctxt "@option:discardOrKeep" +msgid "Always ask me this" +msgstr "總是詢問" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:105 +msgctxt "@option:discardOrKeep" +msgid "Discard and never ask again" +msgstr "捨棄更改,並不再詢問此問題" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:106 +msgctxt "@option:discardOrKeep" +msgid "Keep and never ask again" +msgstr "保留更改,並不再詢問此問題" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:136 +msgctxt "@action:button" +msgid "Discard changes" +msgstr "忽略更動" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:142 +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?" +msgstr "我們已經在你所選擇的檔案中找到一個或多個專案檔案,但一次只能開啟一個專案檔案。我們建議只從那些檔案中匯入模型而不開啟專案。你要繼續操作嗎?" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:window" +msgid "Save Project" +msgstr "儲存專案" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:175 +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "擠出機 %1" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191 +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & 線材" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193 +msgctxt "@action:label" +msgid "Material" +msgstr "線材" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282 +msgctxt "@action:label" +msgid "Don't show project summary on save again" +msgstr "儲存時不再顯示專案摘要" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:296 +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 +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 +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "設定(&S)" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87 +msgctxt "@title:window" +msgid "New project" +msgstr "新建專案" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Marketplace" +msgstr "市集" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18 +msgctxt "@header" +msgid "Configurations" +msgstr "設定" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Marketplace" +msgstr "市集" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@label" +msgid "Select configuration" +msgstr "選擇設定" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358 +msgctxt "@label" +msgid "Configurations" +msgstr "設定" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Enabled" +msgstr "已啟用" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:266 +msgctxt "@label" +msgid "Material" +msgstr "線材" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:392 +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "在此線材組合下,使用膠水以獲得較佳的附著。" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Number of Copies" +msgstr "複製個數" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "擴充功能(&X)" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "儲存專案...(&S)" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "匯出選擇..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Material" +msgstr "線材" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "通用" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "偏好設定(&R)" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "支援網路的印表機" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "最近開啟的檔案(&R)" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "顯示設定" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "管理參數顯示..." + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "視角位置(&C)" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "透視" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59 +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "正交" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "印表機不接受命令" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label:MonitorStatus" +msgid "Lost connection with the printer" +msgstr "與印表機的連線中斷" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:142 +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "列印中..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:145 +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "已暫停" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:148 +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "準備中..." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:150 +msgctxt "@label:MonitorStatus" +msgid "Please remove the print" +msgstr "請取出列印件" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:318 +msgctxt "@label" +msgid "Abort Print" +msgstr "中斷列印" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Is printed as support." +msgstr "做為支撐而列印。" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "與此模型重疊的填充已被更改。" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@action:button" +msgid "Defaults" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:169 +msgctxt "@label" +msgid "Interface" +msgstr "介面" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:212 +msgctxt "@heading" +msgid "-- incomplete --" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:258 +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." +msgid "Theme*:" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:320 +msgctxt "@info:tooltip" +msgid "Slice automatically when changing settings." +msgstr "當設定變更時自動進行切片。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:328 +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." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:352 +msgctxt "@label" +msgid "Viewport behavior" +msgstr "顯示區設定" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360 +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 +msgctxt "@option:check" +msgid "Display overhang" +msgstr "顯示突出部分" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379 +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 +msgctxt "@option:check" +msgid "Display model errors" +msgstr "顯示模型錯誤" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:396 +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 +msgctxt "@action:button" +msgid "Center camera when item is selected" +msgstr "當專案被選中時,自動置中視角" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:411 +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 +msgctxt "@action:button" +msgid "Invert the direction of camera zoom." +msgstr "反轉視角縮放方向。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432 +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 +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 +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "跟隨滑鼠方向縮放" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:463 +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 +msgctxt "@option:check" +msgid "Ensure models are kept apart" +msgstr "確保每個模型都保持分離" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:477 +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 +msgctxt "@option:check" +msgid "Automatically drop models to the build plate" +msgstr "自動下降模型到列印平台" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:494 +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 +msgctxt "@option:check" +msgid "Caution message in g-code reader" +msgstr "G-code 讀取器中的警告訊息" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:511 +msgctxt "@info:tooltip" +msgid "Should layer be forced into compatibility mode?" +msgstr "分層檢視要強制進入相容模式嗎?" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:516 +msgctxt "@option:check" +msgid "Force layer view compatibility mode (restart required)" +msgstr "強制分層檢視相容模式(需要重新啟動)" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:526 +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 +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "開啟時復原視窗位置" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:541 +msgctxt "@info:tooltip" +msgid "What type of camera rendering should be used?" +msgstr "使用哪種類型的攝影機渲染?" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548 +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "攝影機渲染:" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555 +msgid "Perspective" +msgstr "透視" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:556 +msgid "Orthographic" +msgstr "正交" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:596 +msgctxt "@label" +msgid "Opening and saving files" +msgstr "開啟並儲存檔案" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:603 +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 +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "使用同一 Cura 視窗" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619 +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 +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 +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 +msgctxt "@option:check" +msgid "Scale large models" +msgstr "縮小過大模型" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:650 +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 +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "放大過小模型" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:665 +msgctxt "@info:tooltip" +msgid "Should models be selected after they are loaded?" +msgstr "模型載入後要設為被選擇的狀態嗎?" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670 +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "模型載入後選擇模型" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:680 +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 +msgctxt "@option:check" +msgid "Add machine prefix to job name" +msgstr "將印表機名稱前綴添加到列印作業名稱中" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:695 +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 +msgctxt "@option:check" +msgid "Show summary dialog when saving project" +msgstr "儲存專案時顯示摘要對話框" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:709 +msgctxt "@info:tooltip" +msgid "Default behavior when opening a project file" +msgstr "開啟專案檔案時的預設行為" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:717 +msgctxt "@window:text" +msgid "Default behavior when opening a project file: " +msgstr "開啟專案檔案時的預設行為: " + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:732 +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "每次都向我確認" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733 +msgctxt "@option:openProject" +msgid "Always open as a project" +msgstr "總是作為一個專案開啟" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734 +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "總是匯入模型" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:771 +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 +msgctxt "@label" +msgid "Profiles" +msgstr "列印參數" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:785 +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 +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "總是放棄修改過的設定" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:801 +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "總是將修改過的設定轉移至新的列印參數" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:835 +msgctxt "@label" +msgid "Privacy" +msgstr "隱私權" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:841 +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 位址或其他私人資料。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:846 +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "(匿名)發送列印資訊" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:876 +msgctxt "@label" +msgid "Updates" +msgstr "更新" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:883 +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 +msgctxt "@option:check" +msgid "Check for updates on start" +msgstr "啟動時檢查更新" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:904 +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 +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "僅正式版本" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:920 +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 +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "正式版本與測試版本發佈" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:936 +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 +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "設定插件更新提示" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Rename" +msgstr "重命名" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@action:button" +msgid "Import" +msgstr "匯入" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +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 +msgctxt "@title:window" +msgid "Import Material" +msgstr "匯入線材設定" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Export Material" +msgstr "匯出線材設定" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "同步印表機線材設定" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Why do I need to sync material profiles?" +msgstr "為何我需要同步線材設定檔?" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86 +msgctxt "@button" +msgid "Start" +msgstr "開始" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:128 +msgctxt "@title:header" +msgid "Sign in" +msgstr "登入" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:134 +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 +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "從USB進行同步線材設定檔" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:191 +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 +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 +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 +msgctxt "@button" +msgid "Troubleshooting" +msgstr "故障排除" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406 +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 +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 +msgctxt "@button" +msgid "Refresh List" +msgstr "重新載入清單" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457 +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 +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 +msgctxt "@button" +msgid "Sync" +msgstr "同步" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519 +msgctxt "@button" +msgid "Syncing" +msgstr "同步中" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537 +msgctxt "@title:header" +msgid "No printers found" +msgstr "未發現任何列印機資訊" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558 +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 +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 +msgctxt "@button" +msgid "Refresh" +msgstr "重新載入" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:626 +msgctxt "@title:header" +msgid "Sync material profiles via USB" +msgstr "透過USB同步您的線材設定檔" + +#: /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." +msgstr "請依照下述步驟載入新的線材設定檔至印表機." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:663 +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "請點擊輸出材料檔案按鈕." + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:664 +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 +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 +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 +msgctxt "@button" +msgid "Back" +msgstr "返回" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:696 +msgctxt "@button" +msgid "Export material archive" +msgstr "輸出線材設定存檔" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:731 +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "匯出所有線材設定" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Display Name" +msgstr "顯示名稱" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171 +msgctxt "@label" +msgid "Brand" +msgstr "品牌" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Color" +msgstr "顏色" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Properties" +msgstr "屬性" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:286 +msgctxt "@label" +msgid "Density" +msgstr "密度" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:319 +msgctxt "@label" +msgid "Diameter" +msgstr "直徑" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Filament weight" +msgstr "線材重量" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Cost per Meter" +msgstr "每公尺成本" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Unlink Material" +msgstr "解除聯結線材" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:485 +msgctxt "@label" +msgid "Description" +msgstr "描述" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@label" +msgid "Print settings" +msgstr "列印設定" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:tooltip" +msgid "Create new profile from current settings/overrides" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Update profile." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "捨棄目前更改" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:label" +msgid "Your current settings match the selected profile." +msgstr "你目前的設定與選定的列印參數相匹配。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:175 +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "全局設定" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278 +msgctxt "@title:window" +msgid "Create Profile" +msgstr "建立列印參數" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@title:window" +msgid "Export Profile" +msgstr "匯出列印參數" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:382 +msgctxt "@title:window" +msgid "Duplicate Profile" +msgstr "複製列印參數" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +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 +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "參數顯示設定" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55 msgctxt "@label:textbox" -msgid "Search settings" -msgstr "搜尋設定" +msgid "Check all" +msgstr "全選" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453 -msgctxt "@action:menu" -msgid "Copy value to all extruders" -msgstr "將設定值複製到所有擠出機" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40 +msgctxt "@label" +msgid "Extruder" +msgstr "擠出機" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462 -msgctxt "@action:menu" -msgid "Copy all changed values to all extruders" -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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499 -msgctxt "@action:menu" -msgid "Hide this setting" -msgstr "隱藏此設定" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105 +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "此加熱頭的目前溫度。" -#: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512 -msgctxt "@action:menu" -msgid "Don't show this setting" -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/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516 -msgctxt "@action:menu" -msgid "Keep this setting visible" -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/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203 +#: /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 +msgctxt "@label" +msgid "Active print" +msgstr "正在列印" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164 +msgctxt "@label" +msgid "Job Name" +msgstr "作業名稱" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:172 +msgctxt "@label" +msgid "Printing Time" +msgstr "列印時間" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:180 +msgctxt "@label" +msgid "Estimated time left" +msgstr "預計剩餘時間" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46 +msgctxt "@label" +msgid "Profile" +msgstr "參數" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145 +msgctxt "@tooltip" +msgid "" +"Some setting/override values are different from the values stored in the profile.\n" +"\n" +"Click to open the profile manager." +msgstr "" +"部份設定/覆寫值與儲存在列印參數中的值不同。\n" +"\n" +"點擊開啟列印參數管理器。" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +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 +msgctxt "@label:Should be short" +msgid "On" +msgstr "開啟" + +#: /home/trin/Gedeeld/Projects/Cura/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." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68 +msgctxt "@info" +msgid "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." +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27 +msgctxt "@label" +msgid "Adhesion" +msgstr "附著" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72 +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 +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" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28 +msgctxt "@label" +msgid "Support" +msgstr "支撐" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69 +msgctxt "@label" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "在模型的突出部分產生支撐結構。若不這樣做,這些部分在列印時將倒塌。" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button:label" +msgid "Learn more" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:36 +msgctxt "@title:column" +msgid "Setting" +msgstr "設定" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:37 +msgctxt "@title:column" +msgid "Profile" +msgstr "列印參數" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:38 +msgctxt "@title:column" +msgid "Current" +msgstr "目前" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ProfileOverview.qml:39 +msgctxt "@title:column Unit of measurement" +msgid "Unit" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/SearchBar.qml:17 +msgctxt "@placeholder" +msgid "Search" +msgstr "" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:115 msgctxt "@label" msgid "" "Some hidden settings use values different from their normal calculated value.\n" @@ -5690,140 +5738,358 @@ msgstr "" "\n" "點擊以顯這些設定。" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257 +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:84 msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "此套件將在重新啟動後安裝。" +msgid "This setting is not used because all the settings that it influences are overridden." +msgstr "此設定未被使用,因為受它影響的設定都被覆寫了。" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:471 -msgctxt "@title:tab" -msgid "Settings" -msgstr "設定" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:89 +msgctxt "@label Header for list of settings." +msgid "Affects" +msgstr "影響" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594 -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "關閉 %1 中" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:94 +msgctxt "@label Header for list of settings." +msgid "Affected By" +msgstr "影響因素" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595 /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607 -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/Settings/SettingItem.qml:190 +msgctxt "@label" +msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." +msgstr "這個設定是所有擠出機共用的。修改它會同時更動到所有擠出機的值。" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755 -msgctxt "@window:title" -msgid "Install Package" -msgstr "安裝套件" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:194 +msgctxt "@label" +msgid "This setting is resolved from conflicting extruder-specific values:" +msgstr "此設定是透過解決擠出機設定值衝突獲得:" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763 -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "開啟檔案" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:234 +msgctxt "@label" +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"此設定的值與列印參數不同。\n" +"\n" +"單擊以復原列印參數的值。" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766 -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/Settings/SettingItem.qml:334 +msgctxt "@label" +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"這個設定通常由計算得出,可是它目前被設定為一個數值。\n" +"\n" +"點擊以恢復計算得出的數值。" -#: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875 -msgctxt "@title:window" -msgid "Add Printer" +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:48 +msgctxt "@label:textbox" +msgid "Search settings" +msgstr "搜尋設定" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:menu" +msgid "Copy all changed values to all extruders" +msgstr "複製所有改變的設定值到所有擠出機" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@action:menu" +msgid "Don't show this setting" +msgstr "不再顯示此設定" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@info:tooltip" +msgid "3D View" +msgstr "立體圖" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:38 +msgctxt "@info:tooltip" +msgid "Front View" +msgstr "前視圖" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:51 +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "上視圖" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:64 +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "左視圖" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:77 +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "右視圖" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50 +msgctxt "@label" +msgid "View type" +msgstr "檢示類型" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "等待雲端服務回應" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Add printer manually" +msgstr "手動新增印表機" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203 +msgctxt "@label" +msgid "Manufacturer" +msgstr "製造商" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 +msgctxt "@label" +msgid "Profile author" +msgstr "列印參數作者" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226 +msgctxt "@label" +msgid "Printer name" +msgstr "印表機名稱" + +#: /home/trin/Gedeeld/Projects/Cura/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/clamboo/Desktop/Cura/resources/qml/Cura.qml:883 -msgctxt "@title:window" +#: /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 +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "在你的網路上找不到印表機。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162 +msgctxt "@label" +msgid "Refresh" +msgstr "更新" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Troubleshooting" +msgstr "故障排除" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "輸入印表機的 IP 位址。" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150 +msgctxt "@button" +msgid "Add" +msgstr "新增" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" +msgid "Can't connect to your Ultimaker printer?" +msgstr "無法連接到 Ultimaker 印表機?" + +#: /home/trin/Gedeeld/Projects/Cura/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 +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 +msgctxt "@button" +msgid "Connect" +msgstr "連接" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24 +msgctxt "@label" +msgid "Release Notes" +msgstr "發佈通知" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "備份及同步您的線材設定與插件" + +#: /home/trin/Gedeeld/Projects/Cura/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的使用者得到幫助" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:189 +msgctxt "@button" +msgid "Skip" +msgstr "略過" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:201 +msgctxt "@text" +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 +msgctxt "@label" +msgid "Empty" +msgstr "空的" + +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23 +msgctxt "@label" +msgid "User Agreement" +msgstr "使用者授權" + +#: /home/trin/Gedeeld/Projects/Cura/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 +msgctxt "@label" msgid "What's New" msgstr "新功能" -#: PerObjectSettingsTool/plugin.json +#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:18 +msgctxt "@label" +msgid "No items to select from" +msgstr "沒有可選取的專案" + +#: ModelChecker/plugin.json msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "提供對每個模型的單獨設定。" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "檢查模型和列印設定以了解可能發生的問題並給出建議。" -#: PerObjectSettingsTool/plugin.json +#: ModelChecker/plugin.json msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "單一模型設定工具" - -#: 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 列印參數讀取器" - -#: X3DReader/plugin.json -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "提供讀取 X3D 檔案的支援。" - -#: X3DReader/plugin.json -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D 讀取器" - -#: CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "備份和復原你的設定。" - -#: CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -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 "印表機設定操作" - -#: 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 "支援抹除器" - -#: 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 "行動裝置輸出設備外掛" - -#: FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "提供升級韌體用的機器操作。" - -#: FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -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 列印參數讀取器" +msgid "Model Checker" +msgstr "模器檢查器" #: 3MFReader/plugin.json msgctxt "description" @@ -5835,65 +6101,15 @@ msgctxt "name" msgid "3MF Reader" msgstr "3MF 讀取器" -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "提供寫入 Ultimaker 格式封包的支援。" +msgid "Provides support for writing 3MF files." +msgstr "提供寫入 3MF 檔案的支援。" -#: UFPWriter/plugin.json +#: 3MFWriter/plugin.json msgctxt "name" -msgid "UFP Writer" -msgstr "UFP 寫入器" - -#: 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 "哨兵記錄器" - -#: 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 列印參數讀取器" - -#: PreviewStage/plugin.json -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "在 Cura 提供一個預覽介面。" - -#: PreviewStage/plugin.json -msgctxt "name" -msgid "Preview Stage" -msgstr "預覽介面" - -#: XRayView/plugin.json -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "提供透視檢視。" - -#: XRayView/plugin.json -msgctxt "name" -msgid "X-Ray View" -msgstr "透視檢視" - -#: 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 引擎後台" +msgid "3MF Writer" +msgstr "3MF 寫入器" #: AMFReader/plugin.json msgctxt "description" @@ -5905,25 +6121,35 @@ msgctxt "name" msgid "AMF Reader" msgstr "AMF 讀取器" -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "從一個壓縮檔案中讀取 G-code。" +msgid "Backup and restore your configuration." +msgstr "備份和復原你的設定。" -#: GCodeGzReader/plugin.json +#: CuraDrive/plugin.json msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "壓縮檔案 G-code 讀取器" +msgid "Cura Backups" +msgstr "Cura 備份" -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/plugin.json msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "擴充程式(允許用戶建立腳本進行後處理)" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "提供連結到 Cura 切片引擎後台。" -#: PostProcessingPlugin/plugin.json +#: CuraEngineBackend/plugin.json msgctxt "name" -msgid "Post Processing" -msgstr "後處理" +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" @@ -5935,65 +6161,15 @@ msgctxt "name" msgid "Cura Profile Writer" msgstr "Cura 列印參數寫入器" -#: USBPrinting/plugin.json +#: DigitalLibrary/plugin.json msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "接受 G-Code 並且傳送到印表機。此外掛也可以更新韌體。" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "連結至\"數位博物館\",允許Cura從\"數位博物館\"打開或保存文件." -#: USBPrinting/plugin.json +#: DigitalLibrary/plugin.json msgctxt "name" -msgid "USB printing" -msgstr "USB 連線列印" - -#: PrepareStage/plugin.json -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "在 cura 提供一個準備介面。" - -#: PrepareStage/plugin.json -msgctxt "name" -msgid "Prepare Stage" -msgstr "準備介面" - -#: 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 讀取器" - -#: 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 "圖片讀取器" - -#: 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 印表機操作" - -#: 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 寫入器" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker 數位博物館" #: FirmwareUpdateChecker/plugin.json msgctxt "description" @@ -6005,45 +6181,55 @@ msgctxt "name" msgid "Firmware Update Checker" msgstr "韌體更新檢查" -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "提交匿名切片資訊。這項功能可以在偏好設定中關閉。" +msgid "Provides a machine actions for updating firmware." +msgstr "提供升級韌體用的機器操作。" -#: SliceInfoPlugin/plugin.json +#: FirmwareUpdater/plugin.json msgctxt "name" -msgid "Slice info" -msgstr "切片資訊" +msgid "Firmware Updater" +msgstr "韌體更新器" -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/plugin.json msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "提供讀寫 XML 格式線材參數的功能。" +msgid "Reads g-code from a compressed archive." +msgstr "從一個壓縮檔案中讀取 G-code。" -#: XmlMaterialProfile/plugin.json +#: GCodeGzReader/plugin.json msgctxt "name" -msgid "Material Profiles" -msgstr "線材參數" +msgid "Compressed G-code Reader" +msgstr "壓縮檔案 G-code 讀取器" -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/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從\"數位博物館\"打開或保存文件." +msgid "Writes g-code to a compressed archive." +msgstr "將 G-code 寫入壓縮檔案。" -#: DigitalLibrary/plugin.json +#: GCodeGzWriter/plugin.json msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker 數位博物館" +msgid "Compressed G-code Writer" +msgstr "壓縮檔案 G-code 寫入器" -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "description" -msgid "Find, manage and install new Cura packages." -msgstr "查詢,管理和安裝新的 Cura 套件。" +msgid "Provides support for importing profiles from g-code files." +msgstr "提供匯入 G-code 檔案中列印參數的支援。" -#: Toolbox/plugin.json +#: GCodeProfileReader/plugin.json msgctxt "name" -msgid "Toolbox" -msgstr "工具箱" +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" @@ -6055,245 +6241,155 @@ 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 Simulation view." -msgstr "提供模擬檢視。" +msgid "Provides the preview of sliced layerdata." +msgstr "" #: SimulationView/plugin.json msgctxt "name" msgid "Simulation View" msgstr "模擬檢視" -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "將設定從 Cura 4.5 版本升級至 4.6 版本。" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "提交匿名切片資訊。這項功能可以在偏好設定中關閉。" -#: VersionUpgrade/VersionUpgrade45to46/plugin.json +#: SliceInfoPlugin/plugin.json msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "升級版本 4.5 到 4.6" +msgid "Slice info" +msgstr "切片資訊" -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "將設定從 Cura 2.5 版本升級至 2.6 版本。" +msgid "Provides a normal solid mesh view." +msgstr "提供一個基本的實體網格檢視。" -#: VersionUpgrade/VersionUpgrade25to26/plugin.json +#: SolidView/plugin.json msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "升級版本 2.5 到 2.6" +msgid "Solid View" +msgstr "實體檢視" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/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 版本。" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "建立一個抹除器網格放在某些地方用來防止列印支撐" -#: VersionUpgrade/VersionUpgrade460to462/plugin.json +#: SupportEraser/plugin.json msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "升級版本 4.6.0 到 4.6.2" - -#: 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/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/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/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/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/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/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/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" - -#: 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/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/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/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/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/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/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/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/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/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" - -#: 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 網絡連線" +msgid "Support Eraser" +msgstr "支援抹除器" #: TrimeshReader/plugin.json msgctxt "description" @@ -6315,45 +6411,640 @@ msgctxt "name" msgid "UFP Reader" msgstr "UFP 讀取器" -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "提供一個基本的實體網格檢視。" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "提供寫入 Ultimaker 格式封包的支援。" -#: SolidView/plugin.json +#: UFPWriter/plugin.json msgctxt "name" -msgid "Solid View" -msgstr "實體檢視" +msgid "UFP Writer" +msgstr "UFP 寫入器" -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "提供寫入 3MF 檔案的支援。" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "提供 Ultimaker 機器的操作(例如平台調平精靈,選擇升級等)。" -#: 3MFWriter/plugin.json +#: UltimakerMachineActions/plugin.json msgctxt "name" -msgid "3MF Writer" -msgstr "3MF 寫入器" +msgid "Ultimaker machine actions" +msgstr "Ultimaker 印表機操作" -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "在 cura 提供一個監控介面。" +msgid "Manages network connections to Ultimaker networked printers." +msgstr "管理與 Ultimaker 網絡印表機的網絡連線。" -#: MonitorStage/plugin.json +#: UM3NetworkPrinting/plugin.json msgctxt "name" -msgid "Monitor Stage" -msgstr "監控介面" +msgid "Ultimaker Network Connection" +msgstr "Ultimaker 網絡連線" -#: ModelChecker/plugin.json +#: USBPrinting/plugin.json msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "檢查模型和列印設定以了解可能發生的問題並給出建議。" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "接受 G-Code 並且傳送到印表機。此外掛也可以更新韌體。" -#: ModelChecker/plugin.json +#: USBPrinting/plugin.json msgctxt "name" -msgid "Model Checker" -msgstr "模器檢查器" +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." diff --git a/resources/i18n/zh_TW/fdmextruder.def.json.po b/resources/i18n/zh_TW/fdmextruder.def.json.po index 5420f8be93..fe6e822417 100644 --- a/resources/i18n/zh_TW/fdmextruder.def.json.po +++ b/resources/i18n/zh_TW/fdmextruder.def.json.po @@ -1,13 +1,13 @@ # Cura JSON setting files -# Copyright (C) 2021 Ultimaker +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. -# Ultimaker , 2021. +# Ultimaker , 2022. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 12:00+0000\n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" "PO-Revision-Date: 2022-01-02 19:59+0800\n" "Last-Translator: Valen Chang \n" "Language-Team: Valen Chang \n" diff --git a/resources/i18n/zh_TW/fdmprinter.def.json.po b/resources/i18n/zh_TW/fdmprinter.def.json.po index 84af9c3b86..7cd52a92dc 100644 --- a/resources/i18n/zh_TW/fdmprinter.def.json.po +++ b/resources/i18n/zh_TW/fdmprinter.def.json.po @@ -1,13 +1,13 @@ # Cura JSON setting files -# Copyright (C) 2021 Ultimaker B.V. +# Copyright (C) 2022 Ultimaker B.V. # This file is distributed under the same license as the Cura package. -# Ultimaker , 2021. +# Ultimaker , 2022. # msgid "" msgstr "" -"Project-Id-Version: Cura 4.13\n" +"Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2021-12-10 11:59+0000\n" +"POT-Creation-Date: 2022-06-21 12:50+0000\n" "PO-Revision-Date: 2022-01-02 20:24+0800\n" "Last-Translator: Valen Chang \n" "Language-Team: Valen Chang \n" @@ -467,8 +467,8 @@ msgstr "機器頭和風扇多邊形" #: fdmprinter.def.json msgctxt "machine_head_with_fans_polygon description" -msgid "A 2D silhouette of the print head (fan caps included)." -msgstr "列印頭 2D 輪廓圖(包含風扇蓋)。" +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" @@ -740,6 +740,16 @@ 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" @@ -960,6 +970,56 @@ 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" @@ -991,14 +1051,24 @@ msgid "Optimize the order in which walls are printed so as to reduce the number msgstr "最佳化列印牆壁的順序,以減少縮回次數和行進距離。啟用此功能對大多數的零件是有益的,但有些零件可能反而會更花時間,因此請比較列印時間的估計值評估是否進行最佳化。當列印平台附著類型設定為邊緣時,第一層不會進行最佳化。" #: fdmprinter.def.json -msgctxt "outer_inset_first label" -msgid "Outer Before Inner Walls" -msgstr "先印外壁後印內壁" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "" #: fdmprinter.def.json -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 "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" @@ -1011,84 +1081,54 @@ msgid "Prints an extra wall at every other layer. This way infill gets caught be msgstr "每兩層建立一個額外牆壁,這些額外的牆壁能更緊密地抓填充部分,產生較強壯的模型。" #: fdmprinter.def.json -msgctxt "travel_compensate_overlapping_walls_enabled label" -msgid "Compensate Wall Overlaps" -msgstr "補償牆壁重疊" +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "" #: fdmprinter.def.json -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 "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 "travel_compensate_overlapping_walls_0_enabled label" -msgid "Compensate Outer Wall Overlaps" -msgstr "補償外壁重疊" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "" #: fdmprinter.def.json -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 "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 "travel_compensate_overlapping_walls_x_enabled label" -msgid "Compensate Inner Wall Overlaps" -msgstr "補償內壁重疊" +msgctxt "wall_split_middle_threshold label" +msgid "Split Middle Line Threshold" +msgstr "" #: fdmprinter.def.json -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_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 "wall_min_flow label" -msgid "Minimum Wall Flow" -msgstr "最小牆壁流量" +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "" #: fdmprinter.def.json -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 "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_min_flow_retract label" -msgid "Prefer Retract" -msgstr "回抽優先" +msgctxt "wall_add_middle_threshold label" +msgid "Add Middle Line Threshold" +msgstr "" #: fdmprinter.def.json -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 "當此功能開啟時,對於低於最小流量門檻值的牆壁,使用回抽取代而非梳理模式空跑。" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps label" -msgid "Fill Gaps Between Walls" -msgstr "填充牆壁之間空隙" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps description" -msgid "Fills the gaps between walls where no walls fit." -msgstr "填充牆壁之間空隙。" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option nowhere" -msgid "Nowhere" -msgstr "都不填充" - -#: fdmprinter.def.json -msgctxt "fill_perimeter_gaps option everywhere" -msgid "Everywhere" -msgstr "全部填充" - -#: fdmprinter.def.json -msgctxt "filter_out_tiny_gaps label" -msgid "Filter Out Tiny Gaps" -msgstr "濾除微小間隙" - -#: fdmprinter.def.json -msgctxt "filter_out_tiny_gaps description" -msgid "Filter out tiny gaps to reduce blobs on outside of model." -msgstr "濾除微小間隙以減少模型外側的斑點 。" +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" @@ -1100,6 +1140,26 @@ 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" @@ -2199,6 +2259,26 @@ 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" @@ -2710,24 +2790,14 @@ msgid "The first few layers are printed slower than the rest of the model, to ge msgstr "前幾層的列印速度比模型的其他層慢,以便實現與列印平台的更好附著,並改善整體的列印成功率。該速度在這些層中會逐漸增加。" #: fdmprinter.def.json -msgctxt "speed_equalize_flow_enabled label" -msgid "Equalize Filament Flow" -msgstr "均衡線材流量" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "" #: fdmprinter.def.json -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 "以較快的速度列印比正常線條更細的線條,使每秒擠出的線材量保持相同。模型中較薄的部分可能需要以低於設定中所提供寬度的線寬來列印線條。該設定控制這些線條的速度變化。" - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_max label" -msgid "Maximum Speed for Flow Equalization" -msgstr "流量均衡的最大速度" - -#: fdmprinter.def.json -msgctxt "speed_equalize_flow_max description" -msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -msgstr "調整列印速度以便均衡流量時的最大列印速度。" +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "" #: fdmprinter.def.json msgctxt "acceleration_enabled label" @@ -2739,6 +2809,16 @@ 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" @@ -2929,6 +3009,16 @@ 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" @@ -4464,6 +4554,46 @@ 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" @@ -4628,6 +4758,16 @@ 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" @@ -5128,6 +5268,16 @@ 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" @@ -6422,6 +6572,36 @@ 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 "" + +#: fdmprinter.def.json +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +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" +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 "command_line_settings label" msgid "Command Line Settings" @@ -6482,6 +6662,98 @@ 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_max_feedrate_e label" #~ msgid "Maximum Feedrate" #~ msgstr "最大進料速率" 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_Draft_Print_Quick.inst.cfg index ed1312583e..f2095ba055 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_Draft_Print_Quick.inst.cfg @@ -22,11 +22,6 @@ 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_CPEP_Fast_Print_Accurate.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_CPEP_Fast_Print_Accurate.inst.cfg index 48fb654a87..b74cd522ac 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_CPEP_Fast_Print_Accurate.inst.cfg @@ -14,12 +14,6 @@ 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 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_CPEP_Normal_Quality_Accurate.inst.cfg index b98688044f..1caacdf72f 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_CPEP_Normal_Quality_Accurate.inst.cfg @@ -14,12 +14,6 @@ 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 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_Normal_Quality_Accurate.inst.cfg index 344cd30b8d..315b26a3b1 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_Normal_Quality_Accurate.inst.cfg @@ -14,12 +14,6 @@ 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 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_Fast_Print_Accurate.inst.cfg index 4e33b36ee1..d4a999d8eb 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_Fast_Print_Accurate.inst.cfg @@ -14,12 +14,6 @@ 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 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_Normal_Quality_Accurate.inst.cfg index 8cdf66b6fe..aa371be6f3 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_Normal_Quality_Accurate.inst.cfg @@ -14,12 +14,6 @@ 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 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_Fast_Print_Accurate.inst.cfg index ff9e5755b3..abd125f483 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_Fast_Print_Accurate.inst.cfg @@ -14,12 +14,6 @@ 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 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_Normal_Quality_Accurate.inst.cfg index 1d68116a7f..c8cf2a3bd4 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_Normal_Quality_Accurate.inst.cfg @@ -14,12 +14,6 @@ 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 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_Fast_Print_Accurate.inst.cfg index 168b920b80..b4bbdddff7 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_Fast_Print_Accurate.inst.cfg @@ -14,12 +14,6 @@ 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 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_Normal_Quality_Accurate.inst.cfg index 70347ae80f..19418812af 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_Normal_Quality_Accurate.inst.cfg @@ -14,12 +14,6 @@ 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 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_Fast_Print_Accurate.inst.cfg index 9b2de341e6..36ea7c975e 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_Fast_Print_Accurate.inst.cfg @@ -14,12 +14,6 @@ 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 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_Normal_Quality_Accurate.inst.cfg index b9193339bf..88691ef1d6 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_Normal_Quality_Accurate.inst.cfg @@ -14,12 +14,6 @@ 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 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_VeryDraft_Print_Quick.inst.cfg index 70abf19142..b59ed875b4 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_VeryDraft_Print_Quick.inst.cfg @@ -16,12 +16,6 @@ is_experimental = True 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 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_TPLA_Fast_Print_Accurate.inst.cfg index 0cf2b8f993..924edf577d 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_TPLA_Fast_Print_Accurate.inst.cfg @@ -14,12 +14,6 @@ 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 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_TPLA_Normal_Quality_Accurate.inst.cfg index 0ca960acd7..b92e07a877 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_TPLA_Normal_Quality_Accurate.inst.cfg @@ -14,12 +14,6 @@ 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 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_Draft_Print_Quick.inst.cfg index 95d4d65b4a..98ad3af40b 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_Draft_Print_Quick.inst.cfg @@ -22,11 +22,6 @@ 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_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 index ad0eda8726..8939d670b1 100644 --- 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 @@ -14,12 +14,6 @@ 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 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 index 1fcbb95940..44f76d561f 100644 --- 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 @@ -14,12 +14,6 @@ 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 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 index 7d1026b479..7bf1fc834a 100644 --- 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 @@ -14,12 +14,6 @@ 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 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 index 52bd47103f..a95862c35a 100644 --- 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 @@ -14,12 +14,6 @@ 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 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 index 55eaac45cf..bfdd35017c 100644 --- 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 @@ -14,12 +14,6 @@ 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 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 index b831e25ce6..022fb2b50d 100644 --- 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 @@ -14,12 +14,6 @@ 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 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 index e1b8a1c712..3637040c4c 100644 --- 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 @@ -14,12 +14,6 @@ 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 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 index ed808aaf03..6cce98ca60 100644 --- 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 @@ -14,12 +14,6 @@ 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 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 index adc4169968..32e0463447 100644 --- 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 @@ -14,12 +14,6 @@ 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 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 index bccd269c87..0b7ffb4154 100644 --- 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 @@ -14,12 +14,6 @@ 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 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 index f13476802c..186281c17c 100644 --- 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 @@ -14,12 +14,6 @@ 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 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 index 585c2f72b5..545a8b5654 100644 --- 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 @@ -14,12 +14,6 @@ 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 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_Draft_Print_Quick.inst.cfg index 4c9608ddaf..76d9191fc1 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_Draft_Print_Quick.inst.cfg @@ -22,11 +22,6 @@ 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_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 index 11a2c5e134..ca098b5bfa 100644 --- 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 @@ -14,12 +14,6 @@ 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 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 index f9a3c3f775..472c0b4359 100644 --- 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 @@ -14,12 +14,6 @@ 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 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_VeryDraft_Print_Quick.inst.cfg index 12752123f4..51cfaebe34 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_VeryDraft_Print_Quick.inst.cfg @@ -16,12 +16,6 @@ is_experimental = True 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 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_TPLA_Draft_Print_Quick.inst.cfg index 7aaff9a062..7851ecd793 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_TPLA_Draft_Print_Quick.inst.cfg @@ -22,11 +22,6 @@ 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_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 index 84c9293467..2b1b769595 100644 --- 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 @@ -14,12 +14,6 @@ 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 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 index 8d8825ca41..daa327a2f5 100644 --- 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 @@ -14,12 +14,6 @@ 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 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_TPLA_VeryDraft_Print_Quick.inst.cfg index a3e850c05d..ec93cc5599 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_TPLA_VeryDraft_Print_Quick.inst.cfg @@ -16,12 +16,6 @@ is_experimental = True 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 diff --git a/resources/meshes/elegoo_neptune_2.stl b/resources/meshes/elegoo_neptune_2.stl new file mode 100644 index 0000000000..0b5d61df77 Binary files /dev/null and b/resources/meshes/elegoo_neptune_2.stl 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/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/makergear_m2_platform.3mf b/resources/meshes/makergear_m2_platform.3mf new file mode 100644 index 0000000000..d68e5367ec Binary files /dev/null and b/resources/meshes/makergear_m2_platform.3mf differ diff --git a/resources/qml/Account/SyncState.qml b/resources/qml/Account/SyncState.qml index 9c978b4607..b558714376 100644 --- a/resources/qml/Account/SyncState.qml +++ b/resources/qml/Account/SyncState.qml @@ -13,31 +13,38 @@ Row // Sync state icon + message height: childrenRect.height spacing: UM.Theme.getSize("narrow_margin").height + // These are the enums from cura/API/account.py + // somehow exposing these enums from python to QML doesn't work properly anymore + property var _Cura_AccountSyncState_SYNCING: 0 + property var _Cura_AccountSyncState_SUCCESS: 1 + property var _Cura_AccountSyncState_ERROR: 2 + property var _Cura_AccountSyncState_IDLE: 3 + states: [ State { name: "idle" - when: syncState == Cura.AccountSyncState.IDLE + when: syncState == _Cura_AccountSyncState_IDLE PropertyChanges { target: icon; source: UM.Theme.getIcon("ArrowDoubleCircleRight")} }, State { name: "syncing" - when: syncState == Cura.AccountSyncState.SYNCING + when: syncState == _Cura_AccountSyncState_SYNCING PropertyChanges { target: icon; source: UM.Theme.getIcon("ArrowDoubleCircleRight") } PropertyChanges { target: stateLabel; text: catalog.i18nc("@label", "Checking...")} }, State { name: "up_to_date" - when: syncState == Cura.AccountSyncState.SUCCESS + when: syncState == _Cura_AccountSyncState_SUCCESS PropertyChanges { target: icon; source: UM.Theme.getIcon("CheckCircle") } PropertyChanges { target: stateLabel; text: catalog.i18nc("@label", "Account synced")} }, State { name: "error" - when: syncState == Cura.AccountSyncState.ERROR + when: syncState == _Cura_AccountSyncState_ERROR PropertyChanges { target: icon; source: UM.Theme.getIcon("Warning") } PropertyChanges { target: stateLabel; text: catalog.i18nc("@label", "Something went wrong...")} } diff --git a/resources/qml/Account/UserOperations.qml b/resources/qml/Account/UserOperations.qml index d7677264fb..9e5d082738 100644 --- a/resources/qml/Account/UserOperations.qml +++ b/resources/qml/Account/UserOperations.qml @@ -46,7 +46,7 @@ Column { id: initialLabel anchors.centerIn: parent - text: profile["username"].charAt(0).toUpperCase() + text: profile.username.charAt(0).toUpperCase() font: UM.Theme.getFont("large_bold") horizontalAlignment: Text.AlignHCenter } @@ -90,8 +90,9 @@ Column Cura.TertiaryButton { id: cloudButton - width: UM.Theme.getSize("account_button").width + width: parent.width height: UM.Theme.getSize("account_button").height + text: "Ultimaker Digital Factory" onClicked: Qt.openUrlExternally(CuraApplication.ultimakerDigitalFactoryUrl + "?utm_source=cura&utm_medium=software&utm_campaign=menu-visit-DF") fixedWidthMode: false @@ -100,8 +101,9 @@ Column Cura.TertiaryButton { id: accountButton - width: UM.Theme.getSize("account_button").width + width: parent.width height: UM.Theme.getSize("account_button").height + text: catalog.i18nc("@button", "Ultimaker Account") onClicked: Qt.openUrlExternally(CuraApplication.ultimakerCloudAccountRootUrl + "?utm_source=cura&utm_medium=software&utm_campaign=menu-visit-account") fixedWidthMode: false @@ -117,7 +119,11 @@ Column Cura.TertiaryButton { id: signOutButton + width: parent.width + height: UM.Theme.getSize("account_button").height + onClicked: Cura.API.account.logout() text: catalog.i18nc("@button", "Sign Out") + fixedWidthMode: false } } diff --git a/resources/qml/ActionButton.qml b/resources/qml/ActionButton.qml index 187da07cb6..21cdda0627 100644 --- a/resources/qml/ActionButton.qml +++ b/resources/qml/ActionButton.qml @@ -155,6 +155,7 @@ Button height: parent.height visible: false + running: visible RotationAnimator { diff --git a/resources/qml/ActionPanel/PrintJobInformation.qml b/resources/qml/ActionPanel/PrintJobInformation.qml index 9cdbf0714f..d142335d41 100644 --- a/resources/qml/ActionPanel/PrintJobInformation.qml +++ b/resources/qml/ActionPanel/PrintJobInformation.qml @@ -4,7 +4,7 @@ import QtQuick 2.7 import QtQuick.Controls 2.1 -import UM 1.1 as UM +import UM 1.5 as UM import Cura 1.0 as Cura Column @@ -26,15 +26,14 @@ Column leftPadding: UM.Theme.getSize("default_margin").width rightPadding: UM.Theme.getSize("default_margin").width - Label + UM.Label { text: catalog.i18nc("@label", "Time estimation").toUpperCase() color: UM.Theme.getColor("primary") font: UM.Theme.getFont("default_bold") - renderType: Text.NativeRendering } - Label + UM.Label { id: byLineType @@ -76,16 +75,13 @@ Column Repeater { model: modelData - Label + UM.Label { width: Math.round(byLineType.width * byLineType.columnWidthMultipliers[index]) height: contentHeight horizontalAlignment: byLineType.columnHorizontalAligns[index] - color: UM.Theme.getColor("text") - font: UM.Theme.getFont("default") wrapMode: Text.WrapAnywhere text: modelData - renderType: Text.NativeRendering } } } @@ -94,9 +90,6 @@ Column width: parent.width - 2 * UM.Theme.getSize("default_margin").width height: childrenRect.height - color: UM.Theme.getColor("text") - font: UM.Theme.getFont("default") - renderType: Text.NativeRendering textFormat: Text.RichText } } @@ -109,15 +102,14 @@ Column leftPadding: UM.Theme.getSize("default_margin").width rightPadding: UM.Theme.getSize("default_margin").width - Label + UM.Label { text: catalog.i18nc("@label", "Material estimation").toUpperCase() color: UM.Theme.getColor("primary") font: UM.Theme.getFont("default_bold") - renderType: Text.NativeRendering } - Label + UM.Label { id: byMaterialType @@ -180,16 +172,13 @@ Column Repeater { model: modelData - Label + UM.Label { width: Math.round(byMaterialType.width * byMaterialType.columnWidthMultipliers[index]) height: contentHeight horizontalAlignment: byMaterialType.columnHorizontalAligns[index] - color: UM.Theme.getColor("text") - font: UM.Theme.getFont("default") wrapMode: Text.WrapAnywhere text: modelData - renderType: Text.NativeRendering } } } @@ -198,9 +187,6 @@ Column width: parent.width - 2 * UM.Theme.getSize("default_margin").width height: childrenRect.height - color: UM.Theme.getColor("text") - font: UM.Theme.getFont("default") - renderType: Text.NativeRendering textFormat: Text.RichText } } diff --git a/resources/qml/ActionPanel/SliceProcessWidget.qml b/resources/qml/ActionPanel/SliceProcessWidget.qml index 58bf736575..cf70e4ba87 100644 --- a/resources/qml/ActionPanel/SliceProcessWidget.qml +++ b/resources/qml/ActionPanel/SliceProcessWidget.qml @@ -5,7 +5,7 @@ import QtQuick 2.7 import QtQuick.Controls 2.4 import QtQuick.Layouts 1.3 -import UM 1.4 as UM +import UM 1.5 as UM import Cura 1.0 as Cura @@ -45,16 +45,13 @@ Column } } - Label + UM.Label { id: autoSlicingLabel width: parent.width visible: progressBar.visible text: catalog.i18nc("@label:PrintjobStatus", "Slicing...") - color: UM.Theme.getColor("text") - font: UM.Theme.getFont("default") - renderType: Text.NativeRendering } Item { @@ -71,7 +68,7 @@ Column height: width status: UM.StatusIcon.Status.WARNING } - Label + UM.Label { id: label anchors.left: warningIcon.right @@ -79,9 +76,6 @@ Column anchors.verticalCenter: parent.verticalCenter anchors.leftMargin: UM.Theme.getSize("default_margin").width text: catalog.i18nc("@label:PrintjobStatus", "Unable to slice") - color: UM.Theme.getColor("text") - font: UM.Theme.getFont("default") - renderType: Text.NativeRendering wrapMode: Text.WordWrap } } diff --git a/resources/qml/ApplicationSwitcher/ApplicationButton.qml b/resources/qml/ApplicationSwitcher/ApplicationButton.qml index 3d67889220..92624933cf 100644 --- a/resources/qml/ApplicationSwitcher/ApplicationButton.qml +++ b/resources/qml/ApplicationSwitcher/ApplicationButton.qml @@ -82,7 +82,6 @@ Button height: base.height - applicationIcon.height - 2 * UM.Theme.getSize("default_margin").width // Account for the top and bottom margins horizontalAlignment: Text.AlignHCenter - wrapMode: Text.Wrap elide: Text.ElideRight } } diff --git a/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml b/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml index ede42fcd5f..453f2ed9e0 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. thumbnail: UM.Theme.getIcon("Shop", "high"), 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. thumbnail: UM.Theme.getIcon("Knowledge"), 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"), thumbnail: UM.Theme.getIcon("Help", "high"), 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."), 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."), 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 49adcf0cca..e5216a3404 100644 --- a/resources/qml/ColorDialog.qml +++ b/resources/qml/ColorDialog.qml @@ -29,7 +29,7 @@ UM.Dialog // 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 + buttonArea.height + (Qt.platform.os == "windows" ? 5 * margin : 3 * margin) + minimumHeight: content.height + footer.height + (Qt.platform.os == "windows" ? 5 * margin : 3 * margin) property alias color: colorInput.text property var swatchColors: [ diff --git a/resources/qml/Cura.qml b/resources/qml/Cura.qml index 3b06af677d..2ec342f502 100644 --- a/resources/qml/Cura.qml +++ b/resources/qml/Cura.qml @@ -309,10 +309,11 @@ UM.MainWindow property int mouseX: base.mouseX property int mouseY: base.mouseY + property bool tallerThanParent: height > parent.height anchors { - verticalCenter: parent.verticalCenter + verticalCenter: tallerThanParent ? undefined : parent.verticalCenter left: parent.left } visible: CuraApplication.platformActivity && !PrintInformation.preSliced diff --git a/resources/qml/Dialogs/AboutDialog.qml b/resources/qml/Dialogs/AboutDialog.qml index e6d15af2d9..e3fdbfa787 100644 --- a/resources/qml/Dialogs/AboutDialog.qml +++ b/resources/qml/Dialogs/AboutDialog.qml @@ -19,6 +19,8 @@ UM.Dialog width: minimumWidth height: minimumHeight + backgroundColor: UM.Theme.getColor("main_background") + Rectangle { id: header @@ -131,37 +133,51 @@ UM.Dialog } Component.onCompleted: { - projectsModel.append({ name: "Cura", description: catalog.i18nc("@label", "Graphical user interface"), license: "LGPLv3", url: "https://github.com/Ultimaker/Cura" }); - projectsModel.append({ name: "Uranium", description: catalog.i18nc("@label", "Application framework"), license: "LGPLv3", url: "https://github.com/Ultimaker/Uranium" }); - projectsModel.append({ name: "CuraEngine", description: catalog.i18nc("@label", "G-code generator"), license: "AGPLv3", url: "https://github.com/Ultimaker/CuraEngine" }); - projectsModel.append({ name: "libArcus", description: catalog.i18nc("@label", "Interprocess communication library"), license: "LGPLv3", url: "https://github.com/Ultimaker/libArcus" }); + //Do NOT add dependencies of our dependencies here, nor CI-dependencies! + //Ultimaker's own projects and forks. + projectsModel.append({ name: "Cura", description: catalog.i18nc("@label Description for application component", "Graphical user interface"), license: "LGPLv3", url: "https://github.com/Ultimaker/Cura" }); + projectsModel.append({ name: "Uranium", description: catalog.i18nc("@label Description for application component", "Application framework"), license: "LGPLv3", url: "https://github.com/Ultimaker/Uranium" }); + projectsModel.append({ name: "CuraEngine", description: catalog.i18nc("@label Description for application component", "G-code generator"), license: "AGPLv3", url: "https://github.com/Ultimaker/CuraEngine" }); + projectsModel.append({ name: "libArcus", description: catalog.i18nc("@label Description for application component", "Interprocess communication library"), license: "LGPLv3", url: "https://github.com/Ultimaker/libArcus" }); + projectsModel.append({ name: "pynest2d", description: catalog.i18nc("@label Description for application component", "Python bindings for libnest2d"), license: "LGPL", url: "https://github.com/Ultimaker/pynest2d" }); + projectsModel.append({ name: "libnest2d", description: catalog.i18nc("@label Description for application component", "Polygon packing library, developed by Prusa Research"), license: "LGPL", url: "https://github.com/tamasmeszaros/libnest2d" }); + projectsModel.append({ name: "libSavitar", description: catalog.i18nc("@label Description for application component", "Support library for handling 3MF files"), license: "LGPLv3", url: "https://github.com/ultimaker/libsavitar" }); + projectsModel.append({ name: "libCharon", description: catalog.i18nc("@label Description for application component", "Support library for file metadata and streaming"), license: "LGPLv3", url: "https://github.com/ultimaker/libcharon" }); - projectsModel.append({ name: "Python", description: catalog.i18nc("@label", "Programming language"), license: "Python", url: "http://python.org/" }); - projectsModel.append({ name: "Qt5", description: catalog.i18nc("@label", "GUI framework"), license: "LGPLv3", url: "https://www.qt.io/" }); - projectsModel.append({ name: "PyQt", description: catalog.i18nc("@label", "GUI framework bindings"), license: "GPL", url: "https://riverbankcomputing.com/software/pyqt" }); - projectsModel.append({ name: "SIP", description: catalog.i18nc("@label", "C/C++ Binding library"), license: "GPL", url: "https://riverbankcomputing.com/software/sip" }); - projectsModel.append({ name: "Protobuf", description: catalog.i18nc("@label", "Data interchange format"), license: "BSD", url: "https://developers.google.com/protocol-buffers" }); - projectsModel.append({ name: "SciPy", description: catalog.i18nc("@label", "Support library for scientific computing"), license: "BSD-new", url: "https://www.scipy.org/" }); - projectsModel.append({ name: "NumPy", description: catalog.i18nc("@label", "Support library for faster math"), license: "BSD", url: "http://www.numpy.org/" }); - projectsModel.append({ name: "NumPy-STL", description: catalog.i18nc("@label", "Support library for handling STL files"), license: "BSD", url: "https://github.com/WoLpH/numpy-stl" }); - projectsModel.append({ name: "Trimesh", description: catalog.i18nc("@label", "Support library for handling triangular meshes"), license: "MIT", url: "https://trimsh.org" }); - projectsModel.append({ name: "libSavitar", description: catalog.i18nc("@label", "Support library for handling 3MF files"), license: "LGPLv3", url: "https://github.com/ultimaker/libsavitar" }); - projectsModel.append({ name: "libCharon", description: catalog.i18nc("@label", "Support library for file metadata and streaming"), license: "LGPLv3", url: "https://github.com/ultimaker/libcharon" }); - projectsModel.append({ name: "PySerial", description: catalog.i18nc("@label", "Serial communication library"), license: "Python", url: "http://pyserial.sourceforge.net/" }); - projectsModel.append({ name: "python-zeroconf", description: catalog.i18nc("@label", "ZeroConf discovery library"), license: "LGPL", url: "https://github.com/jstasiak/python-zeroconf" }); - projectsModel.append({ name: "Clipper", description: catalog.i18nc("@label", "Polygon clipping library"), license: "Boost", url: "http://www.angusj.com/delphi/clipper.php" }); - projectsModel.append({ name: "Pyclipper", description: catalog.i18nc("@label", "Python bindings for Clipper"), license: "MIT", url: "https://github.com/fonttools/pyclipper" }); - projectsModel.append({ name: "mypy", description: catalog.i18nc("@Label", "Static type checker for Python"), license: "MIT", url: "http://mypy-lang.org/" }); - projectsModel.append({ name: "certifi", description: catalog.i18nc("@Label", "Root Certificates for validating SSL trustworthiness"), license: "MPL", url: "https://github.com/certifi/python-certifi" }); - projectsModel.append({ name: "cryptography", description: catalog.i18nc("@Label", "Root Certificates for validating SSL trustworthiness"), license: "APACHE and BSD", url: "https://cryptography.io/" }); - projectsModel.append({ name: "Sentry", description: catalog.i18nc("@Label", "Python Error tracking library"), license: "BSD 2-Clause 'Simplified'", url: "https://sentry.io/for/python/" }); - projectsModel.append({ name: "libnest2d", description: catalog.i18nc("@label", "Polygon packing library, developed by Prusa Research"), license: "LGPL", url: "https://github.com/tamasmeszaros/libnest2d" }); - projectsModel.append({ name: "pynest2d", description: catalog.i18nc("@label", "Python bindings for libnest2d"), license: "LGPL", url: "https://github.com/Ultimaker/pynest2d" }); - projectsModel.append({ name: "keyring", description: catalog.i18nc("@label", "Support library for system keyring access"), license: "MIT", url: "https://github.com/jaraco/keyring" }); - projectsModel.append({ name: "pywin32", description: catalog.i18nc("@label", "Python extensions for Microsoft Windows"), license: "PSF", url: "https://github.com/mhammond/pywin32" }); + //Direct dependencies of the front-end. + projectsModel.append({ name: "Python", description: catalog.i18nc("@label Description for application dependency", "Programming language"), license: "Python", url: "http://python.org/" }); + projectsModel.append({ name: "Qt6", description: catalog.i18nc("@label Description for application dependency", "GUI framework"), license: "LGPLv3", url: "https://www.qt.io/" }); + projectsModel.append({ name: "PyQt", description: catalog.i18nc("@label Description for application dependency", "GUI framework bindings"), license: "GPL", url: "https://riverbankcomputing.com/software/pyqt" }); + projectsModel.append({ name: "SIP", description: catalog.i18nc("@label Description for application dependency", "C/C++ Binding library"), license: "GPL", url: "https://riverbankcomputing.com/software/sip" }); + projectsModel.append({ name: "Protobuf", description: catalog.i18nc("@label Description for application dependency", "Data interchange format"), license: "BSD", url: "https://developers.google.com/protocol-buffers" }); projectsModel.append({ name: "Noto Sans", description: catalog.i18nc("@label", "Font"), license: "Apache 2.0", url: "https://www.google.com/get/noto/" }); - projectsModel.append({ name: "Font-Awesome-SVG-PNG", description: catalog.i18nc("@label", "SVG icons"), license: "SIL OFL 1.1", url: "https://github.com/encharm/Font-Awesome-SVG-PNG" }); - projectsModel.append({ name: "AppImageKit", description: catalog.i18nc("@label", "Linux cross-distribution application deployment"), license: "MIT", url: "https://github.com/AppImage/AppImageKit" }); + + //CuraEngine's dependencies. + projectsModel.append({ name: "Clipper", description: catalog.i18nc("@label Description for application dependency", "Polygon clipping library"), license: "Boost", url: "http://www.angusj.com/delphi/clipper.php" }); + projectsModel.append({ name: "RapidJSON", description: catalog.i18nc("@label Description for application dependency", "JSON parser"), license: "MIT", url: "https://rapidjson.org/" }); + projectsModel.append({ name: "STB", description: catalog.i18nc("@label Description for application dependency", "Utility functions, including an image loader"), license: "Public Domain", url: "https://github.com/nothings/stb" }); + projectsModel.append({ name: "Boost", description: catalog.i18nc("@label Description for application dependency", "Utility library, including Voronoi generation"), license: "Boost", url: "https://www.boost.org/" }); + + //Python modules. + projectsModel.append({ name: "Certifi", description: catalog.i18nc("@label Description for application dependency", "Root Certificates for validating SSL trustworthiness"), license: "MPL", url: "https://github.com/certifi/python-certifi" }); + projectsModel.append({ name: "Cryptography", description: catalog.i18nc("@label Description for application dependency", "Root Certificates for validating SSL trustworthiness"), license: "APACHE and BSD", url: "https://cryptography.io/" }); + projectsModel.append({ name: "Future", description: catalog.i18nc("@label Description for application dependency", "Compatibility between Python 2 and 3"), license: "MIT", url: "https://python-future.org/" }); + projectsModel.append({ name: "keyring", description: catalog.i18nc("@label Description for application dependency", "Support library for system keyring access"), license: "MIT", url: "https://github.com/jaraco/keyring" }); + projectsModel.append({ name: "NumPy", description: catalog.i18nc("@label Description for application dependency", "Support library for faster math"), license: "BSD", url: "http://www.numpy.org/" }); + projectsModel.append({ name: "NumPy-STL", description: catalog.i18nc("@label Description for application dependency", "Support library for handling STL files"), license: "BSD", url: "https://github.com/WoLpH/numpy-stl" }); + projectsModel.append({ name: "PyClipper", description: catalog.i18nc("@label Description for application dependency", "Python bindings for Clipper"), license: "MIT", url: "https://github.com/fonttools/pyclipper" }); + projectsModel.append({ name: "PySerial", description: catalog.i18nc("@label Description for application dependency", "Serial communication library"), license: "Python", url: "http://pyserial.sourceforge.net/" }); + projectsModel.append({ name: "SciPy", description: catalog.i18nc("@label Description for application dependency", "Support library for scientific computing"), license: "BSD-new", url: "https://www.scipy.org/" }); + projectsModel.append({ name: "Sentry", description: catalog.i18nc("@Label Description for application dependency", "Python Error tracking library"), license: "BSD 2-Clause 'Simplified'", url: "https://sentry.io/for/python/" }); + projectsModel.append({ name: "Trimesh", description: catalog.i18nc("@label Description for application dependency", "Support library for handling triangular meshes"), license: "MIT", url: "https://trimsh.org" }); + projectsModel.append({ name: "python-zeroconf", description: catalog.i18nc("@label Description for application dependency", "ZeroConf discovery library"), license: "LGPL", url: "https://github.com/jstasiak/python-zeroconf" }); + + //Building/packaging. + projectsModel.append({ name: "CMake", description: catalog.i18nc("@label Description for development tool", "Universal build system configuration"), license: "BSD 3-Clause", url: "https://cmake.org/" }); + projectsModel.append({ name: "Conan", description: catalog.i18nc("@label Description for development tool", "Dependency and package manager"), license: "MIT", url: "https://conan.io/" }); + projectsModel.append({ name: "Pyinstaller", description: catalog.i18nc("@label Description for development tool", "Packaging Python-applications"), license: "GPLv2", url: "https://pyinstaller.org/" }); + projectsModel.append({ name: "AppImageKit", description: catalog.i18nc("@label Description for development tool", "Linux cross-distribution application deployment"), license: "MIT", url: "https://github.com/AppImage/AppImageKit" }); + projectsModel.append({ name: "NSIS", description: catalog.i18nc("@label Description for development tool", "Generating Windows installers"), license: "Zlib", url: "https://nsis.sourceforge.io/" }); } } diff --git a/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml b/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml index 23e01b5e46..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 @@ -81,7 +82,6 @@ UM.Dialog id: questionText width: parent.width text: catalog.i18nc("@text:window", "This is a Cura project file. Would you like to open it as a project or import the models from it?") - font: UM.Theme.getFont("default") wrapMode: Text.WordWrap } diff --git a/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml b/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml index 0579cb3c30..0b39d84177 100644 --- a/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml +++ b/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml @@ -24,6 +24,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) @@ -78,8 +88,9 @@ UM.Dialog ] model: UM.TableModel { + id: tableModel headers: ["label", "original_value", "user_value"] - rows: userChangesModel.items + rows: modelRows } sectionRole: "category" } diff --git a/resources/qml/Dialogs/WorkspaceSummaryDialog.qml b/resources/qml/Dialogs/WorkspaceSummaryDialog.qml index 411dc44f83..a174959807 100644 --- a/resources/qml/Dialogs/WorkspaceSummaryDialog.qml +++ b/resources/qml/Dialogs/WorkspaceSummaryDialog.qml @@ -18,13 +18,22 @@ UM.Dialog width: minimumWidth height: minimumHeight + backgroundColor: UM.Theme.getColor("main_background") + property bool dontShowAgain: true - onClosing: UM.Preferences.setValue("cura/dialog_on_project_save", !dontShowAgainCheckbox.checked) + function storeDontShowAgain() + { + UM.Preferences.setValue("cura/dialog_on_project_save", !dontShowAgainCheckbox.checked) + UM.Preferences.setValue("asked_dialog_on_project_save", true) + } + onClosing: storeDontShowAgain() + onRejected: storeDontShowAgain() + onAccepted: storeDontShowAgain() onVisibleChanged: { - if(visible) + if(visible && UM.Preferences.getValue("cura/asked_dialog_on_project_save")) { dontShowAgain = !UM.Preferences.getValue("cura/dialog_on_project_save") } diff --git a/resources/qml/IconWithText.qml b/resources/qml/IconWithText.qml index cc0834d7ea..df72286943 100644 --- a/resources/qml/IconWithText.qml +++ b/resources/qml/IconWithText.qml @@ -22,6 +22,9 @@ Item property alias elide: label.elide property real margin: UM.Theme.getSize("narrow_margin").width 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 @@ -61,7 +64,17 @@ Item top: parent.top bottom: parent.bottom rightMargin: 0 + leftMargin: spacing 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 0ad4f8bb0c..4ff7cf7092 100644 --- a/resources/qml/MachineSettings/ComboBoxWithOptions.qml +++ b/resources/qml/MachineSettings/ComboBoxWithOptions.qml @@ -5,7 +5,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.1 as Cura import "../Widgets" @@ -52,15 +52,13 @@ UM.TooltipArea watchedProperties: [ "value", "options", "description" ] } - Label + UM.Label { id: fieldLabel anchors.left: parent.left anchors.verticalCenter: comboBox.verticalCenter visible: text != "" font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering } ListModel diff --git a/resources/qml/MachineSettings/GcodeTextArea.qml b/resources/qml/MachineSettings/GcodeTextArea.qml index 7791e169c2..d4bc58cdc4 100644 --- a/resources/qml/MachineSettings/GcodeTextArea.qml +++ b/resources/qml/MachineSettings/GcodeTextArea.qml @@ -67,6 +67,8 @@ UM.TooltipArea font: UM.Theme.getFont("fixed") renderType: Text.NativeRendering color: UM.Theme.getColor("text") + selectionColor: UM.Theme.getColor("text_selection") + selectedTextColor: UM.Theme.getColor("text") wrapMode: TextEdit.NoWrap onActiveFocusChanged: @@ -91,7 +93,7 @@ UM.TooltipArea } if (gcodeTextArea.hovered || gcodeTextArea.activeFocus) { - return UM.Theme.getColor("border_main") + return UM.Theme.getColor("text_field_border_active") } return UM.Theme.getColor("border_field_light") } diff --git a/resources/qml/MachineSettings/NumericTextFieldWithUnit.qml b/resources/qml/MachineSettings/NumericTextFieldWithUnit.qml index b5147d63db..2484adb912 100644 --- a/resources/qml/MachineSettings/NumericTextFieldWithUnit.qml +++ b/resources/qml/MachineSettings/NumericTextFieldWithUnit.qml @@ -38,6 +38,7 @@ UM.TooltipArea property alias textField: textFieldWithUnit property alias valueText: textFieldWithUnit.text + property alias enabled: textFieldWithUnit.enabled property alias editingFinishedFunction: textFieldWithUnit.editingFinishedFunction property string tooltipText: propertyProvider.properties.description ? propertyProvider.properties.description : "" @@ -61,15 +62,12 @@ UM.TooltipArea watchedProperties: [ "value", "description" ] } - Label + UM.Label { id: fieldLabel anchors.left: parent.left anchors.verticalCenter: textFieldWithUnit.verticalCenter visible: text != "" - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering } TextField @@ -90,11 +88,12 @@ UM.TooltipArea { anchors.fill: parent + borderColor: textFieldWithUnit.activeFocus ? UM.Theme.getColor("text_field_border_active") : "transparent" liningColor: { if (!textFieldWithUnit.enabled) { - return UM.Theme.getColor("setting_control_disabled_border") + return UM.Theme.getColor("setting_control_disabled_border"); } switch (propertyProvider.properties.validationState) { @@ -107,11 +106,15 @@ UM.TooltipArea return UM.Theme.getColor("setting_validation_warning") } // Validation is OK. - if (textFieldWithUnit.hovered || textFieldWithUnit.activeFocus) + if(textFieldWithUnit.activeFocus) { - return UM.Theme.getColor("border_main") + return UM.Theme.getColor("text_field_border_active"); } - return UM.Theme.getColor("border_field_light") + if(textFieldWithUnit.hovered) + { + return UM.Theme.getColor("text_field_border_hovered"); + } + return UM.Theme.getColor("border_field_light"); } color: diff --git a/resources/qml/MachineSettings/SimpleCheckBox.qml b/resources/qml/MachineSettings/SimpleCheckBox.qml index cda666571f..fa40cecef2 100644 --- a/resources/qml/MachineSettings/SimpleCheckBox.qml +++ b/resources/qml/MachineSettings/SimpleCheckBox.qml @@ -46,15 +46,13 @@ UM.TooltipArea watchedProperties: [ "value", "description" ] } - Label + UM.Label { id: fieldLabel anchors.left: parent.left anchors.verticalCenter: checkBox.verticalCenter visible: text != "" font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering } UM.CheckBox diff --git a/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml b/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml index 18409dd43a..0bf29c13b7 100644 --- a/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml +++ b/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml @@ -4,7 +4,7 @@ import QtQuick 2.7 import QtQuick.Controls 2.0 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.0 as Cura Item @@ -12,14 +12,13 @@ Item width: parent.width height: childrenRect.height - Label + UM.Label { id: header text: catalog.i18nc("@header", "Configurations") font: UM.Theme.getFont("medium") color: UM.Theme.getColor("small_button_text") height: contentHeight - renderType: Text.NativeRendering anchors { diff --git a/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml b/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml index 10e2435dfc..0840cfea87 100644 --- a/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml +++ b/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml @@ -39,7 +39,7 @@ Item anchors.verticalCenter: parent.verticalCenter status: UM.StatusIcon.Status.WARNING } - Label + UM.Label { id: label anchors.left: icon.right @@ -51,9 +51,6 @@ Item text: Cura.MachineManager.printerConnected ? catalog.i18nc("@label", "Loading available configurations from the printer...") : catalog.i18nc("@label", "The configurations are not available because the printer is disconnected.") - color: UM.Theme.getColor("text") - font: UM.Theme.getFont("default") - renderType: Text.NativeRendering wrapMode: Text.WordWrap } } diff --git a/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml b/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml index 8d4fc9c2b5..76d33c9c77 100644 --- a/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml +++ b/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml @@ -36,6 +36,8 @@ Cura.ExpandablePopup headerItem: Item { + id: headerBase + // Horizontal list that shows the extruders and their materials RowLayout { @@ -51,9 +53,12 @@ Cura.ExpandablePopup { id: extruderItem - Layout.preferredWidth: Math.round(parent.width / extrudersModel.count) - Layout.maximumWidth: Math.round(parent.width / extrudersModel.count) + Layout.preferredWidth: Math.floor(headerBase.width / extrudersModel.count) + Layout.maximumWidth: Math.floor(headerBase.width / extrudersModel.count) + Layout.preferredHeight: headerBase.height + Layout.maximumHeight: headerBase.height Layout.fillHeight: true + Layout.alignment: Qt.AlignCenter property var extruderStack: activeMachine ? activeMachine.extruderList[model.index]: null property bool valueWarning: !Cura.ExtruderManager.getExtruderHasQualityForMaterial(extruderStack) diff --git a/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml b/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml index 7223706e63..c24c031e83 100644 --- a/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml +++ b/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml @@ -97,13 +97,16 @@ Item checked: model.index == 0 contentItem: Item { + anchors.horizontalCenter: parent.horizontalCenter + anchors.verticalCenter: parent.verticalCenter + width: Math.floor(tabBar.height / extrudersModel.count) + height: tabBar.height Cura.ExtruderIcon { anchors.horizontalCenter: parent.horizontalCenter + anchors.verticalCenter: parent.verticalCenter materialColor: model.color extruderEnabled: model.enabled - width: parent.height - height: parent.height } } onClicked: diff --git a/resources/qml/Menus/ContextMenu.qml b/resources/qml/Menus/ContextMenu.qml index cbae92efba..65f3409c8a 100644 --- a/resources/qml/Menus/ContextMenu.qml +++ b/resources/qml/Menus/ContextMenu.qml @@ -46,7 +46,7 @@ Cura.Menu } // Add it to the fifth position (and above) as we want it to be added after the extruder header. onObjectAdded: function(index, object) { base.insertItem(index + 5, object) } - onObjectRemoved: function(object) { base.removeItem(object) } + onObjectRemoved: function(index, object) { base.removeItem(object) } } // Global actions @@ -134,6 +134,7 @@ Cura.Menu from: 1 to: 99 width: 2 * UM.Theme.getSize("button").width + value: 1 } } } diff --git a/resources/qml/Menus/ExtensionMenu.qml b/resources/qml/Menus/ExtensionMenu.qml index 4ba36bbb40..919e094e5e 100644 --- a/resources/qml/Menus/ExtensionMenu.qml +++ b/resources/qml/Menus/ExtensionMenu.qml @@ -54,11 +54,11 @@ Cura.Menu } onObjectAdded: function(index, object) { sub_menu.insertItem(index, object.item)} - onObjectRemoved: function(object) { sub_menu.removeItem(object.item)} + onObjectRemoved: function(index, object) { sub_menu.removeItem(object.item)} } } onObjectAdded: function(index, object) { extensionMenu.insertMenu(index, object) } - onObjectRemoved: function(object) { extensionMenu.removeMenu(object)} + onObjectRemoved: function(index, object) { extensionMenu.removeMenu(object)} } } \ No newline at end of file diff --git a/resources/qml/Menus/FileMenu.qml b/resources/qml/Menus/FileMenu.qml index 338ada60fc..0884053ef3 100644 --- a/resources/qml/Menus/FileMenu.qml +++ b/resources/qml/Menus/FileMenu.qml @@ -33,6 +33,7 @@ Cura.Menu id: openFilesMenu shouldBeVisible: base.fileProviderModel.count > 1 + enabled: shouldBeVisible } RecentFilesMenu { } diff --git a/resources/qml/Menus/MaterialBrandMenu.qml b/resources/qml/Menus/MaterialBrandMenu.qml index 04d780b5c3..e256e75904 100644 --- a/resources/qml/Menus/MaterialBrandMenu.qml +++ b/resources/qml/Menus/MaterialBrandMenu.qml @@ -87,11 +87,25 @@ Cura.MenuItem Popup { id: menuPopup - x: parent.width - UM.Theme.getSize("default_lining").width - y: -UM.Theme.getSize("default_lining").width 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) @@ -128,11 +142,14 @@ Cura.MenuItem //With a custom MouseArea, we can prevent the events from being accepted. delegate: Rectangle { + id: brandMaterialBase 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 + RowLayout { spacing: 0 @@ -225,7 +242,13 @@ Cura.MenuItem width: materialColorsList.width + padding * 2 height: materialColorsList.height + padding * 2 x: parent.width - y: -UM.Theme.getSize("default_lining").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 + } property int itemHovered: 0 padding: background.border.width diff --git a/resources/qml/Menus/MaterialMenu.qml b/resources/qml/Menus/MaterialMenu.qml index c4ae4113f9..cee28cee6a 100644 --- a/resources/qml/Menus/MaterialMenu.qml +++ b/resources/qml/Menus/MaterialMenu.qml @@ -67,7 +67,7 @@ Cura.Menu onTriggered: Cura.MachineManager.setMaterial(extruderIndex, model.container_node) } onObjectAdded: function(index, object) { materialMenu.insertItem(index + 1, object) } - onObjectRemoved: function(object) { materialMenu.removeItem(index) } + onObjectRemoved: function(index, object) { materialMenu.removeItem(index) } } Cura.MenuSeparator { visible: favoriteMaterialsModel.items.length > 0} @@ -89,7 +89,7 @@ Cura.Menu onTriggered: Cura.MachineManager.setMaterial(extruderIndex, model.container_node) } onObjectAdded: function(index, object) { genericMenu.insertItem(index, object)} - onObjectRemoved: function(object) {genericMenu.removeItem(index) } + onObjectRemoved: function(index, object) {genericMenu.removeItem(index) } } } @@ -103,7 +103,7 @@ Cura.Menu materialTypesModel: model } onObjectAdded: function(index, object) { materialMenu.insertItem(index + 4, object)} - onObjectRemoved: function(object) { materialMenu.removeItem(index) } + onObjectRemoved: function(index, object) { materialMenu.removeItem(index) } } Cura.MenuSeparator {} diff --git a/resources/qml/Menus/NozzleMenu.qml b/resources/qml/Menus/NozzleMenu.qml index 896866e82f..f286410a11 100644 --- a/resources/qml/Menus/NozzleMenu.qml +++ b/resources/qml/Menus/NozzleMenu.qml @@ -50,7 +50,7 @@ Cura.Menu } onObjectAdded: function(index, object) { nozzleMenu.insertItem(index, object) } - onObjectRemoved: function(object) {nozzleMenu.removeItem(object)} + onObjectRemoved: function(index, object) {nozzleMenu.removeItem(object)} } } diff --git a/resources/qml/Menus/OpenFilesMenu.qml b/resources/qml/Menus/OpenFilesMenu.qml index 1cc98d2285..ca838b5cb3 100644 --- a/resources/qml/Menus/OpenFilesMenu.qml +++ b/resources/qml/Menus/OpenFilesMenu.qml @@ -36,6 +36,6 @@ Cura.Menu } onObjectAdded: function(index, object) { openFilesMenu.insertItem(index, object)} - onObjectRemoved: function(object) { openFilesMenu.removeItem(object) } + onObjectRemoved: function(index, object) { openFilesMenu.removeItem(object) } } } diff --git a/resources/qml/Menus/PrinterMenu.qml b/resources/qml/Menus/PrinterMenu.qml index 6a9a36b17d..7cea1de52e 100644 --- a/resources/qml/Menus/PrinterMenu.qml +++ b/resources/qml/Menus/PrinterMenu.qml @@ -39,7 +39,7 @@ Cura.Menu onTriggered: Cura.MachineManager.setActiveMachine(model.id) } onObjectAdded: function(index, object) { menu.insertItem(2, object)} - onObjectRemoved: function(object) { menu.removeItem(object)} + onObjectRemoved: function(index, object) { menu.removeItem(object)} } Cura.MenuSeparator { visible: networKPrinterInstantiator.count > 0 } @@ -67,7 +67,7 @@ Cura.Menu } // A bit hackish, but we have 2 items at the end, put them before that onObjectAdded: function(index, object) { menu.insertItem(menu.count - 2, object) } - onObjectRemoved: function(object) { menu.removeItem(object) } + onObjectRemoved: function(index, object) { menu.removeItem(object) } } Cura.MenuSeparator { visible: localPrinterInstantiator.count > 0 } diff --git a/resources/qml/Menus/PrinterTypeMenu.qml b/resources/qml/Menus/PrinterTypeMenu.qml index 17986ac1b8..8691bf7ecc 100644 --- a/resources/qml/Menus/PrinterTypeMenu.qml +++ b/resources/qml/Menus/PrinterTypeMenu.qml @@ -28,7 +28,7 @@ Cura.Menu Cura.MachineManager.switchPrinterType(modelData.machine_type) } } - onObjectAdded: menu.insertItem(index, object) - onObjectRemoved: menu.removeItem(object) + onObjectAdded: function(index, object) { return menu.insertItem(index, object); } + onObjectRemoved: function(index, object) { return menu.removeItem(object); } } } diff --git a/resources/qml/Menus/SaveProjectMenu.qml b/resources/qml/Menus/SaveProjectMenu.qml index ac40f4b598..2140d5e0ef 100644 --- a/resources/qml/Menus/SaveProjectMenu.qml +++ b/resources/qml/Menus/SaveProjectMenu.qml @@ -44,7 +44,7 @@ Cura.Menu enabled: saveProjectMenu.shouldBeVisible } onObjectAdded: function(index, object) { saveProjectMenu.insertItem(index, object)} - onObjectRemoved: function(object) { saveProjectMenu.removeItem(object)} + onObjectRemoved: function(index, object) { saveProjectMenu.removeItem(object)} } WorkspaceSummaryDialog diff --git a/resources/qml/Menus/SettingVisibilityPresetsMenu.qml b/resources/qml/Menus/SettingVisibilityPresetsMenu.qml index 8518f4e93c..57298030c4 100644 --- a/resources/qml/Menus/SettingVisibilityPresetsMenu.qml +++ b/resources/qml/Menus/SettingVisibilityPresetsMenu.qml @@ -33,7 +33,7 @@ Cura.Menu } onObjectAdded: function(index, object) { menu.insertItem(index, object) } - onObjectRemoved: function(object) { menu.removeItem(object)} + onObjectRemoved: function(index, object) { menu.removeItem(object)} } Cura.MenuSeparator {} diff --git a/resources/qml/Menus/SettingsMenu.qml b/resources/qml/Menus/SettingsMenu.qml index c93ee0bb09..ea5de6c66f 100644 --- a/resources/qml/Menus/SettingsMenu.qml +++ b/resources/qml/Menus/SettingsMenu.qml @@ -68,7 +68,7 @@ Cura.Menu } } onObjectAdded: function(index, object) { base.insertMenu(index, object) } - onObjectRemoved:function(object) { base.removeMenu(object)} + onObjectRemoved: function(index, object) { base.removeMenu(object);} } Cura.MenuSeparator { } diff --git a/resources/qml/Preferences/GeneralPage.qml b/resources/qml/Preferences/GeneralPage.qml index ca8019ea75..2934edf508 100644 --- a/resources/qml/Preferences/GeneralPage.qml +++ b/resources/qml/Preferences/GeneralPage.qml @@ -201,7 +201,6 @@ UM.PreferencesPage append({ text: "Русский", code: "ru_RU" }) append({ text: "Türkçe", code: "tr_TR" }) append({ text: "简体中文", code: "zh_CN" }) - append({ text: "正體字", code: "zh_TW" }) var date_object = new Date(); if (date_object.getUTCMonth() == 8 && date_object.getUTCDate() == 19) //Only add Pirate on the 19th of September. @@ -211,6 +210,7 @@ UM.PreferencesPage // incomplete and/or abandoned append({ text: catalog.i18nc("@heading", "-- incomplete --"), code: "" }) + append({ text: "正體字", code: "zh_TW" }) append({ text: "Magyar", code: "hu_HU" }) append({ text: "Suomi", code: "fi_FI" }) append({ text: "Polski", code: "pl_PL" }) diff --git a/resources/qml/Preferences/MachinesPage.qml b/resources/qml/Preferences/MachinesPage.qml index 93a35ff9bb..c77545bc03 100644 --- a/resources/qml/Preferences/MachinesPage.qml +++ b/resources/qml/Preferences/MachinesPage.qml @@ -12,6 +12,7 @@ import Cura 1.0 as Cura UM.ManagementPage { id: base + Item { enabled: false; UM.I18nCatalog { id: catalog; name: "cura"} } title: catalog.i18nc("@title:tab", "Printers") detailsPlaneCaption: base.currentItem && base.currentItem.name ? base.currentItem.name : "" @@ -91,10 +92,9 @@ UM.ManagementPage minimumHeight: UM.Theme.getSize("modal_window_minimum").height maximumWidth: minimumWidth * 3 maximumHeight: minimumHeight * 3 + backgroundColor: UM.Theme.getColor("main_background") } - UM.I18nCatalog { id: catalog; name: "cura"; } - UM.ConfirmRemoveDialog { id: confirmDialog diff --git a/resources/qml/Preferences/Materials/MaterialsPage.qml b/resources/qml/Preferences/Materials/MaterialsPage.qml index 1e783c9b4d..d677658a37 100644 --- a/resources/qml/Preferences/Materials/MaterialsPage.qml +++ b/resources/qml/Preferences/Materials/MaterialsPage.qml @@ -11,7 +11,7 @@ import Cura 1.5 as Cura UM.ManagementPage { id: base - + Item { enabled: false; UM.I18nCatalog { id: catalog; name: "cura"} } // Keep PreferencesDialog happy property var resetEnabled: false property var currentItem: null @@ -246,7 +246,7 @@ UM.ManagementPage break; } messageDialog.open(); - CuraApplication.setDefaultPath("dialog_material_path", folder); + CuraApplication.setDefaultPath("dialog_material_path", currentFolder); } } @@ -259,7 +259,9 @@ UM.ManagementPage currentFolder: CuraApplication.getDefaultPath("dialog_material_path") onAccepted: { - const result = Cura.ContainerManager.exportContainer(base.currentItem.root_material_id, selectedNameFilter, selectedFile); + const nameFilterString = selectedNameFilter.index >= 0 ? nameFilters[selectedNameFilter.index] : nameFilters[0]; + + const result = Cura.ContainerManager.exportContainer(base.currentItem.root_material_id, nameFilterString, selectedFile); const messageDialog = Qt.createQmlObject("import Cura 1.5 as Cura; Cura.MessageDialog { onClosed: destroy() }", base); messageDialog.title = catalog.i18nc("@title:window", "Export Material"); @@ -275,7 +277,7 @@ UM.ManagementPage } messageDialog.open(); - CuraApplication.setDefaultPath("dialog_material_path", folder); + CuraApplication.setDefaultPath("dialog_material_path", currentFolder); } } } diff --git a/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml b/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml index 3e8fdd7397..ce3f9c4303 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; + } } } } @@ -231,7 +247,6 @@ Window { id: syncStatusLabel anchors.left: parent.left - wrapMode: Text.Wrap elide: Text.ElideRight visible: text !== "" font: UM.Theme.getFont("medium") @@ -403,7 +418,7 @@ Window UM.Label { Layout.fillWidth: true - Layout.alignment: Qt.AlignmentFlag.AlignVCenter + Layout.alignment: Qt.AlignVCenter text: catalog.i18nc("@text Asking the user whether printers are missing in a list.", "Printers missing?") + "\n" + catalog.i18nc("@text", "Make sure all your printers are turned ON and connected to Digital Factory.") @@ -414,7 +429,7 @@ Window Cura.SecondaryButton { id: refreshListButton - Layout.alignment: Qt.AlignmentFlag.AlignVCenter + Layout.alignment: Qt.AlignVCenter text: catalog.i18nc("@button", "Refresh List") iconSource: UM.Theme.getIcon("ArrowDoubleCircleRight") onClicked: Cura.API.account.sync(true) @@ -559,7 +574,6 @@ Window text: catalog.i18nc("@text", "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.") Layout.fillWidth: true horizontalAlignment: Text.AlignHCenter - wrapMode: Text.Wrap } Item @@ -633,7 +647,6 @@ Window { text: catalog.i18nc("@text In the UI this is followed by a list of steps the user needs to take.", "Follow the following steps to load the new material profiles to your printer.") font: UM.Theme.getFont("medium") - wrapMode: Text.Wrap Layout.fillWidth: true } diff --git a/resources/qml/Preferences/Materials/MaterialsView.qml b/resources/qml/Preferences/Materials/MaterialsView.qml index b033f755cf..d37150075b 100644 --- a/resources/qml/Preferences/Materials/MaterialsView.qml +++ b/resources/qml/Preferences/Materials/MaterialsView.qml @@ -574,11 +574,11 @@ Item elide: Text.ElideRight verticalAlignment: Qt.AlignVCenter } - Cura.SpinBox + Cura.NumericTextFieldWithUnit { id: spinBox anchors.left: label.right - value: + valueText: { // In case the setting is not in the material... if (!isNaN(parseFloat(materialPropertyProvider.properties.value))) @@ -598,11 +598,15 @@ Item return 0; } width: settingsPage.columnWidth - suffix: " " + model.unit - to: 99999 + maximum: 99999 + unitText: model.unit decimals: model.unit == "mm" ? 2 : 0 + enabled: base.editingEnabled - onEditingFinished: materialPropertyProvider.setPropertyValue("value", value) + editingFinishedFunction: function() + { + materialPropertyProvider.setPropertyValue("value", parseFloat(valueText.replace(",", "."))) + } } UM.ContainerPropertyProvider diff --git a/resources/qml/Preferences/ProfilesPage.qml b/resources/qml/Preferences/ProfilesPage.qml index 9957747c42..b7030f242b 100644 --- a/resources/qml/Preferences/ProfilesPage.qml +++ b/resources/qml/Preferences/ProfilesPage.qml @@ -13,6 +13,7 @@ import Cura 1.6 as Cura UM.ManagementPage { id: base + Item { enabled: false; UM.I18nCatalog { id: catalog; name: "cura"} } property var extrudersModel: CuraApplication.getExtrudersModel() property var qualityManagementModel: CuraApplication.getQualityManagementModel() @@ -58,7 +59,7 @@ UM.ManagementPage scrollviewCaption: catalog.i18nc("@label", "Profiles compatible with active printer:") + "
      " + Cura.MachineManager.activeMachine.name + "" hamburgerButtonVisible: hasCurrentItem - onHamburgeButtonClicked: { + onHamburgeButtonClicked: (hamburger_button) => { const hamburerButtonHeight = hamburger_button.height; menu.popup(hamburger_button, -menu.width + hamburger_button.width / 2, hamburger_button.height); @@ -354,8 +355,13 @@ UM.ManagementPage currentFolder: CuraApplication.getDefaultPath("dialog_profile_path") onAccepted: { + + // If nameFilters contains only 1 item, the index of selectedNameFilter will always be -1 + // This fetches the nameFilter at index selectedNameFilter.index if it is positive + const nameFilterString = selectedNameFilter.index >= 0 ? nameFilters[selectedNameFilter.index] : nameFilters[0]; + var result = Cura.ContainerManager.exportQualityChangesGroup(base.currentItem.quality_changes_group, - selectedFile, selectedNameFilter); + selectedFile, nameFilterString); if (result && result.status == "error") { @@ -365,7 +371,7 @@ UM.ManagementPage } // else pop-up Message thing from python code - CuraApplication.setDefaultPath("dialog_profile_path", folder); + CuraApplication.setDefaultPath("dialog_profile_path", currentFolder); } } diff --git a/resources/qml/Preferences/RenameDialog.qml b/resources/qml/Preferences/RenameDialog.qml index 6e4c628114..7bcd65ed5d 100644 --- a/resources/qml/Preferences/RenameDialog.qml +++ b/resources/qml/Preferences/RenameDialog.qml @@ -23,7 +23,7 @@ UM.Dialog property string explanation: catalog.i18nc("@info", "Please provide a new name.") title: dialogTitle - + backgroundColor: UM.Theme.getColor("main_background") minimumWidth: UM.Theme.getSize("small_popup_dialog").width minimumHeight: UM.Theme.getSize("small_popup_dialog").height width: minimumWidth diff --git a/resources/qml/Preferences/SettingVisibilityPage.qml b/resources/qml/Preferences/SettingVisibilityPage.qml index 035f121537..476ba999cf 100644 --- a/resources/qml/Preferences/SettingVisibilityPage.qml +++ b/resources/qml/Preferences/SettingVisibilityPage.qml @@ -12,6 +12,8 @@ UM.PreferencesPage { title: catalog.i18nc("@title:tab", "Setting Visibility") + Item { enabled: false; UM.I18nCatalog { id: catalog; name: "cura"} } + property QtObject settingVisibilityPresetsModel: CuraApplication.getSettingVisibilityPresetsModel() property int scrollToIndex: 0 diff --git a/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml b/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml index 41bf28be15..554b663a9b 100644 --- a/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml +++ b/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml @@ -47,18 +47,6 @@ Item font: UM.Theme.getFont("medium") } - NoIntentIcon - { - affected_extruders: Cura.MachineManager.extruderPositionsWithNonActiveIntent - intent_type: Cura.MachineManager.activeIntentCategory - anchors.right: intentSelection.left - anchors.rightMargin: UM.Theme.getSize("narrow_margin").width - width: Math.round(profileLabel.height * 0.5) - anchors.verticalCenter: parent.verticalCenter - height: width - visible: affected_extruders.length - } - Button { id: intentSelection @@ -129,7 +117,7 @@ Item background: UM.UnderlineBackground { id: backgroundItem - liningColor: intentSelection.hovered ? UM.Theme.getColor("border_main") : UM.Theme.getColor("border_field_light") + liningColor: intentSelection.hovered ? UM.Theme.getColor("text_field_border_hovered") : UM.Theme.getColor("border_field_light") } UM.SimpleButton @@ -218,8 +206,6 @@ Item materialColor: model.color extruderEnabled: model.enabled iconVariant: "default" - height: parent.height - width: height } } onClicked: diff --git a/resources/qml/PrintSetupSelector/NoIntentIcon.qml b/resources/qml/PrintSetupSelector/NoIntentIcon.qml deleted file mode 100644 index 2dc422f6d6..0000000000 --- a/resources/qml/PrintSetupSelector/NoIntentIcon.qml +++ /dev/null @@ -1,36 +0,0 @@ -// Copyright (c) 2019 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.2 as UM -import Cura 1.6 as Cura - -Item -{ - id: icon - property var affected_extruders - property var intent_type: "" - - implicitWidth: UM.Theme.getSize("section_icon").width - implicitHeight: UM.Theme.getSize("section_icon").height - - UM.ColorImage - { - source: UM.Theme.getIcon("Information") - color: UM.Theme.getColor("icon") - anchors.fill: parent - } - MouseArea - { - anchors.fill: parent - hoverEnabled: parent.visible - onEntered: - { - var tooltipContent = catalog.i18ncp("@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')", "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead", "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead", affected_extruders.length).arg(intent_type).arg(affected_extruders) - base.showTooltip(icon.parent, Qt.point(-UM.Theme.getSize("thick_margin").width, 0), tooltipContent) - } - onExited: base.hideTooltip() - } -} diff --git a/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml b/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml new file mode 100644 index 0000000000..10f006538b --- /dev/null +++ b/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml @@ -0,0 +1,106 @@ +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 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: "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..8d31d6292d 100644 --- a/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml @@ -13,7 +13,7 @@ import Cura 1.0 as Cura Item { id: enableAdhesionRow - height: childrenRect.height + height: enableAdhesionContainer.height property real labelColumnWidth: Math.round(width / 3) property var curaRecommendedMode: Cura.RecommendedMode {} @@ -47,8 +47,6 @@ Item id: enableAdhesionCheckBox anchors.verticalCenter: parent.verticalCenter - property alias _hovered: adhesionMouseArea.containsMouse - //: Setting enable printing build-plate adhesion helper checkbox enabled: recommendedPrintSetup.settingsEnabled @@ -60,22 +58,25 @@ Item 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() + // propagateComposedEvents used on adhesionTooltipMouseArea does not work with Controls Components. + // It only works with other MouseAreas, so this is required + onClicked: curaRecommendedMode.setAdhesion(!parent.checked) } } } + MouseArea + { + id: adhesionTooltipMouseArea + anchors.fill: parent + propagateComposedEvents: true + hoverEnabled: true + + 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 diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml index 434945e172..bb3b0cdbec 100644 --- a/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml @@ -65,6 +65,7 @@ Item font: UM.Theme.getFont("medium") width: labelColumnWidth iconSize: UM.Theme.getSize("medium_button_icon").width + tooltipText: catalog.i18nc("@label", "Gradual infill will gradually increase the amount of infill towards the top.") } Item @@ -101,7 +102,7 @@ Item { id: backgroundLine height: UM.Theme.getSize("print_setup_slider_groove").height - width: infillSlider.width - UM.Theme.getSize("print_setup_slider_handle").width + width: parent.width - UM.Theme.getSize("print_setup_slider_handle").width anchors.horizontalCenter: parent.horizontalCenter anchors.verticalCenter: parent.verticalCenter color: infillSlider.enabled ? UM.Theme.getColor("quality_slider_available") : UM.Theme.getColor("quality_slider_unavailable") @@ -120,8 +121,10 @@ Item anchors.verticalCenter: parent.verticalCenter // Do not use Math.round otherwise the tickmarks won't be aligned - x: ((handleButton.width / 2) - (backgroundLine.implicitWidth / 2) + (index * ((repeater.width - handleButton.width) / (repeater.count-1)))) - radius: Math.round(backgroundLine.implicitWidth / 2) + // (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 @@ -130,7 +133,6 @@ Item visible: (index % 20) == 0 // Only show steps of 20% anchors.horizontalCenter: parent.horizontalCenter y: UM.Theme.getSize("thin_margin").height - renderType: Text.NativeRendering color: UM.Theme.getColor("quality_slider_available") } } @@ -172,7 +174,8 @@ Item // same operation const active_mode = UM.Preferences.getValue("cura/active_mode") - if (active_mode == 0 || active_mode == "simple") + 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") diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml index de8cce6e94..94de16141f 100644 --- a/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml @@ -1,10 +1,11 @@ -// Copyright (c) 2018 Ultimaker B.V. -// Cura is released under the terms of the LGPLv3 or higher. +//Copyright (c) 2022 Ultimaker B.V. +//Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.10 +import QtQuick.Layouts 1.1 -import UM 1.2 as UM -import Cura 1.0 as Cura +import UM 1.6 as UM +import Cura 1.6 as Cura Item { @@ -13,11 +14,11 @@ Item height: childrenRect.height + 2 * padding property bool settingsEnabled: Cura.ExtruderManager.activeExtruderStackId || extrudersEnabledCount.properties.value == 1 - property real padding: UM.Theme.getSize("thick_margin").width + property real padding: UM.Theme.getSize("default_margin").width - Column + ColumnLayout { - spacing: UM.Theme.getSize("wide_margin").height + spacing: UM.Theme.getSize("default_margin").height anchors { @@ -30,32 +31,78 @@ Item // TODO property real firstColumnWidth: Math.round(width / 3) + UM.Label + { + text: catalog.i18nc("@label", "Profiles") + font: UM.Theme.getFont("medium") + } + RecommendedQualityProfileSelector { width: parent.width - // TODO Create a reusable component with these properties to not define them separately for each component - labelColumnWidth: parent.firstColumnWidth + hasQualityOptions: recommendedResolutionSelector.visible + } + + RecommendedResolutionSelector + { + id: recommendedResolutionSelector + Layout.fillWidth: true + width: parent.width + } + + UnsupportedProfileIndication + { + width: parent.width + visible: !recommendedResolutionSelector.visible + Layout.fillWidth: true + } + + + ProfileWarningReset + { + width: parent.width + Layout.fillWidth: true + Layout.topMargin: UM.Theme.getSize("default_margin").height + Layout.bottomMargin: UM.Theme.getSize("thin_margin").height + } + + //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") } RecommendedInfillDensitySelector { width: parent.width - // TODO Create a reusable component with these properties to not define them separately for each component labelColumnWidth: parent.firstColumnWidth + Layout.fillWidth: true + Layout.rightMargin: UM.Theme.getSize("default_margin").width } RecommendedSupportSelector { width: parent.width - // TODO Create a reusable component with these properties to not define them separately for each component labelColumnWidth: parent.firstColumnWidth + Layout.fillWidth: true } RecommendedAdhesionSelector { width: parent.width - // TODO Create a reusable component with these properties to not define them separately for each component labelColumnWidth: parent.firstColumnWidth + Layout.fillWidth: true } } diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml index 1176142b3b..bc5826fe7c 100644 --- a/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml @@ -3,199 +3,50 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 +import QtQuick.Layouts 2.10 -import UM 1.2 as UM -import Cura 1.6 as Cura +import UM 1.5 as UM +import Cura 1.7 as Cura import ".." Item { id: qualityRow + + property bool hasQualityOptions: true + height: childrenRect.height + visible: intentSelectionRepeater.count > 1 && hasQualityOptions //Only show selector if there's more options than just "default". - property real labelColumnWidth: Math.round(width / 3) - property real settingsColumnWidth: width - labelColumnWidth - - // Here are the elements that are shown in the left column - - Column + RowLayout { - anchors - { - left: parent.left - right: parent.right - } - - spacing: UM.Theme.getSize("default_margin").height - - ButtonGroup - { - id: activeProfileButtonGroup - exclusive: true - onClicked: Cura.IntentManager.selectIntent(button.modelData.intent_category, button.modelData.quality_type) - } - - Item - { - height: childrenRect.height - anchors - { - left: parent.left - right: parent.right - } - Cura.IconWithText - { - id: profileLabel - source: UM.Theme.getIcon("PrintQuality") - text: catalog.i18nc("@label", "Profiles") - font: UM.Theme.getFont("medium") - width: labelColumnWidth - iconSize: UM.Theme.getSize("medium_button_icon").width - } - UM.SimpleButton - { - id: resetToDefaultQualityButton - - visible: Cura.SimpleModeSettingsManager.isProfileCustomized || Cura.MachineManager.hasCustomQuality - height: visible ? UM.Theme.getSize("print_setup_icon").height : 0 - width: height - anchors - { - right: profileLabel.right - rightMargin: UM.Theme.getSize("default_margin").width - leftMargin: UM.Theme.getSize("default_margin").width - verticalCenter: parent.verticalCenter - } - - color: hovered ? UM.Theme.getColor("setting_control_button_hover") : UM.Theme.getColor("setting_control_button") - iconSource: UM.Theme.getIcon("ArrowReset") - - onClicked: - { - // if the current profile is user-created, switch to a built-in quality - Cura.MachineManager.resetToUseDefaultQuality() - } - onEntered: - { - var tooltipContent = catalog.i18nc("@tooltip","You have modified some profile settings. If you want to change these go to custom mode.") - base.showTooltip(qualityRow, Qt.point(-UM.Theme.getSize("thick_margin").width, 0), tooltipContent) - } - onExited: base.hideTooltip() - } - - Cura.LabelBar - { - id: labelbar - anchors - { - left: profileLabel.right - right: parent.right - verticalCenter: profileLabel.verticalCenter - } - - model: Cura.QualityProfilesDropDownMenuModel - modelKey: "layer_height" - } - } - + id: intentRow + width: parent.width Repeater { - model: Cura.IntentCategoryModel {} - Item + id: intentSelectionRepeater + model: Cura.IntentSelectionModel {} + + RecommendedQualityProfileSelectorButton { - anchors - { - left: parent.left - right: parent.right - } - height: intentCategoryLabel.height + profileName: model.name + icon: model.icon - Label - { - id: intentCategoryLabel - text: model.name - width: labelColumnWidth - UM.Theme.getSize("section_icon").width - anchors.left: parent.left - anchors.leftMargin: UM.Theme.getSize("section_icon").width + UM.Theme.getSize("narrow_margin").width - font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering - elide: Text.ElideRight - } - Cura.RadioCheckbar - { - anchors + selected: Cura.MachineManager.activeIntentCategory == model.intent_category + + onClicked: { + var qualityType + if (Cura.MachineManager.intentCategoryHasQuality(model.intent_category, Cura.MachineManager.activeQualityType)) { - left: intentCategoryLabel.right - right: parent.right + qualityType = Cura.MachineManager.activeQualityType + } else { + qualityType = Cura.MachineManager.getDefaultQualityTypeForIntent(model.intent_category) } - dataModel: model["qualities"] - buttonGroup: activeProfileButtonGroup - - function checkedFunction(modelItem) - { - if(Cura.MachineManager.hasCustomQuality) - { - // When user created profile is active, no quality tickbox should be active. - return false - } - - if(modelItem === null) - { - return false - } - return Cura.MachineManager.activeQualityType == modelItem.quality_type && Cura.MachineManager.activeIntentCategory == modelItem.intent_category - } - - isCheckedFunction: checkedFunction + Cura.IntentManager.selectIntent(model.intent_category, qualityType) } - - MouseArea // Intent description tooltip hover area - { - id: intentDescriptionHoverArea - anchors.fill: parent - hoverEnabled: true - enabled: model.description !== undefined - acceptedButtons: Qt.NoButton // react to hover only, don't steal clicks - - Timer - { - id: intentTooltipTimer - interval: 500 - running: false - repeat: false - onTriggered: base.showTooltip( - intentCategoryLabel, - Qt.point(-(intentCategoryLabel.x - qualityRow.x) - UM.Theme.getSize("thick_margin").width, 0), - model.description - ) - } - - onEntered: intentTooltipTimer.start() - onExited: - { - base.hideTooltip() - intentTooltipTimer.stop() - } - } - - NoIntentIcon // This icon has hover priority over intentDescriptionHoverArea, so draw it above it. - { - affected_extruders: Cura.MachineManager.extruderPositionsWithNonActiveIntent - intent_type: model.name - anchors.right: intentCategoryLabel.right - anchors.rightMargin: UM.Theme.getSize("narrow_margin").width - width: intentCategoryLabel.height * 0.75 - anchors.verticalCenter: parent.verticalCenter - height: width - visible: Cura.MachineManager.activeIntentCategory == model.intent_category && affected_extruders.length - } - - } - } } } diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelectorButton.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelectorButton.qml new file mode 100644 index 0000000000..6804e7e5ba --- /dev/null +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelectorButton.qml @@ -0,0 +1,93 @@ +// 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 2.10 + +import UM 1.5 as UM +import Cura 1.7 as Cura + + +Rectangle +{ + id: base + height: 60 + Layout.fillWidth: true + color: mouseArea.containsMouse || selected ? UM.Theme.getColor("background_3") : UM.Theme.getColor("background_1") + + property bool selected: false + property string profileName: "" + property string icon: "" + + signal clicked() + + MouseArea + { + id: mouseArea + anchors.fill: parent + hoverEnabled: true + onClicked: base.clicked() + } + + Item + { + width: intentIcon.width + anchors + { + top: parent.top + bottom: qualityLabel.top + horizontalCenter: parent.horizontalCenter + topMargin: UM.Theme.getSize("narrow_margin").height + } + + Item + { + id: intentIcon + width: UM.Theme.getSize("recommended_button_icon").width + height: UM.Theme.getSize("recommended_button_icon").height + UM.ColorImage + { + anchors.fill: parent + anchors.centerIn: parent + visible: icon != "" + source: UM.Theme.getIcon(icon) + color: UM.Theme.getColor("icon") + } + + Rectangle + { + id: circle + anchors.fill: parent + radius: width + anchors.verticalCenter: parent.verticalCenter + visible: icon == "" + border.width: UM.Theme.getSize("thick_lining").width + border.color: UM.Theme.getColor("text") + + UM.Label + { + id: initialLabel + anchors.centerIn: parent + text: profileName.charAt(0).toUpperCase() + font: UM.Theme.getFont("small_bold") + horizontalAlignment: Text.AlignHCenter + } + } + + + } + } + + UM.Label + { + id: qualityLabel + text: profileName + anchors + { + bottom: parent.bottom + horizontalCenter: parent.horizontalCenter + bottomMargin: UM.Theme.getSize("narrow_margin").height + } + } +} \ No newline at end of file diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml new file mode 100644 index 0000000000..4f1b49e931 --- /dev/null +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml @@ -0,0 +1,90 @@ +// Copyright (c) 2022 Ultimaker B.V. +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.10 + +import UM 1.6 as UM +import Cura 1.7 as Cura + +Item +{ + id: recommendedResolutionSelector + height: childrenRect.height + + property real labelColumnWidth: Math.round(width / 3) + property string _previousResolution: "" //Internal variable to detect changes. + Component.onCompleted: _previousResolution = Cura.MachineManager.activeQualityType; + + visible: visibilityPreset.count > 0 //Only show if there are quality types to select from. + + Cura.IconWithText + { + 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 + height: parent.height + spacing: UM.Theme.getSize("thick_margin").width + iconSize: UM.Theme.getSize("medium_button_icon").width + } + + Cura.ComboBox + { + id: visibilityPreset + implicitHeight: UM.Theme.getSize("combobox").height + implicitWidth: UM.Theme.getSize("combobox").width + anchors + { + top: parent.top + right: parent.right + } + + textRole: "display_text" + textFormat: Text.StyledText + + model: Cura.ActiveIntentQualitiesModel{} + + currentIndex: + { + var current_quality_type = Cura.MachineManager.activeQualityType + + var index = 0 + for (var i = 0; i < model.count; i++) + { + if (model.getItem(i).quality_type == current_quality_type) + { + index = i + break + } + } + return index + } + + onActivated: + { + var selected_item = model.getItem(currentIndex) + Cura.IntentManager.selectIntent(selected_item.intent_category, selected_item.quality_type) + + if (Cura.IntentManager.currentIntentCategory == selected_item.intent_category) + { + recommendedResolutionSelector._previousResolution = selected_item.quality_type; + } + } + + Connections + { + target: Cura.IntentManager + function onIntentCategoryChanged() + { + if(recommendedResolutionSelector._previousResolution !== Cura.MachineManager.activeQualityType) + { + visibilityPreset.pulse(); + } + recommendedResolutionSelector._previousResolution = Cura.MachineManager.activeQualityType; + } + } + } +} \ No newline at end of file diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml index 0b683f0ddf..3e40c16d74 100644 --- a/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml @@ -14,39 +14,41 @@ import Cura 1.0 as Cura Item { id: enableSupportRow - height: childrenRect.height + height: UM.Theme.getSize("print_setup_big_item").height property real labelColumnWidth: Math.round(width / 3) - Cura.IconWithText - { - 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 - } - Item { id: enableSupportContainer - height: enableSupportCheckBox.height + width: labelColumnWidth + enableSupportCheckBox.width anchors { - left: enableSupportRowTitle.right - right: parent.right - verticalCenter: enableSupportRowTitle.verticalCenter + left: parent.left + top: parent.top + bottom: parent.bottom + rightMargin: UM.Theme.getSize("thick_margin").width + } + + Cura.IconWithText + { + id: enableSupportRowTitle + 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 + tooltipText: catalog.i18nc("@label", "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing.") } UM.CheckBox { id: enableSupportCheckBox anchors.verticalCenter: parent.verticalCenter + anchors.left: enableSupportRowTitle.right property alias _hovered: enableSupportMouseArea.containsMouse @@ -60,158 +62,220 @@ Item id: enableSupportMouseArea anchors.fill: parent hoverEnabled: true - + // propagateComposedEvents used on supportToolTipMouseArea does not work with Controls Components. + // It only works with other MouseAreas, so this is required 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 + MouseArea { - id: supportExtruderCombobox + id: supportToolTipMouseArea + anchors.fill: parent + propagateComposedEvents: true + hoverEnabled: true + onEntered: base.showTooltip(enableSupportContainer, 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() + } + } - height: UM.Theme.getSize("print_setup_big_item").height - anchors + ComboBox + { + id: supportExtruderCombobox + + height: UM.Theme.getSize("print_setup_big_item").height + anchors + { + left: enableSupportContainer.right + right: parent.right + leftMargin: UM.Theme.getSize("default_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) { - 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) { - 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 + itemIndex = item_index + break } } + return itemIndex + } - currentIndex: (supportExtruderNr.properties.value !== undefined) ? supportExtruderNr.properties.value : 0 - - property string color: "#fff" - Connections + onActivated: + { + if (model.getItem(index).enabled) { - target: extruderModel - function onModelChanged() - { - var maybeColor = supportExtruderCombobox.model.getItem(supportExtruderCombobox.currentIndex).color - if (maybeColor) - { - supportExtruderCombobox.color = maybeColor - } - } + forceActiveFocus(); + supportExtruderNr.setPropertyValue("value", model.getItem(index).index); + } else + { + currentIndex = supportExtruderNr.properties.value; // keep the old value } - onCurrentIndexChanged: + } + + 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) + if (maybeColor) { supportExtruderCombobox.color = maybeColor } } - - Binding + } + onCurrentIndexChanged: + { + var maybeColor = supportExtruderCombobox.model.getItem(supportExtruderCombobox.currentIndex).color + if(maybeColor) { - 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 + supportExtruderCombobox.color = maybeColor } + } - indicator: UM.ColorImage + 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: { - id: downArrow - x: supportExtruderCombobox.width - width - supportExtruderCombobox.rightPadding - y: supportExtruderCombobox.topPadding + Math.round((supportExtruderCombobox.availableHeight - height) / 2) + 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") + } + } - source: UM.Theme.getIcon("ChevronSingleDown") - width: UM.Theme.getSize("standard_arrow").width - height: UM.Theme.getSize("standard_arrow").height + 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 - color: UM.Theme.getColor("setting_control_button") + 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: - { - 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") - } + 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.verticalCenter: parent.verticalCenter - anchors.left: parent.left + anchors.fill: parent anchors.leftMargin: UM.Theme.getSize("setting_unit_margin").width - anchors.right: downArrow.left + 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 - 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 @@ -222,71 +286,14 @@ Item anchors.verticalCenter: parent.verticalCenter anchors.rightMargin: UM.Theme.getSize("thin_margin").width - color: supportExtruderCombobox.color + color: supportExtruderCombobox.model.getItem(index).color } } - popup: Popup + background: Rectangle { - 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" - } + color: parent.highlighted ? UM.Theme.getColor("setting_control_highlight") : "transparent" + border.color: parent.highlighted ? UM.Theme.getColor("setting_control_border_highlight") : "transparent" } } } diff --git a/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml b/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml new file mode 100644 index 0000000000..ff12fa9307 --- /dev/null +++ b/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml @@ -0,0 +1,54 @@ +//Copyright (c) 2022 Ultimaker B.V. +//Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.15 + +import Cura 1.6 as Cura +import UM 1.6 as UM + +//Message showing the user that the configuration they have selected has no profiles. +Column +{ + spacing: UM.Theme.getSize("default_margin").height + + Row + { + width: parent.width + + spacing: UM.Theme.getSize("thin_margin").width + + UM.StatusIcon + { + width: UM.Theme.getSize("notification_icon").width + status: UM.StatusIcon.Status.ERROR + } + + UM.Label + { + width: parent.width + + font: UM.Theme.getFont("default_bold") + text: catalog.i18nc("@error", "Configuration not supported") + } + } + + UM.Label + { + width: parent.width + + text: catalog.i18nc("@message:text %1 is the name the printer uses for 'nozzle'.", "No profiles are available for the selected material/%1 configuration. Please change your configuration." + ).arg(Cura.MachineManager.activeDefinitionVariantsName) + } + + Cura.TertiaryButton + { + anchors.right: parent.right + + text: catalog.i18nc("@button:label", "Learn more") + textFont: UM.Theme.getFont("default") + iconSource: UM.Theme.getIcon("LinkExternal") + isIconOnRightSide: true + + onClicked: Qt.openUrlExternally("https://support.ultimaker.com/hc/en-us/articles/360012909099") + } +} \ No newline at end of file diff --git a/resources/qml/PrintSetupTooltip.qml b/resources/qml/PrintSetupTooltip.qml index 29fe7d6508..af4280342c 100644 --- a/resources/qml/PrintSetupTooltip.qml +++ b/resources/qml/PrintSetupTooltip.qml @@ -17,10 +17,12 @@ UM.PointingRectangle arrowSize: UM.Theme.getSize("default_arrow").width opacity: 0 + // This should be disabled when invisible, otherwise it will catch mouse events. + enabled: opacity > 0 Behavior on opacity { - NumberAnimation { duration: 100; } + NumberAnimation { duration: 200; } } property alias text: label.text @@ -59,16 +61,19 @@ UM.PointingRectangle base.opacity = 0; } - MouseArea + ScrollView { - enabled: parent.opacity > 0 - visible: enabled - anchors.fill: parent - acceptedButtons: Qt.NoButton - hoverEnabled: true + id: textScroll + width: parent.width + height: Math.min(label.height + UM.Theme.getSize("tooltip_margins").height, base.parent.height) + + ScrollBar.horizontal.policy: ScrollBar.AlwaysOff + ScrollBar.vertical.policy: ScrollBar.AsNeeded + + hoverEnabled: parent.opacity > 0 onHoveredChanged: { - if(containsMouse && base.opacity > 0) + if(hovered && base.opacity > 0) { base.show(Qt.point(target.x - 1, target.y - UM.Theme.getSize("tooltip_arrow_margins").height / 2)); //Same arrow position as before. } @@ -78,27 +83,15 @@ UM.PointingRectangle } } - ScrollView + UM.Label { - id: textScroll - width: parent.width - height: Math.min(label.height, base.parent.height) + id: label + x: UM.Theme.getSize("tooltip_margins").width + y: UM.Theme.getSize("tooltip_margins").height + width: textScroll.width - 2 * UM.Theme.getSize("tooltip_margins").width - ScrollBar.horizontal: ScrollBar { - active: false //Only allow vertical scrolling. We should grow vertically only, but due to how the label is positioned it allocates space in the ScrollView horizontally. - } - - UM.Label - { - id: label - x: UM.Theme.getSize("tooltip_margins").width - y: UM.Theme.getSize("tooltip_margins").height - width: base.width - UM.Theme.getSize("tooltip_margins").width * 2 - - wrapMode: Text.Wrap - textFormat: Text.RichText - color: UM.Theme.getColor("tooltip_text") - } + textFormat: Text.RichText + color: UM.Theme.getColor("tooltip_text") } } } diff --git a/resources/qml/PrinterOutput/OutputDeviceHeader.qml b/resources/qml/PrinterOutput/OutputDeviceHeader.qml index aeb9d14363..bbc208374f 100644 --- a/resources/qml/PrinterOutput/OutputDeviceHeader.qml +++ b/resources/qml/PrinterOutput/OutputDeviceHeader.qml @@ -33,7 +33,6 @@ Item { id: outputDeviceNameLabel font: UM.Theme.getFont("large_bold") - color: UM.Theme.getColor("text") anchors.left: parent.left anchors.top: parent.top anchors.margins: UM.Theme.getSize("default_margin").width diff --git a/resources/qml/PrinterSelector/MachineSelectorButton.qml b/resources/qml/PrinterSelector/MachineSelectorButton.qml index 74c833f691..cd1f3cc574 100644 --- a/resources/qml/PrinterSelector/MachineSelectorButton.qml +++ b/resources/qml/PrinterSelector/MachineSelectorButton.qml @@ -40,7 +40,7 @@ Button contentItem: Item { - width: machineSelectorButton.width - machineSelectorButton.leftPadding + width: machineSelectorButton.width - machineSelectorButton.leftPadding - machineSelectorButton.rightPadding height: UM.Theme.getSize("action_button").height UM.Label diff --git a/resources/qml/PrinterTypeLabel.qml b/resources/qml/PrinterTypeLabel.qml index f2e8dc6f48..7b9acc19c9 100644 --- a/resources/qml/PrinterTypeLabel.qml +++ b/resources/qml/PrinterTypeLabel.qml @@ -4,7 +4,7 @@ import QtQuick 2.7 import QtQuick.Controls 2.1 -import UM 1.1 as UM +import UM 1.5 as UM // This component creates a label with the abbreviated name of a printer, with a rectangle surrounding the label. // It is created in a separated place in order to be reused whenever needed. @@ -24,14 +24,11 @@ Item radius: UM.Theme.getSize("checkbox_radius").width } - Label + UM.Label { id: printerTypeLabel text: "CFFFP" // As an abbreviated name of the Custom FFF Printer anchors.verticalCenter: parent.verticalCenter anchors.horizontalCenter: parent.horizontalCenter - renderType: Text.NativeRendering - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") } } \ No newline at end of file diff --git a/resources/qml/SearchBar.qml b/resources/qml/SearchBar.qml index af5ad7cc35..3dc7a8d086 100644 --- a/resources/qml/SearchBar.qml +++ b/resources/qml/SearchBar.qml @@ -15,7 +15,7 @@ Cura.TextField leftPadding: searchIcon.width + UM.Theme.getSize("default_margin").width * 2 placeholderText: catalog.i18nc("@placeholder", "Search") - font.italic: true + font: UM.Theme.getFont("default_italic") UM.ColorImage { 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/SettingExtruder.qml b/resources/qml/Settings/SettingExtruder.qml index 3072161c59..567161b8f6 100644 --- a/resources/qml/Settings/SettingExtruder.qml +++ b/resources/qml/Settings/SettingExtruder.qml @@ -125,17 +125,22 @@ SettingItem } return UM.Theme.getColor("setting_control") } + borderColor: control.activeFocus ? UM.Theme.getSize("text_field_border_active") : "transparent" liningColor: { - if (!enabled) + if(!enabled) { - return UM.Theme.getColor("setting_control_disabled_border") + return UM.Theme.getColor("setting_control_disabled_border"); } - if (control.hovered || control.activeFocus) + if(control.activeFocus) { - return UM.Theme.getColor("border_main") + return UM.Theme.getColor("text_field_border_active"); } - return UM.Theme.getColor("border_field_light") + if(base.hovered) + { + return UM.Theme.getColor("text_field_border_hovered"); + } + return UM.Theme.getColor("border_field_light"); } } @@ -154,7 +159,7 @@ SettingItem background: Rectangle { id: swatch - height: Math.round(parent.height / 2) + height: UM.Theme.getSize("standard_arrow").width width: height radius: Math.round(width / 2) anchors.right: parent.right diff --git a/resources/qml/Settings/SettingItem.qml b/resources/qml/Settings/SettingItem.qml index 6787855775..53f194dfd2 100644 --- a/resources/qml/Settings/SettingItem.qml +++ b/resources/qml/Settings/SettingItem.qml @@ -5,7 +5,7 @@ import QtQuick 2.7 import QtQuick.Layouts 1.2 import QtQuick.Controls 2.0 -import UM 1.1 as UM +import UM 1.5 as UM import Cura 1.0 as Cura import "." @@ -62,13 +62,19 @@ Item var affected_by_list = "" for (var i in affected_by) { - affected_by_list += "
    • %1
    • \n".arg(affected_by[i].label) + if(affected_by[i].label != "") + { + affected_by_list += "
    • %1
    • \n".arg(affected_by[i].label) + } } var affects_list = "" for (var i in affects) { - affects_list += "
    • %1
    • \n".arg(affects[i].label) + if(affects[i].label != "") + { + affects_list += "
    • %1
    • \n".arg(affects[i].label) + } } var tooltip = "%1\n

      %2

      ".arg(definition.label).arg(definition.description) @@ -129,7 +135,7 @@ Item } } - Label + UM.Label { id: label @@ -140,7 +146,6 @@ Item text: definition.label elide: Text.ElideMiddle - renderType: Text.NativeRendering textFormat: Text.PlainText color: UM.Theme.getColor("setting_control_text") @@ -204,7 +209,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 e02fe88e34..22f03d44a2 100644 --- a/resources/qml/Settings/SettingOptionalExtruder.qml +++ b/resources/qml/Settings/SettingOptionalExtruder.qml @@ -126,17 +126,22 @@ SettingItem } return UM.Theme.getColor("setting_control") } + borderColor: control.activeFocus ? UM.Theme.getColor("text_field_border_active") : "transparent" liningColor: { - if (!enabled) + if(!enabled) { - return UM.Theme.getColor("setting_control_disabled_border") + return UM.Theme.getColor("setting_control_disabled_border"); } - if (control.hovered || control.activeFocus) + if(control.activeFocus) { - return UM.Theme.getColor("border_main") + return UM.Theme.getColor("text_field_border_active"); } - return UM.Theme.getColor("border_field_light") + if(base.hovered) + { + return UM.Theme.getColor("text_field_border_hovered"); + } + return UM.Theme.getColor("border_field_light"); } } diff --git a/resources/qml/Settings/SettingTextField.qml b/resources/qml/Settings/SettingTextField.qml index 5b051178b1..4e72bca93e 100644 --- a/resources/qml/Settings/SettingTextField.qml +++ b/resources/qml/Settings/SettingTextField.qml @@ -32,11 +32,12 @@ SettingItem anchors.fill: parent + borderColor: input.activeFocus ? UM.Theme.getColor("text_field_border_active") : "transparent" liningColor: { if(!enabled) { - return UM.Theme.getColor("text_field_border_disabled") + return UM.Theme.getColor("text_field_border_disabled"); } switch(propertyProvider.properties.validationState) { @@ -50,17 +51,21 @@ SettingItem return UM.Theme.getColor("setting_validation_warning"); } //Validation is OK. - if(hovered || input.activeFocus) + if(input.activeFocus) { - return UM.Theme.getColor("text_field_border_hovered") + return UM.Theme.getColor("text_field_border_active"); } - return UM.Theme.getColor("text_field_border") + if(hovered) + { + return UM.Theme.getColor("text_field_border_hovered"); + } + return UM.Theme.getColor("text_field_border"); } color: { if(!enabled) { - return UM.Theme.getColor("text_field") + return UM.Theme.getColor("setting_control_disabled") } switch(propertyProvider.properties.validationState) { @@ -148,13 +153,13 @@ 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: (definition.type == "[int]") ? /^\[?(\s*-?[0-9]{0,11}\s*,)*(\s*-?[0-9]{0,11})\s*\]?$/ : (definition.type == "int") ? /^-?[0-9]{0,12}$/ : (definition.type == "float") ? /^-?[0-9]{0,11}[.,]?[0-9]{0,3}$/ : /^.*$/ } // definition.type property from parent loader used to disallow fractional number entry Binding { diff --git a/resources/qml/Settings/SettingView.qml b/resources/qml/Settings/SettingView.qml index 28787acb27..934e19030d 100644 --- a/resources/qml/Settings/SettingView.qml +++ b/resources/qml/Settings/SettingView.qml @@ -46,7 +46,7 @@ Item topPadding: height / 4 leftPadding: searchIcon.width + UM.Theme.getSize("default_margin").width * 2 placeholderText: catalog.i18nc("@label:textbox", "Search settings") - font.italic: true + font: UM.Theme.getFont("default_italic") property var expandedCategories property bool lastFindingSettings: false @@ -61,7 +61,7 @@ Item left: parent.left leftMargin: UM.Theme.getSize("default_margin").width } - source: UM.Theme.getIcon("search") + source: UM.Theme.getIcon("Magnifier") height: UM.Theme.getSize("small_button_icon").height width: height color: UM.Theme.getColor("text") @@ -178,7 +178,7 @@ Item ListView { id: contents - maximumFlickVelocity: 1000 + maximumFlickVelocity: 1000 * screenScaleFactor anchors { top: filterContainer.bottom @@ -195,7 +195,7 @@ Item onPositionChanged: { // This removes focus from items when scrolling. // This fixes comboboxes staying open and scrolling container - if (!activeFocus) { + if (!activeFocus && !filter.activeFocus) { forceActiveFocus(); } } @@ -227,9 +227,7 @@ Item id: delegate width: contents.width - (scrollBar.width + UM.Theme.getSize("narrow_margin").width) - Behavior on height { NumberAnimation { duration: 100 } } opacity: enabled ? 1 : 0 - Behavior on opacity { NumberAnimation { duration: 100 } } enabled: provider.properties.enabled === "True" property var definition: model @@ -351,10 +349,7 @@ Item function onFocusReceived() { contents.indexWithFocus = index - animateContentY.from = contents.contentY contents.positionViewAtIndex(index, ListView.Contain) - animateContentY.to = contents.contentY - animateContentY.running = true } function onSetActiveFocusToNextSetting(forward) { @@ -386,35 +381,6 @@ Item } } - NumberAnimation { - id: animateContentY - target: contents - property: "contentY" - duration: 50 - } - - add: Transition { - SequentialAnimation { - NumberAnimation { properties: "height"; from: 0; duration: 100 } - NumberAnimation { properties: "opacity"; from: 0; duration: 100 } - } - } - remove: Transition { - SequentialAnimation { - NumberAnimation { properties: "opacity"; to: 0; duration: 100 } - NumberAnimation { properties: "height"; to: 0; duration: 100 } - } - } - addDisplaced: Transition { - NumberAnimation { properties: "x,y"; duration: 100 } - } - removeDisplaced: Transition { - SequentialAnimation { - PauseAnimation { duration: 100; } - NumberAnimation { properties: "x,y"; duration: 100 } - } - } - Cura.Menu { id: contextMenu diff --git a/resources/qml/TableView.qml b/resources/qml/TableView.qml index 444d310511..7da2341908 100644 --- a/resources/qml/TableView.qml +++ b/resources/qml/TableView.qml @@ -171,6 +171,12 @@ Item acceptedButtons: Qt.LeftButton text: (cellTextMetrics.elidedText == cellContent.text) ? "" : cellContent.text //Show full text in tooltip if it was elided. + } + + MouseArea + { + anchors.fill: parent + propagateComposedEvents: true onClicked: { if(tableBase.allowSelection) diff --git a/resources/qml/Toolbar.qml b/resources/qml/Toolbar.qml index 9c1abd31b7..6ecdc9dce0 100644 --- a/resources/qml/Toolbar.qml +++ b/resources/qml/Toolbar.qml @@ -210,12 +210,11 @@ Item width: toolHint.width + UM.Theme.getSize("default_margin").width height: toolHint.height; color: UM.Theme.getColor("tooltip") - Label + UM.Label { id: toolHint text: UM.ActiveTool.properties.getValue("ToolHint") != undefined ? UM.ActiveTool.properties.getValue("ToolHint") : "" color: UM.Theme.getColor("tooltip_text") - font: UM.Theme.getFont("default") anchors.horizontalCenter: parent.horizontalCenter } diff --git a/resources/qml/WelcomePages/AddCloudPrintersView.qml b/resources/qml/WelcomePages/AddCloudPrintersView.qml index 0b94d21fae..3f2d3dbab2 100644 --- a/resources/qml/WelcomePages/AddCloudPrintersView.qml +++ b/resources/qml/WelcomePages/AddCloudPrintersView.qml @@ -38,7 +38,7 @@ Item bottomMargin: UM.Theme.getSize("default_margin").height } - Label + UM.Label { id: titleLabel anchors.top: parent.top @@ -47,7 +47,6 @@ Item text: catalog.i18nc("@label", "Add a Cloud printer") color: UM.Theme.getColor("primary_button") font: UM.Theme.getFont("huge") - renderType: Text.NativeRendering } // Component that contains a busy indicator and a message, while it waits for Cura to discover a cloud printer @@ -65,7 +64,7 @@ Item running: searchingForCloudPrinters palette.dark: UM.Theme.getColor("text") } - Label + UM.Label { id: waitingLabel anchors.top: waitingIndicator.bottom @@ -73,10 +72,8 @@ Item horizontalAlignment: Text.AlignHCenter text: catalog.i18nc("@label", "Waiting for Cloud response") font: UM.Theme.getFont("large") - renderType: Text.NativeRendering - color: UM.Theme.getColor("text") } - Label + UM.Label { id: noPrintersFoundLabel anchors.top: waitingLabel.bottom @@ -85,9 +82,8 @@ Item horizontalAlignment: Text.AlignHCenter text: catalog.i18nc("@label", "No printers found in your account?") font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") } - Label + UM.Label { text: "Sign in with a different account" anchors.top: noPrintersFoundLabel.bottom @@ -112,7 +108,7 @@ Item } // Label displayed when a new cloud printer is discovered - Label + UM.Label { anchors.top: titleLabel.bottom anchors.topMargin: 2 * UM.Theme.getSize("default_margin").height @@ -121,7 +117,6 @@ Item text: catalog.i18nc("@label", "The following printers in your account have been added in Cura:") height: contentHeight + 2 * UM.Theme.getSize("default_margin").height visible: discoveredCloudPrintersModel.count > 0 - color: UM.Theme.getColor("text") } // The scrollView that contains the list of newly discovered Ultimaker Cloud printers. Visible only when @@ -153,32 +148,29 @@ Item Column { id: contentColumn - Label + UM.Label { id: cloudPrinterNameLabel leftPadding: UM.Theme.getSize("default_margin").width text: model.name ? model.name : "" font: UM.Theme.getFont("large_bold") - color: UM.Theme.getColor("text") elide: Text.ElideRight } - Label + UM.Label { id: cloudPrinterTypeLabel leftPadding: 2 * UM.Theme.getSize("default_margin").width topPadding: UM.Theme.getSize("thin_margin").height - text: {"Type: " + model.machine_type} + text: "Type: " + model.machine_type font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") elide: Text.ElideRight } - Label + UM.Label { id: cloudPrinterFirmwareVersionLabel leftPadding: 2 * UM.Theme.getSize("default_margin").width - text: {"Firmware version: " + model.firmware_version} + text: "Firmware version: " + model.firmware_version font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") elide: Text.ElideRight } } diff --git a/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml b/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml index 127fca5fa6..1d868d72ef 100644 --- a/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml +++ b/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml @@ -183,7 +183,6 @@ Item UM.Label { width: parent.width - (2 * UM.Theme.getSize("default_margin").width) - wrapMode: Text.Wrap text: base.getMachineName() color: UM.Theme.getColor("primary_button") font: UM.Theme.getFont("huge") diff --git a/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml b/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml index dbf68ce701..83a38eab7a 100644 --- a/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml +++ b/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml @@ -4,7 +4,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.1 as Cura @@ -15,7 +15,7 @@ Item { UM.I18nCatalog { id: catalog; name: "cura" } - Label + UM.Label { id: titleLabel anchors.top: parent.top @@ -24,7 +24,6 @@ Item text: catalog.i18nc("@label", "Add a printer") color: UM.Theme.getColor("primary_button") font: UM.Theme.getFont("huge") - renderType: Text.NativeRendering } DropDownWidget diff --git a/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml b/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml index badd87326b..36c670f462 100644 --- a/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml +++ b/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml @@ -218,7 +218,6 @@ Item anchors.right: parent.right anchors.verticalCenter: parent.verticalCenter text: catalog.i18nc("@label", "Troubleshooting") - font: UM.Theme.getFont("default") color: UM.Theme.getColor("text_link") } diff --git a/resources/qml/WelcomePages/AddPrinterByIpContent.qml b/resources/qml/WelcomePages/AddPrinterByIpContent.qml index 1adaa09a49..90fdd2be91 100644 --- a/resources/qml/WelcomePages/AddPrinterByIpContent.qml +++ b/resources/qml/WelcomePages/AddPrinterByIpContent.qml @@ -5,7 +5,7 @@ import QtQuick 2.15 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.5 as Cura @@ -61,7 +61,7 @@ Item } } - Label + UM.Label { id: titleLabel anchors.top: parent.top @@ -70,7 +70,6 @@ Item text: catalog.i18nc("@label", "Add printer by IP address") color: UM.Theme.getColor("primary_button") font: UM.Theme.getFont("huge") - renderType: Text.NativeRendering } Item @@ -88,17 +87,13 @@ Item anchors.right: parent.right anchors.margins: UM.Theme.getSize("default_margin").width - Label + UM.Label { id: explainLabel height: contentHeight anchors.left: parent.left anchors.right: parent.right anchors.top: parent.top - - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering text: catalog.i18nc("@label", "Enter the IP address of your printer on the network.") } @@ -136,7 +131,7 @@ Item onAccepted: addPrinterButton.clicked() } - Label + UM.Label { id: invalidInputLabel anchors.top: hostnameField.bottom @@ -144,9 +139,6 @@ Item anchors.left: parent.left visible: false text: catalog.i18nc("@text", "Please enter a valid IP address.") - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering } Cura.SecondaryButton @@ -188,14 +180,11 @@ Item anchors.top: userInputFields.bottom anchors.margins: UM.Theme.getSize("default_margin").width - Label + UM.Label { id: waitResponseLabel anchors.top: parent.top anchors.margins: UM.Theme.getSize("default_margin").width - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering visible: addPrinterByIpScreen.hasRequestInProgress || (addPrinterByIpScreen.hasRequestFinished && !addPrinterByIpScreen.isPrinterDiscovered) textFormat: Text.RichText @@ -225,18 +214,15 @@ Item visible: addPrinterByIpScreen.isPrinterDiscovered - Label + UM.Label { id: printerNameLabel anchors.top: parent.top font: UM.Theme.getFont("large") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering - text: !addPrinterByIpScreen.isPrinterDiscovered ? "???" : addPrinterByIpScreen.discoveredPrinter.name } - Label + UM.Label { id: printerCannotBeAddedLabel width: parent.width @@ -245,8 +231,6 @@ Item text: catalog.i18nc("@label", "This printer cannot be added because it's an unknown printer or it's not the host of a group.") visible: addPrinterByIpScreen.hasRequestFinished && !addPrinterByIpScreen.canAddPrinter font: UM.Theme.getFont("default_bold") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering wrapMode: Text.WordWrap } @@ -258,52 +242,33 @@ Item columns: 2 columnSpacing: UM.Theme.getSize("default_margin").width - Label + UM.Label { text: catalog.i18nc("@label", "Type") - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering } - Label + UM.Label { id: typeText text: !addPrinterByIpScreen.isPrinterDiscovered ? "?" : addPrinterByIpScreen.discoveredPrinter.readableMachineType - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering } - - Label + UM.Label { text: catalog.i18nc("@label", "Firmware version") - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering } - Label + UM.Label { id: firmwareText text: !addPrinterByIpScreen.isPrinterDiscovered ? "0.0.0.0" : addPrinterByIpScreen.discoveredPrinter.device.getProperty("firmware_version") - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering } - Label + UM.Label { text: catalog.i18nc("@label", "Address") - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering } - Label + UM.Label { id: addressText text: !addPrinterByIpScreen.isPrinterDiscovered ? "0.0.0.0" : addPrinterByIpScreen.discoveredPrinter.address - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering } } diff --git a/resources/qml/WelcomePages/CloudContent.qml b/resources/qml/WelcomePages/CloudContent.qml index 7dc35c7bc5..cf830a9b36 100644 --- a/resources/qml/WelcomePages/CloudContent.qml +++ b/resources/qml/WelcomePages/CloudContent.qml @@ -4,7 +4,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.1 as Cura @@ -56,7 +56,7 @@ Item spacing: UM.Theme.getSize("thick_margin").height - Label + UM.Label { id: titleLabel anchors.horizontalCenter: parent.horizontalCenter @@ -64,7 +64,6 @@ Item text: catalog.i18nc("@label", "Sign in to the Ultimaker platform") color: UM.Theme.getColor("primary_button") font: UM.Theme.getFont("huge") - renderType: Text.NativeRendering } // Filler item @@ -116,17 +115,13 @@ Item sourceSize.width: width sourceSize.height: height } - Label + UM.Label { id: marketplaceTextLabel anchors.horizontalCenter: parent.horizontalCenter width: parent.width text: catalog.i18nc("@text", "Add material settings and plugins from the Marketplace") - wrapMode: Text.Wrap horizontalAlignment: Text.AlignHCenter - color: UM.Theme.getColor("text") - font: UM.Theme.getFont("default") - renderType: Text.NativeRendering } } @@ -146,17 +141,13 @@ Item sourceSize.width: width sourceSize.height: height } - Label + UM.Label { id: syncTextLabel anchors.horizontalCenter: parent.horizontalCenter width: parent.width text: catalog.i18nc("@text", "Backup and sync your material settings and plugins") - wrapMode: Text.Wrap horizontalAlignment: Text.AlignHCenter - color: UM.Theme.getColor("text") - font: UM.Theme.getFont("default") - renderType: Text.NativeRendering } } @@ -176,17 +167,13 @@ Item sourceSize.width: width sourceSize.height: height } - Label + UM.Label { 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") - wrapMode: Text.Wrap horizontalAlignment: Text.AlignHCenter - color: UM.Theme.getColor("text") - font: UM.Theme.getFont("default") - renderType: Text.NativeRendering } } } diff --git a/resources/qml/WelcomePages/DataCollectionsContent.qml b/resources/qml/WelcomePages/DataCollectionsContent.qml index be4d09e876..ece437890e 100644 --- a/resources/qml/WelcomePages/DataCollectionsContent.qml +++ b/resources/qml/WelcomePages/DataCollectionsContent.qml @@ -4,7 +4,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.1 as Cura @@ -15,7 +15,7 @@ Item { UM.I18nCatalog { id: catalog; name: "cura" } - Label + UM.Label { id: titleLabel anchors.top: parent.top @@ -24,7 +24,6 @@ Item text: catalog.i18nc("@label", "Help us to improve Ultimaker Cura") color: UM.Theme.getColor("primary_button") font: UM.Theme.getFont("huge") - renderType: Text.NativeRendering } // Area where the cloud contents can be put. Pictures, texts and such. @@ -48,7 +47,7 @@ Item spacing: UM.Theme.getSize("wide_margin").height - Label + UM.Label { id: topLabel width: parent.width @@ -57,8 +56,6 @@ Item text: catalog.i18nc("@text", "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:") wrapMode: Text.WordWrap font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering } Grid { @@ -91,7 +88,7 @@ Item } } - Label + UM.Label { id: bottomLabel width: parent.width @@ -107,10 +104,8 @@ Item textFormat: Text.RichText wrapMode: Text.WordWrap font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") linkColor: UM.Theme.getColor("text_link") onLinkActivated: CuraApplication.showMoreInformationDialogForAnonymousDataCollection() - renderType: Text.NativeRendering } } } diff --git a/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml b/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml index 64a815855b..2503190c32 100644 --- a/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml +++ b/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml @@ -4,7 +4,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.1 as Cura @@ -36,7 +36,7 @@ Item } } - Label + UM.Label { id: titleLabel anchors.top: parent.top @@ -45,7 +45,6 @@ Item text: machineActionsModel.currentItem.title == undefined ? "" : machineActionsModel.currentItem.title color: UM.Theme.getColor("primary_button") font: UM.Theme.getFont("huge") - renderType: Text.NativeRendering } Item diff --git a/resources/qml/WelcomePages/ImageTile.qml b/resources/qml/WelcomePages/ImageTile.qml index 7ed07304e6..b8f40ed25f 100644 --- a/resources/qml/WelcomePages/ImageTile.qml +++ b/resources/qml/WelcomePages/ImageTile.qml @@ -4,7 +4,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.3 as UM +import UM 1.5 as UM // @@ -18,7 +18,7 @@ Column property alias text: label.text property alias imageSource: image.source - Label + UM.Label { id: label width: image.width @@ -26,9 +26,6 @@ Column horizontalAlignment: Text.AlignHCenter text: "" wrapMode: Text.WordWrap - font: UM.Theme.getFont("default") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering } Image diff --git a/resources/qml/WelcomePages/WelcomeContent.qml b/resources/qml/WelcomePages/WelcomeContent.qml index 619780435d..4123535cc9 100644 --- a/resources/qml/WelcomePages/WelcomeContent.qml +++ b/resources/qml/WelcomePages/WelcomeContent.qml @@ -4,7 +4,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.1 as Cura // @@ -48,7 +48,7 @@ Item width: parent.width } - Label + UM.Label { id: titleLabel anchors.horizontalCenter: parent.horizontalCenter @@ -56,20 +56,16 @@ Item text: catalog.i18nc("@label", "Welcome to Ultimaker Cura") color: UM.Theme.getColor("primary_button") font: UM.Theme.getFont("huge_bold") - renderType: Text.NativeRendering } - Label + UM.Label { id: textLabel 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.") - wrapMode: Text.Wrap font: UM.Theme.getFont("medium") - color: UM.Theme.getColor("text") - renderType: Text.NativeRendering } // Filler item diff --git a/resources/qml/WelcomePages/WhatsNewContent.qml b/resources/qml/WelcomePages/WhatsNewContent.qml index 2ac3935ece..6406d65756 100644 --- a/resources/qml/WelcomePages/WhatsNewContent.qml +++ b/resources/qml/WelcomePages/WhatsNewContent.qml @@ -5,7 +5,7 @@ import QtQuick 2.10 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.3 -import UM 1.3 as UM +import UM 1.5 as UM import Cura 1.1 as Cura @@ -19,7 +19,7 @@ Item UM.I18nCatalog { id: catalog; name: "cura" } - Label + UM.Label { id: titleLabel anchors.top: parent.top @@ -28,7 +28,6 @@ Item text: catalog.i18nc("@label", "What's New") color: UM.Theme.getColor("primary_button") font: UM.Theme.getFont("huge") - renderType: Text.NativeRendering } Rectangle @@ -66,7 +65,7 @@ Item Rectangle { - Layout.alignment: Qt.AlignmentFlag.AlignHCenter + Layout.alignment: Qt.AlignHCenter color: UM.Theme.getColor("viewport_overlay") width: whatsNewViewport.width height: whatsNewViewport.height diff --git a/resources/qml/Widgets/ComboBox.qml b/resources/qml/Widgets/ComboBox.qml index 2a3716c3af..eac85bfb44 100644 --- a/resources/qml/Widgets/ComboBox.qml +++ b/resources/qml/Widgets/ComboBox.qml @@ -17,6 +17,8 @@ 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 + enabled: delegateModel.count > 0 onVisibleChanged: { popup.close() } @@ -30,14 +32,58 @@ ComboBox PropertyChanges { target: contentLabel; color: UM.Theme.getColor("setting_control_disabled_text")} }, State + { + name: "active" + when: control.activeFocus + PropertyChanges + { + target: background + borderColor: UM.Theme.getColor("text_field_border_active") + liningColor: UM.Theme.getColor("text_field_border_active") + } + }, + State { name: "highlighted" - when: control.hovered || control.activeFocus - PropertyChanges { target: background; liningColor: UM.Theme.getColor("border_main")} + when: (base.hovered || control.hovered) && !control.activeFocus + PropertyChanges + { + target: background + liningColor: UM.Theme.getColor("text_field_border_hovered") + } } ] - background: UM.UnderlineBackground{} + background: UM.UnderlineBackground + { + // Rectangle for highlighting when this combobox needs to pulse. + Rectangle + { + anchors.fill: parent + opacity: 0 + 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: 2 + PropertyAnimation + { + to: 1 + duration: 150 + } + PropertyAnimation + { + to: 0 + duration : 150 + } + } + } + } indicator: UM.ColorImage { @@ -131,7 +177,7 @@ ComboBox anchors.rightMargin: UM.Theme.getSize("setting_unit_margin").width text: delegateItem.text - textFormat: Text.PlainText + textFormat: control.textFormat color: UM.Theme.getColor("setting_control_text") elide: Text.ElideRight wrapMode: Text.NoWrap @@ -147,4 +193,9 @@ ComboBox text: delegateLabel.truncated ? delegateItem.text : "" } } + + function pulse() + { + pulseAnimation.restart(); + } } diff --git a/resources/qml/Widgets/Menu.qml b/resources/qml/Widgets/Menu.qml index b3cdfc6967..1a64b981fa 100644 --- a/resources/qml/Widgets/Menu.qml +++ b/resources/qml/Widgets/Menu.qml @@ -12,6 +12,7 @@ import Cura 1.0 as Cura UM.Menu { id: menu + Item { enabled: false; UM.I18nCatalog { id: catalog; name: "cura"} } topPadding: UM.Theme.getSize("narrow_margin").height bottomPadding: UM.Theme.getSize("narrow_margin").height padding: 0 diff --git a/resources/qml/Widgets/TextField.qml b/resources/qml/Widgets/TextField.qml index 5e19f65149..085c7b7742 100644 --- a/resources/qml/Widgets/TextField.qml +++ b/resources/qml/Widgets/TextField.qml @@ -23,6 +23,8 @@ TextField 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 @@ -42,10 +44,25 @@ TextField 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")} + when: control.hovered && !control.activeFocus + PropertyChanges + { + target: backgroundRectangle + liningColor: UM.Theme.getColor("text_field_border_hovered") + } } ] diff --git a/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg b/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg index 19c3a29ea4..9c3a44ccf7 100644 --- a/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg +++ b/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg @@ -29,7 +29,6 @@ jerk_travel = 10 layer_height = 0.3 layer_height_0 = 0.3 material_bed_temperature = 60 -material_diameter = 1.75 material_print_temperature = 200 material_print_temperature_layer_0 = 0 retract_at_layer_change = False diff --git a/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg b/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg index 3ef9c55229..c5711ade6b 100644 --- a/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg +++ b/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg @@ -29,7 +29,6 @@ jerk_travel = 10 layer_height = 0.1 layer_height_0 = 0.1 material_bed_temperature = 60 -material_diameter = 1.75 material_print_temperature = 200 material_print_temperature_layer_0 = 0 retract_at_layer_change = False diff --git a/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg b/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg index a257629d2d..0fd03b32d8 100644 --- a/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg +++ b/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg @@ -29,7 +29,6 @@ jerk_travel = 10 layer_height = 0.2 layer_height_0 = 0.2 material_bed_temperature = 60 -material_diameter = 1.75 material_print_temperature = 200 material_print_temperature_layer_0 = 0 retract_at_layer_change = False 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 ab04f9ffe6..599c26ab25 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 @@ -27,7 +27,6 @@ jerk_print = 8 jerk_travel = 10 layer_height = 0.3 layer_height_0 = 0.3 -material_diameter = 1.75 retract_at_layer_change = False retraction_amount = 6 retraction_hop = 0.075 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 46717264e5..a1ef55deb9 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 @@ -27,7 +27,6 @@ jerk_print = 8 jerk_travel = 10 layer_height = 0.1 layer_height_0 = 0.1 -material_diameter = 1.75 retract_at_layer_change = False retraction_amount = 6 retraction_hop = 0.075 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 4ad0ca937d..6546d07927 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 @@ -27,7 +27,6 @@ jerk_print = 8 jerk_travel = 10 layer_height = 0.2 layer_height_0 = 0.2 -material_diameter = 1.75 retract_at_layer_change = False retraction_amount = 6 retraction_hop = 0.075 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..7a2c9ac824 --- /dev/null +++ b/resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg @@ -0,0 +1,46 @@ +[general] +version = 4 +name = Suggested parameters for ABS_V1.0 +definition = anycubic_kobra + +[metadata] +setting_version = 20 +type = quality +quality_type = abs +weight = 0 +global_quality = True + +[values] +layer_height = 0.2 +acceleration_enabled = True +default_material_bed_temperature = 80 +jerk_enabled = True +layer_height_0 = 0.2 +acceleration_print = 800 +acceleration_travel = 3000 +acceleration_travel_layer_0 = 3000.0 +bottom_layers = 6 +brim_width = 7.0 +default_material_print_temperature = 230 +infill_overlap = 15 +infill_sparse_density = 20 +initial_layer_line_width_factor = 140 +jerk_print = 8 +jerk_travel = 10 +material_final_print_temperature = 230 +material_flow = 100 +material_flow_layer_0 = 120 +material_initial_print_temperature = 230 +optimize_wall_printing_order = True +inset_direction = outside_in +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 \ No newline at end of file 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..32ea58a93f --- /dev/null +++ b/resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg @@ -0,0 +1,41 @@ +[general] +version = 4 +name = Suggested parameters for PLA_V1.0 +definition = anycubic_kobra + +[metadata] +setting_version = 20 +type = quality +quality_type = pla +weight = -2 +global_quality = True + +[values] +layer_height = 0.2 +acceleration_enabled = True +jerk_enabled = True +layer_height_0 = 0.2 +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 +jerk_print = 8 +jerk_travel = 10 +material_final_print_temperature = 200 +material_initial_print_temperature = 200 +optimize_wall_printing_order = True +inset_direction = outside_in +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 \ No newline at end of file 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..432eeb4bb6 --- /dev/null +++ b/resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg @@ -0,0 +1,45 @@ +[general] +version = 4 +name = Suggested parameters for TPU_V1.0 +definition = anycubic_kobra + +[metadata] +setting_version = 20 +type = quality +quality_type = tpu +weight = 1 +global_quality = True + +[values] +layer_height = 0.2 +acceleration_enabled = True +jerk_enabled = True +layer_height_0 = 0.2 +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 +jerk_print = 8 +jerk_travel = 10 +material_final_print_temperature = 190 +material_flow = 90 +material_flow_layer_0 = 120 +material_initial_print_temperature = 190 +optimize_wall_printing_order = True +inset_direction = outside_in +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 \ No newline at end of file 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..d4434c6b79 --- /dev/null +++ b/resources/quality/anycubic_kobra_max/anycubic_kobra_max_pla.inst.cfg @@ -0,0 +1,53 @@ +[general] +version = 4 +name = Suggested parameters for PLA_V1.0 +definition = anycubic_kobra_max + +[metadata] +setting_version = 20 +type = quality +quality_type = pla +weight = -2 +global_quality = True + +[values] +layer_height = 0.2 +acceleration_enabled = True +jerk_enabled = True +layer_height_0 = 0.2 +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_print = 8 +jerk_travel = 10 +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 \ No newline at end of file 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..94ea7f8579 --- /dev/null +++ b/resources/quality/anycubic_kobra_max/anycubic_kobra_max_tpu.inst.cfg @@ -0,0 +1,54 @@ +[general] +version = 4 +name = Suggested parameters for TPU_V1.0 +definition = anycubic_kobra_max + +[metadata] +setting_version = 20 +type = quality +quality_type = tpu +weight = 1 +global_quality = True + +[values] +layer_height = 0.2 +acceleration_enabled = True +jerk_enabled = False +layer_height_0 = 0.3 +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_print = 8 +jerk_travel = 10 +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 \ No newline at end of file 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 002835dd20..3818d517dd 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg @@ -18,7 +18,6 @@ cool_fan_speed_0 = 0 layer_height = 0.10 layer_height_0 = 0.20 material_bed_temperature = 40 -material_diameter = 1.75 material_print_temperature = 210 material_print_temperature_layer_0 = 210 speed_infill = =speed_print 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 edb6e3e31b..83e2d52b87 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg @@ -18,7 +18,6 @@ cool_fan_speed_0 = 0 layer_height = 0.2 layer_height_0 = 0.3 material_bed_temperature = 40 -material_diameter = 1.75 material_print_temperature = 210 material_print_temperature_layer_0 = 210 speed_infill = =speed_print 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 e41b29f0fa..ea97a71051 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg @@ -18,7 +18,6 @@ cool_fan_speed_0 = 0 layer_height = 0.30 layer_height_0 = 0.40 material_bed_temperature = 40 -material_diameter = 1.75 material_print_temperature = 210 material_print_temperature_layer_0 = 210 speed_infill = =speed_print 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 dab9bed9c2..4f2c9f0074 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg @@ -18,7 +18,6 @@ cool_fan_speed_0 = 0 layer_height = 0.4 layer_height_0 = 0.4 material_bed_temperature = 40 -material_diameter = 1.75 material_print_temperature = 210 material_print_temperature_layer_0 = 210 speed_infill = =speed_print 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 new file mode 100644 index 0000000000..92a592c198 --- /dev/null +++ b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_draft.inst.cfg @@ -0,0 +1,39 @@ +[general] +version = 4 +name = Draft +definition = elegoo_neptune_2 + +[metadata] +setting_version = 20 +type = quality +quality_type = draft +weight = -2 +global_quality = True + +[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 +material_flow_layer_0 = 95 +retraction_amount = 6 +roofing_layer_count = 1 +skin_overlap = 15.0 +skirt_brim_speed = 25.0 +speed_layer_0 = 30.0 +speed_print = 60.0 +speed_travel_layer_0 = 125.0 +speed_wall_x = 50.0 +top_bottom_thickness = =layer_height_0+layer_height*3 +top_layers = =0 if infill_sparse_density == 100 else math.ceil(round(top_thickness / resolveOrValue('layer_height'), 4)) +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 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 new file mode 100644 index 0000000000..afaa645b3e --- /dev/null +++ b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_fine.inst.cfg @@ -0,0 +1,34 @@ +[general] +version = 4 +name = Fine +definition = elegoo_neptune_2 + +[metadata] +setting_version = 20 +type = quality +quality_type = fine +weight = 1 +global_quality = True + +[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 +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 +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 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 new file mode 100644 index 0000000000..bf9c8b8445 --- /dev/null +++ b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_normal.inst.cfg @@ -0,0 +1,42 @@ +[general] +version = 4 +name = Normal +definition = elegoo_neptune_2 + +[metadata] +setting_version = 20 +type = quality +quality_type = normal +weight = 0 +global_quality = True + +[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 +material_flow_layer_0 = 95 +retraction_amount = 6 +skin_angles = [90 ] +skin_line_width = =line_width +skin_monotonic = True +skin_outline_count = 0 +skin_overlap = 30.0 +skirt_brim_speed = 25.0 +speed_layer_0 = 25.0 +speed_travel_layer_0 = 125.0 +speed_wall_x = 50.0 +support_xy_distance = 0.2 +top_bottom_thickness = 1 +wall_0_inset = 0.2 +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 new file mode 100644 index 0000000000..0a5b076baa --- /dev/null +++ b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_draft.inst.cfg @@ -0,0 +1,39 @@ +[general] +version = 4 +name = Draft +definition = elegoo_neptune_2D + +[metadata] +setting_version = 20 +type = quality +quality_type = draft +weight = -2 +global_quality = True + +[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 +material_flow_layer_0 = 95 +retraction_amount = 6 +roofing_layer_count = 1 +skin_overlap = 15.0 +skirt_brim_speed = 25.0 +speed_layer_0 = 30.0 +speed_print = 60.0 +speed_travel_layer_0 = 125.0 +speed_wall_x = 50.0 +top_bottom_thickness = =layer_height_0+layer_height*3 +top_layers = =0 if infill_sparse_density == 100 else math.ceil(round(top_thickness / resolveOrValue('layer_height'), 4)) +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 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 new file mode 100644 index 0000000000..7fb24a1a41 --- /dev/null +++ b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_fine.inst.cfg @@ -0,0 +1,34 @@ +[general] +version = 4 +name = Fine +definition = elegoo_neptune_2D + +[metadata] +setting_version = 20 +type = quality +quality_type = fine +weight = 1 +global_quality = True + +[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 +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 +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 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 new file mode 100644 index 0000000000..2ed5c6ad76 --- /dev/null +++ b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_normal.inst.cfg @@ -0,0 +1,42 @@ +[general] +version = 4 +name = Normal +definition = elegoo_neptune_2D + +[metadata] +setting_version = 20 +type = quality +quality_type = normal +weight = 0 +global_quality = True + +[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 +material_flow_layer_0 = 95 +retraction_amount = 6 +skin_angles = [90 ] +skin_line_width = =line_width +skin_monotonic = True +skin_outline_count = 0 +skin_overlap = 30.0 +skirt_brim_speed = 25.0 +speed_layer_0 = 25.0 +speed_travel_layer_0 = 125.0 +speed_wall_x = 50.0 +support_xy_distance = 0.2 +top_bottom_thickness = 1 +wall_0_inset = 0.2 +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/flashforge/flashforge_global_0.08_ultra.inst.cfg b/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg index e6e793aa80..81ed7a0ba0 100644 --- a/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg @@ -18,7 +18,6 @@ cool_fan_speed_0 = 0 layer_height = 0.08 layer_height_0 = 0.12 material_bed_temperature = 40 -material_diameter = 1.75 material_print_temperature = 200 material_print_temperature_layer_0 = 0 speed_infill = =speed_print 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 146e31d5cb..3ad72e3715 100644 --- a/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg @@ -18,7 +18,6 @@ cool_fan_speed_0 = 0 layer_height = 0.12 layer_height_0 = 0.16 material_bed_temperature = 40 -material_diameter = 1.75 material_print_temperature = 200 material_print_temperature_layer_0 = 0 speed_infill = =speed_print 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 21feb76c9c..b3cbe28634 100644 --- a/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg @@ -19,7 +19,6 @@ cool_fan_speed_0 = 0 layer_height = 0.16 layer_height_0 = 0.2 material_bed_temperature = 40 -material_diameter = 1.75 material_print_temperature = 200 material_print_temperature_layer_0 = 0 speed_infill = =speed_print 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 eca48ef254..208e968b70 100644 --- a/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg @@ -18,7 +18,6 @@ cool_fan_speed_0 = 0 layer_height = 0.2 layer_height_0 = 0.28 material_bed_temperature = 40 -material_diameter = 1.75 material_print_temperature = 200 material_print_temperature_layer_0 = 0 speed_infill = =speed_print 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 c163be3079..d0d1a1d948 100644 --- a/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg @@ -18,7 +18,6 @@ cool_fan_speed_0 = 0 layer_height = 0.28 layer_height_0 = 0.32 material_bed_temperature = 40 -material_diameter = 1.75 material_print_temperature = 200 material_print_temperature_layer_0 = 0 speed_infill = =speed_print 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 810031de30..e9ada8ac1d 100644 --- a/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg @@ -18,7 +18,6 @@ cool_fan_speed_0 = 0 layer_height = 0.32 layer_height_0 = 0.32 material_bed_temperature = 40 -material_diameter = 1.75 material_print_temperature = 200 material_print_temperature_layer_0 = 0 speed_infill = =speed_print 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 0084e22df3..c1d8dc44fc 100644 --- a/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg @@ -18,7 +18,6 @@ cool_fan_speed_0 = 0 layer_height = 0.4 layer_height_0 = 0.4 material_bed_temperature = 40 -material_diameter = 1.75 material_print_temperature = 205 material_print_temperature_layer_0 = 0 speed_infill = =speed_print 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 c392a465ed..e0823eb167 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 @@ -18,7 +18,6 @@ cool_fan_speed_0 = 0 layer_height = 0.48 layer_height_0 = 0.48 material_bed_temperature = 40 -material_diameter = 1.75 material_print_temperature = 205 material_print_temperature_layer_0 = 0 speed_infill = =speed_print diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg index 062cfc1d80..91f7f39f67 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg @@ -30,7 +30,6 @@ retraction_combing = off retraction_amount = 0.75 retraction_speed = 70 material_flow = 98 -material_diameter = 1.75 support_use_towers = False support_z_distance = 0.2 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg index 4b4303a077..ab00a33d59 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg @@ -30,7 +30,6 @@ retraction_combing = off retraction_amount = 0.75 retraction_speed = 70 material_flow = 98 -material_diameter = 1.75 support_use_towers = False support_z_distance = 0.2 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg index de91aaf727..ffa7341558 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg @@ -30,7 +30,6 @@ retraction_combing = off retraction_amount = 0.75 retraction_speed = 70 material_flow = 98 -material_diameter = 1.75 support_use_towers = False support_z_distance = 0.2 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 192a9817ea..b748cf1e36 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg @@ -29,7 +29,6 @@ retraction_combing = off retraction_amount = 0.75 retraction_speed = 70 material_flow = 98 -material_diameter = 1.75 support_use_towers = False support_z_distance = 0.2 diff --git a/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg index 180764eb55..0bbaea9af4 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg @@ -30,7 +30,6 @@ retraction_combing = off retraction_amount = 0.75 retraction_speed = 70 material_flow = 98 -material_diameter = 1.75 support_use_towers = False support_z_distance = 0.2 diff --git a/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg index ac24f74668..23192818dc 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg @@ -30,7 +30,6 @@ retraction_combing = off retraction_amount = 0.75 retraction_speed = 70 material_flow = 98 -material_diameter = 1.75 support_use_towers = False support_z_distance = 0.2 diff --git a/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg index b6855418e3..f398920b06 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg @@ -30,7 +30,6 @@ retraction_combing = off retraction_amount = 0.75 retraction_speed = 70 material_flow = 98 -material_diameter = 1.75 support_use_towers = False support_z_distance = 0.2 diff --git a/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg index 3306fc9a0e..a9c33a1e4e 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg @@ -29,7 +29,6 @@ retraction_combing = off retraction_amount = 0.75 retraction_speed = 70 material_flow = 98 -material_diameter = 1.75 support_use_towers = False support_z_distance = 0.2 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.txt index 89f09b6a8c..89209e16f0 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.txt @@ -5,7 +5,7 @@ definition = jgaurora_a6 [metadata] quality_type = fast -setting_version = 19 +setting_version = 20 type = quality weight = -4 global_quality = true diff --git a/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg b/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg index 4db3722fd5..8265363e0c 100644 --- a/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg +++ b/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg @@ -11,7 +11,6 @@ weight = 3 material = generic_pla [values] -material_diameter = 1.75 speed_print = 40 speed_topbottom = 30 speed_wall_0 = 35 diff --git a/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg b/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg index 9332afe5cf..5e1666d0ed 100644 --- a/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg +++ b/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg @@ -11,7 +11,6 @@ weight = 2 material = generic_pla [values] -material_diameter = 1.75 speed_print = 40 speed_topbottom = 30 speed_wall_0 = 35 diff --git a/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg b/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg index ee48d1a52a..42bedfc8d6 100644 --- a/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg +++ b/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg @@ -11,7 +11,6 @@ weight = 3 material = generic_abs [values] -material_diameter = 1.75 speed_print = 40 speed_topbottom = 30 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 076e149c5d..0f25ab269e 100644 --- a/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg +++ b/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg @@ -11,7 +11,6 @@ weight = 3 material = generic_pla [values] -material_diameter = 1.75 speed_print = 40 speed_topbottom = 30 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 5b2ecfea2d..34a05fce25 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 @@ -24,7 +24,6 @@ speed_travel = 120 material_print_temperature = 246 material_bed_temperature = 85 -material_diameter = 1.75 retraction_speed = 50 retraction_amount = 1.5 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 2114981d6a..0cbe13fd52 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 @@ -24,7 +24,6 @@ speed_travel = 120 material_print_temperature = 246 material_bed_temperature = 85 -material_diameter = 1.75 retraction_speed = 50 retraction_amount = 1.5 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 90fba3ef90..fcf821ccee 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 @@ -24,7 +24,6 @@ speed_travel = 120 material_print_temperature = 246 material_bed_temperature = 85 -material_diameter = 1.75 retraction_speed = 50 retraction_amount = 1.5 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 bd4aea20c0..bb9af57335 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 @@ -24,7 +24,6 @@ speed_travel = 120 material_print_temperature = 246 material_bed_temperature = 85 -material_diameter = 1.75 retraction_speed = 50 retraction_amount = 1.5 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 766db78185..62c12a0bca 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 @@ -24,7 +24,6 @@ speed_travel = 120 material_print_temperature = 246 material_bed_temperature = 85 -material_diameter = 1.75 retraction_speed = 50 retraction_amount = 1.5 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 42eb5b99ee..b4ab881229 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 @@ -18,7 +18,6 @@ speed_print = 60 material_print_temperature = 214 material_bed_temperature = 60 -material_diameter = 1.75 retraction_speed = 40 retraction_amount = 2.15 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 97027aec41..430f0bd5a4 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 @@ -18,7 +18,6 @@ speed_print = 30 material_print_temperature = 214 material_bed_temperature = 60 -material_diameter = 1.75 retraction_speed = 40 retraction_amount = 2.15 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 236afa72f5..6632469324 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 @@ -18,7 +18,6 @@ speed_print = 40 material_print_temperature = 214 material_bed_temperature = 60 -material_diameter = 1.75 retraction_speed = 40 retraction_amount = 2.15 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 32f702aefc..afb3a001ef 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 @@ -18,7 +18,6 @@ speed_print = 60 material_print_temperature = 214 material_bed_temperature = 60 -material_diameter = 1.75 retraction_speed = 40 retraction_amount = 2.15 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 c2e73a7f55..deba2117ac 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 @@ -18,7 +18,6 @@ speed_print = 50 material_print_temperature = 214 material_bed_temperature = 60 -material_diameter = 1.75 retraction_speed = 40 retraction_amount = 2.15 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 2158c97087..c9cc625a5f 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 @@ -17,7 +17,6 @@ adhesion_type = raft speed_print = 60 material_print_temperature = 214 -material_diameter = 1.75 retraction_speed = 40 retraction_amount = 2.15 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 9ead21ac94..9aa8b6e2b2 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 @@ -23,7 +23,6 @@ speed_topbottom = =math.ceil(speed_print * 20 / 40) speed_travel = 120 material_print_temperature = 214 -material_diameter = 1.75 retraction_speed = 40 retraction_amount = 2.15 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 af8724fd5b..46014a9c23 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 @@ -23,7 +23,6 @@ speed_topbottom = =math.ceil(speed_print * 30 / 50) speed_travel = 120 material_print_temperature = 214 -material_diameter = 1.75 retraction_speed = 40 retraction_amount = 2.15 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 136d806ad7..09d49dac0d 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 @@ -17,7 +17,6 @@ adhesion_type = raft speed_print = 60 material_print_temperature = 214 -material_diameter = 1.75 retraction_speed = 40 retraction_amount = 2.15 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 69a538e569..9756d4e924 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 @@ -23,7 +23,6 @@ speed_topbottom = =math.ceil(speed_print * 20 / 60) speed_travel = 120 material_print_temperature = 214 -material_diameter = 1.75 retraction_speed = 40 retraction_amount = 2.15 diff --git a/resources/quality/key3d/key3d_tyro_best.inst.cfg b/resources/quality/key3d/key3d_tyro_best.inst.cfg index 1db47d045b..9a73786941 100644 --- a/resources/quality/key3d/key3d_tyro_best.inst.cfg +++ b/resources/quality/key3d/key3d_tyro_best.inst.cfg @@ -28,7 +28,6 @@ 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 @@ -46,7 +45,6 @@ gradual_infill_steps = 0 infill_before_walls = False infill_support_enabled = False max_skin_angle_for_expansion = 90 -material_diameter = 1.75 default_material_print_temperature = 220 material_print_temperature = 220 material_print_temperature_layer_0 = 220 diff --git a/resources/quality/key3d/key3d_tyro_fast.inst.cfg b/resources/quality/key3d/key3d_tyro_fast.inst.cfg index 84b2aaae45..bfc155c5cb 100644 --- a/resources/quality/key3d/key3d_tyro_fast.inst.cfg +++ b/resources/quality/key3d/key3d_tyro_fast.inst.cfg @@ -27,7 +27,6 @@ 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 @@ -45,7 +44,6 @@ gradual_infill_steps = 0 infill_before_walls = False infill_support_enabled = False max_skin_angle_for_expansion = 90 -material_diameter = 1.75 default_material_print_temperature = 220 material_print_temperature = 220 material_print_temperature_layer_0 = 220 diff --git a/resources/quality/key3d/key3d_tyro_normal.inst.cfg b/resources/quality/key3d/key3d_tyro_normal.inst.cfg index 6baba013ca..06293319d8 100644 --- a/resources/quality/key3d/key3d_tyro_normal.inst.cfg +++ b/resources/quality/key3d/key3d_tyro_normal.inst.cfg @@ -27,7 +27,6 @@ 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 @@ -45,7 +44,6 @@ gradual_infill_steps = 0 infill_before_walls = False infill_support_enabled = False max_skin_angle_for_expansion = 90 -material_diameter = 1.75 default_material_print_temperature = 220 material_print_temperature = 220 material_print_temperature_layer_0 = 220 diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg index 7342cef7e4..7ae006b606 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg @@ -29,7 +29,6 @@ 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 @@ -47,7 +46,6 @@ gradual_infill_steps = 0 infill_before_walls = False infill_support_enabled = False max_skin_angle_for_expansion = 90 -material_diameter = 1.75 default_material_print_temperature = 220 material_print_temperature = 220 material_print_temperature_layer_0 = 220 diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg index 69149fa0e6..2d6c3617bf 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg @@ -26,7 +26,6 @@ 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 @@ -44,7 +43,6 @@ gradual_infill_steps = 0 infill_before_walls = False infill_support_enabled = False max_skin_angle_for_expansion = 90 -material_diameter = 1.75 default_material_print_temperature = 220 material_print_temperature = 220 material_print_temperature_layer_0 = 220 diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg index 61f28d6aa7..aad794f91c 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg @@ -29,7 +29,6 @@ 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 @@ -47,7 +46,6 @@ gradual_infill_steps = 0 infill_before_walls = False infill_support_enabled = False max_skin_angle_for_expansion = 90 -material_diameter = 1.75 default_material_print_temperature = 220 material_print_temperature = 220 material_print_temperature_layer_0 = 220 diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg index 04232c3a94..c0aa59f1d0 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg @@ -28,7 +28,6 @@ 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 @@ -46,7 +45,6 @@ gradual_infill_steps = 0 infill_before_walls = False infill_support_enabled = False max_skin_angle_for_expansion = 90 -material_diameter = 1.75 default_material_print_temperature = 220 material_print_temperature = 220 material_print_temperature_layer_0 = 220 diff --git a/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg b/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg index d2605c3ea7..1e2b316efc 100644 --- a/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg +++ b/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg @@ -27,7 +27,6 @@ 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 @@ -45,7 +44,6 @@ gradual_infill_steps = 0 infill_before_walls = False infill_support_enabled = False max_skin_angle_for_expansion = 90 -material_diameter = 1.75 default_material_print_temperature = 220 material_print_temperature = 220 material_print_temperature_layer_0 = 220 diff --git a/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg b/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg index 8f1df0bc41..9fd4d77ed9 100644 --- a/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg +++ b/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg @@ -27,7 +27,6 @@ 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 @@ -45,7 +44,6 @@ gradual_infill_steps = 0 infill_before_walls = False infill_support_enabled = False max_skin_angle_for_expansion = 90 -material_diameter = 1.75 default_material_print_temperature = 220 material_print_temperature = 220 material_print_temperature_layer_0 = 220 diff --git a/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg b/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg index 0a0d834529..e1825dfd42 100644 --- a/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg +++ b/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg @@ -27,7 +27,6 @@ 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 @@ -45,7 +44,6 @@ gradual_infill_steps = 0 infill_before_walls = False infill_support_enabled = False max_skin_angle_for_expansion = 90 -material_diameter = 1.75 default_material_print_temperature = 220 material_print_temperature = 220 material_print_temperature_layer_0 = 220 diff --git a/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg b/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg index edd764aea6..f3576e3060 100644 --- a/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg +++ b/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg @@ -21,7 +21,6 @@ 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 diff --git a/resources/quality/snapmaker2/snapmaker2_high.inst.cfg b/resources/quality/snapmaker2/snapmaker2_high.inst.cfg index bdc140914e..a4ff9e9ad6 100644 --- a/resources/quality/snapmaker2/snapmaker2_high.inst.cfg +++ b/resources/quality/snapmaker2/snapmaker2_high.inst.cfg @@ -21,7 +21,6 @@ top_thickness = 0.8 top_layers = 10 bottom_thickness = 0.8 bottom_layers = 10 -inset_direction = inside_out skin_outline_count = 1 ; infill_line_distance = 8 diff --git a/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg b/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg index cd6c2c85bb..9221a7e15e 100644 --- a/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg +++ b/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg @@ -21,7 +21,6 @@ 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 diff --git a/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg b/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg index deb99ffe48..cfa4f9d8b8 100644 --- a/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg +++ b/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg @@ -14,7 +14,6 @@ global_quality = True brim_width = 4.0 infill_pattern = zigzag layer_height = 0.3 -material_diameter = 1.75 speed_infill = =speed_print speed_print = 50 speed_support = 30 diff --git a/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg b/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg index ca6d41c973..26591b50fe 100644 --- a/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg +++ b/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg @@ -14,7 +14,6 @@ global_quality = True brim_width = 4.0 infill_pattern = zigzag layer_height = 0.1 -material_diameter = 1.75 speed_infill = =speed_print speed_print = 50 speed_support = 30 diff --git a/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg b/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg index d11b9a58a3..7e0bd21d85 100644 --- a/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg +++ b/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg @@ -14,7 +14,6 @@ global_quality = True brim_width = 4.0 infill_pattern = zigzag layer_height = 0.2 -material_diameter = 1.75 speed_infill = =math.ceil(speed_print * 60 / 50) speed_print = 50 speed_support = 30 diff --git a/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg index da1163c3f9..40d417edfd 100644 --- a/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg @@ -29,7 +29,6 @@ jerk_travel = 10 layer_height = 0.3 layer_height_0 = 0.3 material_bed_temperature = 60 -material_diameter = 1.75 material_print_temperature = 200 material_print_temperature_layer_0 = 0 retract_at_layer_change = False diff --git a/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg b/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg index 2b7bb2ebc8..e25f53364f 100644 --- a/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg @@ -29,7 +29,6 @@ jerk_travel = 10 layer_height = 0.1 layer_height_0 = 0.1 material_bed_temperature = 60 -material_diameter = 1.75 material_print_temperature = 200 material_print_temperature_layer_0 = 0 retract_at_layer_change = False diff --git a/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg index ca507baf16..8190c8e93b 100644 --- a/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg @@ -29,7 +29,6 @@ jerk_travel = 10 layer_height = 0.2 layer_height_0 = 0.2 material_bed_temperature = 60 -material_diameter = 1.75 material_print_temperature = 200 material_print_temperature_layer_0 = 0 retract_at_layer_change = False diff --git a/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg index ad19e4c50a..4c2346e507 100644 --- a/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg @@ -29,7 +29,6 @@ jerk_travel = 10 layer_height = 0.3 layer_height_0 = 0.3 material_bed_temperature = 60 -material_diameter = 1.75 material_print_temperature = 200 material_print_temperature_layer_0 = 0 retract_at_layer_change = False diff --git a/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg b/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg index f3f4dea3c5..a8c2e0d7b4 100644 --- a/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg @@ -29,7 +29,6 @@ jerk_travel = 10 layer_height = 0.1 layer_height_0 = 0.1 material_bed_temperature = 60 -material_diameter = 1.75 material_print_temperature = 200 material_print_temperature_layer_0 = 0 retract_at_layer_change = False diff --git a/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg index 9ba66c6c22..e0de549db8 100644 --- a/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg @@ -29,7 +29,6 @@ jerk_travel = 10 layer_height = 0.2 layer_height_0 = 0.2 material_bed_temperature = 60 -material_diameter = 1.75 material_print_temperature = 200 material_print_temperature_layer_0 = 0 retract_at_layer_change = False diff --git a/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg index 6ac033a684..cf6c5a01fd 100644 --- a/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg @@ -29,7 +29,6 @@ jerk_travel = 10 layer_height = 0.3 layer_height_0 = 0.3 material_bed_temperature = 60 -material_diameter = 1.75 retract_at_layer_change = False retraction_amount = 6 retraction_hop = 0.075 diff --git a/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg b/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg index a0a56663e4..f458a2b6fb 100644 --- a/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg @@ -29,7 +29,6 @@ jerk_travel = 10 layer_height = 0.1 layer_height_0 = 0.1 material_bed_temperature = 60 -material_diameter = 1.75 retract_at_layer_change = False retraction_amount = 6 retraction_hop = 0.075 diff --git a/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg index bc74322971..21f06c3bff 100644 --- a/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg @@ -29,7 +29,6 @@ jerk_travel = 10 layer_height = 0.2 layer_height_0 = 0.2 material_bed_temperature = 60 -material_diameter = 1.75 retract_at_layer_change = False retraction_amount = 6 retraction_hop = 0.075 diff --git a/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg index 6335c5cad3..5bca9cd870 100644 --- a/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg @@ -29,7 +29,6 @@ jerk_travel = 10 layer_height = 0.3 layer_height_0 = 0.3 material_bed_temperature = 60 -material_diameter = 1.75 material_print_temperature = 200 material_print_temperature_layer_0 = 0 retract_at_layer_change = False diff --git a/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg b/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg index 4ed72ae3d2..bdf1717fe3 100644 --- a/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg @@ -29,7 +29,6 @@ jerk_travel = 10 layer_height = 0.1 layer_height_0 = 0.1 material_bed_temperature = 60 -material_diameter = 1.75 material_print_temperature = 200 material_print_temperature_layer_0 = 0 retract_at_layer_change = False diff --git a/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg index 28cc68e4fa..03a67f7f8b 100644 --- a/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg @@ -29,7 +29,6 @@ jerk_travel = 10 layer_height = 0.2 layer_height_0 = 0.2 material_bed_temperature = 60 -material_diameter = 1.75 material_print_temperature = 200 material_print_temperature_layer_0 = 0 retract_at_layer_change = False 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 d26b21fc9b..cf1620cf12 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 @@ -29,7 +29,6 @@ skirt_line_count = 2 skirt_gap = 2 fill_outline_gaps = True infill_sparse_density = 15 -material_diameter = 1.75 retraction_min_travel = 2 speed_print = 60 cool_fan_speed_0 = 10 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 b00e14ded7..dca9945e0e 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 @@ -29,7 +29,6 @@ skirt_line_count = 2 skirt_gap = 2 fill_outline_gaps = True infill_sparse_density = 15 -material_diameter = 1.75 retraction_min_travel = 2 speed_print = 60 cool_fan_speed_0 = 10 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 50327f88e4..6839760843 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 @@ -29,7 +29,6 @@ skirt_line_count = 2 skirt_gap = 2 fill_outline_gaps = True infill_sparse_density = 15 -material_diameter = 1.75 retraction_min_travel = 2 speed_print = 60 cool_fan_speed_0 = 10 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 32e7662fab..313fc8e774 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 @@ -29,7 +29,6 @@ skirt_line_count = 2 skirt_gap = 2 fill_outline_gaps = True infill_sparse_density = 15 -material_diameter = 1.75 retraction_min_travel = 2 speed_print = 60 cool_fan_speed_0 = 10 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 9a80e6ca12..22f6e52139 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 @@ -29,7 +29,6 @@ skirt_line_count = 2 skirt_gap = 2 fill_outline_gaps = True infill_sparse_density = 15 -material_diameter = 1.75 retraction_min_travel = 2 speed_print = 60 cool_fan_speed_0 = 10 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 9584558cfb..ab9ca9c82d 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 @@ -38,7 +38,6 @@ skirt_line_count = 2 skirt_gap = 2 fill_outline_gaps = True infill_sparse_density = 15 -material_diameter = 1.75 retraction_min_travel = 2 speed_print = 60 cool_fan_speed_0 = 10 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 29eb1578a9..5ffc19f532 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 @@ -38,7 +38,6 @@ skirt_line_count = 2 skirt_gap = 2 fill_outline_gaps = True infill_sparse_density = 15 -material_diameter = 1.75 retraction_min_travel = 2 speed_print = 60 cool_fan_speed_0 = 10 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 a62da2750b..1368427a4a 100644 --- a/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg @@ -25,7 +25,6 @@ skirt_line_count = 2 skirt_gap = 2 fill_outline_gaps = True infill_sparse_density = 15 -material_diameter = 1.75 retraction_min_travel = 2 speed_print = 60 cool_fan_speed_0 = 10 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 cecdee1b31..199ebb5393 100644 --- a/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg @@ -25,7 +25,6 @@ skirt_line_count = 2 skirt_gap = 2 fill_outline_gaps = True infill_sparse_density = 15 -material_diameter = 1.75 retraction_min_travel = 2 speed_print = 60 cool_fan_speed_0 = 10 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 2da6d6f268..881571c5a3 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 @@ -34,7 +34,5 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 25) speed_wall_x = =speed_print support_angle = 45 support_enable = True -support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20 -support_pattern = lines 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 4d3b26ea1b..627eb26587 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 @@ -34,7 +34,5 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 35) speed_wall_x = =math.ceil(speed_print * 30 / 35) support_angle = 45 support_enable = True -support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20 -support_pattern = lines 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 227c240afd..afb26d0ddb 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 @@ -37,9 +37,5 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 25) speed_wall_x = =speed_print support_angle = 45 support_enable = True -support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20 -support_line_distance = 2.85 -support_pattern = lines -support_xy_distance = 0.6 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 ee37b1b06d..cb9ade1813 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 @@ -37,9 +37,5 @@ speed_wall_0 = =math.ceil(speed_print * 30 / 35) speed_wall_x = =speed_print support_angle = 45 support_enable = True -support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20 -support_line_distance = 2.85 -support_pattern = lines -support_xy_distance = 0.6 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 f5dad76106..431e39c85f 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 @@ -34,7 +34,5 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 25) speed_wall_x = =speed_print support_angle = 45 support_enable = True -support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20 -support_pattern = lines 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 80cf678eec..f0a60e8af3 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 @@ -34,7 +34,5 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 30) speed_wall_x = =speed_print support_angle = 45 support_enable = True -support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20 -support_pattern = lines support_z_distance = 0.26 top_bottom_thickness = 1.2 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 7dd4b05815..404023db87 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 @@ -35,9 +35,6 @@ speed_travel = 150 speed_wall_0 = =math.ceil(speed_print * 20 / 40) speed_wall_x = =speed_print support_enable = True -support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20 -support_pattern = lines -support_xy_distance = 0.6 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 a5bb37170d..2f77288341 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 @@ -35,8 +35,5 @@ speed_travel = 150 speed_wall_0 = =math.ceil(speed_print * 20 / 40) speed_wall_x = =speed_print support_enable = True -support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20 -support_pattern = lines -support_xy_distance = 0.6 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 bfc47e4f5f..71f03adfd9 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 @@ -34,9 +34,6 @@ speed_travel = 150 speed_wall = =math.ceil(speed_print * 40 / 45) support_angle = 45 support_enable = True -support_infill_rate = =25 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 25 -support_pattern = lines -support_xy_distance = 0.6 support_z_distance = =layer_height * 2 top_bottom_thickness = 0.75 speed_wall_0 = =math.ceil(speed_print * 30 / 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 42addc29bd..bd2372dc16 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 @@ -33,8 +33,5 @@ speed_travel = 150 speed_wall = =math.ceil(speed_print * 40 / 45) support_angle = 45 support_enable = True -support_infill_rate = =25 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 25 -support_pattern = lines -support_xy_distance = 0.6 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 1fb5911d16..cd5a66151d 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 @@ -36,12 +36,7 @@ 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.55 support_enable = True -support_infill_rate = =25 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 25 -support_pattern = lines -support_top_distance = 0.55 -support_xy_distance = 0.7 -support_z_distance = =layer_height * 2 +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 74180d9791..7c03a0faeb 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 @@ -37,8 +37,5 @@ speed_wall_0 = =math.ceil(speed_print * 15 / 55) speed_wall_x = =math.ceil(speed_print * 40 / 55) support_angle = 45 support_enable = True -support_infill_rate = =25 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 25 -support_pattern = lines -support_xy_distance = 0.7 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 0be55d9e2b..9f4c534c86 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 @@ -35,11 +35,7 @@ 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_infill_rate = =25 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 25 -support_pattern = lines -support_top_distance = 0.5 -support_xy_distance = 0.75 -support_z_distance = =layer_height * 2 +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 1d227f650e..1239c43800 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 @@ -37,9 +37,6 @@ speed_wall_x = =math.ceil(speed_print * 40 / 55) support_angle = 45 support_bottom_distance = 0.65 support_enable = True -support_infill_rate = =25 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 25 -support_pattern = lines support_top_distance = 0.5 -support_xy_distance = 0.75 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 5674640f4a..a3e95a3a88 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 @@ -31,8 +31,6 @@ raft_surface_line_width = 0.2 speed_layer_0 = =round(speed_print * 30 / 30) speed_print = 30 support_enable = True -support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20 -support_pattern = lines 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 e41af8beeb..e81cece3d1 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 @@ -31,6 +31,4 @@ raft_surface_line_width = 0.2 speed_layer_0 = =round(speed_print * 30 / 30) speed_print = 30 support_enable = True -support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20 -support_pattern = lines 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 e37f944031..bca94eb325 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 @@ -32,8 +32,6 @@ 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_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20 -support_pattern = lines 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 440020c134..7d8f4f7f74 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 @@ -32,6 +32,4 @@ 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_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20 -support_pattern = lines 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 4ca0ffd2b3..2c3c3172ac 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 @@ -36,9 +36,6 @@ 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_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20 -support_line_distance = 3.5333 -support_pattern = lines 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 e08e0577d0..80967c9543 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 @@ -36,8 +36,5 @@ 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_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20 -support_line_distance = 3.5333 -support_pattern = lines 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 0c394bd688..952265384c 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 @@ -31,7 +31,5 @@ speed_layer_0 = =round(speed_print * 30 / 40) speed_print = 40 support_angle = 45 support_enable = True -support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20 -support_pattern = lines 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 f3a995345f..c082f75d52 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 @@ -31,7 +31,5 @@ speed_layer_0 = =round(speed_print * 30 / 40) speed_print = 40 support_angle = 45 support_enable = True -support_infill_rate = =20 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 20 -support_pattern = lines 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 56320f0b73..f16b0747ab 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 @@ -39,8 +39,7 @@ 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 = 12 -retraction_extrusion_window = 1 +retraction_count_max = 15 retraction_hop = 0.15 retraction_hop_enabled = True retraction_hop_only_when_collides = True @@ -57,11 +56,8 @@ 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_bottom_distance = =support_z_distance / 2 -support_top_distance = =support_z_distance -support_xy_distance = =wall_line_width_0 * 2.5 -support_xy_distance_overhang = =wall_line_width_0 support_z_distance = =layer_height * 2 +support_bottom_distance = =support_z_distance / 2 travel_avoid_distance = 3 wall_0_inset = 0 speed_wall_x = =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 5e84e3f167..855f5c2288 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 @@ -29,18 +29,8 @@ 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 = 12 -retraction_extrusion_window = 1 +retraction_count_max = 15 retraction_hop = 0.15 retraction_hop_enabled = True retraction_hop_only_when_collides = True @@ -57,10 +47,7 @@ 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_bottom_distance = =support_z_distance / 2 -support_top_distance = =support_z_distance -support_xy_distance = =wall_line_width_0 * 2.5 -support_xy_distance_overhang = =wall_line_width_0 support_z_distance = =layer_height * 2 +support_bottom_distance = =support_z_distance / 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 10cbfab427..aa17d74a70 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 @@ -29,18 +29,8 @@ 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 = 12 -retraction_extrusion_window = 1 +retraction_count_max = 15 retraction_hop = 0.15 retraction_hop_enabled = True retraction_hop_only_when_collides = True @@ -56,11 +46,8 @@ 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_bottom_distance = =support_z_distance / 2 -support_top_distance = =support_z_distance -support_xy_distance = =wall_line_width_0 * 2.5 -support_xy_distance_overhang = =wall_line_width_0 support_z_distance = =layer_height * 2 +support_bottom_distance = =support_z_distance / 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 161ca2e079..f3a1ea0e98 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 @@ -39,8 +39,7 @@ 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 = 12 -retraction_extrusion_window = 1 +retraction_count_max = 15 retraction_hop = 0.15 retraction_hop_enabled = True retraction_hop_only_when_collides = True @@ -56,11 +55,8 @@ 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_bottom_distance = =support_z_distance / 2 -support_top_distance = =support_z_distance -support_xy_distance = =wall_line_width_0 * 2.5 -support_xy_distance_overhang = =wall_line_width_0 support_z_distance = =layer_height * 2 +support_bottom_distance = =support_z_distance / 2 top_bottom_thickness = 1.1 travel_avoid_distance = 3 wall_0_inset = 0 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 e88b527308..8a1fbc5a07 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 @@ -29,18 +29,8 @@ 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 = 12 -retraction_extrusion_window = 1 +retraction_count_max = 15 retraction_hop = 0.15 retraction_hop_enabled = True retraction_hop_only_when_collides = True @@ -56,11 +46,8 @@ 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_bottom_distance = =support_z_distance / 2 -support_top_distance = =support_z_distance -support_xy_distance = =wall_line_width_0 * 2.5 -support_xy_distance_overhang = =wall_line_width_0 support_z_distance = =layer_height * 2 +support_bottom_distance = =support_z_distance / 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 36d599faf3..b902d16032 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 @@ -39,8 +39,7 @@ 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 = 12 -retraction_extrusion_window = 1 +retraction_count_max = 15 retraction_hop = 0.15 retraction_hop_enabled = True retraction_hop_only_when_collides = True @@ -56,11 +55,8 @@ 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_bottom_distance = =support_z_distance / 2 -support_top_distance = =support_z_distance -support_xy_distance = =wall_line_width_0 * 2.5 -support_xy_distance_overhang = =wall_line_width_0 support_z_distance = =layer_height * 2 +support_bottom_distance = =support_z_distance / 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 87784fa7cf..e8fcf8b392 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 @@ -25,6 +25,7 @@ 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_print = 40 @@ -35,8 +36,6 @@ speed_wall_0 = =math.ceil(speed_print * 15 / 40) speed_wall_x = =math.ceil(speed_print * 38 / 40) support_angle = 45 support_enable = True -support_infill_rate = =25 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 25 -support_xy_distance = 0.6 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 c49f135c87..3a4c443011 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 @@ -23,6 +23,7 @@ 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 @@ -33,7 +34,5 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 40) speed_wall_x = =math.ceil(speed_print * 35 / 40) support_angle = 45 support_enable = True -support_infill_rate = =25 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 25 -support_xy_distance = 0.65 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 3231fc1cef..7381cddcfc 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 @@ -26,6 +26,7 @@ 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_print = 45 @@ -36,8 +37,6 @@ speed_wall_0 = =math.ceil(speed_print * 15 / 45) speed_wall_x = =math.ceil(speed_print * 40 / 45) support_angle = 45 support_enable = True -support_infill_rate = =25 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 25 -support_xy_distance = 0.7 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_cpep_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg index b3c245146d..076caebf21 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 @@ -35,7 +35,5 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 25) speed_wall_x = =speed_print support_angle = 45 support_enable = True -support_infill_rate = =0 if support_enable and support_structure == 'tree' else 20 -support_pattern = lines 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 3b2b1651c7..eb2eb45552 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 @@ -35,7 +35,5 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 35) speed_wall_x = =math.ceil(speed_print * 30 / 35) support_angle = 45 support_enable = True -support_infill_rate = =0 if support_enable and support_structure == 'tree' else 20 -support_pattern = lines 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 8cb20a1905..255979e3a6 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 @@ -37,9 +37,5 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 25) speed_wall_x = =speed_print support_angle = 45 support_enable = True -support_infill_rate = =0 if support_enable and support_structure == 'tree' else 20 -support_line_distance = 2.85 -support_pattern = lines -support_xy_distance = 0.6 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 712fe966a1..88eda6c8ec 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 @@ -37,9 +37,5 @@ speed_wall_0 = =math.ceil(speed_print * 30 / 35) speed_wall_x = =speed_print support_angle = 45 support_enable = True -support_infill_rate = =0 if support_enable and support_structure == 'tree' else 20 -support_line_distance = 2.85 -support_pattern = lines -support_xy_distance = 0.6 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 24d7ba3435..9d7a3851d8 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 @@ -33,8 +33,6 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 25) speed_wall_x = =speed_print support_angle = 45 support_enable = True -support_infill_rate = =0 if support_enable and support_structure == 'tree' else 20 -support_pattern = lines 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 2e23cfa5c6..4801f03a05 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 @@ -33,8 +33,6 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 30) speed_wall_x = =speed_print support_angle = 45 support_enable = True -support_infill_rate = =0 if support_enable and support_structure == 'tree' else 20 -support_pattern = lines support_z_distance = 0.26 top_bottom_thickness = 1.2 retraction_combing_max_distance = 50 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 7f1be7c53c..f08257d7d6 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 @@ -34,9 +34,6 @@ speed_travel = 150 speed_wall_0 = =math.ceil(speed_print * 20 / 40) speed_wall_x = =speed_print support_enable = True -support_infill_rate = =0 if support_enable and support_structure == 'tree' else 20 -support_pattern = lines -support_xy_distance = 0.6 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 27d4cd0876..ab17f0589d 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 @@ -34,8 +34,5 @@ speed_travel = 150 speed_wall_0 = =math.ceil(speed_print * 20 / 40) speed_wall_x = =speed_print support_enable = True -support_infill_rate = =0 if support_enable and support_structure == 'tree' else 20 -support_pattern = lines -support_xy_distance = 0.6 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 2a5a24d792..d23859a47f 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 @@ -34,9 +34,6 @@ speed_travel = 150 speed_wall = =math.ceil(speed_print * 40 / 45) support_angle = 45 support_enable = True -support_infill_rate = =0 if support_enable and support_structure == 'tree' else 25 -support_pattern = lines -support_xy_distance = 0.6 support_z_distance = =layer_height * 2 top_bottom_thickness = 0.75 speed_wall_0 = =math.ceil(speed_print * 30 / 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 551a9193de..e5d05294f2 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 @@ -33,8 +33,5 @@ speed_travel = 150 speed_wall = =math.ceil(speed_print * 40 / 45) support_angle = 45 support_enable = True -support_infill_rate = =0 if support_enable and support_structure == 'tree' else 25 -support_pattern = lines -support_xy_distance = 0.6 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 2f1a81e06d..59834b551d 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 @@ -36,12 +36,7 @@ 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.55 support_enable = True -support_infill_rate = =0 if support_enable and support_structure == 'tree' else 25 -support_pattern = lines -support_top_distance = 0.55 -support_xy_distance = 0.7 -support_z_distance = =layer_height * 2 +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 0523c4ec2e..25480e1e7d 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 @@ -37,8 +37,5 @@ speed_wall_0 = =math.ceil(speed_print * 15 / 55) speed_wall_x = =math.ceil(speed_print * 40 / 55) support_angle = 45 support_enable = True -support_infill_rate = =0 if support_enable and support_structure == 'tree' else 25 -support_pattern = lines -support_xy_distance = 0.7 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 d8a8945550..ee0a2bd2a5 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 @@ -34,11 +34,7 @@ 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_infill_rate = =0 if support_enable and support_structure == 'tree' else 25 -support_pattern = lines -support_top_distance = 0.5 -support_xy_distance = 0.75 -support_z_distance = =layer_height * 2 +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 bec740338f..9ac5d56bd7 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 @@ -36,9 +36,6 @@ speed_wall_x = =math.ceil(speed_print * 40 / 55) support_angle = 45 support_bottom_distance = 0.65 support_enable = True -support_infill_rate = =0 if support_enable and support_structure == 'tree' else 25 -support_pattern = lines support_top_distance = 0.5 -support_xy_distance = 0.75 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 9688da7046..4898c72327 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 @@ -30,7 +30,5 @@ raft_surface_line_width = 0.2 speed_layer_0 = =round(speed_print * 30 / 30) speed_print = 30 support_enable = True -support_infill_rate = =0 if support_enable and support_structure == 'tree' else 20 -support_pattern = lines 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 a905fd96d2..2d159792c9 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 @@ -30,6 +30,4 @@ raft_surface_line_width = 0.2 speed_layer_0 = =round(speed_print * 30 / 30) speed_print = 30 support_enable = True -support_infill_rate = =0 if support_enable and support_structure == 'tree' else 20 -support_pattern = lines 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 970ff5f134..86a965d441 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 @@ -31,8 +31,6 @@ 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_infill_rate = =0 if support_enable and support_structure == 'tree' else 20 -support_pattern = lines 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 0066aa16b4..b782ea63d4 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 @@ -31,6 +31,4 @@ 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_infill_rate = =0 if support_enable and support_structure == 'tree' else 20 -support_pattern = lines 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 2438f341df..739d72072f 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 @@ -35,9 +35,6 @@ 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_infill_rate = =0 if support_enable and support_structure == 'tree' else 20 -support_line_distance = 3.5333 -support_pattern = lines 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 3a139dc3cb..d95596953e 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 @@ -35,8 +35,5 @@ 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_infill_rate = =0 if support_enable and support_structure == 'tree' else 20 -support_line_distance = 3.5333 -support_pattern = lines 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 4cf4438216..751696ca93 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 @@ -30,7 +30,5 @@ speed_layer_0 = =round(speed_print * 30 / 40) speed_print = 40 support_angle = 45 support_enable = True -support_infill_rate = =0 if support_structure == 'tree' else 20 -support_pattern = lines support_z_distance = 0.26 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 70aecc029f..fc24da0222 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 @@ -29,18 +29,8 @@ 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 = 12 -retraction_extrusion_window = 1 +retraction_count_max = 15 retraction_hop = 0.15 retraction_hop_enabled = True retraction_hop_only_when_collides = True @@ -56,11 +46,8 @@ 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_bottom_distance = =support_z_distance / 2 -support_top_distance = =support_z_distance -support_xy_distance = =wall_line_width_0 * 2.5 -support_xy_distance_overhang = =wall_line_width_0 support_z_distance = =layer_height * 2 +support_bottom_distance = =support_z_distance / 2 travel_avoid_distance = 3 wall_0_inset = 0 speed_wall_x = =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 8b28161b09..dde91c441c 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 @@ -29,18 +29,8 @@ 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 = 12 -retraction_extrusion_window = 1 +retraction_count_max = 15 retraction_hop = 0.15 retraction_hop_enabled = True retraction_hop_only_when_collides = True @@ -56,10 +46,7 @@ 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_bottom_distance = =support_z_distance / 2 -support_top_distance = =support_z_distance -support_xy_distance = =wall_line_width_0 * 2.5 -support_xy_distance_overhang = =wall_line_width_0 support_z_distance = =layer_height * 2 +support_bottom_distance = =support_z_distance / 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 b1d7adfd0b..1b3024f709 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 @@ -29,18 +29,8 @@ 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 = 12 -retraction_extrusion_window = 1 +retraction_count_max = 15 retraction_hop = 0.15 retraction_hop_enabled = True retraction_hop_only_when_collides = True @@ -55,11 +45,8 @@ 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_bottom_distance = =support_z_distance / 2 -support_top_distance = =support_z_distance -support_xy_distance = =wall_line_width_0 * 2.5 -support_xy_distance_overhang = =wall_line_width_0 support_z_distance = =layer_height * 2 +support_bottom_distance = =support_z_distance / 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 a64996c8f0..6784ae2adb 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 @@ -29,18 +29,8 @@ 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 = 12 -retraction_extrusion_window = 1 +retraction_count_max = 15 retraction_hop = 0.15 retraction_hop_enabled = True retraction_hop_only_when_collides = True @@ -55,11 +45,8 @@ 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_bottom_distance = =support_z_distance / 2 -support_top_distance = =support_z_distance -support_xy_distance = =wall_line_width_0 * 2.5 -support_xy_distance_overhang = =wall_line_width_0 support_z_distance = =layer_height * 2 +support_bottom_distance = =support_z_distance / 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.8_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg index f3dd14c276..bb5876dcd6 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 @@ -39,8 +39,7 @@ 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 = 12 -retraction_extrusion_window = 1 +retraction_count_max = 15 retraction_hop = 0.15 retraction_hop_enabled = True retraction_hop_only_when_collides = True @@ -58,8 +57,6 @@ speed_wall_0 = =math.ceil(speed_wall * 20 / 25) support_angle = 60 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance -support_xy_distance = =wall_line_width_0 * 2.5 -support_xy_distance_overhang = =wall_line_width_0 support_z_distance = =layer_height * 2 top_bottom_thickness = 1.5 travel_avoid_distance = 3 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 232d74d602..bb55a80ba8 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 @@ -29,18 +29,8 @@ 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 = 12 -retraction_extrusion_window = 1 +retraction_count_max = 15 retraction_hop = 0.15 retraction_hop_enabled = True retraction_hop_only_when_collides = True @@ -58,8 +48,6 @@ speed_wall_0 = =math.ceil(speed_wall * 20 / 25) support_angle = 60 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance -support_xy_distance = =wall_line_width_0 * 2.5 -support_xy_distance_overhang = =wall_line_width_0 support_z_distance = =layer_height * 2 top_bottom_thickness = 1.5 travel_avoid_distance = 3 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 4371dcf524..42c185a769 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 @@ -25,6 +25,7 @@ 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_print = 40 @@ -35,8 +36,6 @@ speed_wall_0 = =math.ceil(speed_print * 15 / 40) speed_wall_x = =math.ceil(speed_print * 38 / 40) support_angle = 45 support_enable = True -support_infill_rate = =0 if support_enable and support_structure == 'tree' else 25 -support_xy_distance = 0.6 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 ecd8c76a50..acf28f2ad3 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 @@ -23,6 +23,7 @@ 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 @@ -33,7 +34,5 @@ speed_wall_0 = =math.ceil(speed_print * 20 / 40) speed_wall_x = =math.ceil(speed_print * 35 / 40) support_angle = 45 support_enable = True -support_infill_rate = =0 if support_enable and support_structure == 'tree' else 25 -support_xy_distance = 0.65 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 14844dc216..db3a812f97 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 @@ -26,6 +26,7 @@ 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_print = 45 @@ -36,8 +37,6 @@ speed_wall_0 = =math.ceil(speed_print * 15 / 45) speed_wall_x = =math.ceil(speed_print * 40 / 45) support_angle = 45 support_enable = True -support_infill_rate = =0 if support_structure == 'tree' else 25 -support_xy_distance = 0.7 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_CPE_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg index c63858f825..a24b18563d 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 @@ -12,7 +12,6 @@ material = generic_cpe variant = AA 0.25 [values] -retraction_extrusion_window = 0.5 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_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg index c17554a0cc..e4af6a3846 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 @@ -21,7 +21,6 @@ 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 @@ -30,7 +29,6 @@ prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 raft_interface_thickness = =max(layer_height * 1.5, 0.225) -retraction_count_max = 80 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 @@ -42,9 +40,7 @@ speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_travel = 250 speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 25 / 40) -support_bottom_distance = =support_z_distance support_interface_density = 87.5 -support_interface_pattern = lines switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 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 36a3e23c27..ce7087bf3a 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 @@ -12,7 +12,6 @@ material = generic_petg variant = AA 0.25 [values] -retraction_extrusion_window = 0.5 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_PP_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg index 77af8bae1e..f26fcd025f 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 @@ -31,9 +31,8 @@ multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_size = 16 prime_tower_wipe_enabled = True -retraction_count_max = 45 +retraction_count_max = 15 retraction_extra_prime_amount = 0.2 -retraction_extrusion_window = 6.5 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 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 544dd606cc..c2117937ef 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 @@ -29,11 +29,6 @@ top_bottom_thickness = 1 support_brim_enable = True support_interface_enable = True support_interface_density = =min(extruderValues('material_surface_energy')) -support_interface_pattern = ='lines' if support_interface_density < 100 else 'concentric' 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_join_distance = 5 -support_offset = 2 -support_pattern = triangles -support_infill_rate = =10 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 10 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 03888d299d..fd8f22a3fe 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 @@ -12,6 +12,7 @@ material = generic_bam variant = AA 0.4 [values] +support_infill_sparse_thickness = =2*layer_height brim_replaces_support = False cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =cool_fan_speed @@ -28,11 +29,6 @@ top_bottom_thickness = 1 support_brim_enable = True support_interface_enable = True support_interface_density = =min(extruderValues('material_surface_energy')) -support_interface_pattern = ='lines' if support_interface_density < 100 else 'concentric' 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_join_distance = 5 -support_offset = 2 -support_pattern = triangles -support_infill_rate = =10 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 10 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 38f4253ab8..0723122770 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 @@ -12,25 +12,20 @@ material = generic_bam variant = AA 0.4 [values] +support_infill_sparse_thickness = =2*layer_height 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_interface_pattern = ='lines' if support_interface_density < 100 else 'concentric' 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_join_distance = 5 -support_offset = 2 -support_pattern = triangles -support_infill_rate = =10 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 10 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 f2b4caf168..7a69d14931 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 @@ -17,7 +17,6 @@ cool_min_speed = 5 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 @@ -29,7 +28,6 @@ material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_enable = True prime_tower_wipe_enabled = True -retraction_extrusion_window = 1 retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True @@ -40,6 +38,5 @@ speed_topbottom = =math.ceil(speed_print * 40 / 50) speed_travel = 250 speed_wall = =math.ceil(speed_print * 50 / 50) speed_wall_0 = =math.ceil(speed_wall * 40 / 50) -support_bottom_distance = =support_z_distance 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 addd4790db..e7b6c725dd 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 @@ -17,7 +17,6 @@ cool_min_speed = 6 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.15 machine_min_cool_heat_time_window = 15 @@ -29,7 +28,6 @@ material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_enable = True prime_tower_wipe_enabled = True -retraction_extrusion_window = 1 retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True @@ -40,6 +38,5 @@ speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_travel = 250 speed_wall = =math.ceil(speed_print * 45 / 45) speed_wall_0 = =math.ceil(speed_wall * 35 / 45) -support_bottom_distance = =support_z_distance 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 3c1baa8640..fb2e0330ef 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 @@ -17,7 +17,6 @@ cool_min_speed = 5 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.06 machine_min_cool_heat_time_window = 15 @@ -31,7 +30,6 @@ material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_enable = True prime_tower_wipe_enabled = True -retraction_extrusion_window = 1 retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True @@ -42,6 +40,5 @@ speed_topbottom = =math.ceil(speed_print * 30 / 35) speed_travel = 250 speed_wall = =math.ceil(speed_print * 35 / 40) speed_wall_0 = =math.ceil(speed_wall * 30 / 35) -support_bottom_distance = =support_z_distance 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 e0c239c536..074270e0ec 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 @@ -17,7 +17,6 @@ cool_min_speed = 7 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 -jerk_enabled = True jerk_print = 25 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 @@ -30,7 +29,6 @@ material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_enable = True prime_tower_wipe_enabled = True -retraction_extrusion_window = 1 retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True @@ -41,6 +39,5 @@ speed_topbottom = =math.ceil(speed_print * 30 / 35) speed_travel = 250 speed_wall = =math.ceil(speed_print * 35 / 40) speed_wall_0 = =math.ceil(speed_wall * 30 / 35) -support_bottom_distance = =support_z_distance support_z_distance = =layer_height wall_0_inset = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg index f33132ee5b..df4ea5ffab 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 @@ -23,7 +23,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 layer_height = 0.2 machine_min_cool_heat_time_window = 15 @@ -39,8 +38,6 @@ prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 raft_interface_thickness = =max(layer_height * 1.5, 0.225) -retraction_count_max = 80 -retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 @@ -52,9 +49,7 @@ speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_travel = 250 speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 25 / 40) -support_bottom_distance = =support_z_distance support_interface_density = 87.5 -support_interface_pattern = lines switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 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 8c02c9c816..5d01ce5f28 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 @@ -21,7 +21,6 @@ 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_enabled = True jerk_print = 25 layer_height = 0.15 machine_min_cool_heat_time_window = 15 @@ -37,8 +36,6 @@ prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 raft_interface_thickness = =max(layer_height * 1.5, 0.225) -retraction_count_max = 80 -retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 @@ -50,9 +47,7 @@ speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_travel = 250 speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 25 / 40) -support_bottom_distance = =support_z_distance support_interface_density = 87.5 -support_interface_pattern = lines switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 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 4ff801f4fa..dd6b9063b9 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 @@ -23,7 +23,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 layer_height = 0.06 machine_min_cool_heat_time_window = 15 @@ -39,8 +38,6 @@ prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 raft_interface_thickness = =max(layer_height * 1.5, 0.225) -retraction_count_max = 80 -retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 @@ -52,9 +49,7 @@ speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_travel = 250 speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 25 / 40) -support_bottom_distance = =support_z_distance support_interface_density = 87.5 -support_interface_pattern = lines switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 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 180d96011d..7bed5ac6d2 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 @@ -22,7 +22,6 @@ 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 @@ -36,8 +35,6 @@ prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 raft_interface_thickness = =max(layer_height * 1.5, 0.225) -retraction_count_max = 80 -retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 @@ -49,9 +46,7 @@ speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_travel = 250 speed_wall = =math.ceil(speed_print * 40 / 50) speed_wall_0 = =math.ceil(speed_wall * 25 / 40) -support_bottom_distance = =support_z_distance support_interface_density = 87.5 -support_interface_pattern = lines switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 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 5a49c5d95f..c151870622 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 @@ -38,9 +38,8 @@ prime_tower_enable = False prime_tower_size = 16 prime_tower_wipe_enabled = True retraction_amount = 6.5 -retraction_count_max = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.8 -retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 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 1da161a2fb..7e21bec438 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 @@ -37,9 +37,8 @@ multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_size = 16 prime_tower_wipe_enabled = True -retraction_count_max = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.8 -retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 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 52aadd5b2d..c47bfb3c18 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 @@ -21,7 +21,6 @@ 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 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 @@ -36,9 +35,8 @@ multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_size = 16 prime_tower_wipe_enabled = True -retraction_count_max = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.8 -retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 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 e20587931f..227b16db92 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 @@ -16,7 +16,6 @@ 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 -jerk_roofing = 1 layer_height_0 = 0.2 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 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 b5cc9b7261..9c02ed5200 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 @@ -22,7 +22,6 @@ 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 layer_height = 0.2 machine_min_cool_heat_time_window = 15 @@ -36,9 +35,8 @@ 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 = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.8 -retraction_extrusion_window = 1 retraction_hop = 1.5 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg index 4e7696c0b3..fe3f453f9c 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 @@ -22,7 +22,6 @@ 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 layer_height = 0.15 machine_min_cool_heat_time_window = 15 @@ -37,9 +36,8 @@ material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_wipe_enabled = True retraction_amount = 7 -retraction_count_max = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.8 -retraction_extrusion_window = 1 retraction_hop = 1.5 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 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 caed386864..c824bc59ab 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 @@ -22,7 +22,6 @@ 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 @@ -34,9 +33,8 @@ material_print_temperature_layer_0 = =material_print_temperature + 17 material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_wipe_enabled = True -retraction_count_max = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.8 -retraction_extrusion_window = 1 retraction_hop = 1.5 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 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 ac2429595d..4a92c4e0ef 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 @@ -30,6 +30,5 @@ 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_bottom_distance = =support_z_distance 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 cfe6b1bf0a..58a7da1b9d 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 @@ -32,6 +32,5 @@ 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_bottom_distance = =support_z_distance 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 45125d5893..901db7e3ab 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 @@ -32,6 +32,5 @@ 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_bottom_distance = =support_z_distance support_z_distance = =layer_height top_bottom_thickness = 1.2 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 d4f447b5e3..b90e50c955 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 @@ -26,7 +26,6 @@ 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) support_angle = 70 -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/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg index 47fae5de3f..cd6fa26ba8 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 @@ -27,7 +27,6 @@ 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) support_angle = 70 -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/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg index d8dd16b398..7e0fdd459a 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 @@ -31,6 +31,4 @@ speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_angle = 70 -support_pattern = ='triangles' -support_xy_distance = =wall_line_width_0 * 1.5 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 c2236f4e28..228358c8a0 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 @@ -34,6 +34,4 @@ speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) speed_infill = =math.ceil(speed_print * 35 / 45) support_angle = 70 -support_pattern = ='triangles' -support_xy_distance = =wall_line_width_0 * 1.5 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 dbf45cd04f..df8a7a4d29 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 @@ -32,6 +32,4 @@ speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_angle = 70 -support_pattern = ='triangles' -support_xy_distance = =wall_line_width_0 * 1.5 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 8fdcd54797..5ac58234fd 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 @@ -26,15 +26,13 @@ prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 10 retract_at_layer_change = False -retraction_count_max = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 retraction_min_travel = 1.5 retraction_prime_speed = 15 speed_travel = 300 speed_wall_x = =math.ceil(speed_wall * 30 / 30) -support_bottom_distance = =support_z_distance -support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 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 ff729395b9..0975a2dcaa 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 @@ -26,7 +26,7 @@ prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 20 retract_at_layer_change = False -retraction_count_max = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 retraction_min_travel = 1.5 @@ -34,8 +34,6 @@ retraction_prime_speed = 15 speed_travel = 300 speed_wall_x = =math.ceil(speed_wall * 30 / 30) speed_infill = =math.ceil(speed_wall * 30 / 30) -support_bottom_distance = =support_z_distance -support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 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 911932c819..a18414cf7e 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 @@ -26,15 +26,13 @@ prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 15 retract_at_layer_change = False -retraction_count_max = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 0.5 retraction_min_travel = 1.5 retraction_prime_speed = 15 speed_travel = 300 speed_wall_x = =math.ceil(speed_wall * 30 / 30) -support_bottom_distance = =support_z_distance -support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 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 91cd4ac90c..569a214004 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 @@ -27,5 +27,4 @@ prime_tower_enable = False retract_at_layer_change = False speed_print = 45 support_angle = 70 -support_xy_distance = =wall_line_width_0 * 1.5 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 24838340d2..85442a1a0e 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 @@ -32,5 +32,4 @@ speed_topbottom = =math.ceil(speed_print * 20 / 30) speed_wall = =math.ceil(speed_print * 25/ 30) speed_wall_0 = =math.ceil(speed_print * 20 / 30) support_angle = 70 -support_xy_distance = =wall_line_width_0 * 1.5 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 2a650e69bd..ffc82adfb2 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 @@ -32,6 +32,4 @@ 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 -support_pattern = ='triangles' -support_xy_distance = =wall_line_width_0 * 1.5 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 53bf19e17b..9d5a364a53 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 @@ -30,7 +30,7 @@ multiple_mesh_overlap = 0.2 prime_tower_enable = True prime_tower_flow = 100 retract_at_layer_change = False -retraction_count_max = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 retraction_hop_only_when_collides = False @@ -42,8 +42,6 @@ speed_travel = 300 speed_wall = =math.ceil(speed_print * 30 / 30) speed_wall_x = =math.ceil(speed_wall * 30 / 30) support_angle = 50 -support_bottom_distance = =support_z_distance -support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 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 a1cfef6d5f..07c6aa807e 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 @@ -31,7 +31,7 @@ multiple_mesh_overlap = 0.2 prime_tower_enable = True prime_tower_flow = 100 retract_at_layer_change = False -retraction_count_max = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 retraction_hop_only_when_collides = False @@ -44,8 +44,6 @@ speed_wall = =speed_print speed_wall_x = =speed_print speed_infill = =speed_print support_angle = 50 -support_bottom_distance = =support_z_distance -support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 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 388959da4a..bc8a252e97 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 @@ -30,7 +30,7 @@ multiple_mesh_overlap = 0.2 prime_tower_enable = True prime_tower_flow = 100 retract_at_layer_change = False -retraction_count_max = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 retraction_hop_only_when_collides = False @@ -42,8 +42,6 @@ speed_travel = 300 speed_wall = =math.ceil(speed_print * 30 / 30) speed_wall_x = =math.ceil(speed_wall * 30 / 30) support_angle = 50 -support_bottom_distance = =support_z_distance -support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 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 ae1cd2f262..5ac88c13bc 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 @@ -16,5 +16,10 @@ brim_replaces_support = False material_print_temperature = =default_material_print_temperature + 10 material_standby_temperature = 100 prime_tower_enable = False +retraction_count_max = 5 skin_overlap = 20 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 9652a2f50a..7ad6967e6b 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 @@ -12,10 +12,15 @@ material = generic_pva variant = BB 0.4 [values] +support_infill_sparse_thickness = =2*layer_height brim_replaces_support = False 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_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/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg index 72cc7dc901..add681b5c6 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 @@ -12,8 +12,13 @@ material = generic_pva variant = BB 0.4 [values] +support_infill_sparse_thickness = =3*layer_height brim_replaces_support = False material_standby_temperature = 100 prime_tower_enable = False +retraction_count_max = 5 support_brim_enable = True -support_infill_sparse_thickness = 0.18 +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_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg index e828b94f2e..fbf7d65477 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 @@ -12,7 +12,13 @@ material = generic_pva variant = BB 0.4 [values] +support_infill_sparse_thickness = =2*layer_height brim_replaces_support = False material_standby_temperature = 100 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 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 e7c07c73fa..d7003ca582 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 @@ -15,4 +15,9 @@ variant = BB 0.8 brim_replaces_support = False material_print_temperature = =default_material_print_temperature + 5 material_standby_temperature = 100 +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 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 bcb92ccefa..07b91499e4 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 @@ -13,7 +13,10 @@ variant = BB 0.8 [values] brim_replaces_support = False -layer_height = 0.4 material_standby_temperature = 100 +retraction_count_max = 5 support_brim_enable = True -support_interface_height = 0.9 +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 3ce14a2ad0..6177272235 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 @@ -13,8 +13,10 @@ variant = BB 0.8 [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_height = 1.2 +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_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg index 5297fd4951..048708b0d1 100644 --- a/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg @@ -11,4 +11,4 @@ weight = -1 global_quality = True [values] -layer_height = 0.15 +layer_height = 0.15 \ No newline at end of file diff --git a/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg index 7123a6beaa..a67d97a78e 100644 --- a/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg @@ -11,4 +11,4 @@ weight = 1 global_quality = True [values] -layer_height = 0.06 +layer_height = 0.06 \ No newline at end of file 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_Normal_Quality.inst.cfg index d875b9c8f3..5ced8748b1 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_Normal_Quality.inst.cfg @@ -13,7 +13,6 @@ variant = AA 0.25 [values] retraction_combing_max_distance = 50 -retraction_extrusion_window = 0.5 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_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_PC_Normal_Quality.inst.cfg index a3a0073bba..886807a836 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_Normal_Quality.inst.cfg @@ -30,7 +30,6 @@ prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 raft_interface_thickness = =max(layer_height * 1.5, 0.225) -retraction_count_max = 80 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 @@ -40,9 +39,7 @@ 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 support_interface_density = 87.5 -support_interface_pattern = lines switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 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_Normal_Quality.inst.cfg index 516f24dec5..376af254f9 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_Normal_Quality.inst.cfg @@ -13,12 +13,9 @@ variant = AA 0.25 [values] retraction_combing_max_distance = 8 -retraction_extrusion_window = 0.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_Normal_Quality.inst.cfg index ef7623fe0a..6bef64658f 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_Normal_Quality.inst.cfg @@ -22,8 +22,6 @@ 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 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_Normal_Quality.inst.cfg index d0668b64f6..8ae871f4fe 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_Normal_Quality.inst.cfg @@ -19,7 +19,6 @@ 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 @@ -31,9 +30,8 @@ multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_size = 16 prime_tower_wipe_enabled = True -retraction_count_max = 6 +retraction_count_max = 15 retraction_extra_prime_amount = 0.2 -retraction_extrusion_window = 6.5 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 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_TPLA_Normal_Quality.inst.cfg index a19b438a9a..61ec5d977d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_TPLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_TPLA_Normal_Quality.inst.cfg @@ -22,8 +22,6 @@ 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 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_Draft_Print.inst.cfg index af2a491912..593781314a 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_Draft_Print.inst.cfg @@ -29,11 +29,6 @@ top_bottom_thickness = 1 support_brim_enable = True support_interface_enable = True support_interface_density = =min(extruderValues('material_surface_energy')) -support_interface_pattern = ='lines' if support_interface_density < 100 else 'concentric' 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_join_distance = 5 -support_offset = 2 -support_pattern = triangles -support_infill_rate = =10 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 10 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_Fast_Print.inst.cfg index b836a5ac75..577362391f 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_Fast_Print.inst.cfg @@ -12,6 +12,7 @@ material = generic_bam variant = AA 0.4 [values] +support_infill_sparse_thickness = =2*layer_height brim_replaces_support = False cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =cool_fan_speed @@ -28,11 +29,6 @@ top_bottom_thickness = 1 support_brim_enable = True support_interface_enable = True support_interface_density = =min(extruderValues('material_surface_energy')) -support_interface_pattern = ='lines' if support_interface_density < 100 else 'concentric' 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_join_distance = 5 -support_offset = 2 -support_pattern = triangles -support_infill_rate = =10 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 10 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_Normal_Quality.inst.cfg index a4ac385d1c..416a175c81 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_Normal_Quality.inst.cfg @@ -12,13 +12,13 @@ material = generic_bam variant = AA 0.4 [values] +support_infill_sparse_thickness = =2*layer_height 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 @@ -26,12 +26,7 @@ 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_interface_pattern = ='lines' if support_interface_density < 100 else 'concentric' 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_join_distance = 5 -support_offset = 2 -support_pattern = triangles -support_infill_rate = =10 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 10 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_VeryDraft_Print.inst.cfg index 76a16f87df..a8b51892c7 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_VeryDraft_Print.inst.cfg @@ -29,11 +29,6 @@ top_bottom_thickness = 1 support_brim_enable = True support_interface_enable = True support_interface_density = =min(extruderValues('material_surface_energy')) -support_interface_pattern = ='lines' if support_interface_density < 100 else 'concentric' support_top_distance = 0.3 support_bottom_distance = 0.3 support_angle = 45 -support_join_distance = 5 -support_offset = 2 -support_pattern = triangles -support_infill_rate = =10 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 10 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_CPEP_Draft_Print.inst.cfg index 0b8555734e..35c97346bb 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_Draft_Print.inst.cfg @@ -17,7 +17,6 @@ cool_min_speed = 5 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 @@ -28,7 +27,6 @@ multiple_mesh_overlap = 0 prime_tower_enable = True prime_tower_wipe_enabled = True retraction_combing_max_distance = 50 -retraction_extrusion_window = 1 retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True @@ -40,6 +38,5 @@ 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_bottom_distance = =support_z_distance 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_CPEP_Fast_Print.inst.cfg index f3dce95478..e6270bd4c5 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_Fast_Print.inst.cfg @@ -28,7 +28,6 @@ multiple_mesh_overlap = 0 prime_tower_enable = True prime_tower_wipe_enabled = True retraction_combing_max_distance = 50 -retraction_extrusion_window = 1 retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True @@ -40,6 +39,5 @@ 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_bottom_distance = =support_z_distance support_z_distance = =layer_height wall_0_inset = 0 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_CPEP_High_Quality.inst.cfg index f895647971..ef8cb6847a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_High_Quality.inst.cfg @@ -17,7 +17,6 @@ cool_min_speed = 5 infill_overlap = 0 infill_wipe_dist = 0 -jerk_enabled = True jerk_print = 25 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 @@ -30,7 +29,6 @@ multiple_mesh_overlap = 0 prime_tower_enable = True prime_tower_wipe_enabled = True retraction_combing_max_distance = 50 -retraction_extrusion_window = 1 retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True @@ -39,9 +37,7 @@ 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_bottom_distance = =support_z_distance 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_CPEP_Normal_Quality.inst.cfg index bba0f354c9..4f99061468 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_CPEP_Normal_Quality.inst.cfg @@ -17,7 +17,6 @@ cool_min_speed = 7 infill_overlap = 0 infill_wipe_dist = 0 -jerk_enabled = True jerk_print = 25 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 @@ -30,7 +29,6 @@ multiple_mesh_overlap = 0 prime_tower_enable = True prime_tower_wipe_enabled = True retraction_combing_max_distance = 50 -retraction_extrusion_window = 1 retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True @@ -39,9 +37,7 @@ 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_bottom_distance = =support_z_distance support_z_distance = =layer_height 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_Draft_Print.inst.cfg index 85d31733e6..c5c3570350 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_Draft_Print.inst.cfg @@ -38,8 +38,6 @@ prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 raft_interface_thickness = =max(layer_height * 1.5, 0.225) -retraction_count_max = 80 -retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 @@ -49,9 +47,7 @@ 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 support_interface_density = 87.5 -support_interface_pattern = lines switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 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_Fast_Print.inst.cfg index a9cdf6336d..2c9f109400 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_Fast_Print.inst.cfg @@ -21,7 +21,6 @@ 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_enabled = True jerk_print = 25 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 @@ -36,8 +35,6 @@ prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 raft_interface_thickness = =max(layer_height * 1.5, 0.225) -retraction_count_max = 80 -retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 @@ -45,12 +42,9 @@ 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 support_interface_density = 87.5 -support_interface_pattern = lines switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 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_High_Quality.inst.cfg index ff5d6f4f7c..02454a7203 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_High_Quality.inst.cfg @@ -38,8 +38,6 @@ prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 raft_interface_thickness = =max(layer_height * 1.5, 0.225) -retraction_count_max = 80 -retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 @@ -47,12 +45,9 @@ 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 support_interface_density = 87.5 -support_interface_pattern = lines switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 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_Normal_Quality.inst.cfg index a61e50f280..ce382e3dcf 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_Normal_Quality.inst.cfg @@ -36,8 +36,6 @@ prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 raft_interface_thickness = =max(layer_height * 1.5, 0.225) -retraction_count_max = 80 -retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 @@ -45,12 +43,9 @@ 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 support_interface_density = 87.5 -support_interface_pattern = lines switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 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_Draft_Print.inst.cfg index aa1ba2ef27..e77195665a 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_Draft_Print.inst.cfg @@ -15,8 +15,6 @@ variant = AA 0.4 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_print = 60 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_Fast_Print.inst.cfg index 7c2ad43944..8117c60edc 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_Fast_Print.inst.cfg @@ -16,8 +16,6 @@ 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_shrinkage_percentage_xy = 100.5 -material_shrinkage_percentage_z = 100.1 retraction_combing_max_distance = 8 speed_print = 60 speed_layer_0 = =math.ceil(speed_print * 20 / 60) 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_High_Quality.inst.cfg index 5b65d2351b..85a05b576a 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_High_Quality.inst.cfg @@ -18,8 +18,6 @@ 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_print = 50 speed_layer_0 = =math.ceil(speed_print * 20 / 50) 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_Normal_Quality.inst.cfg index 20b668ca51..b75ab359b4 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_Normal_Quality.inst.cfg @@ -17,8 +17,6 @@ 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_print = 55 speed_layer_0 = =math.ceil(speed_print * 20 / 55) 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_Draft_Print.inst.cfg index c82fb9c68d..420e250f71 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_Draft_Print.inst.cfg @@ -18,8 +18,6 @@ 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 retraction_prime_speed = =retraction_speed skin_overlap = 20 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_Fast_Print.inst.cfg index f60adf89f3..50b3954774 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_Fast_Print.inst.cfg @@ -17,8 +17,6 @@ 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 retraction_prime_speed = =retraction_speed speed_print = 70 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_High_Quality.inst.cfg index 6f230a94cd..99f977d17c 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_High_Quality.inst.cfg @@ -19,8 +19,6 @@ 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 retraction_prime_speed = =retraction_speed skin_overlap = 10 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_Normal_Quality.inst.cfg index 57fad8111c..210536340f 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_Normal_Quality.inst.cfg @@ -18,8 +18,6 @@ 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 retraction_prime_speed = =retraction_speed skin_overlap = 10 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_VeryDraft_Print.inst.cfg index 0ce09d5812..e2f00681a6 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_VeryDraft_Print.inst.cfg @@ -28,12 +28,8 @@ material_print_temperature = =default_material_print_temperature + 10 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 retraction_prime_speed = =retraction_speed -skin_edge_support_thickness = =0.9 if infill_sparse_density < 30 else 0 skin_overlap = 20 top_bottom_thickness = 0.9 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_Draft_Print.inst.cfg index 75eba5b995..88089479ad 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_Draft_Print.inst.cfg @@ -21,7 +21,6 @@ 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 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 @@ -36,9 +35,8 @@ multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_size = 16 prime_tower_wipe_enabled = True -retraction_count_max = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.8 -retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 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_Fast_Print.inst.cfg index fdf769ed38..dd35987ced 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_Fast_Print.inst.cfg @@ -20,7 +20,6 @@ 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 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 @@ -35,9 +34,8 @@ multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_size = 16 prime_tower_wipe_enabled = True -retraction_count_max = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.8 -retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 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_Normal_Quality.inst.cfg index 821e1f4840..5eff4b3248 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_Normal_Quality.inst.cfg @@ -21,7 +21,6 @@ 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 machine_min_cool_heat_time_window = 15 @@ -37,9 +36,8 @@ multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_size = 16 prime_tower_wipe_enabled = True -retraction_count_max = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.8 -retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 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_TPLA_Draft_Print.inst.cfg index a9e32a5283..a35ff96196 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_Draft_Print.inst.cfg @@ -16,14 +16,11 @@ 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 -jerk_roofing = 1 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 prime_tower_enable = False retraction_prime_speed = =retraction_speed skin_overlap = 20 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_TPLA_Fast_Print.inst.cfg index 3f08161091..9c688e3995 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_Fast_Print.inst.cfg @@ -19,8 +19,6 @@ 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 prime_tower_enable = False retraction_prime_speed = =retraction_speed speed_layer_0 = =math.ceil(speed_print * 20 / 45) 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_TPLA_High_Quality.inst.cfg index 1046c70272..f6885552ba 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_High_Quality.inst.cfg @@ -19,8 +19,6 @@ 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 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_TPLA_Normal_Quality.inst.cfg index 48443ce029..09146132d0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_Normal_Quality.inst.cfg @@ -20,8 +20,6 @@ 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 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_TPLA_VeryDraft_Print.inst.cfg index 4bf6623cf6..72c9981665 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_VeryDraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_TPLA_VeryDraft_Print.inst.cfg @@ -28,12 +28,8 @@ material_print_temperature = =default_material_print_temperature - 5 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 - prime_tower_enable = False retraction_prime_speed = =retraction_speed -skin_edge_support_thickness = =0.9 if infill_sparse_density < 30 else 0 skin_overlap = 20 top_bottom_thickness = 1.2 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_Draft_Print.inst.cfg index 566f474dc4..90a68d134e 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_Draft_Print.inst.cfg @@ -22,9 +22,7 @@ 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 @@ -36,9 +34,8 @@ 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 = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.8 -retraction_extrusion_window = 1 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) 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_Fast_Print.inst.cfg index e968507192..d59d5c18f7 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_Fast_Print.inst.cfg @@ -22,7 +22,6 @@ 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 @@ -36,9 +35,8 @@ 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 = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.8 -retraction_extrusion_window = 1 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) 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_Normal_Quality.inst.cfg index ca8410766a..c0445e739c 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_Normal_Quality.inst.cfg @@ -35,9 +35,8 @@ material_print_temperature_layer_0 = =material_print_temperature + 17 material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_wipe_enabled = True -retraction_count_max = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.8 -retraction_extrusion_window = 1 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) 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_CPEP_Fast_Print.inst.cfg index 5086d8eb32..806da07969 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_CPEP_Fast_Print.inst.cfg @@ -33,6 +33,5 @@ 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_bottom_distance = =support_z_distance 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_CPEP_Superdraft_Print.inst.cfg index 2a2ea30d89..11b2706b28 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_CPEP_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_CPEP_Superdraft_Print.inst.cfg @@ -34,6 +34,5 @@ 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_bottom_distance = =support_z_distance 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_CPEP_Verydraft_Print.inst.cfg index cef41e5cdc..5771c34f8d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_CPEP_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_CPEP_Verydraft_Print.inst.cfg @@ -33,6 +33,5 @@ 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_bottom_distance = =support_z_distance support_z_distance = =layer_height top_bottom_thickness = 1.2 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_Draft_Print.inst.cfg index 6af1fe5ae6..d6887f655d 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_Draft_Print.inst.cfg @@ -28,7 +28,6 @@ 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) support_angle = 70 -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/ultimaker_s3/um_s3_aa0.8_Nylon_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_Nylon_Superdraft_Print.inst.cfg index 30cd2da9b0..c333d0e4b1 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_Superdraft_Print.inst.cfg @@ -28,7 +28,6 @@ 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) support_angle = 70 -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/ultimaker_s3/um_s3_aa0.8_Nylon_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_Nylon_Verydraft_Print.inst.cfg index b7259ce379..766a84d843 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_Verydraft_Print.inst.cfg @@ -28,7 +28,6 @@ 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) support_angle = 70 -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/ultimaker_s3/um_s3_aa0.8_PETG_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_PETG_Draft_Print.inst.cfg index ad9ef89a03..be5ae977b5 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_Draft_Print.inst.cfg @@ -16,8 +16,6 @@ brim_width = 7 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 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_Superdraft_Print.inst.cfg index 1f131578a9..ba58a799e9 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_Superdraft_Print.inst.cfg @@ -16,8 +16,6 @@ brim_width = 7 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 = 45 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_Verydraft_Print.inst.cfg index 60c06b80ce..f121297ab7 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_Verydraft_Print.inst.cfg @@ -16,8 +16,6 @@ brim_width = 7 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 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_Draft_Print.inst.cfg index 8d54246f13..5321690d9c 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_Draft_Print.inst.cfg @@ -21,11 +21,8 @@ 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 -support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 retract_at_layer_change = False speed_print = 45 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_Superdraft_Print.inst.cfg index f650f796bc..a559d0f912 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_Superdraft_Print.inst.cfg @@ -21,12 +21,9 @@ 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 -support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 retract_at_layer_change = False speed_print = 45 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_Verydraft_Print.inst.cfg index a9a14307f1..21425a4920 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_Verydraft_Print.inst.cfg @@ -21,11 +21,8 @@ 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 -support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 retract_at_layer_change = False speed_print = 45 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_Draft_Print.inst.cfg index 4572e3fabc..ad56f48c17 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_Draft_Print.inst.cfg @@ -26,14 +26,12 @@ prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 10 retract_at_layer_change = False -retraction_count_max = 12 +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) -support_bottom_distance = =support_z_distance -support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 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_Superdraft_Print.inst.cfg index 596f34d7b9..ee9576aed8 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_Superdraft_Print.inst.cfg @@ -26,15 +26,13 @@ prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 20 retract_at_layer_change = False -retraction_count_max = 12 +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) -support_bottom_distance = =support_z_distance -support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 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_Verydraft_Print.inst.cfg index 4f1a91337a..4f6c3fa1ed 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_Verydraft_Print.inst.cfg @@ -25,14 +25,12 @@ prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 15 retract_at_layer_change = False -retraction_count_max = 12 +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) -support_bottom_distance = =support_z_distance -support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 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_TPLA_Draft_Print.inst.cfg index 7551e2e39f..aaa7981b3d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_TPLA_Draft_Print.inst.cfg @@ -23,8 +23,6 @@ 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 @@ -32,5 +30,4 @@ 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 -support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 6 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_TPLA_Superdraft_Print.inst.cfg index bc1b444d93..dfec5abf1b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_TPLA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_TPLA_Superdraft_Print.inst.cfg @@ -23,8 +23,6 @@ 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 @@ -34,5 +32,4 @@ speed_topbottom = =math.ceil(speed_print * 20 / 30) speed_wall = =math.ceil(speed_print * 25/ 30) speed_wall_0 = =math.ceil(speed_print * 20 / 30) support_angle = 70 -support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 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_TPLA_Verydraft_Print.inst.cfg index 4b6aa5629a..445d4c6cfd 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_TPLA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_TPLA_Verydraft_Print.inst.cfg @@ -25,8 +25,6 @@ material_initial_print_temperature = =max(-273.15, material_print_temperature - 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) @@ -35,5 +33,4 @@ 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 -support_xy_distance = =wall_line_width_0 * 1.5 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_Draft_Print.inst.cfg index dc4858e463..2fba108a33 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_Draft_Print.inst.cfg @@ -28,7 +28,7 @@ multiple_mesh_overlap = 0.2 prime_tower_enable = True prime_tower_flow = 100 retract_at_layer_change = False -retraction_count_max = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 retraction_hop_only_when_collides = False @@ -39,8 +39,6 @@ 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 -support_bottom_distance = =support_z_distance -support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 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_Superdraft_Print.inst.cfg index d2e23c81a9..2fbc3d7118 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_Superdraft_Print.inst.cfg @@ -29,7 +29,7 @@ multiple_mesh_overlap = 0.2 prime_tower_enable = True prime_tower_flow = 100 retract_at_layer_change = False -retraction_count_max = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 retraction_hop_only_when_collides = False @@ -41,8 +41,6 @@ speed_wall = =speed_print speed_wall_x = =speed_print speed_infill = =speed_print support_angle = 50 -support_bottom_distance = =support_z_distance -support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 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_Verydraft_Print.inst.cfg index 3d4076c08c..2e06b86620 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_Verydraft_Print.inst.cfg @@ -28,7 +28,7 @@ multiple_mesh_overlap = 0.2 prime_tower_enable = True prime_tower_flow = 100 retract_at_layer_change = False -retraction_count_max = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 retraction_hop_only_when_collides = False @@ -39,8 +39,6 @@ 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 -support_bottom_distance = =support_z_distance -support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 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_Draft_Print.inst.cfg index afb19f1769..852256ec7d 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_Draft_Print.inst.cfg @@ -16,5 +16,10 @@ brim_replaces_support = False material_print_temperature = =default_material_print_temperature + 10 material_standby_temperature = 100 prime_tower_enable = False +retraction_count_max = 5 skin_overlap = 20 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_Fast_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_Fast_Print.inst.cfg index 6b1cef8991..1df9f6b97b 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_Fast_Print.inst.cfg @@ -12,10 +12,15 @@ material = generic_pva variant = BB 0.4 [values] +support_infill_sparse_thickness = =2*layer_height brim_replaces_support = False 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_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.4_PVA_High_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_PVA_High_Quality.inst.cfg index 0a9a37ca05..7495130aa9 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_High_Quality.inst.cfg @@ -12,8 +12,13 @@ material = generic_pva variant = BB 0.4 [values] +support_infill_sparse_thickness = =3*layer_height brim_replaces_support = False material_standby_temperature = 100 prime_tower_enable = False +retraction_count_max = 5 support_brim_enable = True -support_infill_sparse_thickness = 0.18 +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_Normal_Quality.inst.cfg index a899959d98..308d26bf62 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_Normal_Quality.inst.cfg @@ -12,7 +12,13 @@ material = generic_pva variant = BB 0.4 [values] +support_infill_sparse_thickness = =2*layer_height brim_replaces_support = False material_standby_temperature = 100 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 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_Verydraft_Print.inst.cfg index 0cd6094bbc..da87e8211f 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_Verydraft_Print.inst.cfg @@ -15,6 +15,10 @@ is_experimental = True [values] brim_replaces_support = False material_standby_temperature = 100 +retraction_count_max = 5 support_brim_enable = True support_infill_sparse_thickness = 0.3 -support_interface_height = 1.2 +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_Draft_Print.inst.cfg index 388ebeff72..7e2103043f 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_Draft_Print.inst.cfg @@ -15,4 +15,9 @@ variant = BB 0.8 brim_replaces_support = False material_print_temperature = =default_material_print_temperature + 5 material_standby_temperature = 100 +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 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_Superdraft_Print.inst.cfg index e9030819ea..9b1583ed51 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_Superdraft_Print.inst.cfg @@ -14,5 +14,9 @@ variant = BB 0.8 [values] brim_replaces_support = False material_standby_temperature = 100 +retraction_count_max = 5 support_brim_enable = True -support_interface_height = 0.9 +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_Verydraft_Print.inst.cfg index c35737bb97..28f069a61a 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_Verydraft_Print.inst.cfg @@ -14,6 +14,10 @@ variant = BB 0.8 [values] brim_replaces_support = False material_standby_temperature = 100 +retraction_count_max = 5 support_brim_enable = True support_infill_sparse_thickness = 0.3 -support_interface_height = 1.2 +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_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_PLA_Draft_Print.inst.cfg index f015b749d2..83ac175c47 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_Draft_Print.inst.cfg @@ -24,8 +24,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 @@ -34,6 +32,4 @@ speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_angle = 70 -support_pattern = ='triangles' -support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 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_Fast_Print.inst.cfg index 88b079b388..9c89527d1e 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_Fast_Print.inst.cfg @@ -24,8 +24,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 @@ -34,6 +32,4 @@ speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_angle = 70 -support_pattern = ='triangles' -support_xy_distance = =wall_line_width_0 * 1.5 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_Draft_Print.inst.cfg index 8f6492f82d..df7c944caf 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_Draft_Print.inst.cfg @@ -24,8 +24,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 @@ -34,6 +32,4 @@ speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_angle = 70 -support_pattern = ='triangles' -support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 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_Fast_Print.inst.cfg index b8e45c49fb..84169d31f7 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_Fast_Print.inst.cfg @@ -24,8 +24,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 @@ -34,6 +32,4 @@ speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_angle = 70 -support_pattern = ='triangles' -support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 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_Normal_Quality.inst.cfg index 52499d000c..f895450c0a 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_Normal_Quality.inst.cfg @@ -13,7 +13,6 @@ variant = AA 0.25 [values] retraction_combing_max_distance = 50 -retraction_extrusion_window = 0.5 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_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_PC_Normal_Quality.inst.cfg index e77d2a2dd9..0ee0d7cbe9 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_Normal_Quality.inst.cfg @@ -21,7 +21,6 @@ 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 @@ -30,7 +29,6 @@ prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 raft_interface_thickness = =max(layer_height * 1.5, 0.225) -retraction_count_max = 80 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 @@ -40,9 +38,7 @@ 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 support_interface_density = 87.5 -support_interface_pattern = lines switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 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_Normal_Quality.inst.cfg index 7a3b50c550..3df31368bd 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_Normal_Quality.inst.cfg @@ -13,12 +13,8 @@ variant = AA 0.25 [values] retraction_combing_max_distance = 8 -retraction_extrusion_window = 0.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 +material_print_temperature = =default_material_print_temperature - 5 \ 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_Normal_Quality.inst.cfg index d469288e35..6c82905859 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_Normal_Quality.inst.cfg @@ -22,8 +22,6 @@ 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 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_Normal_Quality.inst.cfg index 85a608c293..df673c641c 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_Normal_Quality.inst.cfg @@ -19,7 +19,6 @@ 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 @@ -31,9 +30,8 @@ multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_size = 16 prime_tower_wipe_enabled = True -retraction_count_max = 6 +retraction_count_max = 15 retraction_extra_prime_amount = 0.2 -retraction_extrusion_window = 6.5 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 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_TPLA_Normal_Quality.inst.cfg index 1e0b4c0044..37a15aa1ba 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_TPLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_TPLA_Normal_Quality.inst.cfg @@ -22,8 +22,6 @@ 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 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_Draft_Print.inst.cfg index c622591c90..28d7691462 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_Draft_Print.inst.cfg @@ -29,11 +29,6 @@ top_bottom_thickness = 1 support_brim_enable = True support_interface_enable = True support_interface_density = =min(extruderValues('material_surface_energy')) -support_interface_pattern = ='lines' if support_interface_density < 100 else 'concentric' 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_join_distance = 5 -support_offset = 2 -support_pattern = triangles -support_infill_rate = =10 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 10 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_Fast_Print.inst.cfg index e399b3c988..e2450cd6b0 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_Fast_Print.inst.cfg @@ -12,6 +12,7 @@ material = generic_bam variant = AA 0.4 [values] +support_infill_sparse_thickness = =2*layer_height brim_replaces_support = False cool_fan_full_at_height = =layer_height_0 + 2 * layer_height cool_fan_speed_max = =cool_fan_speed @@ -28,11 +29,6 @@ top_bottom_thickness = 1 support_brim_enable = True support_interface_enable = True support_interface_density = =min(extruderValues('material_surface_energy')) -support_interface_pattern = ='lines' if support_interface_density < 100 else 'concentric' 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_join_distance = 5 -support_offset = 2 -support_pattern = triangles -support_infill_rate = =10 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 10 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_Normal_Quality.inst.cfg index 7cd771e0fb..24f007b99b 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_Normal_Quality.inst.cfg @@ -12,13 +12,13 @@ material = generic_bam variant = AA 0.4 [values] +support_infill_sparse_thickness = =2*layer_height 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 @@ -26,12 +26,7 @@ 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_interface_pattern = ='lines' if support_interface_density < 100 else 'concentric' 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_join_distance = 5 -support_offset = 2 -support_pattern = triangles -support_infill_rate = =10 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 10 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_VeryDraft_Print.inst.cfg index f9a294d572..f6769a439f 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_VeryDraft_Print.inst.cfg @@ -29,11 +29,6 @@ top_bottom_thickness = 1 support_brim_enable = True support_interface_enable = True support_interface_density = =min(extruderValues('material_surface_energy')) -support_interface_pattern = ='lines' if support_interface_density < 100 else 'concentric' support_top_distance = 0.3 support_bottom_distance = 0.3 support_angle = 45 -support_join_distance = 5 -support_offset = 2 -support_pattern = triangles -support_infill_rate = =10 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 10 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_CPEP_Draft_Print.inst.cfg index 1d12f8f8d9..267a36d681 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_Draft_Print.inst.cfg @@ -17,7 +17,6 @@ cool_min_speed = 5 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 @@ -28,7 +27,6 @@ multiple_mesh_overlap = 0 prime_tower_enable = True prime_tower_wipe_enabled = True retraction_combing_max_distance = 50 -retraction_extrusion_window = 1 retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True @@ -40,6 +38,5 @@ 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_bottom_distance = =support_z_distance 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_CPEP_Fast_Print.inst.cfg index 12db110133..c493b0d445 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_Fast_Print.inst.cfg @@ -17,7 +17,6 @@ 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 @@ -28,7 +27,6 @@ multiple_mesh_overlap = 0 prime_tower_enable = True prime_tower_wipe_enabled = True retraction_combing_max_distance = 50 -retraction_extrusion_window = 1 retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True @@ -40,6 +38,5 @@ 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_bottom_distance = =support_z_distance support_z_distance = =layer_height wall_0_inset = 0 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_CPEP_High_Quality.inst.cfg index eb4db520bd..500f0a4428 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_High_Quality.inst.cfg @@ -17,7 +17,6 @@ cool_min_speed = 5 infill_overlap = 0 infill_wipe_dist = 0 -jerk_enabled = True jerk_print = 25 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 @@ -30,7 +29,6 @@ multiple_mesh_overlap = 0 prime_tower_enable = True prime_tower_wipe_enabled = True retraction_combing_max_distance = 50 -retraction_extrusion_window = 1 retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True @@ -42,6 +40,5 @@ 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_bottom_distance = =support_z_distance 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_CPEP_Normal_Quality.inst.cfg index 71102926d8..ccedad12ec 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_CPEP_Normal_Quality.inst.cfg @@ -16,7 +16,6 @@ cool_fan_speed_max = 50 cool_min_speed = 7 infill_overlap = 0 infill_wipe_dist = 0 -jerk_enabled = True jerk_print = 25 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 @@ -29,7 +28,6 @@ multiple_mesh_overlap = 0 prime_tower_enable = True prime_tower_wipe_enabled = True retraction_combing_max_distance = 50 -retraction_extrusion_window = 1 retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True @@ -41,6 +39,5 @@ 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_bottom_distance = =support_z_distance support_z_distance = =layer_height wall_0_inset = 0 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_Draft_Print.inst.cfg index b8a6fbc38a..bdfd6aadea 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_Draft_Print.inst.cfg @@ -17,13 +17,11 @@ 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_edge_support_thickness = =0.8 if infill_sparse_density < 30 else 0 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) -top_thickness = =0.8 if infill_sparse_density < 30 and skin_edge_support_thickness == 0.8 else top_bottom_thickness 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_PC_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_PC_Draft_Print.inst.cfg index d9bc39705b..26184e715b 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_Draft_Print.inst.cfg @@ -22,7 +22,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 @@ -37,8 +36,6 @@ prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 raft_interface_thickness = =max(layer_height * 1.5, 0.225) -retraction_count_max = 80 -retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 @@ -48,9 +45,7 @@ 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 support_interface_density = 87.5 -support_interface_pattern = lines switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 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_Fast_Print.inst.cfg index 03999c27e1..f739e1c5ac 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_Fast_Print.inst.cfg @@ -21,7 +21,6 @@ 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_enabled = True jerk_print = 25 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 @@ -36,8 +35,6 @@ prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 raft_interface_thickness = =max(layer_height * 1.5, 0.225) -retraction_count_max = 80 -retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 @@ -48,9 +45,7 @@ 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 support_interface_density = 87.5 -support_interface_pattern = lines switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 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_High_Quality.inst.cfg index de05aa5cac..aec7cc4293 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_High_Quality.inst.cfg @@ -23,7 +23,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 @@ -38,8 +37,6 @@ prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 raft_interface_thickness = =max(layer_height * 1.5, 0.225) -retraction_count_max = 80 -retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 @@ -47,12 +44,9 @@ 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 support_interface_density = 87.5 -support_interface_pattern = lines switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 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_Normal_Quality.inst.cfg index 658e118686..3346f39efe 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_Normal_Quality.inst.cfg @@ -22,7 +22,6 @@ 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 @@ -36,8 +35,6 @@ prime_tower_enable = True prime_tower_wipe_enabled = True raft_airgap = 0.25 raft_interface_thickness = =max(layer_height * 1.5, 0.225) -retraction_count_max = 80 -retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 @@ -45,12 +42,9 @@ 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 support_interface_density = 87.5 -support_interface_pattern = lines switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 35 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_Draft_Print.inst.cfg index 78eda2718b..3e0bd8d4b8 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_Draft_Print.inst.cfg @@ -15,17 +15,13 @@ variant = AA 0.4 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_edge_support_thickness = =0.8 if infill_sparse_density < 30 else 0 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) -top_thickness = =0.8 if infill_sparse_density < 30 and skin_edge_support_thickness == 0.8 else top_bottom_thickness 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_PETG_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_PETG_Fast_Print.inst.cfg index 2a6b354674..f9a8aa8915 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_Fast_Print.inst.cfg @@ -16,8 +16,6 @@ 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_shrinkage_percentage_xy = 100.5 -material_shrinkage_percentage_z = 100.1 retraction_combing_max_distance = 8 speed_print = 60 speed_layer_0 = =math.ceil(speed_print * 20 / 60) 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_High_Quality.inst.cfg index 2925e5ca6f..289521bd01 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_High_Quality.inst.cfg @@ -18,8 +18,6 @@ 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_print = 50 speed_layer_0 = =math.ceil(speed_print * 20 / 50) 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_Normal_Quality.inst.cfg index 7dbca8a664..8129f66fc3 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_Normal_Quality.inst.cfg @@ -17,8 +17,6 @@ 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_print = 55 speed_layer_0 = =math.ceil(speed_print * 20 / 55) 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_Draft_Print.inst.cfg index a9e107d887..bcd193268d 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_Draft_Print.inst.cfg @@ -18,11 +18,8 @@ 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 retraction_prime_speed = =retraction_speed -skin_edge_support_thickness = =0.8 if infill_sparse_density < 30 else 0 skin_overlap = 20 speed_layer_0 = 10 speed_topbottom = =math.ceil(speed_print * 40 / 70) 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_Fast_Print.inst.cfg index 408c65da04..37ca77c51a 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_Fast_Print.inst.cfg @@ -17,8 +17,6 @@ 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 retraction_prime_speed = =retraction_speed speed_print = 70 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_High_Quality.inst.cfg index e803a92538..98049f2d1c 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_High_Quality.inst.cfg @@ -19,8 +19,6 @@ 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 retraction_prime_speed = =retraction_speed skin_overlap = 10 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_Normal_Quality.inst.cfg index 4653d1bdbb..b9acd3ba63 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_Normal_Quality.inst.cfg @@ -18,8 +18,6 @@ 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 retraction_prime_speed = =retraction_speed skin_overlap = 10 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_VeryDraft_Print.inst.cfg index 5087857b86..4e5180032c 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_VeryDraft_Print.inst.cfg @@ -28,12 +28,9 @@ material_print_temperature = =default_material_print_temperature + 10 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 retraction_prime_speed = =retraction_speed -skin_edge_support_thickness = =0.9 if infill_sparse_density < 30 else 0 skin_overlap = 20 top_bottom_thickness = 0.9 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_Draft_Print.inst.cfg index 5da2b96e2d..4ee2ec2f4e 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_Draft_Print.inst.cfg @@ -21,9 +21,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 - machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 @@ -37,9 +35,8 @@ multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_size = 16 prime_tower_wipe_enabled = True -retraction_count_max = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.8 -retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 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_Fast_Print.inst.cfg index cc5a911809..bd01a9e7e6 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_Fast_Print.inst.cfg @@ -21,9 +21,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 - machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 machine_nozzle_heat_up_speed = 1.5 @@ -37,9 +35,8 @@ multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_size = 16 prime_tower_wipe_enabled = True -retraction_count_max = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.8 -retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 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_Normal_Quality.inst.cfg index 82646132a0..9cc83fa123 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_Normal_Quality.inst.cfg @@ -21,7 +21,6 @@ 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 machine_min_cool_heat_time_window = 15 @@ -37,9 +36,8 @@ multiple_mesh_overlap = 0 prime_tower_enable = False prime_tower_size = 16 prime_tower_wipe_enabled = True -retraction_count_max = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.8 -retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 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_TPLA_Draft_Print.inst.cfg index e102ff7ac3..5b627b87f7 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_Draft_Print.inst.cfg @@ -16,14 +16,11 @@ 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 -jerk_roofing = 1 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 prime_tower_enable = False retraction_prime_speed = =retraction_speed skin_overlap = 20 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_TPLA_Fast_Print.inst.cfg index a2e585117b..f1370caaf0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_Fast_Print.inst.cfg @@ -19,8 +19,6 @@ 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 prime_tower_enable = False retraction_prime_speed = =retraction_speed speed_layer_0 = =math.ceil(speed_print * 20 / 45) 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_TPLA_High_Quality.inst.cfg index def68b8525..8f1158bcbc 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_High_Quality.inst.cfg @@ -19,8 +19,6 @@ 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 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_TPLA_Normal_Quality.inst.cfg index 5a55438f0e..6f46c9c441 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_Normal_Quality.inst.cfg @@ -20,8 +20,6 @@ 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 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_TPLA_VeryDraft_Print.inst.cfg index d3637ca861..5138c25d0b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_VeryDraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_TPLA_VeryDraft_Print.inst.cfg @@ -28,12 +28,8 @@ material_print_temperature = =default_material_print_temperature - 5 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 - prime_tower_enable = False retraction_prime_speed = =retraction_speed -skin_edge_support_thickness = =0.9 if infill_sparse_density < 30 else 0 skin_overlap = 20 top_bottom_thickness = 1.2 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_Draft_Print.inst.cfg index 8778abc64e..dd4fe11a2c 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_Draft_Print.inst.cfg @@ -22,7 +22,6 @@ 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 @@ -36,9 +35,8 @@ 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 = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.8 -retraction_extrusion_window = 1 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) 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_Fast_Print.inst.cfg index 1725470319..346bb31931 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_Fast_Print.inst.cfg @@ -22,7 +22,6 @@ 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 @@ -36,9 +35,8 @@ 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 = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.8 -retraction_extrusion_window = 1 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) 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_Normal_Quality.inst.cfg index 782b9d896a..e8617e309f 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_Normal_Quality.inst.cfg @@ -22,7 +22,6 @@ 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 @@ -35,9 +34,8 @@ material_print_temperature_layer_0 = =material_print_temperature + 17 material_standby_temperature = 100 multiple_mesh_overlap = 0 prime_tower_wipe_enabled = True -retraction_count_max = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.8 -retraction_extrusion_window = 1 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) 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_CPEP_Fast_Print.inst.cfg index 4b126d98be..53f58530b9 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_CPEP_Fast_Print.inst.cfg @@ -32,6 +32,5 @@ 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_bottom_distance = =support_z_distance 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_CPEP_Superdraft_Print.inst.cfg index 7f3b35fa36..b5a7bf5de0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_CPEP_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_CPEP_Superdraft_Print.inst.cfg @@ -34,6 +34,5 @@ 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_bottom_distance = =support_z_distance 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_CPEP_Verydraft_Print.inst.cfg index 072880b756..4dcbf91e6a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_CPEP_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_CPEP_Verydraft_Print.inst.cfg @@ -33,7 +33,5 @@ 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_bottom_distance = =support_z_distance - support_z_distance = =layer_height top_bottom_thickness = 1.2 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_Draft_Print.inst.cfg index e9bc1e9239..5a1a8ee5c1 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_Draft_Print.inst.cfg @@ -26,7 +26,6 @@ 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) support_angle = 70 -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/ultimaker_s5/um_s5_aa0.8_Nylon_Superdraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_Nylon_Superdraft_Print.inst.cfg index f45f9f403a..89a55e3f6f 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_Superdraft_Print.inst.cfg @@ -26,7 +26,6 @@ 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) support_angle = 70 -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/ultimaker_s5/um_s5_aa0.8_Nylon_Verydraft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_Nylon_Verydraft_Print.inst.cfg index 8cb2823432..c1b0737a24 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_Verydraft_Print.inst.cfg @@ -28,7 +28,6 @@ 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) support_angle = 70 -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/ultimaker_s5/um_s5_aa0.8_PETG_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_PETG_Draft_Print.inst.cfg index 6e6b0a09a4..b128d3a252 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_Draft_Print.inst.cfg @@ -16,8 +16,6 @@ brim_width = 7 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 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_Superdraft_Print.inst.cfg index 5de1db358f..8aa0a748d4 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_Superdraft_Print.inst.cfg @@ -16,8 +16,6 @@ brim_width = 7 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 = 45 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_Verydraft_Print.inst.cfg index 1f95f693e8..ad9b43ab07 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_Verydraft_Print.inst.cfg @@ -16,8 +16,6 @@ brim_width = 7 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 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_Draft_Print.inst.cfg index 4ad620367d..b465c3d95c 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_Draft_Print.inst.cfg @@ -21,11 +21,8 @@ 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 -support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 retract_at_layer_change = False speed_print = 45 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_Superdraft_Print.inst.cfg index 7acfa04a29..0f2aa42b8d 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_Superdraft_Print.inst.cfg @@ -21,12 +21,9 @@ 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 -support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 retract_at_layer_change = False speed_print = 45 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_Verydraft_Print.inst.cfg index 756316ed7f..e6e1a9c718 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_Verydraft_Print.inst.cfg @@ -21,11 +21,8 @@ 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 -support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 retract_at_layer_change = False speed_print = 45 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_Draft_Print.inst.cfg index 1d2d0c68fd..e6f87c3442 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_Draft_Print.inst.cfg @@ -26,14 +26,12 @@ prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 10 retract_at_layer_change = False -retraction_count_max = 12 +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) -support_bottom_distance = =support_z_distance -support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 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_Superdraft_Print.inst.cfg index 7026544931..324b121ca7 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_Superdraft_Print.inst.cfg @@ -26,15 +26,13 @@ prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 20 retract_at_layer_change = False -retraction_count_max = 12 +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) -support_bottom_distance = =support_z_distance -support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 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_Verydraft_Print.inst.cfg index 98c8df6a6a..67cd7d50ac 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_Verydraft_Print.inst.cfg @@ -25,14 +25,12 @@ prime_tower_enable = True prime_tower_flow = 100 prime_tower_min_volume = 15 retract_at_layer_change = False -retraction_count_max = 12 +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) -support_bottom_distance = =support_z_distance -support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 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_TPLA_Draft_Print.inst.cfg index 7587ebf336..d0bbce15a0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_TPLA_Draft_Print.inst.cfg @@ -23,8 +23,6 @@ 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 @@ -32,5 +30,4 @@ 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 -support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 6 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_TPLA_Superdraft_Print.inst.cfg index b6cd8788b0..62a9b616b0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_TPLA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_TPLA_Superdraft_Print.inst.cfg @@ -23,8 +23,6 @@ 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 @@ -34,5 +32,4 @@ speed_topbottom = =math.ceil(speed_print * 20 / 30) speed_wall = =math.ceil(speed_print * 25/ 30) speed_wall_0 = =math.ceil(speed_print * 20 / 30) support_angle = 70 -support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 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_TPLA_Verydraft_Print.inst.cfg index 522cb974ce..b8e0103386 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_TPLA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_TPLA_Verydraft_Print.inst.cfg @@ -25,8 +25,6 @@ material_initial_print_temperature = =max(-273.15, material_print_temperature - 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) @@ -35,5 +33,4 @@ 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 -support_xy_distance = =wall_line_width_0 * 1.5 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_Draft_Print.inst.cfg index f6d8169fe8..e132129969 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_Draft_Print.inst.cfg @@ -28,7 +28,7 @@ multiple_mesh_overlap = 0.2 prime_tower_enable = True prime_tower_flow = 100 retract_at_layer_change = False -retraction_count_max = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 retraction_hop_only_when_collides = False @@ -39,8 +39,6 @@ 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 -support_bottom_distance = =support_z_distance -support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 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_Superdraft_Print.inst.cfg index 561acf9fbc..410d07b902 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_Superdraft_Print.inst.cfg @@ -29,7 +29,7 @@ multiple_mesh_overlap = 0.2 prime_tower_enable = True prime_tower_flow = 100 retract_at_layer_change = False -retraction_count_max = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 retraction_hop_only_when_collides = False @@ -40,8 +40,6 @@ speed_wall = =speed_print speed_wall_x = =speed_print speed_infill = =speed_print support_angle = 50 -support_bottom_distance = =support_z_distance -support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 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_Verydraft_Print.inst.cfg index fa432061bb..c4d48a2f6c 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_Verydraft_Print.inst.cfg @@ -28,7 +28,7 @@ multiple_mesh_overlap = 0.2 prime_tower_enable = True prime_tower_flow = 100 retract_at_layer_change = False -retraction_count_max = 12 +retraction_count_max = 15 retraction_extra_prime_amount = 0.5 retraction_hop = 1.5 retraction_hop_only_when_collides = False @@ -39,8 +39,6 @@ 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 -support_bottom_distance = =support_z_distance -support_offset = =line_width switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 20 switch_extruder_retraction_speeds = 45 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_Draft_Print.inst.cfg index ef24c27b5a..cdb8384f68 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_Draft_Print.inst.cfg @@ -16,5 +16,10 @@ brim_replaces_support = False material_print_temperature = =default_material_print_temperature + 10 material_standby_temperature = 100 prime_tower_enable = False +retraction_count_max = 5 skin_overlap = 20 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_Fast_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_Fast_Print.inst.cfg index d630c3bd3a..b98235718b 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_Fast_Print.inst.cfg @@ -12,10 +12,15 @@ material = generic_pva variant = BB 0.4 [values] +support_infill_sparse_thickness = =2*layer_height brim_replaces_support = False 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_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.4_PVA_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_PVA_High_Quality.inst.cfg index 8d5448aafb..40dcd5da35 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_High_Quality.inst.cfg @@ -12,8 +12,13 @@ material = generic_pva variant = BB 0.4 [values] +support_infill_sparse_thickness = =3*layer_height brim_replaces_support = False material_standby_temperature = 100 prime_tower_enable = False +retraction_count_max = 5 support_brim_enable = True -support_infill_sparse_thickness = 0.18 +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_Normal_Quality.inst.cfg index cf4c07a411..d5397c44eb 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_Normal_Quality.inst.cfg @@ -12,7 +12,13 @@ material = generic_pva variant = BB 0.4 [values] +support_infill_sparse_thickness = =2*layer_height brim_replaces_support = False material_standby_temperature = 100 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 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_Verydraft_Print.inst.cfg index e7a9936864..6bacefc331 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_Verydraft_Print.inst.cfg @@ -15,6 +15,11 @@ is_experimental = True [values] brim_replaces_support = False material_standby_temperature = 100 +prime_tower_enable = False +retraction_count_max = 5 support_brim_enable = True support_infill_sparse_thickness = 0.3 -support_interface_height = 1.2 +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_Draft_Print.inst.cfg index 979295a38d..0259c3040f 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_Draft_Print.inst.cfg @@ -15,4 +15,9 @@ variant = BB 0.8 brim_replaces_support = False material_print_temperature = =default_material_print_temperature + 5 material_standby_temperature = 100 +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 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_Superdraft_Print.inst.cfg index ffdc9c9d26..c1768abc54 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_Superdraft_Print.inst.cfg @@ -14,5 +14,9 @@ variant = BB 0.8 [values] brim_replaces_support = False material_standby_temperature = 100 +retraction_count_max = 5 support_brim_enable = True -support_interface_height = 0.9 +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_Verydraft_Print.inst.cfg index 871af303ed..315ee5748f 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_Verydraft_Print.inst.cfg @@ -14,6 +14,10 @@ variant = BB 0.8 [values] brim_replaces_support = False material_standby_temperature = 100 +retraction_count_max = 5 support_brim_enable = True support_infill_sparse_thickness = 0.3 -support_interface_height = 1.2 +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_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_PLA_Draft_Print.inst.cfg index 6a4115dd82..4b82c58a66 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_Draft_Print.inst.cfg @@ -24,8 +24,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 @@ -34,6 +32,4 @@ speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_angle = 70 -support_pattern = ='triangles' -support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 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_Fast_Print.inst.cfg index 7392f4e6ee..6c855696de 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_Fast_Print.inst.cfg @@ -24,8 +24,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 @@ -34,6 +32,4 @@ speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_angle = 70 -support_pattern = ='triangles' -support_xy_distance = =wall_line_width_0 * 1.5 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_Draft_Print.inst.cfg index 053b9399a5..d0cfbad066 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_Draft_Print.inst.cfg @@ -24,8 +24,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 @@ -34,6 +32,4 @@ speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_angle = 70 -support_pattern = ='triangles' -support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 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_Fast_Print.inst.cfg index 9835e46e5d..14bc1dd211 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_Fast_Print.inst.cfg @@ -24,8 +24,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 @@ -34,6 +32,4 @@ speed_wall = =math.ceil(speed_print * 40 / 45) speed_wall_x = =speed_wall speed_wall_0 = =math.ceil(speed_wall * 35 / 40) support_angle = 70 -support_pattern = ='triangles' -support_xy_distance = =wall_line_width_0 * 1.5 top_bottom_thickness = =layer_height * 4 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 36bd4a418e..92822db83a 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 0df5bc6c70..9570fd6049 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 ad1c5cefa3..41133ab5e9 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 c7d27aa68f..c2d41a12f3 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 496b2fa99a..5ba4ef57d6 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 dcae03610a..b3a4619adf 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 ef3e1b27d2..425b43ab97 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 6061fde97c..e5c61d2c4b 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.3 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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..aad9aaa72e --- /dev/null +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_abs +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +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 = 60 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 80 +retraction_amount = 3 +retraction_speed = 20 +retraction_prime_speed = =retraction_speed +infill_sparse_density = 10 +bridge_skin_speed = 20 +support_infill_rate = 20 +adhesion_type = skirt +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 \ No newline at end of file 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..0390da964f --- /dev/null +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_abs +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +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 = 60 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 80 +retraction_amount = 3 +retraction_speed = 20 +retraction_prime_speed = =retraction_speed +infill_sparse_density = 10 +bridge_skin_speed = 20 +support_infill_rate = 20 +adhesion_type = skirt +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 \ No newline at end of file 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..3507a73253 --- /dev/null +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_abs +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +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 = 60 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 80 +retraction_amount = 3 +retraction_speed = 20 +retraction_prime_speed = =retraction_speed +infill_sparse_density = 10 +bridge_skin_speed = 20 +support_infill_rate = 20 +adhesion_type = skirt +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 \ No newline at end of file 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..5c6b976c32 --- /dev/null +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_abs +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.30 +material_diameter = 1.75 +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 = 60 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 80 +retraction_amount = 3 +retraction_speed = 20 +retraction_prime_speed = =retraction_speed +infill_sparse_density = 10 +bridge_skin_speed = 20 +support_infill_rate = 20 +adhesion_type = skirt +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 \ No newline at end of file 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 068f2f2334..fc2887c891 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 7ff181eb5e..c2d9310692 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 4145ef11b6..8f81b60e09 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 a3fb7a4240..ac6aae3a2e 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 77d6a48495..85cb4ddee2 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 7689800f7f..8d12ab17d9 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 f6d817855c..660b58d5fa 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 f51bc16ae1..1e3aee314a 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 add97b3a41..731e9f47ea 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 773bce7728..55d9f12704 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 aaf0e51b4f..2159986358 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 @@ -13,7 +13,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 62567d3753..8ab5f3e46f 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 e472eda7c4..0be08f3100 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 f842caf54a..c460fde89e 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 80403b587f..330a02ede0 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 3ab32e8bce..84eb883dc6 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.3 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 59b05f6da0..fd269b8d52 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 5cc3ff51ca..5b54794866 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 24eab920d9..207b2100d8 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 8fc1df475e..802e984ff7 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.3 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 a08fb6b9a3..a315491578 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 @@ -14,7 +14,6 @@ variant = Stainless Steel 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 3c8caa8605..9dc187273c 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 @@ -14,7 +14,6 @@ variant = Stainless Steel 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 72318b75e4..fd21a7ee91 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 @@ -14,7 +14,6 @@ variant = Stainless Steel 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 ad99c3e27c..d87621a531 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 @@ -14,7 +14,6 @@ variant = Stainless Steel 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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..65cc44d6d1 --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg @@ -0,0 +1,33 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_antibact_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +material_bed_temperature = 60 +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +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 = 60 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 80 +retraction_amount = 4.5 +retraction_speed = 20 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 20 +adhesion_type = skirt \ No newline at end of file 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..8dda63f0f8 --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg @@ -0,0 +1,33 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_antibact_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +material_bed_temperature = 60 +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +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 = 60 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 80 +retraction_amount = 4.5 +retraction_speed = 20 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 20 +adhesion_type = skirt \ No newline at end of file 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..f302bfd624 --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg @@ -0,0 +1,33 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_antibact_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +material_bed_temperature = 60 +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +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 = 60 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 80 +retraction_amount = 4.5 +retraction_speed = 20 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 20 +adhesion_type = skirt \ No newline at end of file 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..ea027c21b3 --- /dev/null +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg @@ -0,0 +1,33 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_antibact_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +material_bed_temperature = 60 +layer_height = 0.2 +layer_height_0 = 0.30 +material_diameter = 1.75 +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 = 60 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 80 +retraction_amount = 4.5 +retraction_speed = 20 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 20 +adhesion_type = skirt \ No newline at end of file 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 dd35e3ae42..9c84281c7a 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 2ee6907874..afd27ae722 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 03ba19dc40..510d48426a 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 8f053b68e8..1ecafc72bb 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 38b4a9d36f..cc345dbba7 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 dc2e1fda09..90780031d5 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 1c48be29b0..5682d4b35a 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 d596f0e80a..0850c8b68e 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 b043c7c196..5b7de60137 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 635ccf3f1a..4bcdc66683 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 95725a39ef..4419d9316c 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 60b1315d04..7dd8374aa7 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.3 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 6f7ae4c861..18e946037b 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 f7b327e7cc..23eee28cd7 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 d476b21488..c09a9740bc 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 2d861827c6..0e81830472 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.3 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 a2a0e605ec..fb16ffc822 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 d25375726d..124e5b2f29 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 1e9dd55f44..a86cfa17d2 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 fc6748a438..374742ca6f 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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..fe6a2d359a --- /dev/null +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_carbon_fiber +variant = Hardened Steel 0.4mm Nozzle + +[values] +material_bed_temperature = 60 +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +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 = 60 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 80 +retraction_amount = 6.5 +retraction_speed = 20 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 20 +adhesion_type = skirt +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 \ No newline at end of file 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..c3ed048f94 --- /dev/null +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_carbon_fiber +variant = Hardened Steel 0.4mm Nozzle + +[values] +material_bed_temperature = 60 +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +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 = 60 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 80 +retraction_amount = 6.5 +retraction_speed = 20 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 20 +adhesion_type = skirt +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 \ No newline at end of file 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..aeb90c8ed1 --- /dev/null +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_carbon_fiber +variant = Hardened Steel 0.4mm Nozzle + +[values] +material_bed_temperature = 60 +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +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 = 60 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 80 +retraction_amount = 6.5 +retraction_speed = 20 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 20 +adhesion_type = skirt +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 \ No newline at end of file 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..8a2a29504e --- /dev/null +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_carbon_fiber +variant = Hardened Steel 0.4mm Nozzle + +[values] +material_bed_temperature = 60 +layer_height = 0.2 +layer_height_0 = 0.30 +material_diameter = 1.75 +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 = 60 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 80 +retraction_amount = 6.5 +retraction_speed = 20 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 20 +adhesion_type = skirt +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 \ No newline at end of file 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 075c86b976..ebaa6754eb 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 8da8177932..66566a6618 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 291ba732d2..56419af216 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 5a86985096..024707b534 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 a71e2b325f..218be0c25a 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 3c80b103da..394416097d 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 0fdd2be37b..18ea9f1f57 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 e6e096562b..e2121793db 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 309e3cf89d..202a074bfd 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 @@ -14,7 +14,6 @@ variant = Stainless Steel 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 288c1db946..46ac95c7ec 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 @@ -14,7 +14,6 @@ variant = Stainless Steel 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 7f135b72c7..e624873954 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 @@ -14,7 +14,6 @@ variant = Stainless Steel 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 ff8ac47cee..9a9f637c42 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 @@ -14,7 +14,6 @@ variant = Stainless Steel 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 45930c18ac..f4f581b823 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 a2371e19a6..ec627a7d92 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 a3a9d7d944..3bb4123431 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 6e659c0f4a..a9ac7c2706 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 84e0d95d83..50bdbebdfe 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 5f083c9a20..3e9dd619f9 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 616d101cf5..b82b3326dc 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 f500995042..cb536269ff 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 5c7231de82..c0502165a2 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 247db2e9f0..560e212d7c 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 5b2121ef5d..f04189e175 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 8f410556ac..b53d5352a7 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 4bb000d656..7604763b1c 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 ade98822c5..f3f7c0258a 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 52cf7f6120..acd72ab2de 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 d2688c28ce..013068f63e 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.3 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 efcfd46466..f3bf32a869 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 012592adb6..225bfaa348 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 7fe07f5937..64f1044a53 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 69c680466d..0f0027f877 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.3 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 4698ee64e1..35bbde5751 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 488ed48551..bc74ec20f1 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 432980baa9..e3bcdbcd6a 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 27c9d442c3..8fab1447fc 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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..b32467b7b6 --- /dev/null +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_metallic_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +material_bed_temperature = 60 +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +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 = 60 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 80 +retraction_amount = 3 +retraction_speed = 20 +retraction_prime_speed = =retraction_speed +infill_sparse_density = 10 +bridge_skin_speed = 20 +adhesion_type = skirt +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 \ No newline at end of file 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..d852237394 --- /dev/null +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_metallic_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +material_bed_temperature = 60 +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +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 = 60 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 80 +retraction_amount = 3 +retraction_speed = 20 +retraction_prime_speed = =retraction_speed +infill_sparse_density = 10 +bridge_skin_speed = 20 +adhesion_type = skirt +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 \ No newline at end of file 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..24d8f006c1 --- /dev/null +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_metallic_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +material_bed_temperature = 60 +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +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 = 60 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 80 +retraction_amount = 3 +retraction_speed = 20 +retraction_prime_speed = =retraction_speed +infill_sparse_density = 10 +bridge_skin_speed = 20 +adhesion_type = skirt +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 \ No newline at end of file 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..65813f660f --- /dev/null +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_metallic_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +material_bed_temperature = 60 +layer_height = 0.2 +layer_height_0 = 0.30 +material_diameter = 1.75 +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 = 60 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 80 +retraction_amount = 3 +retraction_speed = 20 +retraction_prime_speed = =retraction_speed +infill_sparse_density = 10 +bridge_skin_speed = 20 +adhesion_type = skirt +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 \ No newline at end of file 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 901bbe631f..355ec0a4ab 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 b6f6d5d2c3..7035535497 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 9d3eb64a33..18e60deb69 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 cd32ccc895..19b2becfbf 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 @@ -14,7 +14,6 @@ variant = Hardened Steel 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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..0e63f87aa8 --- /dev/null +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_nylon +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature = 100 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature = 260 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 40 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 150 +retraction_amount = 6.0 +retraction_speed = 50 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 50 +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 \ No newline at end of file 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..079860a5b6 --- /dev/null +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_nylon +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature = 100 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature = 260 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 40 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 150 +retraction_amount = 6.0 +retraction_speed = 50 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 50 +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 \ No newline at end of file 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..310b83853e --- /dev/null +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_nylon +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_bed_temperature = 100 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature = 260 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 40 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 150 +retraction_amount = 6.0 +retraction_speed = 50 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 50 +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 \ No newline at end of file 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..f64c7b90c5 --- /dev/null +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_nylon +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.30 +material_diameter = 1.75 +material_bed_temperature = 100 +material_bed_temperature_layer_0 = =material_bed_temperature +material_print_temperature = 260 +material_print_temperature_layer_0 = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_final_print_temperature = =material_print_temperature +speed_print = 40 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 150 +retraction_amount = 6.0 +retraction_speed = 50 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 50 +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 \ No newline at end of file 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 bf85acaead..a73a8e12e7 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 a8b2142164..1b9767b614 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 b322bcd26e..06c28e0dc1 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 ccb01b9d1e..d17cfa0ebb 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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..2f291a310c --- /dev/null +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg @@ -0,0 +1,39 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_pahtcf15 +variant = Hardened Steel High Temp. 0.6mm Nozzle + +[values] +line_width = 0.4 +wall_line_width_x = 0.4 +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +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 = 20 +speed_infill = 40 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 150 +speed_layer_0 = 15 +retraction_amount = 7 +retraction_speed = 50 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 50 +acceleration_infill = 500.0 +acceleration_wall = 500.0 +acceleration_wall_0 = 500.0 +infill_material_flow = 85 +wall_material_flow = 85 \ No newline at end of file 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..e3f8082b3c --- /dev/null +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg @@ -0,0 +1,39 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_pahtcf15 +variant = Hardened Steel High Temp. 0.6mm Nozzle + +[values] +line_width = 0.4 +wall_line_width_x = 0.4 +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +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 = 20 +speed_infill = 40 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 150 +speed_layer_0 = 15 +retraction_amount = 7 +retraction_speed = 50 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 50 +acceleration_infill = 500.0 +acceleration_wall = 500.0 +acceleration_wall_0 = 500.0 +infill_material_flow = 85 +wall_material_flow = 85 \ No newline at end of file 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..735b3a9e8e --- /dev/null +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg @@ -0,0 +1,39 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_pahtcf15 +variant = Hardened Steel High Temp. 0.6mm Nozzle + +[values] +line_width = 0.4 +wall_line_width_x = 0.4 +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +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 = 20 +speed_infill = 40 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 150 +speed_layer_0 = 15 +retraction_amount = 7 +retraction_speed = 50 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 50 +acceleration_infill = 500.0 +acceleration_wall = 500.0 +acceleration_wall_0 = 500.0 +infill_material_flow = 85 +wall_material_flow = 85 \ No newline at end of file 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..a722f3d5ac --- /dev/null +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg @@ -0,0 +1,39 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_pahtcf15 +variant = Hardened Steel High Temp. 0.6mm Nozzle + +[values] +line_width = 0.4 +wall_line_width_x = 0.4 +layer_height = 0.2 +layer_height_0 = 0.3 +material_diameter = 1.75 +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 = 20 +speed_infill = 40 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 150 +speed_layer_0 = 15 +retraction_amount = 7 +retraction_speed = 50 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 50 +acceleration_infill = 500.0 +acceleration_wall = 500.0 +acceleration_wall_0 = 500.0 +infill_material_flow = 85 +wall_material_flow = 85 \ No newline at end of file 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..87200663cd --- /dev/null +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg @@ -0,0 +1,32 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_pc +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +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 = 40 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 150 +retraction_amount = 3.0 +retraction_speed = 50 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 100 +acceleration_infill = 1500.0 \ No newline at end of file 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..9ce244c865 --- /dev/null +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg @@ -0,0 +1,32 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_pc +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +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 = 40 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 150 +retraction_amount = 3.0 +retraction_speed = 50 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 100 +acceleration_infill = 1500.0 \ No newline at end of file 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..27662123a3 --- /dev/null +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg @@ -0,0 +1,32 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_pc +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +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 = 40 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 150 +retraction_amount = 3.0 +retraction_speed = 50 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 100 +acceleration_infill = 1500.0 \ No newline at end of file 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..fdef6243c7 --- /dev/null +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg @@ -0,0 +1,32 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_pc +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.30 +material_diameter = 1.75 +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 = 40 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 150 +retraction_amount = 3.0 +retraction_speed = 50 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 100 +acceleration_infill = 1500.0 \ No newline at end of file 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..e4a7568fb3 --- /dev/null +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg @@ -0,0 +1,39 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_pc +variant = Hardened Steel High Temp. 0.6mm Nozzle + +[values] +infill_line_width = 0.6 +line_width = 0.6 +wall_line_width_x = 0.6 +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +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 = 40 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 150 +speed_layer_0 = 15 +retraction_amount = 5.5 +retraction_speed = 50 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 100 +acceleration_infill = 500.0 +acceleration_wall = 500.0 +acceleration_wall_0 = 500.0 +adhesion_type = brim \ No newline at end of file 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..135bff0276 --- /dev/null +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg @@ -0,0 +1,39 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_pc +variant = Hardened Steel High Temp. 0.6mm Nozzle + +[values] +infill_line_width = 0.6 +line_width = 0.6 +wall_line_width_x = 0.6 +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +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 = 40 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 150 +speed_layer_0 = 15 +retraction_amount = 5.5 +retraction_speed = 50 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 100 +acceleration_infill = 500.0 +acceleration_wall = 500.0 +acceleration_wall_0 = 500.0 +adhesion_type = brim \ No newline at end of file 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..e454e4e55b --- /dev/null +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg @@ -0,0 +1,39 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_pc +variant = Hardened Steel High Temp. 0.6mm Nozzle + +[values] +infill_line_width = 0.6 +line_width = 0.6 +wall_line_width_x = 0.6 +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +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 = 40 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 150 +speed_layer_0 = 15 +retraction_amount = 5.5 +retraction_speed = 50 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 100 +acceleration_infill = 500.0 +acceleration_wall = 500.0 +acceleration_wall_0 = 500.0 +adhesion_type = brim \ No newline at end of file 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..f54c4828fa --- /dev/null +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg @@ -0,0 +1,39 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_pc +variant = Hardened Steel High Temp. 0.6mm Nozzle + +[values] +infill_line_width = 0.6 +line_width = 0.6 +wall_line_width_x = 0.6 +layer_height = 0.2 +layer_height_0 = 0.30 +material_diameter = 1.75 +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 = 40 +speed_wall = =speed_print +speed_infill = =speed_print +speed_support = =speed_print +speed_travel = 150 +speed_layer_0 = 15 +retraction_amount = 5.5 +retraction_speed = 50 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 100 +acceleration_infill = 500.0 +acceleration_wall = 500.0 +acceleration_wall_0 = 500.0 +adhesion_type = brim \ No newline at end of file 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..7233fb108b --- /dev/null +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg @@ -0,0 +1,36 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_petcf15 +variant = Hardened Steel High Temp. 0.6mm Nozzle + +[values] +material_bed_temperature = 70 +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +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 = 30 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 150 +retraction_amount = 7 +retraction_speed = 50 +retraction_prime_speed = =retraction_speed +infill_sparse_density = 10 +bridge_skin_speed = 50 +speed_layer_0 = 15 +acceleration_infill = 500.0 +acceleration_wall = 500.0 +acceleration_wall_0 = 500.0 \ No newline at end of file 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..018a0fafb3 --- /dev/null +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg @@ -0,0 +1,36 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_petcf15 +variant = Hardened Steel High Temp. 0.6mm Nozzle + +[values] +material_bed_temperature = 70 +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +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 = 30 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 150 +retraction_amount = 7 +retraction_speed = 50 +retraction_prime_speed = =retraction_speed +infill_sparse_density = 10 +bridge_skin_speed = 50 +speed_layer_0 = 15 +acceleration_infill = 500.0 +acceleration_wall = 500.0 +acceleration_wall_0 = 500.0 \ No newline at end of file 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..9dee9a2a5b --- /dev/null +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg @@ -0,0 +1,36 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_petcf15 +variant = Hardened Steel High Temp. 0.6mm Nozzle + +[values] +material_bed_temperature = 70 +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +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 = 30 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 150 +retraction_amount = 7 +retraction_speed = 50 +retraction_prime_speed = =retraction_speed +infill_sparse_density = 10 +bridge_skin_speed = 50 +speed_layer_0 = 15 +acceleration_infill = 500.0 +acceleration_wall = 500.0 +acceleration_wall_0 = 500.0 \ No newline at end of file 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..8795cdd067 --- /dev/null +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg @@ -0,0 +1,36 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_petcf15 +variant = Hardened Steel High Temp. 0.6mm Nozzle + +[values] +material_bed_temperature = 70 +layer_height = 0.2 +layer_height_0 = 0.3 +material_diameter = 1.75 +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 = 30 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 150 +retraction_amount = 7 +retraction_speed = 50 +retraction_prime_speed = =retraction_speed +infill_sparse_density = 10 +bridge_skin_speed = 50 +speed_layer_0 = 15 +acceleration_infill = 500.0 +acceleration_wall = 500.0 +acceleration_wall_0 = 500.0 \ No newline at end of file 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 661397467a..5e531e1c24 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 e5170d4ba7..402469864b 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 64711edab2..de7ffe8913 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 0f601051ee..67fdb2717e 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 c4d5706ab3..2e2fa7cc04 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 a8ecbbc41b..cfe072e728 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 3bb50f040a..d90ff6c758 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 f4a60c7ab2..cae759d562 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 e45d5a35e9..345ca1a827 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 26cb12e942..99fcaa34ac 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 919caa45ef..0159dbfa9a 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 777e3d61f8..d30f928e17 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.3 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 50e341a21f..2366baac31 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 dea23ad8b3..56ee92cfb1 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 132f96508f..4e02e76e9e 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 159a44fae3..435145303a 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.3 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 5dde6a8b7f..27a204ce55 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 @@ -14,7 +14,6 @@ variant = Stainless Steel 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 33b57c228e..0a01a5ff1a 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 @@ -14,7 +14,6 @@ variant = Stainless Steel 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 a3ef09425e..07447aa336 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 @@ -14,7 +14,6 @@ variant = Stainless Steel 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 3f3317c608..78de24173e 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 @@ -14,7 +14,6 @@ variant = Stainless Steel 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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..784a6891d4 --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_petg +variant = Hardened Steel 0.4mm Nozzle + +[values] +material_bed_temperature = 70 +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +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 = 60 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 80 +retraction_amount = 3 +retraction_speed = 20 +retraction_prime_speed = =retraction_speed +infill_sparse_density = 10 +bridge_skin_speed = 20 +adhesion_type = skirt +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 \ No newline at end of file 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..6de215e455 --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_petg +variant = Hardened Steel 0.4mm Nozzle + +[values] +material_bed_temperature = 70 +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +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 = 60 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 80 +retraction_amount = 3 +retraction_speed = 20 +retraction_prime_speed = =retraction_speed +infill_sparse_density = 10 +bridge_skin_speed = 20 +adhesion_type = skirt +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 \ No newline at end of file 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..e29278dd9e --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_petg +variant = Hardened Steel 0.4mm Nozzle + +[values] +material_bed_temperature = 70 +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +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 = 60 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 80 +retraction_amount = 3 +retraction_speed = 20 +retraction_prime_speed = =retraction_speed +infill_sparse_density = 10 +bridge_skin_speed = 20 +adhesion_type = skirt +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 \ No newline at end of file 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..0c18ba02d9 --- /dev/null +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_petg +variant = Hardened Steel 0.4mm Nozzle + +[values] +material_bed_temperature = 70 +layer_height = 0.2 +layer_height_0 = 0.30 +material_diameter = 1.75 +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 = 60 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 80 +retraction_amount = 3 +retraction_speed = 20 +retraction_prime_speed = =retraction_speed +infill_sparse_density = 10 +bridge_skin_speed = 20 +adhesion_type = skirt +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 \ No newline at end of file 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 3d5d51f8ee..e922a2da6f 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 a7fc9d05f2..303090d266 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 add9224c1c..87b7ac3c68 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 29805978f5..0bd9dd5625 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 5850efdff0..75972101e6 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 e681f92412..2b9a568f4c 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 9cda0be921..d72d5a0929 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 e536ec10ee..f73e0c35b7 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 740da8dba1..21ecc91bda 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 1e0e0c7f2a..62b59ceed7 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 ac023fe7b5..b42627879c 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 75b87cf990..1f28e50af5 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 43edb737dc..df7b6136e0 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 1f51061e4a..82279c9794 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 977b245171..7f34eabc71 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 15a20d3d0a..ae26a479d0 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.3 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 d2062d5d2d..6cb64326ba 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 e8ab2280e9..67b3394834 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 e032ea8412..b6128f2108 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 43343c78fe..9e72b54974 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.3 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 849166c084..86e350d9c8 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 @@ -14,7 +14,6 @@ variant = Stainless Steel 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 77e71dc168..9778f2bea8 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 @@ -14,7 +14,6 @@ variant = Stainless Steel 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 ea8ff31b1b..b3867cc83d 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 @@ -14,7 +14,6 @@ variant = Stainless Steel 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 04d79a6b72..63ee41e19c 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 @@ -14,7 +14,6 @@ variant = Stainless Steel 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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..40298dcb60 --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg @@ -0,0 +1,33 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +material_bed_temperature = 60 +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +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 = 60 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 80 +retraction_amount = 4.5 +retraction_speed = 20 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 20 +adhesion_type = skirt \ No newline at end of file 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..09a55b6c3d --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg @@ -0,0 +1,33 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +material_bed_temperature = 60 +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +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 = 60 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 80 +retraction_amount = 4.5 +retraction_speed = 20 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 20 +adhesion_type = skirt \ No newline at end of file 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..6efaedd517 --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg @@ -0,0 +1,33 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +material_bed_temperature = 60 +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +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 = 60 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 80 +retraction_amount = 4.5 +retraction_speed = 20 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 20 +adhesion_type = skirt \ No newline at end of file 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..8be9793a9e --- /dev/null +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg @@ -0,0 +1,33 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +material_bed_temperature = 60 +layer_height = 0.2 +layer_height_0 = 0.30 +material_diameter = 1.75 +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 = 60 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 80 +retraction_amount = 4.5 +retraction_speed = 20 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 20 +adhesion_type = skirt \ No newline at end of file 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 5329ba6b62..cd0721aaed 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 ae69294d66..e67a978a97 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 65f0faf8c8..3807cb4303 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 bade157da9..2df983040b 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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..43ae099126 --- /dev/null +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg @@ -0,0 +1,37 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_ppgf30 +variant = Hardened Steel 0.4mm Nozzle + +[values] +material_bed_temperature = 100 +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +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 = 20 +speed_infill = 30 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 200 +retraction_amount = 6 +retraction_speed = 50 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 50 +brim_width = 20.0 +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 +infill_material_flow = 85 +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..793a08f433 --- /dev/null +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg @@ -0,0 +1,37 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_ppgf30 +variant = Hardened Steel 0.4mm Nozzle + +[values] +material_bed_temperature = 100 +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +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 = 20 +speed_infill = 30 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 200 +retraction_amount = 6 +retraction_speed = 50 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 50 +brim_width = 20.0 +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 +infill_material_flow = 85 +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..1e719a284c --- /dev/null +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg @@ -0,0 +1,32 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_ppgf30 +variant = Hardened Steel 0.4mm Nozzle + +[values] +material_bed_temperature = 90 +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +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 = 20 +speed_infill = 30 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 200 +retraction_amount = 6 +retraction_speed = 50 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 50 \ No newline at end of file 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..156f42ef22 --- /dev/null +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg @@ -0,0 +1,37 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_ppgf30 +variant = Hardened Steel 0.4mm Nozzle + +[values] +material_bed_temperature = 100 +layer_height = 0.2 +layer_height_0 = 0.3 +material_diameter = 1.75 +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 = 20 +speed_infill = 30 +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 200 +retraction_amount = 6 +retraction_speed = 50 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 50 +brim_width = 20.0 +acceleration_infill = 1000.0 +acceleration_wall = 1000.0 +infill_material_flow = 85 +wall_material_flow = 85 \ No newline at end of file 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 20fa5a37e8..ba6d8a397a 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 74854436b6..3a18e37e32 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 e429d1fdf5..5fe402c160 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 6462fb276a..36640bc57a 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 f71f31af8a..821f8d28a7 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 2f5e093278..3b02b86f2a 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 a97961c606..f30a83c6f8 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 9887896af1..21d8fa9d1a 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 d56c69abd8..eeaf2fe528 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 08aa2f0249..86a84dbe32 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 3c89381408..0f399e8098 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 9898a0db74..87d3f8c1d6 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.3 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 001b2dbeb4..3a119db307 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 c7e2195b1d..478a469ec4 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 a37eabf479..0417eda4f1 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 d740801613..fbc48b1ca5 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.3 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 8f95d0b794..2e33f02edb 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 @@ -14,7 +14,6 @@ variant = Stainless Steel 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 0b90471b02..1b54aa0132 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 @@ -14,7 +14,6 @@ variant = Stainless Steel 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 39b0dbda6d..ee14f606e5 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 @@ -14,7 +14,6 @@ variant = Stainless Steel 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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 4fd1939596..9d7669f721 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 @@ -14,7 +14,6 @@ variant = Stainless Steel 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature material_final_print_temperature = =material_print_temperature 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..17e733f5c7 --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg @@ -0,0 +1,34 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_tough_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature = 60 +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 = 60 +speed_wall = =speed_print +speed_topbottom = 10 +speed_support = =speed_print +speed_travel = 80 +retraction_amount = 4.5 +retraction_speed = 20 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 20 +adhesion_type = skirt \ No newline at end of file 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..a4c9e07aad --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg @@ -0,0 +1,34 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_tough_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature = 60 +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 = 60 +speed_wall = =speed_print +speed_topbottom = 10 +speed_support = =speed_print +speed_travel = 80 +retraction_amount = 4.5 +retraction_speed = 20 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 20 +adhesion_type = skirt \ No newline at end of file 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..70b610cb39 --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg @@ -0,0 +1,34 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_tough_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_bed_temperature = 60 +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 = 60 +speed_wall = =speed_print +speed_topbottom = 10 +speed_support = =speed_print +speed_travel = 80 +retraction_amount = 4.5 +retraction_speed = 20 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 20 +adhesion_type = skirt \ No newline at end of file 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..309a8512e1 --- /dev/null +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg @@ -0,0 +1,34 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_tough_pla +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.30 +material_diameter = 1.75 +material_bed_temperature = 60 +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 = 60 +speed_wall = =speed_print +speed_topbottom = 10 +speed_support = =speed_print +speed_travel = 80 +retraction_amount = 4.5 +retraction_speed = 20 +retraction_prime_speed = 15 +infill_sparse_density = 10 +bridge_skin_speed = 20 +adhesion_type = skirt \ No newline at end of file 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 882ba28d76..be7a300af6 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 babfe56e48..23596bd07e 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 e546c38388..1fef58c478 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 2d1783eefb..4c49317e34 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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..9a8f254d1d --- /dev/null +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = coarse +weight = -3 +material = xyzprinting_tpu +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature = 60 +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_infill = =speed_print +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 200 +retraction_amount = 6 +retraction_speed = 50 +retraction_prime_speed = =15 +infill_sparse_density = 10 +brim_width = 5.0 +bridge_skin_speed = 100 +acceleration_infill = 1500.0 +acceleration_wall = 1000.0 \ No newline at end of file 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..623381312f --- /dev/null +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = draft +weight = -2 +material = xyzprinting_tpu +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +material_bed_temperature = 60 +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_infill = =speed_print +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 200 +retraction_amount = 6 +retraction_speed = 50 +retraction_prime_speed = =15 +infill_sparse_density = 10 +brim_width = 5.0 +bridge_skin_speed = 100 +acceleration_infill = 1500.0 +acceleration_wall = 1000.0 \ No newline at end of file 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..cd589ae435 --- /dev/null +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = fine +weight = 0 +material = xyzprinting_tpu +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +material_bed_temperature = 60 +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_infill = =speed_print +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 200 +retraction_amount = 6 +retraction_speed = 50 +retraction_prime_speed = =15 +infill_sparse_density = 10 +brim_width = 5.0 +bridge_skin_speed = 100 +acceleration_infill = 1500.0 +acceleration_wall = 1000.0 \ No newline at end of file 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..34211a6adc --- /dev/null +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = normal +weight = -1 +material = xyzprinting_tpu +variant = Hardened Steel 0.4mm Nozzle + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +material_diameter = 1.75 +material_bed_temperature = 60 +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_infill = =speed_print +speed_wall = =speed_print +speed_support = =speed_print +speed_travel = 200 +retraction_amount = 6 +retraction_speed = 50 +retraction_prime_speed = =15 +infill_sparse_density = 10 +brim_width = 5.0 +bridge_skin_speed = 100 +acceleration_infill = 1500.0 +acceleration_wall = 1000.0 \ No newline at end of file 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 bdecfae38c..cdd10c037f 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 f1d9f2e1fa..c58cb58a90 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 5f908c1218..94d879d9b7 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 ac1956d2f5..326d783309 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 @@ -14,7 +14,6 @@ variant = Copper 0.4mm Nozzle [values] layer_height = 0.2 layer_height_0 = 0.35 -material_diameter = 1.75 material_bed_temperature_layer_0 = =material_bed_temperature material_print_temperature_layer_0 = =material_print_temperature material_initial_print_temperature = =material_print_temperature 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 4d66f8374c..c10c9b4cce 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 @@ -13,5 +13,4 @@ global_quality = True [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 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 f0bba8e8a2..ad37a22dc6 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 @@ -13,5 +13,4 @@ global_quality = True [values] layer_height = 0.2 layer_height_0 = 0.3 -material_diameter = 1.75 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 35f4f917fc..4bc48c97e5 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 @@ -13,5 +13,4 @@ global_quality = True [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 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 d8a53cdd85..ca3c4e9688 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 @@ -13,5 +13,4 @@ global_quality = True [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 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 86681438b2..009858d718 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 @@ -13,5 +13,4 @@ global_quality = True [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 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 0383c21cc4..29347c4f16 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 @@ -13,5 +13,4 @@ global_quality = True [values] layer_height = 0.2 layer_height_0 = 0.3 -material_diameter = 1.75 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 df99dd159a..0ebdc130e3 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 @@ -13,5 +13,4 @@ global_quality = True [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 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 f51da6f451..1894adf7e5 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 @@ -13,5 +13,4 @@ global_quality = True [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 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 50f0f2cb61..bbee3c2010 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 @@ -13,5 +13,4 @@ global_quality = True [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 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 f3a2d76378..ed66ae76d3 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 @@ -13,5 +13,4 @@ global_quality = True [values] layer_height = 0.2 layer_height_0 = 0.3 -material_diameter = 1.75 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 ce3b2a5059..1a7270df73 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 @@ -13,5 +13,4 @@ global_quality = True [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 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 301a19ae39..79ba44e0c7 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 @@ -13,5 +13,4 @@ global_quality = True [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 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 e83148dd0f..c69b6b5319 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 @@ -13,5 +13,4 @@ global_quality = True [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 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 a1acc194d0..b7db17a61d 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 @@ -13,5 +13,4 @@ global_quality = True [values] layer_height = 0.2 layer_height_0 = 0.3 -material_diameter = 1.75 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 1fa9f1bd52..375c3c024d 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 @@ -13,5 +13,4 @@ global_quality = True [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 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 a95548afc7..859016ff32 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 @@ -13,5 +13,4 @@ global_quality = True [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 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 b310389673..e3ed234453 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 @@ -13,5 +13,4 @@ global_quality = True [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 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 6264498602..67774fda4d 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 @@ -13,5 +13,4 @@ global_quality = True [values] layer_height = 0.2 layer_height_0 = 0.3 -material_diameter = 1.75 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 79c6315100..43f9c5fb90 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 @@ -13,5 +13,4 @@ global_quality = True [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 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 8e9da68230..84f781a6c1 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 @@ -13,5 +13,4 @@ global_quality = True [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 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..f0e8dfdc37 --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = fine +weight = 0 +global_quality = True + +[values] +layer_height = 0.1 +layer_height_0 = 0.2 +material_diameter = 1.75 +infill_sparse_density = 10 \ No newline at end of file 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..4631432b4a --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Normal Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = normal +weight = -1 +global_quality = True + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +material_diameter = 1.75 +infill_sparse_density = 10 \ No newline at end of file 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..4e25003939 --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = draft +weight = -2 +global_quality = True + +[values] +layer_height = 0.3 +layer_height_0 = 0.4 +material_diameter = 1.75 +infill_sparse_density = 10 \ No newline at end of file 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..606ecfc0fa --- /dev/null +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Coarse Quality +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = quality +quality_type = coarse +weight = -3 +global_quality = True + +[values] +layer_height = 0.4 +layer_height_0 = 0.4 +material_diameter = 1.75 +infill_sparse_density = 10 \ No newline at end of file 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 fe4c3d4189..5cc8c167b1 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 @@ -13,5 +13,4 @@ global_quality = True [values] layer_height = 0.1 layer_height_0 = 0.2 -material_diameter = 1.75 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 26386aeb86..c05391efe0 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 @@ -13,5 +13,4 @@ global_quality = True [values] layer_height = 0.2 layer_height_0 = 0.3 -material_diameter = 1.75 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 faa17e0e23..46f76b4d1d 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 @@ -13,5 +13,4 @@ global_quality = True [values] layer_height = 0.3 layer_height_0 = 0.4 -material_diameter = 1.75 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 1744c0f479..cfdbce64d3 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 @@ -13,5 +13,4 @@ global_quality = True [values] layer_height = 0.4 layer_height_0 = 0.4 -material_diameter = 1.75 infill_sparse_density = 10 \ No newline at end of file diff --git a/resources/setting_visibility/basic.cfg b/resources/setting_visibility/basic.cfg index 6952baee2a..927989fee3 100644 --- a/resources/setting_visibility/basic.cfg +++ b/resources/setting_visibility/basic.cfg @@ -44,6 +44,7 @@ support_enable support_extruder_nr support_type support_angle +support_offset [platform_adhesion] prime_blob_enable diff --git a/resources/texts/change_log.txt b/resources/texts/change_log.txt index 91d54ef17a..d68840bba8 100644 --- a/resources/texts/change_log.txt +++ b/resources/texts/change_log.txt @@ -1,3 +1,174 @@ +[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. + +* New slicing engine +Following special beta releases to test the Arachne engine, we are pleased to announce our new slicing engine is here in Ultimaker Cura! This all-new engine uses variable line widths when preparing files for printing, meaning you can now print thin and intricate parts more accurately and with greater strength. + +* Renewed the Ultimaker Cura Marketplace +We have streamlined the workflow for accessing the Ultimaker Marketplace inside of Ultimaker Cura. The UI has been improved and it’s now easier and faster to find and install plugins and material profiles. + +* Improved print profiles for Ultimaker printers +The new slicing engine in Ultimaker Cura 5.0 has helped us to improve our print profiles. This means that users of Ultimaker printers can achieve speed increases of up to 20%. + +* Upgrade from Qt5 to Qt6 +Ultimaker Cura 5.0 is now compatible with Apple M1. + +* Other new features and improvements: +- New Cura icon +- New Cura splash screen +- Updated the digital build plates for Ultimaker printers +- Introduce Minimum Wall Line Width, contributed by BagelOrb +- Settings for metal printing implemented +- Shrinkage compensation is now available for PLA, tPLA and PETG +- Improved default Line Widths for Spiralize +- Decrease resolution to remove some buffer underruns +- Incomplete languages are now shown in the language drop-down menu +- Improved the visibility of the checkboxes + +* Bug fixes: +- Added the Scale Fan Speed From 0 to 1 setting for printers that interpreted fan speed as percentages +- Fixed a bug with extra travel moves increased the printing time, contributed by BagelOrb +- Fixed a bug where Monotonic Ironing breaks Ironing, contributed by BagelOrb +- Changed the priority of CuraEngine +- Fixed a bug where increasing Filter distances creates extremely wide lines, contributed by BagelOrb +- Fixed double scroll bar, contributed by fieldOfView +- Fixed a bug where maximum resolution/deviation was not applied to surface mode, contributed by BagelOrb +- Fixed a bug where the seam placement was uneven +- Fixed a bug where Top Surface Skin Layers didn't work +- Fixed a bug where Speed in the flow setting were not respected +- Fixed a bug with unnecessary retracted travel moves +- Fixed a bug where the Ironing Inset didn't work +- Fixed a bug where Support Layers were missing +- Fixed a crash if Randomize Infill Start was used +- Fixed a bug where Combing was in the wrong part with dual extrusion +- Fixed a crash with Bridging and Top Surface Skin Layers +- Fixed a bug where modifier meshes didn't work in one-at-a-time mode +- Fixed a bug where Tree Support Branches where not being generated +- Fixed a bug where less support was generated +- Changed the possibility for 100% Infill Bottom Layer for Spiralize, contributed by BagelOrb +- Fixed disallowed areas for Brim gap, contributed by BagelOrb + +* Bug fixes after the 5.0 beta: +- Fixed a bug where Retraction Distance couldn't have small values +- Fixed a bug where there were duplicated themes +- Fixed a bug where there were scrollbars showing on tooltips +- Fixed a bug where drag and drop was not working on the first run of Cura +- Fixed a bug where Infill Percentages are not lined up correctly in Recommended mode +- Fixed a bug where it wasn't clear if the textfield was active +- Fixed a bug where highlighted text in text field is unreadable +- Fixed missing icons, contributed by fieldOfView +- Fixed a bug where scrolling through long material list was not possible +- Fixed a bug where multiply was not possible, contributed by fieldOfView +- Fixed a bug where micro segments are causing blobs +- Fixed a bug where there was over extrusion when printing with gradual infill +- Fixed a bug where error values could slice +- Fixed a bug where the CPU was high when Cura was idle +- Fixed a bug where an existing gcode file was overwritten when you select no to overwrite +- Fixed a crash when selecting extruders +- Fixed a bug where exporting profiles didn't work +- Fixed a slicing error with certain infill patterns +- Fixed a bug where printing via USB stops during the print +- Fixed a bug where the toolgrips where missing, contributed by fieldOfView +- Fixed a bug where the print values didn't save when closing the page, contributed by fieldOfView +- Fixed the width of a Menu to fit the widest MenuItem, contributed by fieldOfView +- Fixed a bug where Use Single Instance of Cura in Preferences crashes upon restart +- Fixed a bug where travels would go through the model with printing PVA +- Fixed a bug where Concentric ironing was affecting the print quality +- Fixed a bug where there were missing infill layers +- Fixed AppRun permissions, contributed by probonopd + +* Printer definitions, profiles and materials: +- Added Atom 3 and Atom 3 Lite printer definitions, contributed by Daniel-Kurth +- Added Layer One Black PLA, Dark Grey PLA and White PLA, contributed by Daniel-Kurth +- Added FLSUN Q5 printer definition, contributed by kreuzhofer +- Added Creatlity CR100 printer definition, contributed by bodyboarder2528 +- Added Mixware Hyper-S printer definition, contributed by mixware011 +- Added Creality Sermoon D1 printer definition, contributed by felixstif +- Added Volumic SH65, Stream30Pro MK3 and Stream30Ultra SC2 printer definitions, contributed by VOLUMIC +- Updated Eryone Thinker and ER20 profiles, contributed by Eryone +- Updated Atom 2 profile, contributed by lin-ycv +- Added Hellbot Hidra and Magna series printer definitions, contributed by DevelopmentHellbot +- Updated Snapmaker 2 End-Gcode, contributed by Rolzad73 +- Updated the Tinyboy Fabricator printer definitions, contributed by reibuehl +- Updated the Creality Ender 5 printer profile, contributed by Rakhmanov + +* Community translations: +- Updated the Brazilian Portuguese translation, contributed by Patola +- Updated the Czech translation, contributed by sustmi +- Updated some of the Simplified Chinese translation, contributed by iBral + +From version 5.0 onwards - Ultimaker Cura is only supported on operating systems actively maintained by their software manufacturer or community. This means Windows 7 and MacOS 10.14 will no longer be supported. +Ubuntu 18.04 is also no longer supported because of the update to Qt6. + [4.13.1] * Bug fixes - Fixed a bug where tree support could go through the model @@ -200,63 +371,7 @@ When searching in the settings visibility menu you will also search in the descr *From version 4.11 onwards - Ultimaker Cura is only supported on operating systems actively maintained by their software manufacturer or community. This means Windows 7 and MacOS 10.13 will no longer be 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. -[4.10.0] -For an overview of the new features in Cura 4.10, please watch our video. -*Native CAD import plugin -Ultimaker Professional and Excellence subscribers can now directly import native CAD files into Ultimaker Cura. -Enable this feature by downloading the Native CAD import plugin from the Ultimaker marketplace. +[4.10] -*Flow visualization -In preview mode you can now visualize the flow. Contributed by khani3s. - -*Show loading plugins on startup -When starting Cura you will now see which plugins Cura is loading. - -*Add Z position parameter to FilamentChange -With the FilamentChange script you can now control all 3 coordinates. - -*Allow FilamentChange script to use Marlin M600 configuration -Contributed by Sekisback. - -*Double click on file in Digital Factory -When double clicking on a file in the open project dialog in Digital Factory it will now open in Cura. - -* Bug Fixes -- Fixed temperature exceptions for UM2+C material profiles. -- Fixed a bug where pause at height stops all extrusion if relative extrusion is used. -- Fixed authentication issues when logging into UM account. Contributed by fieldOfView. -- Fixed the pause-at-height retract with Repetier-flavour. -- Fixed erasing z-coordinate in the move tool to the value of 0. -- Fixed the limit range of layer view to only visible structures. -- Fixed a bug where Cura crashes when scaling a model on Linux. -- Fixed path minimum limit. -- Fixed a bug when using right to left language numbers were overlaying on text in the print settings. -- Fixed edge case with disabling bridging. -- Fixed a bug where some names with Unicode characters crashes Cura when trying to authorize. -- Fixed renaming groups. Contributed by fieldOfView. -- Fixed a bug when the seam was not placed in sharpest corner. -- Fixed the gantry height for S-line printers. -- Fixed a bug where a model is partially below build plate if center selected model is used. -- Fixed a bug where a tooltip arrow appeared when the "Manage printers" button is hovered. -- Fixed a bug where assemblies were not arranged in the center of the build plate. - -* Printer definitions, profiles and materials. -- Add CC0.4 core and materials for S3 and S5. -- Updated Axi machine start gcodes, contributed by Synsuiter. -- Volumic 3D printer definitions, contributed by VOLUMIC. -- Anycubic Mega X and Anycubic Mega S, contributed by NilsRo. -- Updated Deltacomb printer profiles, contributed by kaleidoscopeit. -- eMotionTech Strateo3D materials and profiles, contributed by ChronosTech. -- Sovol SV03, contributed by balacij. -- Two Trees Bluer, Bluer Plus, Sapphire Pro and Sapphire Plus, contributed by Lester3DGadgets. -- Update Skriware 2, contributed by Lukkoz. -- Longer LK1, LK1 Pro, LK1 Plus, LK4, LK4 Pro, LK5, LK5 Plus and Cube 2, contributed by lowkeyjoe. -- Mingda D3, D4 and Rock3, contributed by cataclism. -- JGAurora A6, contributed by CrissR. - -*Please, be aware that after version 4.10 Ultimaker Cura will only be supported on operating systems actively maintained by their software manufacturer or community. This means Windows 7 and MacOS 10.13 will no longer be 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. - -[4.9.1] - -The release notes of versions <= 4.9.1 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. \ No newline at end of file diff --git a/resources/themes/cura-dark/theme.json b/resources/themes/cura-dark/theme.json index b7c1718c0d..7fd5d797cd 100644 --- a/resources/themes/cura-dark/theme.json +++ b/resources/themes/cura-dark/theme.json @@ -15,7 +15,7 @@ "accent_2": [16, 70, 156, 255], "border_main": [118, 118, 119, 255], "border_accent_1": [255, 255, 255, 255], - "border_accent_2": [16, 70, 156, 255], + "border_accent_2": [243, 243, 243, 255], "border_field": [57, 57, 58, 255], "text_default": [255, 255, 255, 255], @@ -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/GearCheck.svg b/resources/themes/cura-light/icons/default/GearCheck.svg new file mode 100644 index 0000000000..1ec89a5a8d --- /dev/null +++ b/resources/themes/cura-light/icons/default/GearCheck.svg @@ -0,0 +1,4 @@ + + + + diff --git a/resources/themes/cura-light/icons/default/Nut.svg b/resources/themes/cura-light/icons/default/Nut.svg new file mode 100644 index 0000000000..77df86d31b --- /dev/null +++ b/resources/themes/cura-light/icons/default/Nut.svg @@ -0,0 +1,8 @@ + + + + + + + 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/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/default/Visual.svg b/resources/themes/cura-light/icons/default/Visual.svg new file mode 100644 index 0000000000..8d75b7feb4 --- /dev/null +++ b/resources/themes/cura-light/icons/default/Visual.svg @@ -0,0 +1,9 @@ + + + + + + + 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/theme.json b/resources/themes/cura-light/theme.json index 86d9766d1b..e7622bc685 100644 --- a/resources/themes/cura-light/theme.json +++ b/resources/themes/cura-light/theme.json @@ -133,6 +133,11 @@ "weight": 400, "family": "Noto Sans" }, + "small_bold": { + "size": 0.9, + "weight": 700, + "family": "Noto Sans" + }, "small_ja_JP": { "size": 0.9, "weight": 400, @@ -213,7 +218,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], @@ -264,7 +269,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], @@ -313,7 +318,7 @@ "setting_control_text": [35, 35, 35, 255], "setting_control_button": [102, 102, 102, 255], "setting_control_button_hover": [8, 7, 63, 255], - "setting_control_disabled": [245, 245, 245, 255], + "setting_control_disabled": "background_2", "setting_control_disabled_text": [127, 127, 127, 255], "setting_control_disabled_border": [127, 127, 127, 255], "setting_unit": [127, 127, 127, 255], @@ -364,7 +369,8 @@ "text_field": "background_1", "text_field_border": [180, 180, 180, 255], "text_field_border_hovered": "border_main", - "text_field_border_disabled": "border_main", + "text_field_border_active": "border_accent_2", + "text_field_border_disabled": "background_2", "text_field_text": "text_default", "text_field_text_disabled": "text_disabled", @@ -636,6 +642,10 @@ "marketplace_large_icon": [4.0, 4.0], - "preferences_page_list_item": [8.0, 2.0] + "preferences_page_list_item": [8.0, 2.0], + + "recommended_button_icon": [1.7, 1.7], + + "reset_profile_icon": [1, 1] } } diff --git a/resources/variants/creality_ender3s1_0.2.inst.cfg b/resources/variants/creality_ender3s1_0.2.inst.cfg new file mode 100644 index 0000000000..5aed89119c --- /dev/null +++ b/resources/variants/creality_ender3s1_0.2.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.2mm Nozzle +version = 4 +definition = creality_ender3s1 + +[metadata] +setting_version = 20 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/creality_ender3s1_0.3.inst.cfg b/resources/variants/creality_ender3s1_0.3.inst.cfg new file mode 100644 index 0000000000..cd59787dee --- /dev/null +++ b/resources/variants/creality_ender3s1_0.3.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.3mm Nozzle +version = 4 +definition = creality_ender3s1 + +[metadata] +setting_version = 20 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.3 diff --git a/resources/variants/creality_ender3s1_0.4.inst.cfg b/resources/variants/creality_ender3s1_0.4.inst.cfg new file mode 100644 index 0000000000..b621656ca8 --- /dev/null +++ b/resources/variants/creality_ender3s1_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = creality_ender3s1 + +[metadata] +setting_version = 20 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/creality_ender3s1_0.5.inst.cfg b/resources/variants/creality_ender3s1_0.5.inst.cfg new file mode 100644 index 0000000000..0ca9ce3a50 --- /dev/null +++ b/resources/variants/creality_ender3s1_0.5.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.5mm Nozzle +version = 4 +definition = creality_ender3s1 + +[metadata] +setting_version = 20 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.5 diff --git a/resources/variants/creality_ender3s1_0.6.inst.cfg b/resources/variants/creality_ender3s1_0.6.inst.cfg new file mode 100644 index 0000000000..30ea5da3ea --- /dev/null +++ b/resources/variants/creality_ender3s1_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.6mm Nozzle +version = 4 +definition = creality_ender3s1 + +[metadata] +setting_version = 20 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/creality_ender3s1_0.8.inst.cfg b/resources/variants/creality_ender3s1_0.8.inst.cfg new file mode 100644 index 0000000000..5f2a9125ca --- /dev/null +++ b/resources/variants/creality_ender3s1_0.8.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.8mm Nozzle +version = 4 +definition = creality_ender3s1 + +[metadata] +setting_version = 20 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/creality_ender3s1_1.0.inst.cfg b/resources/variants/creality_ender3s1_1.0.inst.cfg new file mode 100644 index 0000000000..fb61517749 --- /dev/null +++ b/resources/variants/creality_ender3s1_1.0.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 1.0mm Nozzle +version = 4 +definition = creality_ender3s1 + +[metadata] +setting_version = 20 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 1.0 diff --git a/resources/variants/ultimaker3_aa0.25.inst.cfg b/resources/variants/ultimaker3_aa0.25.inst.cfg index 2d59246c4a..79b8afeebd 100644 --- a/resources/variants/ultimaker3_aa0.25.inst.cfg +++ b/resources/variants/ultimaker3_aa0.25.inst.cfg @@ -26,8 +26,6 @@ raft_interface_thickness = =layer_height * 1.5 raft_jerk = =jerk_print raft_margin = 15 raft_surface_layers = 2 -retraction_count_max = 25 -retraction_extrusion_window = 1 retraction_min_travel = 0.7 retraction_prime_speed = =retraction_speed skin_overlap = 15 @@ -37,9 +35,7 @@ speed_topbottom = 20 speed_wall = =math.ceil(speed_print * 30 / 55) support_angle = 60 support_bottom_distance = =support_z_distance / 2 -support_pattern = zigzag support_top_distance = =support_z_distance -support_use_towers = True support_z_distance = =layer_height * 2 switch_extruder_prime_speed = =switch_extruder_retraction_speeds switch_extruder_retraction_amount = =machine_heat_zone_length diff --git a/resources/variants/ultimaker3_aa0.8.inst.cfg b/resources/variants/ultimaker3_aa0.8.inst.cfg index ead9c3b87a..a5ae2a383e 100644 --- a/resources/variants/ultimaker3_aa0.8.inst.cfg +++ b/resources/variants/ultimaker3_aa0.8.inst.cfg @@ -17,7 +17,6 @@ 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 @@ -34,8 +33,6 @@ prime_tower_enable = False prime_tower_wipe_enabled = True retract_at_layer_change = =not magic_spiralize retraction_amount = 6.5 -retraction_count_max = 25 -retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 @@ -46,7 +43,6 @@ 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_pattern = zigzag support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 switch_extruder_prime_speed = 20 diff --git a/resources/variants/ultimaker3_aa04.inst.cfg b/resources/variants/ultimaker3_aa04.inst.cfg index d82cca6b01..68a3a8768f 100644 --- a/resources/variants/ultimaker3_aa04.inst.cfg +++ b/resources/variants/ultimaker3_aa04.inst.cfg @@ -23,7 +23,6 @@ raft_jerk = =jerk_print raft_margin = 15 raft_surface_layers = 2 retraction_amount = 6.5 -retraction_count_max = 25 retraction_min_travel = =line_width * 2 retraction_prime_speed = =retraction_speed skin_overlap = 15 @@ -32,9 +31,7 @@ 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_pattern = zigzag support_top_distance = =support_z_distance -support_use_towers = True support_z_distance = =layer_height * 2 switch_extruder_prime_speed = =switch_extruder_retraction_speeds switch_extruder_retraction_amount = =machine_heat_zone_length diff --git a/resources/variants/ultimaker3_bb0.8.inst.cfg b/resources/variants/ultimaker3_bb0.8.inst.cfg index 09706598ab..d0cc437b1b 100644 --- a/resources/variants/ultimaker3_bb0.8.inst.cfg +++ b/resources/variants/ultimaker3_bb0.8.inst.cfg @@ -17,16 +17,10 @@ acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / brim_width = 3 cool_fan_speed = 50 cool_min_speed = 5 -gradual_support_infill_step_height = 1.6 -gradual_support_infill_steps = 2 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 -jerk_enabled = True jerk_print = 25 -jerk_support = =max(math.ceil(jerk_print * 15 / 25), 20) -jerk_support_interface = =max(math.ceil(jerk_support * 10 / 15), 20) -jerk_support_bottom = =max(math.ceil(jerk_support_interface * 1 / 10), 20) layer_height = 0.2 machine_min_cool_heat_time_window = 15 machine_nozzle_heat_up_speed = 1.5 @@ -49,9 +43,6 @@ raft_interface_thickness = 0.2 raft_margin = 10 raft_speed = 25 raft_surface_layers = 1 -retraction_amount = 4.5 -retraction_count_max = 15 -retraction_extrusion_window = =retraction_amount retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 3 @@ -66,19 +57,7 @@ speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_angle = 60 support_bottom_height = =layer_height * 2 -support_bottom_pattern = zigzag -support_bottom_stair_step_height = 0 -support_infill_rate = 50 -support_infill_sparse_thickness = 0.4 support_interface_enable = True -support_interface_height = 0.6 -support_interface_skip_height = =layer_height -support_join_distance = 3 -support_offset = 1.5 -support_pattern = triangles -support_use_towers = False -support_xy_distance = =round(wall_line_width_0 * 0.75, 2) -support_xy_distance_overhang = =wall_line_width_0 / 4 support_z_distance = 0 switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 12 diff --git a/resources/variants/ultimaker3_bb04.inst.cfg b/resources/variants/ultimaker3_bb04.inst.cfg index 60dfc44e8c..49837e24ea 100644 --- a/resources/variants/ultimaker3_bb04.inst.cfg +++ b/resources/variants/ultimaker3_bb04.inst.cfg @@ -14,19 +14,12 @@ 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 -gradual_support_infill_steps = 2 -jerk_support = =math.ceil(jerk_print * 15 / 25) -jerk_support_interface = =math.ceil(jerk_support * 10 / 15) -jerk_support_bottom = =math.ceil(jerk_support_interface * 1 / 10) 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_amount = 4.5 -retraction_count_max = 20 -retraction_extrusion_window = =retraction_amount retraction_min_travel = =3 * line_width speed_layer_0 = 20 speed_prime_tower = =math.ceil(speed_print * 10 / 35) @@ -35,15 +28,5 @@ speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_bottom_height = =layer_height * 2 -support_bottom_pattern = zigzag -support_bottom_stair_step_height = 0 -support_infill_rate = 50 -support_infill_sparse_thickness = 0.2 support_interface_enable = True -support_interface_height = 0.6 -support_interface_skip_height = =layer_height -support_join_distance = 3 -support_offset = 3 -support_xy_distance = =round(wall_line_width_0 * 0.75, 2) -support_xy_distance_overhang = =wall_line_width_0 / 2 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 d6f375932e..ea9b294671 100644 --- a/resources/variants/ultimaker3_extended_aa0.25.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa0.25.inst.cfg @@ -26,8 +26,6 @@ raft_interface_thickness = =layer_height * 1.5 raft_jerk = =jerk_print raft_margin = 15 raft_surface_layers = 2 -retraction_count_max = 25 -retraction_extrusion_window = 1 retraction_min_travel = 0.7 retraction_prime_speed = =retraction_speed skin_overlap = 15 @@ -37,9 +35,7 @@ speed_topbottom = 20 speed_wall = =math.ceil(speed_print * 30 / 55) support_angle = 60 support_bottom_distance = =support_z_distance / 2 -support_pattern = zigzag support_top_distance = =support_z_distance -support_use_towers = True support_z_distance = =layer_height * 2 switch_extruder_prime_speed = =switch_extruder_retraction_speeds switch_extruder_retraction_amount = =machine_heat_zone_length diff --git a/resources/variants/ultimaker3_extended_aa0.8.inst.cfg b/resources/variants/ultimaker3_extended_aa0.8.inst.cfg index df7e9486a2..de525e3caf 100644 --- a/resources/variants/ultimaker3_extended_aa0.8.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa0.8.inst.cfg @@ -17,7 +17,6 @@ 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 @@ -34,8 +33,6 @@ prime_tower_enable = False prime_tower_wipe_enabled = True retract_at_layer_change = True retraction_amount = 6.5 -retraction_count_max = 25 -retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 @@ -46,7 +43,6 @@ 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_pattern = zigzag support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 switch_extruder_prime_speed = 20 diff --git a/resources/variants/ultimaker3_extended_aa04.inst.cfg b/resources/variants/ultimaker3_extended_aa04.inst.cfg index f95c820780..e928d24745 100644 --- a/resources/variants/ultimaker3_extended_aa04.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa04.inst.cfg @@ -23,7 +23,6 @@ raft_jerk = =jerk_print raft_margin = 15 raft_surface_layers = 2 retraction_amount = 6.5 -retraction_count_max = 25 retraction_min_travel = =line_width * 2 retraction_prime_speed = =retraction_speed skin_overlap = 15 @@ -32,9 +31,7 @@ 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_pattern = zigzag support_top_distance = =support_z_distance -support_use_towers = True support_z_distance = =layer_height * 2 switch_extruder_prime_speed = =switch_extruder_retraction_speeds switch_extruder_retraction_amount = =machine_heat_zone_length diff --git a/resources/variants/ultimaker3_extended_bb0.8.inst.cfg b/resources/variants/ultimaker3_extended_bb0.8.inst.cfg index b50c9cc81b..205ae4b0f2 100644 --- a/resources/variants/ultimaker3_extended_bb0.8.inst.cfg +++ b/resources/variants/ultimaker3_extended_bb0.8.inst.cfg @@ -17,16 +17,10 @@ acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / brim_width = 3 cool_fan_speed = 50 cool_min_speed = 5 -gradual_support_infill_step_height = 1.6 -gradual_support_infill_steps = 2 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 -jerk_enabled = True jerk_print = 25 -jerk_support = =max(math.ceil(jerk_print * 15 / 25), 20) -jerk_support_interface = =max(math.ceil(jerk_support * 10 / 15), 20) -jerk_support_bottom = =max(math.ceil(jerk_support_interface * 1 / 10), 20) layer_height = 0.2 machine_min_cool_heat_time_window = 15 machine_nozzle_heat_up_speed = 1.5 @@ -49,9 +43,6 @@ raft_interface_thickness = 0.2 raft_margin = 10 raft_speed = 25 raft_surface_layers = 1 -retraction_amount = 4.5 -retraction_count_max = 15 -retraction_extrusion_window = =retraction_amount retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 3 @@ -66,19 +57,7 @@ speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_angle = 60 support_bottom_height = =layer_height * 2 -support_bottom_pattern = zigzag -support_bottom_stair_step_height = 0 -support_infill_rate = 50 -support_infill_sparse_thickness = 0.4 support_interface_enable = True -support_interface_height = 0.6 -support_interface_skip_height = =layer_height -support_join_distance = 3 -support_offset = 1.5 -support_pattern = triangles -support_use_towers = False -support_xy_distance = =round(wall_line_width_0 * 0.75, 2) -support_xy_distance_overhang = =wall_line_width_0 / 4 support_z_distance = 0 switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 12 diff --git a/resources/variants/ultimaker3_extended_bb04.inst.cfg b/resources/variants/ultimaker3_extended_bb04.inst.cfg index 798685946f..94a687c951 100644 --- a/resources/variants/ultimaker3_extended_bb04.inst.cfg +++ b/resources/variants/ultimaker3_extended_bb04.inst.cfg @@ -14,19 +14,12 @@ 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 -gradual_support_infill_steps = 2 -jerk_support = =math.ceil(jerk_print * 15 / 25) -jerk_support_interface = =math.ceil(jerk_support * 10 / 15) -jerk_support_bottom = =math.ceil(jerk_support_interface * 1 / 10) 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_amount = 4.5 -retraction_count_max = 20 -retraction_extrusion_window = =retraction_amount retraction_min_travel = =3 * line_width speed_layer_0 = 20 speed_prime_tower = =math.ceil(speed_print * 10 / 35) @@ -35,15 +28,5 @@ speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_bottom_height = =layer_height * 2 -support_bottom_pattern = zigzag -support_bottom_stair_step_height = 0 -support_infill_rate = 50 -support_infill_sparse_thickness = 0.2 support_interface_enable = True -support_interface_height = 0.6 -support_interface_skip_height = =layer_height -support_join_distance = 3 -support_offset = 3 -support_xy_distance = =round(wall_line_width_0 * 0.75, 2) -support_xy_distance_overhang = =wall_line_width_0 / 2 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 fdbd9f6d3b..c62479b084 100644 --- a/resources/variants/ultimaker_s3_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s3_aa0.25.inst.cfg @@ -26,8 +26,7 @@ raft_interface_thickness = =layer_height * 1.5 raft_jerk = =jerk_print raft_margin = 15 raft_surface_layers = 2 -retraction_count_max = 25 -retraction_extrusion_window = 1 + retraction_min_travel = 0.7 retraction_prime_speed = =retraction_speed skin_overlap = 15 @@ -37,9 +36,7 @@ speed_topbottom = 20 speed_wall = =math.ceil(speed_print * 30 / 55) support_angle = 60 support_bottom_distance = =support_z_distance / 2 -support_pattern = zigzag support_top_distance = =support_z_distance -support_use_towers = True support_z_distance = =layer_height * 2 switch_extruder_prime_speed = =switch_extruder_retraction_speeds switch_extruder_retraction_amount = =machine_heat_zone_length diff --git a/resources/variants/ultimaker_s3_aa0.8.inst.cfg b/resources/variants/ultimaker_s3_aa0.8.inst.cfg index 237b38fa11..bc1f092e63 100644 --- a/resources/variants/ultimaker_s3_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s3_aa0.8.inst.cfg @@ -17,7 +17,6 @@ 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 @@ -34,8 +33,6 @@ prime_tower_enable = False prime_tower_wipe_enabled = True retract_at_layer_change = =not magic_spiralize retraction_amount = 6.5 -retraction_count_max = 25 -retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 @@ -47,7 +44,6 @@ 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_pattern = zigzag support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 switch_extruder_prime_speed = 20 diff --git a/resources/variants/ultimaker_s3_aa04.inst.cfg b/resources/variants/ultimaker_s3_aa04.inst.cfg index 181a237405..d69988c9f5 100644 --- a/resources/variants/ultimaker_s3_aa04.inst.cfg +++ b/resources/variants/ultimaker_s3_aa04.inst.cfg @@ -23,7 +23,6 @@ raft_jerk = =jerk_print raft_margin = 15 raft_surface_layers = 2 retraction_amount = 6.5 -retraction_count_max = 25 retraction_min_travel = =line_width * 2 skin_overlap = 15 speed_print = 70 @@ -31,9 +30,7 @@ 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_pattern = zigzag support_top_distance = =support_z_distance -support_use_towers = True support_z_distance = =layer_height * 2 switch_extruder_prime_speed = =switch_extruder_retraction_speeds switch_extruder_retraction_amount = =machine_heat_zone_length diff --git a/resources/variants/ultimaker_s3_bb0.8.inst.cfg b/resources/variants/ultimaker_s3_bb0.8.inst.cfg index 56b2d3a5c3..60dfcafd33 100644 --- a/resources/variants/ultimaker_s3_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s3_bb0.8.inst.cfg @@ -16,16 +16,10 @@ acceleration_prime_tower = =math.ceil(acceleration_print * 200 / 3500) brim_width = 3 cool_fan_speed = 50 cool_min_speed = 5 -gradual_support_infill_step_height = 1.6 -gradual_support_infill_steps = 2 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 -jerk_enabled = True jerk_print = 25 -jerk_support = =max(math.ceil(jerk_print * 15 / 25), 20) -jerk_support_interface = =max(math.ceil(jerk_support * 10 / 15), 20) -jerk_support_bottom = =max(math.ceil(jerk_support_interface * 1 / 10), 20) layer_height = 0.2 machine_min_cool_heat_time_window = 15 machine_nozzle_heat_up_speed = 1.5 @@ -48,9 +42,6 @@ raft_interface_thickness = 0.2 raft_margin = 10 raft_speed = 25 raft_surface_layers = 1 -retraction_amount = 4.5 -retraction_count_max = 15 -retraction_extrusion_window = =retraction_amount retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 3 @@ -64,19 +55,7 @@ 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_bottom_pattern = zigzag -support_bottom_stair_step_height = 0 -support_infill_rate = 50 -support_infill_sparse_thickness = 0.4 support_interface_enable = True -support_interface_height = 0.6 -support_interface_skip_height = =layer_height -support_join_distance = 3 -support_offset = 1.5 -support_pattern = triangles -support_use_towers = False -support_xy_distance = =round(wall_line_width_0 * 0.75, 2) -support_xy_distance_overhang = =wall_line_width_0 / 4 support_z_distance = 0 switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 12 diff --git a/resources/variants/ultimaker_s3_bb04.inst.cfg b/resources/variants/ultimaker_s3_bb04.inst.cfg index 2fad997372..526f724eea 100644 --- a/resources/variants/ultimaker_s3_bb04.inst.cfg +++ b/resources/variants/ultimaker_s3_bb04.inst.cfg @@ -14,19 +14,12 @@ 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 -gradual_support_infill_steps = 2 -jerk_support = =math.ceil(jerk_print * 15 / 25) -jerk_support_interface = =math.ceil(jerk_support * 10 / 15) -jerk_support_bottom = =math.ceil(jerk_support_interface * 1 / 10) 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_amount = 4.5 -retraction_count_max = 20 -retraction_extrusion_window = =retraction_amount retraction_min_travel = =3 * line_width speed_layer_0 = 20 speed_prime_tower = =math.ceil(speed_print * 10 / 35) @@ -35,15 +28,5 @@ speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_bottom_height = =layer_height * 2 -support_bottom_pattern = zigzag -support_bottom_stair_step_height = 0 -support_infill_rate = 50 -support_infill_sparse_thickness = 0.2 support_interface_enable = True -support_interface_height = 0.6 -support_interface_skip_height = =layer_height -support_join_distance = 3 -support_offset = 3 -support_xy_distance = =round(wall_line_width_0 * 0.75, 2) -support_xy_distance_overhang = =wall_line_width_0 / 2 switch_extruder_retraction_amount = 12 diff --git a/resources/variants/ultimaker_s3_cc04.inst.cfg b/resources/variants/ultimaker_s3_cc04.inst.cfg index f83e60119b..ce432577ac 100644 --- a/resources/variants/ultimaker_s3_cc04.inst.cfg +++ b/resources/variants/ultimaker_s3_cc04.inst.cfg @@ -22,7 +22,6 @@ raft_interface_thickness = =layer_height * 1.5 raft_jerk = =jerk_print raft_margin = 15 raft_surface_layers = 2 -retraction_count_max = 25 retraction_min_travel = =line_width * 2 retraction_prime_speed = =retraction_speed speed_infill = =speed_print @@ -36,9 +35,7 @@ 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_pattern = zigzag support_top_distance = =support_z_distance -support_use_towers = True support_z_distance = =layer_height * 2 switch_extruder_prime_speed = =switch_extruder_retraction_speeds switch_extruder_retraction_amount = =machine_heat_zone_length diff --git a/resources/variants/ultimaker_s3_cc06.inst.cfg b/resources/variants/ultimaker_s3_cc06.inst.cfg index 2563ca2c11..69f478d128 100644 --- a/resources/variants/ultimaker_s3_cc06.inst.cfg +++ b/resources/variants/ultimaker_s3_cc06.inst.cfg @@ -22,7 +22,6 @@ raft_interface_thickness = =layer_height * 1.5 raft_jerk = =jerk_print raft_margin = 15 raft_surface_layers = 2 -retraction_count_max = 25 retraction_min_travel = =line_width * 2 retraction_prime_speed = =retraction_speed speed_infill = =speed_print @@ -36,9 +35,7 @@ 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_pattern = zigzag support_top_distance = =support_z_distance -support_use_towers = True support_z_distance = =layer_height * 2 switch_extruder_prime_speed = =switch_extruder_retraction_speeds switch_extruder_retraction_amount = =machine_heat_zone_length diff --git a/resources/variants/ultimaker_s3_dd04.inst.cfg b/resources/variants/ultimaker_s3_dd04.inst.cfg new file mode 100644 index 0000000000..7a31d85f1d --- /dev/null +++ b/resources/variants/ultimaker_s3_dd04.inst.cfg @@ -0,0 +1,16 @@ +[general] +name = DD 0.4 +version = 4 +definition = ultimaker_s3 + +[metadata] +setting_version = 20 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_cool_down_speed = 0.9 +machine_nozzle_id = DD 0.4 +machine_nozzle_size = 0.4 +machine_nozzle_tip_outer_diameter = 1.2 +retraction_prime_speed = =retraction_speed diff --git a/resources/variants/ultimaker_s5_aa0.25.inst.cfg b/resources/variants/ultimaker_s5_aa0.25.inst.cfg index c57414f18a..664c252577 100644 --- a/resources/variants/ultimaker_s5_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s5_aa0.25.inst.cfg @@ -26,8 +26,6 @@ raft_interface_thickness = =layer_height * 1.5 raft_jerk = =jerk_print raft_margin = 15 raft_surface_layers = 2 -retraction_count_max = 25 -retraction_extrusion_window = 1 retraction_min_travel = 0.7 retraction_prime_speed = =retraction_speed skin_overlap = 15 @@ -37,9 +35,7 @@ speed_topbottom = 20 speed_wall = =math.ceil(speed_print * 30 / 55) support_angle = 60 support_bottom_distance = =support_z_distance / 2 -support_pattern = zigzag support_top_distance = =support_z_distance -support_use_towers = True support_z_distance = =layer_height * 2 switch_extruder_prime_speed = =switch_extruder_retraction_speeds switch_extruder_retraction_amount = =machine_heat_zone_length diff --git a/resources/variants/ultimaker_s5_aa0.8.inst.cfg b/resources/variants/ultimaker_s5_aa0.8.inst.cfg index 6eb4ac8e25..9b1dfa0dc8 100644 --- a/resources/variants/ultimaker_s5_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s5_aa0.8.inst.cfg @@ -34,8 +34,6 @@ prime_tower_enable = False prime_tower_wipe_enabled = True retract_at_layer_change = =not magic_spiralize retraction_amount = 6.5 -retraction_count_max = 25 -retraction_extrusion_window = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 @@ -47,7 +45,6 @@ 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_pattern = zigzag support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 switch_extruder_prime_speed = 20 diff --git a/resources/variants/ultimaker_s5_aa04.inst.cfg b/resources/variants/ultimaker_s5_aa04.inst.cfg index 8e4b7780f0..bb1c355321 100644 --- a/resources/variants/ultimaker_s5_aa04.inst.cfg +++ b/resources/variants/ultimaker_s5_aa04.inst.cfg @@ -23,7 +23,6 @@ raft_jerk = =jerk_print raft_margin = 15 raft_surface_layers = 2 retraction_amount = 6.5 -retraction_count_max = 25 retraction_min_travel = =line_width * 2 skin_overlap = 15 speed_print = 70 @@ -31,9 +30,7 @@ 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_pattern = zigzag support_top_distance = =support_z_distance -support_use_towers = True support_z_distance = =layer_height * 2 switch_extruder_prime_speed = =switch_extruder_retraction_speeds switch_extruder_retraction_amount = =machine_heat_zone_length diff --git a/resources/variants/ultimaker_s5_bb0.8.inst.cfg b/resources/variants/ultimaker_s5_bb0.8.inst.cfg index 0c0e162745..4e9d687d8a 100644 --- a/resources/variants/ultimaker_s5_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s5_bb0.8.inst.cfg @@ -16,16 +16,10 @@ acceleration_prime_tower = =math.ceil(acceleration_print * 200 / 3500) brim_width = 3 cool_fan_speed = 50 cool_min_speed = 5 -gradual_support_infill_step_height = 1.6 -gradual_support_infill_steps = 2 infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 -jerk_enabled = True jerk_print = 25 -jerk_support = =math.ceil(jerk_print * 15 / 25) -jerk_support_interface = =math.ceil(jerk_support * 10 / 15) -jerk_support_bottom = =math.ceil(jerk_support_interface * 1 / 10) layer_height = 0.2 machine_min_cool_heat_time_window = 15 machine_nozzle_heat_up_speed = 1.5 @@ -48,9 +42,6 @@ raft_interface_thickness = 0.2 raft_margin = 10 raft_speed = 25 raft_surface_layers = 1 -retraction_amount = 4.5 -retraction_count_max = 15 -retraction_extrusion_window = =retraction_amount retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 3 @@ -63,20 +54,6 @@ speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) 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_bottom_pattern = zigzag -support_bottom_stair_step_height = 0 -support_infill_rate = 50 -support_infill_sparse_thickness = 0.4 -support_interface_enable = True -support_interface_height = 0.6 -support_interface_skip_height = =layer_height -support_join_distance = 3 -support_offset = 1.5 -support_pattern = triangles -support_use_towers = False -support_xy_distance = =wall_line_width_0 -support_xy_distance_overhang = =wall_line_width_0 / 4 support_z_distance = 0 switch_extruder_prime_speed = 15 switch_extruder_retraction_amount = 12 diff --git a/resources/variants/ultimaker_s5_bb04.inst.cfg b/resources/variants/ultimaker_s5_bb04.inst.cfg index 90c19685ba..18770b1c4d 100644 --- a/resources/variants/ultimaker_s5_bb04.inst.cfg +++ b/resources/variants/ultimaker_s5_bb04.inst.cfg @@ -14,19 +14,12 @@ 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 -gradual_support_infill_steps = 2 -jerk_support = =math.ceil(jerk_print * 15 / 25) -jerk_support_interface = =math.ceil(jerk_support * 10 / 15) -jerk_support_bottom = =math.ceil(jerk_support_interface * 1 / 10) 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_amount = 4.5 -retraction_count_max = 20 -retraction_extrusion_window = =retraction_amount retraction_min_travel = =3 * line_width speed_layer_0 = 20 speed_prime_tower = =math.ceil(speed_print * 10 / 35) @@ -35,15 +28,5 @@ speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_bottom_height = =layer_height * 2 -support_bottom_pattern = zigzag -support_bottom_stair_step_height = 0 -support_infill_rate = 50 -support_infill_sparse_thickness = 0.2 support_interface_enable = True -support_interface_height = 0.6 -support_interface_skip_height = =layer_height -support_join_distance = 3 -support_offset = 3 -support_xy_distance = =round(wall_line_width_0 * 0.75, 2) -support_xy_distance_overhang = =wall_line_width_0 / 2 switch_extruder_retraction_amount = 12 diff --git a/resources/variants/ultimaker_s5_cc04.inst.cfg b/resources/variants/ultimaker_s5_cc04.inst.cfg index 356df76f2e..36c9a0e417 100644 --- a/resources/variants/ultimaker_s5_cc04.inst.cfg +++ b/resources/variants/ultimaker_s5_cc04.inst.cfg @@ -22,7 +22,6 @@ raft_interface_thickness = =layer_height * 1.5 raft_jerk = =jerk_print raft_margin = 15 raft_surface_layers = 2 -retraction_count_max = 25 retraction_min_travel = =line_width * 2 retraction_prime_speed = =retraction_speed speed_infill = =speed_print @@ -36,9 +35,7 @@ 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_pattern = zigzag support_top_distance = =support_z_distance -support_use_towers = True support_z_distance = =layer_height * 2 switch_extruder_prime_speed = =switch_extruder_retraction_speeds switch_extruder_retraction_amount = =machine_heat_zone_length diff --git a/resources/variants/ultimaker_s5_cc06.inst.cfg b/resources/variants/ultimaker_s5_cc06.inst.cfg index 027274bca5..c5ade7780f 100644 --- a/resources/variants/ultimaker_s5_cc06.inst.cfg +++ b/resources/variants/ultimaker_s5_cc06.inst.cfg @@ -22,7 +22,6 @@ raft_interface_thickness = =layer_height * 1.5 raft_jerk = =jerk_print raft_margin = 15 raft_surface_layers = 2 -retraction_count_max = 25 retraction_min_travel = =line_width * 2 retraction_prime_speed = =retraction_speed speed_infill = =speed_print @@ -36,9 +35,7 @@ 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_pattern = zigzag support_top_distance = =support_z_distance -support_use_towers = True support_z_distance = =layer_height * 2 switch_extruder_prime_speed = =switch_extruder_retraction_speeds switch_extruder_retraction_amount = =machine_heat_zone_length diff --git a/resources/variants/ultimaker_s5_dd04.inst.cfg b/resources/variants/ultimaker_s5_dd04.inst.cfg new file mode 100644 index 0000000000..faad9ceefe --- /dev/null +++ b/resources/variants/ultimaker_s5_dd04.inst.cfg @@ -0,0 +1,16 @@ +[general] +name = DD 0.4 +version = 4 +definition = ultimaker_s5 + +[metadata] +setting_version = 20 +type = variant +hardware_type = nozzle + +[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/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg b/resources/variants/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg new file mode 100644 index 0000000000..087644e208 --- /dev/null +++ b/resources/variants/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = Hardened Steel 0.4mm Nozzle +version = 4 +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 +machine_nozzle_id = Hardened Steel 0.4mm Nozzle diff --git a/resources/variants/xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg b/resources/variants/xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg new file mode 100644 index 0000000000..1337d87cbc --- /dev/null +++ b/resources/variants/xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = Hardened Steel High Temp. 0.6mm Nozzle +version = 4 +definition = xyzprinting_da_vinci_pro_evo + +[metadata] +setting_version = 20 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 +machine_nozzle_id = Hardened Steel High Temp. 0.6mm Nozzle 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/scripts/rename_cura_1_tags.sh b/scripts/rename_cura_1_tags.sh new file mode 100644 index 0000000000..8391ed08c2 --- /dev/null +++ b/scripts/rename_cura_1_tags.sh @@ -0,0 +1,14 @@ +#Renames tags that were for Legacy Cura to a newer versioning system. +#Those Cura versions used tags based on the year of release. +#We'd like to rename them to be "Cura 1" and have the original version number as sub-version-numbers. +#So Cura 14.04 becomes Cura 1.14.04. + +for i in $(git tag -l) +do + if [[ $i =~ ^1[2-5]\.[0-9][0-9] ]]; then #E.g. 12.04 or 15.06. Note that there is no end-match so anything that starts with this matches. + echo "Renaming tag $i to 1.$i"; + git tag 1.$i $i; #Create new tag (1.x instead of x). + 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 diff --git a/scripts/update_po_with_changes.py b/scripts/update_po_with_changes.py new file mode 100644 index 0000000000..78920f8f23 --- /dev/null +++ b/scripts/update_po_with_changes.py @@ -0,0 +1,114 @@ +import argparse + +from typing import List + +""" + Takes in one of the po files in resources/i18n/[LANG_CODE]/cura.po and updates it with translations from a + new po file without changing the translation ordering. + This script should be used when we get a po file that has updated translations but is no longer correctly ordered + so the merge becomes messy. + + If you are importing files from lionbridge/smartling use lionbridge_import.py. + + Note: This does NOT include new strings, it only UPDATES existing strings +""" + + +class Msg: + def __init__(self, msgctxt: str = "", msgid: str = "", msgstr: str = "") -> None: + self.msgctxt = msgctxt + self.msgid = msgid + self.msgstr = msgstr + + def __str__(self): + return self.msgctxt + self.msgid + self.msgstr + + +def parsePOFile(filename: str) -> List[Msg]: + messages = [] + with open(filename) as f: + iterator = iter(f.readlines()) + for line in iterator: + if line.startswith("msgctxt"): + # Start of a translation item block + msg = Msg() + msg.msgctxt = line + + while True: + line = next(iterator) + if line.startswith("msgid"): + msg.msgid = line + break + + while True: + # msgstr can be split over multiple lines + line = next(iterator) + if line == "\n": + break + if line.startswith("msgstr"): + msg.msgstr = line + else: + msg.msgstr += line + + messages.append(msg) + + return messages + + +def getDifferentMessages(messages_original: List[Msg], messages_new: List[Msg]) -> List[Msg]: + # Return messages that have changed in messages_new + different_messages = [] + + for m_new in messages_new: + for m_original in messages_original: + if m_new.msgstr != m_original.msgstr \ + and m_new.msgid == m_original.msgid and m_new.msgctxt == m_original.msgctxt \ + and m_new.msgid != 'msgid ""\n': + different_messages.append(m_new) + + return different_messages + + +def updatePOFile(input_filename: str, output_filename: str, messages: List[Msg]) -> None: + # Takes a list of changed messages and writes a copy of input file with updated message strings + with open(input_filename, "r") as input_file, open(output_filename, "w") as output_file: + iterator = iter(input_file.readlines()) + for line in iterator: + output_file.write(line) + if line.startswith("msgctxt"): + # Start of translation block + msgctxt = line + + msgid = next(iterator) + output_file.write(msgid) + + # Check for updated version of msgstr + message = list(filter(lambda m: m.msgctxt == msgctxt and m.msgid == msgid, messages)) + if message and message[0]: + # Write update translation + output_file.write(message[0].msgstr) + + # Skip lines until next translation. This should skip multiline msgstr + while True: + line = next(iterator) + if line == "\n": + output_file.write(line) + break + + +if __name__ == "__main__": + print("********************************************************************************************************************") + print("This creates a new file 'updated.po' that is a copy of original_file with any changed translations from updated_file") + print("This does not change the order of translations") + print("This does not include new translations, only existing changed translations") + print("Do not use this to import lionbridge/smarting translations") + print("********************************************************************************************************************") + parser = argparse.ArgumentParser(description="Update po file with translations from new po file. This ") + parser.add_argument("original_file", type=str, help="Input .po file inside resources/i18n/[LANG]/") + parser.add_argument("updated_file", type=str, help="Input .po file with updated translations added") + args = parser.parse_args() + + messages_updated = parsePOFile(args.updated_file) + messages_original = parsePOFile(args.original_file) + different_messages = getDifferentMessages(messages_original, messages_updated) + updatePOFile(args.original_file, "updated.po", different_messages) 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/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..458b7afad3 100644 --- a/tests/TestBuildVolume.py +++ b/tests/TestBuildVolume.py @@ -146,7 +146,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 +160,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/TestConvexHullDecorator.py b/tests/TestConvexHullDecorator.py index 4205ae3a37..eed5a3a6c3 100644 --- a/tests/TestConvexHullDecorator.py +++ b/tests/TestConvexHullDecorator.py @@ -149,7 +149,7 @@ def test_compute2DConvexHullNoMeshData(convex_hull_decorator): def test_compute2DConvexHullMeshData(convex_hull_decorator): node = SceneNode() mb = MeshBuilder() - mb.addCube(10,10,10) + mb.addCube(10, 10, 10) node.setMeshData(mb.build()) convex_hull_decorator._getSettingProperty = MagicMock(return_value = 0) @@ -157,7 +157,11 @@ def test_compute2DConvexHullMeshData(convex_hull_decorator): with patch("UM.Application.Application.getInstance", MagicMock(return_value=mocked_application)): convex_hull_decorator.setNode(node) - assert convex_hull_decorator._compute2DConvexHull() == Polygon([[5.0,-5.0], [-5.0,-5.0], [-5.0,5.0], [5.0,5.0]]) + mocked_stack = MagicMock() + mocked_stack.getProperty = MagicMock(return_value=1) + convex_hull_decorator._global_stack = mocked_stack + + assert convex_hull_decorator._compute2DConvexHull() == Polygon([[5.0, -5.0], [-5.0, -5.0], [-5.0, 5.0], [5.0, 5.0]]) def test_compute2DConvexHullMeshDataGrouped(convex_hull_decorator): @@ -169,6 +173,9 @@ def test_compute2DConvexHullMeshDataGrouped(convex_hull_decorator): mb = MeshBuilder() mb.addCube(10, 10, 10) node.setMeshData(mb.build()) + mocked_stack = MagicMock() + mocked_stack.getProperty = MagicMock(return_value=1) + convex_hull_decorator._global_stack = mocked_stack convex_hull_decorator._getSettingProperty = MagicMock(return_value=0) @@ -176,6 +183,9 @@ def test_compute2DConvexHullMeshDataGrouped(convex_hull_decorator): convex_hull_decorator.setNode(parent_node) with patch("cura.Settings.ExtruderManager.ExtruderManager.getInstance"): copied_decorator = copy.deepcopy(convex_hull_decorator) + mocked_stack = MagicMock() + mocked_stack.getProperty = MagicMock(return_value=1) + copied_decorator._global_stack = mocked_stack copied_decorator._getSettingProperty = MagicMock(return_value=0) node.addDecorator(copied_decorator) - assert convex_hull_decorator._compute2DConvexHull() == Polygon([[-5.0,5.0], [5.0,5.0], [5.0,-5.0], [-5.0,-5.0]]) \ No newline at end of file + assert convex_hull_decorator._compute2DConvexHull() == Polygon([[-5.0, 5.0], [5.0, 5.0], [5.0, -5.0], [-5.0, -5.0]]) \ No newline at end of file