Compare commits
60 Commits
6fbdbdb3ba
...
v2.5.0-dev
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2f0e416b86 | ||
| 1f885e9153 | |||
|
|
06b0be28f2 | ||
|
|
4701eef566 | ||
|
|
f9693c4c96 | ||
|
|
6d9eb1792f | ||
|
|
691d97867c | ||
|
|
da7e0540a9 | ||
|
|
70fd764e7d | ||
|
|
ed2e7d02d0 | ||
|
|
3ffb9585d2 | ||
|
|
75cd880336 | ||
|
|
af854f3242 | ||
|
|
9b60b9cd5d | ||
|
|
927c5efb8c | ||
|
|
81951fddb5 | ||
|
|
4535f19501 | ||
|
|
ee9a796f14 | ||
|
|
3bce4bb197 | ||
|
|
dcee299909 | ||
|
|
9eeb73b68b | ||
|
|
7ab3174f7c | ||
|
|
5a6e31ac5b | ||
|
|
e700113b39 | ||
|
|
5ed8f5ef25 | ||
|
|
454335dba6 | ||
|
|
b0c1887f40 | ||
|
|
e6f917d7c5 | ||
|
|
14d2dfdd4c | ||
|
|
b1e510fc99 | ||
|
|
8c0b89bc8a | ||
|
|
3e2373c86e | ||
|
|
2abfa512ef | ||
|
|
fe0eafc02b | ||
|
|
5fafbb59fc | ||
|
|
abb4eddb9c | ||
|
|
9bcee518f8 | ||
|
|
0c4c04bcaf | ||
|
|
5f8b48473a | ||
|
|
6bb7903b97 | ||
|
|
d641ca598a | ||
|
|
8e4b188473 | ||
|
|
15f330641c | ||
|
|
d07cb462a8 | ||
|
|
93a82af6b4 | ||
|
|
06eefe7c1e | ||
|
|
847807adac | ||
|
|
3be36bdea4 | ||
|
|
a70b903a19 | ||
|
|
6d9ab28e2d | ||
|
|
38ea91a6bb | ||
|
|
fc9a8aa93f | ||
|
|
21f48a2654 | ||
|
|
548f291a81 | ||
|
|
bc3af3d00f | ||
|
|
269eb81028 | ||
|
|
08d4ae7dbd | ||
|
|
b1411e253f | ||
|
|
42cce5399c | ||
|
|
b17f5e3946 |
7
.github/workflows/assign.yml
vendored
7
.github/workflows/assign.yml
vendored
@@ -1,11 +1,6 @@
|
||||
name: Assign Issue
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: 0 0 * * *
|
||||
issue_comment:
|
||||
types: [created]
|
||||
workflow_dispatch:
|
||||
on: {}
|
||||
|
||||
jobs:
|
||||
assign:
|
||||
|
||||
5
.github/workflows/auto-close-duplicates.yml
vendored
5
.github/workflows/auto-close-duplicates.yml
vendored
@@ -1,9 +1,6 @@
|
||||
name: Auto-close duplicate issues
|
||||
description: Auto-closes issues that are duplicates of existing issues
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 9 * * *"
|
||||
workflow_dispatch:
|
||||
on: {}
|
||||
|
||||
jobs:
|
||||
auto-close-duplicates:
|
||||
|
||||
@@ -1,22 +1,7 @@
|
||||
name: Backfill Duplicate Comments
|
||||
description: Triggers duplicate detection for old issues that don't have duplicate comments
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
days_back:
|
||||
description: 'How many days back to look for old issues'
|
||||
required: false
|
||||
default: '90'
|
||||
type: string
|
||||
dry_run:
|
||||
description: 'Dry run mode (true to only log what would be done)'
|
||||
required: false
|
||||
default: 'true'
|
||||
type: choice
|
||||
options:
|
||||
- 'true'
|
||||
- 'false'
|
||||
on: {}
|
||||
|
||||
jobs:
|
||||
backfill-duplicate-comments:
|
||||
|
||||
445
.github/workflows/build_all.yml
vendored
445
.github/workflows/build_all.yml
vendored
@@ -1,236 +1,209 @@
|
||||
name: Build all
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- release/*
|
||||
paths:
|
||||
- 'deps/**'
|
||||
- 'src/**'
|
||||
- '**/CMakeLists.txt'
|
||||
- 'version.inc'
|
||||
- 'localization/**'
|
||||
- 'resources/**'
|
||||
- ".github/workflows/build_*.yml"
|
||||
- 'scripts/flatpak/**'
|
||||
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
- release/*
|
||||
paths:
|
||||
- 'deps/**'
|
||||
- 'deps_src/**'
|
||||
- 'src/**'
|
||||
- '**/CMakeLists.txt'
|
||||
- 'version.inc'
|
||||
- ".github/workflows/build_*.yml"
|
||||
- 'build_linux.sh'
|
||||
- 'build_release_vs2022.bat'
|
||||
- 'build_release_macos.sh'
|
||||
- 'scripts/flatpak/**'
|
||||
|
||||
|
||||
schedule:
|
||||
- cron: '0 17 * * *' # run once a day at 1 AM Singapore time (UTC+8)
|
||||
|
||||
workflow_dispatch: # allows for manual dispatch
|
||||
inputs:
|
||||
build-deps-only:
|
||||
description: 'Only build dependencies (bypasses caching)'
|
||||
type: boolean
|
||||
default: false
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
|
||||
jobs:
|
||||
build_linux:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
# Don't run scheduled builds on forks:
|
||||
if: ${{ !cancelled() && (github.event_name != 'schedule' || github.repository == 'OrcaSlicer/OrcaSlicer') }}
|
||||
uses: ./.github/workflows/build_check_cache.yml
|
||||
with:
|
||||
os: ${{ vars.SELF_HOSTED && 'orca-lnx-server' || 'ubuntu-24.04' }}
|
||||
build-deps-only: ${{ inputs.build-deps-only || false }}
|
||||
secrets: inherit
|
||||
build_windows:
|
||||
# Don't run scheduled builds on forks:
|
||||
if: ${{ !cancelled() && (github.event_name != 'schedule' || github.repository == 'OrcaSlicer/OrcaSlicer') }}
|
||||
uses: ./.github/workflows/build_check_cache.yml
|
||||
with:
|
||||
os: ${{ vars.SELF_HOSTED && 'orca-win-server' || 'windows-latest' }}
|
||||
build-deps-only: ${{ inputs.build-deps-only || false }}
|
||||
force-build: ${{ github.event_name == 'schedule' }}
|
||||
secrets: inherit
|
||||
build_macos_arch:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
arch:
|
||||
- arm64
|
||||
- x86_64
|
||||
# Don't run scheduled builds on forks:
|
||||
if: ${{ !cancelled() && (github.event_name != 'schedule' || github.repository == 'OrcaSlicer/OrcaSlicer') }}
|
||||
uses: ./.github/workflows/build_check_cache.yml
|
||||
with:
|
||||
os: ${{ vars.SELF_HOSTED && 'orca-macos-arm64' || 'macos-14' }}
|
||||
arch: ${{ matrix.arch }}
|
||||
build-deps-only: ${{ inputs.build-deps-only || false }}
|
||||
force-build: ${{ github.event_name == 'schedule' }}
|
||||
secrets: inherit
|
||||
build_macos_universal:
|
||||
name: Build macOS Universal
|
||||
needs: build_macos_arch
|
||||
if: ${{ !cancelled() && needs.build_macos_arch.result == 'success' && !inputs.build-deps-only && (github.event_name != 'schedule' || github.repository == 'OrcaSlicer/OrcaSlicer') }}
|
||||
uses: ./.github/workflows/build_orca.yml
|
||||
with:
|
||||
os: ${{ vars.SELF_HOSTED && 'orca-macos-arm64' || 'macos-14' }}
|
||||
arch: universal
|
||||
macos-combine-only: true
|
||||
secrets: inherit
|
||||
unit_tests:
|
||||
name: Unit Tests
|
||||
runs-on: ${{ vars.SELF_HOSTED && 'orca-lnx-server' || 'ubuntu-24.04' }}
|
||||
needs: build_linux
|
||||
if: ${{ !cancelled() && success() }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
sparse-checkout: |
|
||||
.github
|
||||
scripts
|
||||
tests
|
||||
- name: Apt-Install Dependencies
|
||||
if: ${{ !vars.SELF_HOSTED }}
|
||||
uses: ./.github/actions/apt-install-deps
|
||||
- name: Restore Test Artifact
|
||||
uses: actions/download-artifact@v8
|
||||
with:
|
||||
name: ${{ github.sha }}-tests
|
||||
- uses: lukka/get-cmake@latest
|
||||
with:
|
||||
cmakeVersion: "~4.3.0" # use most recent 4.3.x version
|
||||
useLocalCache: true # <--= Use the local cache (default is 'false').
|
||||
useCloudCache: true
|
||||
- name: Unpackage and Run Unit Tests
|
||||
timeout-minutes: 20
|
||||
run: |
|
||||
tar -xvf build_tests.tar
|
||||
scripts/run_unit_tests.sh
|
||||
- name: Upload Test Logs
|
||||
uses: actions/upload-artifact@v7
|
||||
if: ${{ failure() }}
|
||||
with:
|
||||
name: unit-test-logs
|
||||
path: build/tests/**/*.log
|
||||
- name: Publish Test Results
|
||||
if: always()
|
||||
uses: EnricoMi/publish-unit-test-result-action@v2
|
||||
with:
|
||||
files: "ctest_results.xml"
|
||||
- name: Delete Test Artifact
|
||||
if: success()
|
||||
uses: geekyeggo/delete-artifact@v6
|
||||
with:
|
||||
name: ${{ github.sha }}-tests
|
||||
flatpak:
|
||||
name: "Flatpak"
|
||||
container:
|
||||
image: ghcr.io/flathub-infra/flatpak-github-actions:gnome-50
|
||||
options: --privileged
|
||||
volumes:
|
||||
- /usr/local/lib/android:/usr/local/lib/android
|
||||
- /usr/share/dotnet:/usr/share/dotnet
|
||||
- /opt/ghc:/opt/ghc1
|
||||
- /usr/local/share/boost:/usr/local/share/boost1
|
||||
- /opt/hostedtoolcache:/opt/hostedtoolcache1
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
variant:
|
||||
- arch: x86_64
|
||||
runner: ubuntu-24.04
|
||||
- arch: aarch64
|
||||
runner: ubuntu-24.04-arm
|
||||
# Don't run scheduled builds on forks; skip entirely on self-hosted runners
|
||||
if: ${{ !cancelled() && !vars.SELF_HOSTED && (github.event_name != 'schedule' || github.repository == 'OrcaSlicer/OrcaSlicer') }}
|
||||
|
||||
runs-on: ${{ matrix.variant.runner }}
|
||||
env:
|
||||
date:
|
||||
ver:
|
||||
ver_pure:
|
||||
steps:
|
||||
- name: "Remove unneeded stuff to free disk space"
|
||||
run:
|
||||
rm -rf /usr/local/lib/android/* /usr/share/dotnet/* /opt/ghc1/* "/usr/local/share/boost1/*" /opt/hostedtoolcache1/*
|
||||
- uses: actions/checkout@v6
|
||||
- name: Get the version and date
|
||||
run: |
|
||||
ver_pure=$(grep 'set(SoftFever_VERSION' version.inc | cut -d '"' -f2)
|
||||
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
|
||||
ver="PR-${{ github.event.number }}"
|
||||
git_commit_hash="${{ github.event.pull_request.head.sha }}"
|
||||
else
|
||||
ver=V$ver_pure
|
||||
git_commit_hash="${{ github.sha }}"
|
||||
fi
|
||||
echo "ver=$ver" >> $GITHUB_ENV
|
||||
echo "ver_pure=$ver_pure" >> $GITHUB_ENV
|
||||
echo "date=$(date +'%Y%m%d')" >> $GITHUB_ENV
|
||||
echo "git_commit_hash=$git_commit_hash" >> $GITHUB_ENV
|
||||
shell: bash
|
||||
# Manage flatpak-builder cache externally so PRs restore but never upload
|
||||
- name: Restore flatpak-builder cache
|
||||
if: github.event_name == 'pull_request'
|
||||
uses: actions/cache/restore@v5
|
||||
with:
|
||||
path: .flatpak-builder
|
||||
key: flatpak-builder-${{ matrix.variant.arch }}-${{ github.event.pull_request.base.sha }}
|
||||
restore-keys: flatpak-builder-${{ matrix.variant.arch }}-
|
||||
- name: Save/restore flatpak-builder cache
|
||||
if: github.event_name != 'pull_request'
|
||||
uses: actions/cache@v5
|
||||
with:
|
||||
path: .flatpak-builder
|
||||
key: flatpak-builder-${{ matrix.variant.arch }}-${{ github.sha }}
|
||||
restore-keys: flatpak-builder-${{ matrix.variant.arch }}-
|
||||
- name: Disable debug info for faster CI builds
|
||||
run: |
|
||||
sed -i '/^build-options:/a\ no-debuginfo: true\n strip: true' \
|
||||
scripts/flatpak/com.orcaslicer.OrcaSlicer.yml
|
||||
shell: bash
|
||||
- name: Inject git commit hash into Flatpak manifest
|
||||
run: |
|
||||
sed -i "/name: OrcaSlicer/{n;s|buildsystem: simple|buildsystem: simple\n build-options:\n env:\n git_commit_hash: \"$git_commit_hash\"|}" \
|
||||
scripts/flatpak/com.orcaslicer.OrcaSlicer.yml
|
||||
shell: bash
|
||||
- uses: flatpak/flatpak-github-actions/flatpak-builder@master
|
||||
with:
|
||||
bundle: OrcaSlicer-Linux-flatpak_${{ env.ver }}_${{ matrix.variant.arch }}.flatpak
|
||||
manifest-path: scripts/flatpak/com.orcaslicer.OrcaSlicer.yml
|
||||
cache: false
|
||||
arch: ${{ matrix.variant.arch }}
|
||||
upload-artifact: false
|
||||
- name: Upload artifacts Flatpak
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: OrcaSlicer-Linux-flatpak_${{ env.ver }}_${{ matrix.variant.arch }}.flatpak
|
||||
path: '/__w/OrcaSlicer/OrcaSlicer/OrcaSlicer-Linux-flatpak_${{ env.ver }}_${{ matrix.variant.arch }}.flatpak'
|
||||
- name: Deploy Flatpak to nightly release
|
||||
if: github.repository == 'OrcaSlicer/OrcaSlicer' && github.ref == 'refs/heads/main'
|
||||
uses: WebFreak001/deploy-nightly@v3.2.0
|
||||
with:
|
||||
upload_url: https://uploads.github.com/repos/OrcaSlicer/OrcaSlicer/releases/137995723/assets{?name,label}
|
||||
release_id: 137995723
|
||||
asset_path: /__w/OrcaSlicer/OrcaSlicer/OrcaSlicer-Linux-flatpak_${{ env.ver }}_${{ matrix.variant.arch }}.flatpak
|
||||
asset_name: OrcaSlicer-Linux-flatpak_nightly_${{ matrix.variant.arch }}.flatpak
|
||||
asset_content_type: application/octet-stream
|
||||
max_releases: 1 # optional, if there are more releases than this matching the asset_name, the oldest ones are going to be deleted
|
||||
|
||||
name: Build all
|
||||
|
||||
on: {}
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
|
||||
jobs:
|
||||
build_linux:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
# Build both arches on every event (PRs included), through the same
|
||||
# build_check_cache -> build_deps -> build_orca chain (the AppImage).
|
||||
# aarch64 always uses the GitHub-hosted arm runner (there is no arm
|
||||
# self-hosted server). amd64's empty arch is load-bearing: it keeps the
|
||||
# historical 'linux-clang' deps cache key and the unsuffixed asset names.
|
||||
matrix:
|
||||
include:
|
||||
- arch: ""
|
||||
os: ${{ vars.SELF_HOSTED && 'orca-lnx-server' || 'ubuntu-24.04' }}
|
||||
- arch: "aarch64"
|
||||
os: ubuntu-24.04-arm
|
||||
# Don't run scheduled builds on forks:
|
||||
if: ${{ !cancelled() && (github.event_name != 'schedule' || github.repository == 'OrcaSlicer/OrcaSlicer') }}
|
||||
uses: ./.github/workflows/build_check_cache.yml
|
||||
with:
|
||||
os: ${{ matrix.os }}
|
||||
arch: ${{ matrix.arch }}
|
||||
build-deps-only: ${{ inputs.build-deps-only || false }}
|
||||
secrets: inherit
|
||||
build_windows:
|
||||
# Don't run scheduled builds on forks:
|
||||
if: ${{ !cancelled() && (github.event_name != 'schedule' || github.repository == 'OrcaSlicer/OrcaSlicer') }}
|
||||
uses: ./.github/workflows/build_check_cache.yml
|
||||
with:
|
||||
os: ${{ vars.SELF_HOSTED && 'orca-win-server' || 'windows-latest' }}
|
||||
build-deps-only: ${{ inputs.build-deps-only || false }}
|
||||
force-build: ${{ github.event_name == 'schedule' }}
|
||||
secrets: inherit
|
||||
build_macos_arch:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
arch:
|
||||
- arm64
|
||||
- x86_64
|
||||
# Don't run scheduled builds on forks:
|
||||
if: ${{ !cancelled() && (github.event_name != 'schedule' || github.repository == 'OrcaSlicer/OrcaSlicer') }}
|
||||
uses: ./.github/workflows/build_check_cache.yml
|
||||
with:
|
||||
os: ${{ vars.SELF_HOSTED && 'orca-macos-arm64' || 'macos-14' }}
|
||||
arch: ${{ matrix.arch }}
|
||||
build-deps-only: ${{ inputs.build-deps-only || false }}
|
||||
force-build: ${{ github.event_name == 'schedule' }}
|
||||
secrets: inherit
|
||||
build_macos_universal:
|
||||
name: Build macOS Universal
|
||||
needs: build_macos_arch
|
||||
if: ${{ !cancelled() && needs.build_macos_arch.result == 'success' && !inputs.build-deps-only && (github.event_name != 'schedule' || github.repository == 'OrcaSlicer/OrcaSlicer') }}
|
||||
uses: ./.github/workflows/build_orca.yml
|
||||
with:
|
||||
os: ${{ vars.SELF_HOSTED && 'orca-macos-arm64' || 'macos-14' }}
|
||||
arch: universal
|
||||
macos-combine-only: true
|
||||
secrets: inherit
|
||||
unit_tests:
|
||||
name: Unit Tests
|
||||
# Tests are built on the aarch64 leg by default (faster GitHub arm runner),
|
||||
# so run them there; self-hosted builds them on the amd64 server instead.
|
||||
runs-on: ${{ vars.SELF_HOSTED && 'orca-lnx-server' || 'ubuntu-24.04-arm' }}
|
||||
needs: build_linux
|
||||
if: ${{ !cancelled() && success() }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
sparse-checkout: |
|
||||
.github
|
||||
scripts
|
||||
tests
|
||||
- name: Apt-Install Dependencies
|
||||
if: ${{ !vars.SELF_HOSTED }}
|
||||
uses: ./.github/actions/apt-install-deps
|
||||
- name: Restore Test Artifact
|
||||
uses: actions/download-artifact@v8
|
||||
with:
|
||||
name: ${{ github.sha }}-tests
|
||||
- uses: lukka/get-cmake@latest
|
||||
with:
|
||||
cmakeVersion: "~4.3.0" # use most recent 4.3.x version
|
||||
useLocalCache: true # <--= Use the local cache (default is 'false').
|
||||
useCloudCache: true
|
||||
- name: Unpackage and Run Unit Tests
|
||||
timeout-minutes: 20
|
||||
run: |
|
||||
tar -xvf build_tests.tar
|
||||
scripts/run_unit_tests.sh
|
||||
- name: Upload Test Logs
|
||||
uses: actions/upload-artifact@v7
|
||||
if: ${{ failure() }}
|
||||
with:
|
||||
name: unit-test-logs
|
||||
path: build/tests/**/*.log
|
||||
- name: Publish Test Results
|
||||
if: always()
|
||||
uses: EnricoMi/publish-unit-test-result-action@v2
|
||||
with:
|
||||
files: "ctest_results.xml"
|
||||
- name: Delete Test Artifact
|
||||
if: success()
|
||||
uses: geekyeggo/delete-artifact@v6
|
||||
with:
|
||||
name: ${{ github.sha }}-tests
|
||||
flatpak:
|
||||
name: "Flatpak"
|
||||
container:
|
||||
image: ghcr.io/flathub-infra/flatpak-github-actions:gnome-50
|
||||
options: --privileged
|
||||
volumes:
|
||||
- /usr/local/lib/android:/usr/local/lib/android
|
||||
- /usr/share/dotnet:/usr/share/dotnet
|
||||
- /opt/ghc:/opt/ghc1
|
||||
- /usr/local/share/boost:/usr/local/share/boost1
|
||||
- /opt/hostedtoolcache:/opt/hostedtoolcache1
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
variant:
|
||||
- arch: x86_64
|
||||
runner: ubuntu-24.04
|
||||
- arch: aarch64
|
||||
runner: ubuntu-24.04-arm
|
||||
# Don't run scheduled builds on forks; skip entirely on self-hosted runners
|
||||
if: ${{ !cancelled() && !vars.SELF_HOSTED && (github.event_name != 'schedule' || github.repository == 'OrcaSlicer/OrcaSlicer') }}
|
||||
|
||||
runs-on: ${{ matrix.variant.runner }}
|
||||
env:
|
||||
date:
|
||||
ver:
|
||||
ver_pure:
|
||||
steps:
|
||||
- name: "Remove unneeded stuff to free disk space"
|
||||
run:
|
||||
rm -rf /usr/local/lib/android/* /usr/share/dotnet/* /opt/ghc1/* "/usr/local/share/boost1/*" /opt/hostedtoolcache1/*
|
||||
- uses: actions/checkout@v6
|
||||
- name: Get the version and date
|
||||
run: |
|
||||
ver_pure=$(grep 'set(SoftFever_VERSION' version.inc | cut -d '"' -f2)
|
||||
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
|
||||
ver="PR-${{ github.event.number }}"
|
||||
git_commit_hash="${{ github.event.pull_request.head.sha }}"
|
||||
else
|
||||
ver=V$ver_pure
|
||||
git_commit_hash="${{ github.sha }}"
|
||||
fi
|
||||
echo "ver=$ver" >> $GITHUB_ENV
|
||||
echo "ver_pure=$ver_pure" >> $GITHUB_ENV
|
||||
echo "date=$(date +'%Y%m%d')" >> $GITHUB_ENV
|
||||
echo "git_commit_hash=$git_commit_hash" >> $GITHUB_ENV
|
||||
shell: bash
|
||||
# Manage flatpak-builder cache externally so PRs restore but never upload
|
||||
- name: Restore flatpak-builder cache
|
||||
if: github.event_name == 'pull_request'
|
||||
uses: actions/cache/restore@v5
|
||||
with:
|
||||
path: .flatpak-builder
|
||||
key: flatpak-builder-${{ matrix.variant.arch }}-${{ github.event.pull_request.base.sha }}
|
||||
restore-keys: flatpak-builder-${{ matrix.variant.arch }}-
|
||||
- name: Save/restore flatpak-builder cache
|
||||
if: github.event_name != 'pull_request'
|
||||
uses: actions/cache@v5
|
||||
with:
|
||||
path: .flatpak-builder
|
||||
key: flatpak-builder-${{ matrix.variant.arch }}-${{ github.sha }}
|
||||
restore-keys: flatpak-builder-${{ matrix.variant.arch }}-
|
||||
- name: Disable debug info for faster CI builds
|
||||
run: |
|
||||
sed -i '/^build-options:/a\ no-debuginfo: true\n strip: true' \
|
||||
scripts/flatpak/com.orcaslicer.OrcaSlicer.yml
|
||||
shell: bash
|
||||
- name: Inject git commit hash into Flatpak manifest
|
||||
run: |
|
||||
sed -i "/name: OrcaSlicer/{n;s|buildsystem: simple|buildsystem: simple\n build-options:\n env:\n git_commit_hash: \"$git_commit_hash\"|}" \
|
||||
scripts/flatpak/com.orcaslicer.OrcaSlicer.yml
|
||||
shell: bash
|
||||
- uses: flatpak/flatpak-github-actions/flatpak-builder@master
|
||||
with:
|
||||
bundle: OrcaSlicer-Linux-flatpak_${{ env.ver }}_${{ matrix.variant.arch }}.flatpak
|
||||
manifest-path: scripts/flatpak/com.orcaslicer.OrcaSlicer.yml
|
||||
cache: false
|
||||
arch: ${{ matrix.variant.arch }}
|
||||
upload-artifact: false
|
||||
- name: Upload artifacts Flatpak
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: OrcaSlicer-Linux-flatpak_${{ env.ver }}_${{ matrix.variant.arch }}.flatpak
|
||||
path: '/__w/OrcaSlicer/OrcaSlicer/OrcaSlicer-Linux-flatpak_${{ env.ver }}_${{ matrix.variant.arch }}.flatpak'
|
||||
- name: Deploy Flatpak to nightly release
|
||||
if: github.repository == 'OrcaSlicer/OrcaSlicer' && github.ref == 'refs/heads/main'
|
||||
uses: WebFreak001/deploy-nightly@v3.2.0
|
||||
with:
|
||||
upload_url: https://uploads.github.com/repos/OrcaSlicer/OrcaSlicer/releases/137995723/assets{?name,label}
|
||||
release_id: 137995723
|
||||
asset_path: /__w/OrcaSlicer/OrcaSlicer/OrcaSlicer-Linux-flatpak_${{ env.ver }}_${{ matrix.variant.arch }}.flatpak
|
||||
asset_name: OrcaSlicer-Linux-flatpak_nightly_${{ matrix.variant.arch }}.flatpak
|
||||
asset_content_type: application/octet-stream
|
||||
max_releases: 1 # optional, if there are more releases than this matching the asset_name, the oldest ones are going to be deleted
|
||||
|
||||
116
.github/workflows/build_check_cache.yml
vendored
116
.github/workflows/build_check_cache.yml
vendored
@@ -1,64 +1,52 @@
|
||||
name: Check Cache
|
||||
|
||||
on:
|
||||
workflow_call:
|
||||
inputs:
|
||||
os:
|
||||
required: true
|
||||
type: string
|
||||
arch:
|
||||
required: false
|
||||
type: string
|
||||
build-deps-only:
|
||||
required: false
|
||||
type: boolean
|
||||
force-build:
|
||||
required: false
|
||||
type: boolean
|
||||
|
||||
jobs:
|
||||
check_cache: # determines if there is a cache and outputs variables used in caching process
|
||||
name: Check Cache
|
||||
runs-on: ${{ inputs.os }}
|
||||
outputs:
|
||||
cache-key: ${{ steps.set_outputs.outputs.cache-key }}
|
||||
cache-path: ${{ steps.set_outputs.outputs.cache-path }}
|
||||
valid-cache: ${{ steps.cache_deps.outputs.cache-hit }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
lfs: 'false'
|
||||
|
||||
- name: set outputs
|
||||
id: set_outputs
|
||||
env:
|
||||
# Keep macOS cache keys and paths architecture-specific.
|
||||
cache-os: ${{ runner.os == 'macOS' && format('macos-{0}', inputs.arch) || (runner.os == 'Windows' && 'windows' || 'linux-clang') }}
|
||||
dep-folder-name: ${{ runner.os == 'macOS' && format('/{0}', inputs.arch) || '/OrcaSlicer_dep' }}
|
||||
output-cmd: ${{ runner.os == 'Windows' && '$env:GITHUB_OUTPUT' || '"$GITHUB_OUTPUT"'}}
|
||||
run: |
|
||||
echo cache-key=${{ env.cache-os }}-cache-orcaslicer_deps-build-${{ hashFiles('deps/**') }} >> ${{ env.output-cmd }}
|
||||
echo cache-path=${{ github.workspace }}/deps/build${{ env.dep-folder-name }} >> ${{ env.output-cmd }}
|
||||
|
||||
- name: load cache
|
||||
id: cache_deps
|
||||
uses: actions/cache@v5
|
||||
with:
|
||||
path: ${{ steps.set_outputs.outputs.cache-path }}
|
||||
key: ${{ steps.set_outputs.outputs.cache-key }}
|
||||
lookup-only: true
|
||||
|
||||
build_deps: # call next step
|
||||
name: Build Deps
|
||||
needs: [check_cache]
|
||||
uses: ./.github/workflows/build_deps.yml
|
||||
with:
|
||||
cache-key: ${{ needs.check_cache.outputs.cache-key }}
|
||||
cache-path: ${{ needs.check_cache.outputs.cache-path }}
|
||||
valid-cache: ${{ needs.check_cache.outputs.valid-cache == 'true' }}
|
||||
os: ${{ inputs.os }}
|
||||
arch: ${{ inputs.arch }}
|
||||
build-deps-only: ${{ inputs.build-deps-only }}
|
||||
force-build: ${{ inputs.force-build }}
|
||||
secrets: inherit
|
||||
name: Check Cache
|
||||
|
||||
on: {}
|
||||
|
||||
jobs:
|
||||
check_cache: # determines if there is a cache and outputs variables used in caching process
|
||||
name: Check Cache
|
||||
runs-on: ${{ inputs.os }}
|
||||
outputs:
|
||||
cache-key: ${{ steps.set_outputs.outputs.cache-key }}
|
||||
cache-path: ${{ steps.set_outputs.outputs.cache-path }}
|
||||
valid-cache: ${{ steps.cache_deps.outputs.cache-hit }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
lfs: 'false'
|
||||
|
||||
- name: set outputs
|
||||
id: set_outputs
|
||||
env:
|
||||
# Keep macOS/Linux cache keys architecture-specific. amd64 Linux passes
|
||||
# no arch (key stays 'linux-clang', preserving the existing cache);
|
||||
# aarch64 gets its own 'linux-clang-aarch64' key.
|
||||
cache-os: ${{ runner.os == 'macOS' && format('macos-{0}', inputs.arch) || (runner.os == 'Windows' && 'windows' || format('linux-clang{0}', inputs.arch && format('-{0}', inputs.arch) || '')) }}
|
||||
dep-folder-name: ${{ runner.os == 'macOS' && format('/{0}', inputs.arch) || '/OrcaSlicer_dep' }}
|
||||
output-cmd: ${{ runner.os == 'Windows' && '$env:GITHUB_OUTPUT' || '"$GITHUB_OUTPUT"'}}
|
||||
run: |
|
||||
echo cache-key=${{ env.cache-os }}-cache-orcaslicer_deps-build-${{ hashFiles('deps/**') }} >> ${{ env.output-cmd }}
|
||||
echo cache-path=${{ github.workspace }}/deps/build${{ env.dep-folder-name }} >> ${{ env.output-cmd }}
|
||||
|
||||
- name: load cache
|
||||
id: cache_deps
|
||||
uses: actions/cache@v5
|
||||
with:
|
||||
path: ${{ steps.set_outputs.outputs.cache-path }}
|
||||
key: ${{ steps.set_outputs.outputs.cache-key }}
|
||||
lookup-only: true
|
||||
|
||||
build_deps: # call next step
|
||||
name: Build Deps
|
||||
needs: [check_cache]
|
||||
uses: ./.github/workflows/build_deps.yml
|
||||
with:
|
||||
cache-key: ${{ needs.check_cache.outputs.cache-key }}
|
||||
cache-path: ${{ needs.check_cache.outputs.cache-path }}
|
||||
valid-cache: ${{ needs.check_cache.outputs.valid-cache == 'true' }}
|
||||
os: ${{ inputs.os }}
|
||||
arch: ${{ inputs.arch }}
|
||||
build-deps-only: ${{ inputs.build-deps-only }}
|
||||
force-build: ${{ inputs.force-build }}
|
||||
secrets: inherit
|
||||
|
||||
25
.github/workflows/build_deps.yml
vendored
25
.github/workflows/build_deps.yml
vendored
@@ -1,27 +1,4 @@
|
||||
on:
|
||||
workflow_call:
|
||||
inputs:
|
||||
cache-key:
|
||||
required: true
|
||||
type: string
|
||||
cache-path:
|
||||
required: true
|
||||
type: string
|
||||
valid-cache:
|
||||
required: true
|
||||
type: boolean
|
||||
os:
|
||||
required: true
|
||||
type: string
|
||||
arch:
|
||||
required: false
|
||||
type: string
|
||||
build-deps-only:
|
||||
required: false
|
||||
type: boolean
|
||||
force-build:
|
||||
required: false
|
||||
type: boolean
|
||||
on: {}
|
||||
|
||||
jobs:
|
||||
build_deps:
|
||||
|
||||
81
.github/workflows/build_orca.yml
vendored
81
.github/workflows/build_orca.yml
vendored
@@ -1,22 +1,4 @@
|
||||
on:
|
||||
workflow_call:
|
||||
inputs:
|
||||
cache-key:
|
||||
required: false
|
||||
type: string
|
||||
cache-path:
|
||||
required: false
|
||||
type: string
|
||||
os:
|
||||
required: true
|
||||
type: string
|
||||
arch:
|
||||
required: false
|
||||
type: string
|
||||
macos-combine-only:
|
||||
required: false
|
||||
type: boolean
|
||||
default: false
|
||||
on: {}
|
||||
|
||||
jobs:
|
||||
build_orca:
|
||||
@@ -65,6 +47,11 @@ jobs:
|
||||
echo "ver_pure=$ver_pure" >> $GITHUB_ENV
|
||||
echo "date=$(date +'%Y%m%d')" >> $GITHUB_ENV
|
||||
echo "git_commit_hash=$git_commit_hash" >> $GITHUB_ENV
|
||||
# Per-arch Linux AppImage naming: amd64 keeps the historical unsuffixed
|
||||
# name (arch_suffix empty). Unused on macOS/Windows.
|
||||
if [ '${{ inputs.arch }}' = 'aarch64' ]; then
|
||||
echo "arch_suffix=_aarch64" >> $GITHUB_ENV
|
||||
fi
|
||||
shell: bash
|
||||
|
||||
- name: Get the version and date on Windows
|
||||
@@ -371,6 +358,25 @@ jobs:
|
||||
asset_content_type: application/x-msdownload
|
||||
max_releases: 1
|
||||
|
||||
- name: Build MSIX Store package Win
|
||||
if: runner.os == 'Windows' && !vars.SELF_HOSTED
|
||||
working-directory: ${{ github.workspace }}
|
||||
shell: pwsh
|
||||
run: |
|
||||
./scripts/msix/build_msix.ps1 `
|
||||
-InstallDir "${{ github.workspace }}/build/OrcaSlicer" `
|
||||
-OutputPath "${{ github.workspace }}/build/OrcaSlicer_Windows_MSIX_${{ env.ver }}.msix" `
|
||||
-IdentityName "${{ vars.ORCA_MSIX_IDENTITY_NAME || 'OrcaSlicer.OrcaSlicer' }}" `
|
||||
-Publisher "${{ vars.ORCA_MSIX_PUBLISHER || 'CN=38F7EA55-C73B-4072-B3B2-C8E0EA15BB82' }}" `
|
||||
-PublisherDisplayName "${{ vars.ORCA_MSIX_PUBLISHER_DISPLAY_NAME || 'OrcaSlicer' }}"
|
||||
|
||||
- name: Upload artifacts Win MSIX
|
||||
if: runner.os == 'Windows' && !vars.SELF_HOSTED
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: OrcaSlicer_Windows_MSIX_${{ env.ver }}
|
||||
path: ${{ github.workspace }}/build/OrcaSlicer_Windows_MSIX_${{ env.ver }}.msix
|
||||
|
||||
# Ubuntu
|
||||
- name: Apt-Install Dependencies
|
||||
if: runner.os == 'Linux' && !vars.SELF_HOSTED
|
||||
@@ -382,16 +388,23 @@ jobs:
|
||||
if: runner.os == 'Linux'
|
||||
shell: bash
|
||||
run: |
|
||||
./build_linux.sh -istrlL
|
||||
# Build + tar the unit tests (-t) only on the leg that runs them: the
|
||||
# aarch64 leg by default (faster GitHub arm runner), or amd64 when using
|
||||
# self-hosted runners (no arm self-hosted server). unit_tests downloads
|
||||
# this tarball. The profile validator is built with -s, so amd64 keeps it.
|
||||
tests=${{ (!vars.SELF_HOSTED && inputs.arch == 'aarch64') || (vars.SELF_HOSTED && inputs.arch != 'aarch64') }}
|
||||
if $tests; then flags=-istrlL; else flags=-isrlL; fi
|
||||
./build_linux.sh "$flags"
|
||||
./scripts/check_appimage_libs.sh ./build/package ./build/package/bin/orca-slicer
|
||||
mv -n ./build/OrcaSlicer_Linux_V${{ env.ver_pure }}.AppImage ./build/OrcaSlicer_Linux_AppImage${{ env.ubuntu-ver-str }}_${{ env.ver }}.AppImage
|
||||
chmod +x ./build/OrcaSlicer_Linux_AppImage${{ env.ubuntu-ver-str }}_${{ env.ver }}.AppImage
|
||||
tar -cvpf build_tests.tar build/tests
|
||||
appimage=./build/OrcaSlicer_Linux_AppImage${{ env.ubuntu-ver-str }}${{ env.arch_suffix }}_${{ env.ver }}.AppImage
|
||||
mv -n ./build/OrcaSlicer_Linux_V${{ env.ver_pure }}.AppImage "$appimage"
|
||||
chmod +x "$appimage"
|
||||
if $tests; then tar -cvpf build_tests.tar build/tests; fi
|
||||
|
||||
# Use tar because upload-artifacts won't always preserve directory structure
|
||||
# and doesn't preserve file permissions
|
||||
- name: Upload Test Artifact
|
||||
if: runner.os == 'Linux'
|
||||
if: runner.os == 'Linux' && ((!vars.SELF_HOSTED && inputs.arch == 'aarch64') || (vars.SELF_HOSTED && inputs.arch != 'aarch64'))
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: ${{ github.sha }}-tests
|
||||
@@ -401,7 +414,7 @@ jobs:
|
||||
if-no-files-found: error
|
||||
|
||||
- name: Run external slicer regression tests
|
||||
if: runner.os == 'Linux'
|
||||
if: runner.os == 'Linux' && inputs.arch != 'aarch64'
|
||||
timeout-minutes: 20
|
||||
shell: bash
|
||||
run: |
|
||||
@@ -411,7 +424,7 @@ jobs:
|
||||
python3 "$test_repo_dir/run_test.py" "${{ github.workspace }}/build/package/bin/orca-slicer"
|
||||
|
||||
- name: Build orca_custom_preset_tests
|
||||
if: github.ref == 'refs/heads/main' && runner.os == 'Linux' && !vars.SELF_HOSTED
|
||||
if: github.ref == 'refs/heads/main' && runner.os == 'Linux' && !vars.SELF_HOSTED && inputs.arch != 'aarch64'
|
||||
working-directory: ${{ github.workspace }}/build/src/Release
|
||||
shell: bash
|
||||
run: |
|
||||
@@ -423,11 +436,11 @@ jobs:
|
||||
if: ${{ ! env.ACT && runner.os == 'Linux' }}
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: OrcaSlicer_Linux_ubuntu_${{ env.ubuntu-ver }}_${{ env.ver }}
|
||||
path: './build/OrcaSlicer_Linux_AppImage${{ env.ubuntu-ver-str }}_${{ env.ver }}.AppImage'
|
||||
name: OrcaSlicer_Linux_ubuntu_${{ env.ubuntu-ver }}${{ env.arch_suffix }}_${{ env.ver }}
|
||||
path: "./build/OrcaSlicer_Linux_AppImage${{ env.ubuntu-ver-str }}${{ env.arch_suffix }}_${{ env.ver }}.AppImage"
|
||||
|
||||
- name: Upload OrcaSlicer_profile_validator Ubuntu
|
||||
if: ${{ ! env.ACT && runner.os == 'Linux' && !vars.SELF_HOSTED }}
|
||||
if: ${{ ! env.ACT && runner.os == 'Linux' && !vars.SELF_HOSTED && inputs.arch != 'aarch64' }}
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: OrcaSlicer_profile_validator_Linux_ubuntu_${{ env.ubuntu-ver }}_${{ env.ver }}
|
||||
@@ -439,12 +452,12 @@ jobs:
|
||||
with:
|
||||
upload_url: https://uploads.github.com/repos/OrcaSlicer/OrcaSlicer/releases/137995723/assets{?name,label}
|
||||
release_id: 137995723
|
||||
asset_path: ./build/OrcaSlicer_Linux_AppImage${{ env.ubuntu-ver-str }}_${{ env.ver }}.AppImage
|
||||
asset_name: OrcaSlicer_Linux_AppImage${{ env.ubuntu-ver-str }}_nightly.AppImage
|
||||
asset_path: ./build/OrcaSlicer_Linux_AppImage${{ env.ubuntu-ver-str }}${{ env.arch_suffix }}_${{ env.ver }}.AppImage
|
||||
asset_name: OrcaSlicer_Linux_AppImage${{ env.ubuntu-ver-str }}${{ env.arch_suffix }}_nightly.AppImage
|
||||
asset_content_type: application/octet-stream
|
||||
max_releases: 1 # optional, if there are more releases than this matching the asset_name, the oldest ones are going to be deleted
|
||||
- name: Deploy Ubuntu release
|
||||
if: ${{ github.repository == 'OrcaSlicer/OrcaSlicer' && ! env.ACT && github.ref == 'refs/heads/main' && runner.os == 'Linux' && !vars.SELF_HOSTED }}
|
||||
if: ${{ github.repository == 'OrcaSlicer/OrcaSlicer' && ! env.ACT && github.ref == 'refs/heads/main' && runner.os == 'Linux' && !vars.SELF_HOSTED && inputs.arch != 'aarch64' }}
|
||||
uses: rickstaa/action-create-tag@v1
|
||||
with:
|
||||
tag: "nightly-builds"
|
||||
@@ -453,7 +466,7 @@ jobs:
|
||||
message: "nightly-builds"
|
||||
|
||||
- name: Deploy Ubuntu OrcaSlicer_profile_validator release
|
||||
if: ${{ github.repository == 'OrcaSlicer/OrcaSlicer' && ! env.ACT && github.ref == 'refs/heads/main' && runner.os == 'Linux' && !vars.SELF_HOSTED }}
|
||||
if: ${{ github.repository == 'OrcaSlicer/OrcaSlicer' && ! env.ACT && github.ref == 'refs/heads/main' && runner.os == 'Linux' && !vars.SELF_HOSTED && inputs.arch != 'aarch64' }}
|
||||
uses: WebFreak001/deploy-nightly@v3.2.0
|
||||
with:
|
||||
upload_url: https://uploads.github.com/repos/OrcaSlicer/OrcaSlicer/releases/137995723/assets{?name,label}
|
||||
@@ -464,7 +477,7 @@ jobs:
|
||||
max_releases: 1
|
||||
|
||||
- name: Deploy orca_custom_preset_tests
|
||||
if: ${{ github.repository == 'OrcaSlicer/OrcaSlicer' && ! env.ACT && github.ref == 'refs/heads/main' && runner.os == 'Linux' && !vars.SELF_HOSTED }}
|
||||
if: ${{ github.repository == 'OrcaSlicer/OrcaSlicer' && ! env.ACT && github.ref == 'refs/heads/main' && runner.os == 'Linux' && !vars.SELF_HOSTED && inputs.arch != 'aarch64' }}
|
||||
uses: WebFreak001/deploy-nightly@v3.2.0
|
||||
with:
|
||||
upload_url: https://uploads.github.com/repos/OrcaSlicer/OrcaSlicer/releases/137995723/assets{?name,label}
|
||||
|
||||
8
.github/workflows/check_locale.yml
vendored
8
.github/workflows/check_locale.yml
vendored
@@ -1,12 +1,6 @@
|
||||
name: Check locale
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- 'localization/**'
|
||||
- ".github/workflows/check_locale.yml"
|
||||
on: {}
|
||||
|
||||
jobs:
|
||||
check_translation:
|
||||
|
||||
15
.github/workflows/check_profiles.yml
vendored
15
.github/workflows/check_profiles.yml
vendored
@@ -1,18 +1,5 @@
|
||||
name: Check profiles
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- 'resources/profiles/**'
|
||||
- ".github/workflows/check_profiles.yml"
|
||||
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
logLevel:
|
||||
description: 'Log level'
|
||||
required: true
|
||||
default: 'warning'
|
||||
on: {}
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
6
.github/workflows/check_profiles_comment.yml
vendored
6
.github/workflows/check_profiles_comment.yml
vendored
@@ -2,11 +2,7 @@ name: Post profile check comment
|
||||
|
||||
# NOTE: The workflow name in the 'workflows' filter below must match the 'name'
|
||||
# field in check_profiles.yml exactly. If that name changes, update it here too.
|
||||
on:
|
||||
workflow_run:
|
||||
workflows: ["Check profiles"]
|
||||
types:
|
||||
- completed
|
||||
on: {}
|
||||
|
||||
permissions:
|
||||
pull-requests: write
|
||||
|
||||
10
.github/workflows/dedupe-issues.yml
vendored
10
.github/workflows/dedupe-issues.yml
vendored
@@ -1,14 +1,6 @@
|
||||
name: Orca Issue Dedupe
|
||||
description: Automatically dedupe GitHub issues using AI
|
||||
on:
|
||||
issues:
|
||||
types: [opened]
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
issue_number:
|
||||
description: 'Issue number to process for duplicate detection'
|
||||
required: true
|
||||
type: string
|
||||
on: {}
|
||||
|
||||
jobs:
|
||||
dedupe-issues:
|
||||
|
||||
5
.github/workflows/doxygen-docs.yml
vendored
5
.github/workflows/doxygen-docs.yml
vendored
@@ -1,9 +1,6 @@
|
||||
name: Generate Doxygen Documentation
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 0 * * 1' # Every Monday at midnight UTC
|
||||
workflow_dispatch: # Manual trigger
|
||||
on: {}
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}
|
||||
|
||||
9
.github/workflows/pr-label-bot.yml
vendored
9
.github/workflows/pr-label-bot.yml
vendored
@@ -1,13 +1,6 @@
|
||||
name: PR Label Bot
|
||||
|
||||
on:
|
||||
pull_request_target:
|
||||
types:
|
||||
- opened
|
||||
- reopened
|
||||
issue_comment:
|
||||
types:
|
||||
- created
|
||||
on: {}
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
15
.github/workflows/publish_release.yml
vendored
15
.github/workflows/publish_release.yml
vendored
@@ -9,17 +9,7 @@ name: Publish to draft release
|
||||
# `RELEASE_PUBLISHER` repo variable (set to "SoftFever"). To allow someone else,
|
||||
# change that variable: gh variable set RELEASE_PUBLISHER --body "<login>".
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
run_id:
|
||||
description: 'Run ID of the "Build all" workflow to pull binaries from (the number in the Actions run URL)'
|
||||
required: true
|
||||
type: string
|
||||
tag:
|
||||
description: 'Tag of the draft release to upload to (e.g. v2.4.0-beta)'
|
||||
required: true
|
||||
type: string
|
||||
on: {}
|
||||
|
||||
permissions:
|
||||
contents: write # upload release assets
|
||||
@@ -73,8 +63,9 @@ jobs:
|
||||
|
||||
- name: Download release artifacts from build run
|
||||
run: |
|
||||
# Windows_V* (not Windows_*) keeps the MSIX Store artifact out: it goes to Partner Center, not GitHub releases.
|
||||
gh run download "$RUN_ID" --repo "$GITHUB_REPOSITORY" --dir artifacts \
|
||||
-p 'OrcaSlicer_Windows_*' \
|
||||
-p 'OrcaSlicer_Windows_V*' \
|
||||
-p 'OrcaSlicer_Mac_universal_*' \
|
||||
-p 'OrcaSlicer_Linux_ubuntu_*' \
|
||||
-p 'OrcaSlicer-Linux-flatpak_*' \
|
||||
|
||||
13
.github/workflows/shellcheck.yml
vendored
13
.github/workflows/shellcheck.yml
vendored
@@ -1,15 +1,4 @@
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- '**.sh'
|
||||
- 'scripts/linux.d/*'
|
||||
pull_request:
|
||||
paths:
|
||||
- '**.sh'
|
||||
- 'scripts/linux.d/*'
|
||||
schedule:
|
||||
- cron: '55 7 * * *' # run once a day near midnight US Pacific time
|
||||
workflow_dispatch: # allows for manual dispatch
|
||||
on: {}
|
||||
|
||||
name: "Shellcheck"
|
||||
permissions: {}
|
||||
|
||||
5
.github/workflows/update-translation.yml
vendored
5
.github/workflows/update-translation.yml
vendored
@@ -1,8 +1,5 @@
|
||||
name: Update Translation Catalog
|
||||
on:
|
||||
# schedule:
|
||||
# - cron: 0 0 * * 1
|
||||
workflow_dispatch:
|
||||
on: {}
|
||||
|
||||
jobs:
|
||||
update_translation:
|
||||
|
||||
5
.github/workflows/winget_updater.yml
vendored
5
.github/workflows/winget_updater.yml
vendored
@@ -1,7 +1,6 @@
|
||||
name: Publish to WinGet
|
||||
on:
|
||||
release:
|
||||
types: [ released ]
|
||||
on: {}
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
runs-on: windows-latest
|
||||
|
||||
247
README.md
247
README.md
@@ -1,235 +1,58 @@
|
||||
<div align="center">
|
||||
# OrcaSlicer-KX
|
||||
|
||||
<picture>
|
||||
<img alt="OrcaSlicer logo" src="resources/images/OrcaSlicer.png" width="15%" height="15%">
|
||||
</picture>
|
||||
**OrcaSlicer mit KX-Bridge-Patches für den Anycubic Kobra X**
|
||||
|
||||
<a href="https://trendshift.io/repositories/15552" target="_blank"><img src="https://trendshift.io/api/badge/repositories/15552" alt="OrcaSlicer%2FOrcaSlicer | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
|
||||
Fertige Binaries von [OrcaSlicer](https://github.com/SoftFever/OrcaSlicer) mit integrierten KX-spezifischen Erweiterungen — empfohlen für den Einsatz mit [KX-Bridge](https://gitea.it-drui.de/viewit/KX-Bridge-Release).
|
||||
|
||||
[](https://github.com/OrcaSlicer/OrcaSlicer/stargazers) [](https://github.com/OrcaSlicer/OrcaSlicer/actions/workflows/build_all.yml)
|
||||
[](https://gitea.it-drui.de/viewit/OrcaSlicer-KX/releases)
|
||||
|
||||
OrcaSlicer: an open source Next-Gen Slicing Software for Precision 3D Prints.
|
||||
Optimize your prints with ultra-fast slicing, intelligent support generation, and seamless printer compatibility—engineered for perfection.
|
||||
<h3>
|
||||
---
|
||||
|
||||
# Official links and community
|
||||
## Download
|
||||
|
||||
#### Official Website:
|
||||
Aktuelle Version: **2.4.0-kx1** (Basis: OrcaSlicer 2.4.0 stable)
|
||||
|
||||
<a href="https://www.orcaslicer.com/" style="font-size:2em;">OrcaSlicer.com</a>
|
||||
| Plattform | Datei | Hinweis |
|
||||
|-----------|-------|---------|
|
||||
| Linux x86_64 | `OrcaSlicer-KX-Linux-x86_64.AppImage` | `chmod +x` setzen, dann starten |
|
||||
| Windows x86_64 | `OrcaSlicer-KX-Windows-x86_64.zip` | Entpacken, `orca-slicer.exe` starten |
|
||||
|
||||
#### Github Repository:
|
||||
macOS wird nicht bereitgestellt — bitte aus dem Upstream selbst bauen.
|
||||
|
||||
<a href="https://github.com/OrcaSlicer/OrcaSlicer"><img src="https://img.shields.io/badge/OrcaSlicer-181717?style=flat&logo=github&logoColor=white" width="200" alt="GitHub Logo"/> </a>
|
||||
---
|
||||
|
||||
#### Follow us:
|
||||
## Enthaltene Patches
|
||||
|
||||
<a href="https://twitter.com/real_OrcaSlicer"><img src="https://img.shields.io/badge/real__OrcaSlicer-000000?style=flat&logo=x&logoColor=white" width="200" alt="X Logo"/> </a>
|
||||
<a href="https://www.youtube.com/@OfficialOrcaSlicer"><img src="https://img.shields.io/badge/OfficialOrcaSlicer-FF0000?style=flat&logo=youtube&logoColor=white" width="200" alt="YouTube Logo"/> </a>
|
||||
- **Moonraker-Bridge:** mehrstufiges Filament-Matching (Name, Sub-Brand, Vendor-Fallback) mit Vendor-Filter-Skip
|
||||
- **AMS-Leerslot-Fix:** leere AMS-Slots werden korrekt grau dargestellt (kein Absturz / falsches Filament)
|
||||
- **Filament-ID:** eindeutige `filament_id` für abgeleitete User-Presets (korrekte Bridge-Synchronisation)
|
||||
- **Kobra X Profile:** Drucker- und G-Code-Profile für den Anycubic Kobra X
|
||||
|
||||
#### Join our Discord community:
|
||||
---
|
||||
|
||||
<a href="https://discord.gg/P4VE9UY9gJ"><img src="https://img.shields.io/badge/-Discord-5865F2?style=flat&logo=discord&logoColor=fff" width="200" alt="discord logo"/> </a>
|
||||
## Filament-Presets & KX-Bridge
|
||||
|
||||
<table border="2" style="border-color: #ffa500; background-color:rgb(232, 220, 180); color: #856404;">
|
||||
<tr>
|
||||
<td>
|
||||
<strong>⚠️ CAUTION:</strong><br>
|
||||
Several clickbait and malicious websites, such as <b>orca-slicer[.]com</b> and <b>orcaslicer[.]net</b>, are pretending to be the official OrcaSlicer site. These sites may redirect you to dangerous downloads or contain misleading information.<br>
|
||||
<b>Our only official website is <a href="https://www.orcaslicer.com/">www.orcaslicer.com</a>.</b><br><br>
|
||||
If you come across any of these in search results, please <b>report them</b> as unsafe or phishing to help keep the community secure with:<br>
|
||||
- <a href="https://safebrowsing.google.com/safebrowsing/report_phish/">Google Safe Browsing</a><br>
|
||||
- <a href="https://www.microsoft.com/en-us/wdsi/support/report-unsafe-site">Microsoft Security Intelligence</a><br>
|
||||
- <a href="https://ipthreat.net/tools/reportphishing">IPThreat</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
📄 [Anleitung: eigene Filament-Presets erstellen, prüfen und importieren](https://gitea.it-drui.de/viewit/KX-Bridge-Release/src/branch/master/docs/filament-preset-bridge-guide.md)
|
||||
|
||||
</div>
|
||||
---
|
||||
|
||||
# Main features
|
||||
## Branch-Struktur
|
||||
|
||||
- **[Advanced Calibration Tools](https://www.orcaslicer.com/wiki/calibration_guide)**
|
||||
Comprehensive suite: temperature towers, flow rate, retraction & more for optimal performance.
|
||||
- **[Precise Wall](https://www.orcaslicer.com/wiki/quality_settings_precision#precise-wall) and [Seam Control](https://www.orcaslicer.com/wiki/quality_settings_seam)**
|
||||
Adjust outer wall spacing and apply scarf seams to enhance print accuracy.
|
||||
- **[Sandwich Mode](https://www.orcaslicer.com/wiki/quality_settings_wall_and_surfaces#innerouterinner) and [Polyholes](https://www.orcaslicer.com/wiki/quality_settings_precision#polyholes) Support**
|
||||
Use varied infill [patterns](https://www.orcaslicer.com/wiki/strength_settings_patterns) and accurate hole shapes for improved clarity.
|
||||
- **[Overhang](https://www.orcaslicer.com/wiki/quality_settings_overhangs) and [Support Optimization](https://www.orcaslicer.com/wiki#support-settings)**
|
||||
Modify geometry for printable overhangs with precise support placement.
|
||||
- **[Granular Controls and Customization](https://www.orcaslicer.com/wiki#process-settings)**
|
||||
Fine-tune print speed, layer height, pressure, and temperature with precision.
|
||||
- **Network Printer Support**
|
||||
Seamless integration with Klipper, PrusaLink, and OctoPrint for remote control.
|
||||
- **[Mouse Ear Brims](https://www.orcaslicer.com/wiki/others_settings_brim) & [Adaptive Bed Mesh](https://www.orcaslicer.com/wiki/printer_basic_information_adaptive_bed_mesh)**
|
||||
Automatic brims and adaptive mesh calibration ensure consistent adhesion.
|
||||
- **User-Friendly Interface**
|
||||
Intuitive drag-and-drop design with pre-made profiles for popular printers.
|
||||
- **[Open-Source](https://github.com/OrcaSlicer/OrcaSlicer) & [Community Driven](https://discord.gg/P4VE9UY9gJ)**
|
||||
Regular updates fueled by continuous community contributions.
|
||||
- **Wide Printer Compatibility**
|
||||
Supports a broad range of printers: Bambu Lab, Prusa, Creality, Voron, and more.
|
||||
- Additional features can be found in the [change notes](https://github.com/OrcaSlicer/OrcaSlicer/releases/).
|
||||
| Branch | Version | Rolle |
|
||||
|--------|---------|-------|
|
||||
| `stable` / `kx-v2.4` | 2.4.0-kx1 | **aktuell stabil** |
|
||||
| `kx-v2.3` | 2.3.2-kx4 | eingefroren (Altstand) |
|
||||
|
||||
# Wiki
|
||||
---
|
||||
|
||||
The [wiki](https://www.orcaslicer.com/wiki) aims to provide a detailed explanation of the slicer settings, including how to maximize their use and how to calibrate and set up your printer.
|
||||
## Warum ein eigenes Repo?
|
||||
|
||||
- **[Access the wiki here](https://www.orcaslicer.com/wiki)**
|
||||
- **[Contribute to the wiki](https://www.orcaslicer.com/wiki/how_to_wiki)**
|
||||
KX-Bridge selbst liegt unter [viewit/KX-Bridge-Release](https://gitea.it-drui.de/viewit/KX-Bridge-Release).
|
||||
OrcaSlicer steht unter AGPL-3.0 — ein separates Repo hält Lizenzen, Quellherkunft und Update-Zyklen sauber getrennt.
|
||||
|
||||
# Download
|
||||
---
|
||||
|
||||
## Stable Release
|
||||
## Lizenz & Quelle
|
||||
|
||||
📥 **[Download the Latest Stable Release](https://github.com/OrcaSlicer/OrcaSlicer/releases/latest)**
|
||||
Visit our GitHub Releases page for the latest stable version of OrcaSlicer, recommended for most users.
|
||||
|
||||
## Nightly Builds
|
||||
|
||||
🌙 **[Download the Latest Nightly Build](https://github.com/OrcaSlicer/OrcaSlicer/releases/tag/nightly-builds)**
|
||||
Explore the latest developments in OrcaSlicer with our nightly builds. Feedback on these versions is highly appreciated.
|
||||
|
||||
# How to install
|
||||
|
||||
## Windows
|
||||
|
||||
Download the **Windows Installer exe** for your preferred version from the [releases page](https://github.com/OrcaSlicer/OrcaSlicer/releases).
|
||||
|
||||
- *For convenience there is also a portable build available.*
|
||||
<details>
|
||||
<summary>Troubleshooting</summary>
|
||||
|
||||
- *If you have troubles to run the build, you might need to install following runtimes:*
|
||||
- [MicrosoftEdgeWebView2RuntimeInstallerX64](https://github.com/OrcaSlicer/OrcaSlicer/releases/download/v1.0.10-sf2/MicrosoftEdgeWebView2RuntimeInstallerX64.exe)
|
||||
- [Details of this runtime](https://aka.ms/webview2)
|
||||
- [Alternative Download Link Hosted by Microsoft](https://go.microsoft.com/fwlink/p/?LinkId=2124703)
|
||||
- [vcredist2019_x64](https://github.com/OrcaSlicer/OrcaSlicer/releases/download/v1.0.10-sf2/vcredist2019_x64.exe)
|
||||
- [Alternative Download Link Hosted by Microsoft](https://aka.ms/vs/17/release/vc_redist.x64.exe)
|
||||
- This file may already be available on your computer if you've installed visual studio. Check the following location: `%VCINSTALLDIR%Redist\MSVC\v142`
|
||||
</details>
|
||||
|
||||
Windows Package Manager
|
||||
|
||||
```shell
|
||||
winget install --id=SoftFever.OrcaSlicer -e
|
||||
```
|
||||
|
||||
## Mac
|
||||
|
||||
1. Download the DMG for your computer: `arm64` version for Apple Silicon and `x86_64` for Intel CPU.
|
||||
2. Drag OrcaSlicer.app to Application folder.
|
||||
3. *If you want to run a build from a PR, you also need to follow the instructions below:*
|
||||
|
||||
<details>
|
||||
<summary>Quarantine</summary>
|
||||
|
||||
- Option 1 (You only need to do this once. After that the app can be opened normally.):
|
||||
- Step 1: Hold _cmd_ and right click the app, from the context menu choose **Open**.
|
||||
- Step 2: A warning window will pop up, click _Open_
|
||||
|
||||
- Option 2:
|
||||
Execute this command in terminal:
|
||||
|
||||
```shell
|
||||
xattr -dr com.apple.quarantine /Applications/OrcaSlicer.app
|
||||
```
|
||||
|
||||
- Option 3:
|
||||
- Step 1: open the app, a warning window will pop up
|
||||

|
||||
- Step 2: in `System Settings` -> `Privacy & Security`, click `Open Anyway`:
|
||||

|
||||
</details>
|
||||
|
||||
## Linux
|
||||
|
||||
### Flathub (Recommended)
|
||||
|
||||
OrcaSlicer is available through FlatHub:
|
||||
|
||||
<a href='https://flathub.org/apps/com.orcaslicer.OrcaSlicer'><img width='240' alt='Download on Flathub' src='https://dl.flathub.org/assets/badges/flathub-badge-en.png'/></a>
|
||||
|
||||
Install from the command line:
|
||||
|
||||
```shell
|
||||
flatpak install flathub com.orcaslicer.OrcaSlicer
|
||||
flatpak run com.orcaslicer.OrcaSlicer
|
||||
```
|
||||
|
||||
It can also be installed through graphical software managers (KDE Discover, GNOME Software, etc.) when Flathub is enabled. Search for **OrcaSlicer** in your software center.
|
||||
|
||||
### AppImage
|
||||
|
||||
1. Download App image from the [releases page](https://github.com/OrcaSlicer/OrcaSlicer/releases).
|
||||
2. Double click the downloaded file to run it.
|
||||
|
||||
3. If you run into trouble executing it, try this command in the terminal:
|
||||
`chmod +x /path_to_appimage/OrcaSlicer_Linux.AppImage`
|
||||
|
||||
# How to Compile
|
||||
|
||||
All updated build instructions for Windows, macOS, and Linux are now available on the official [OrcaSlicer Wiki - How to build](https://www.orcaslicer.com/wiki/how_to_build) page.
|
||||
|
||||
Please refer to the wiki to ensure you're following the latest and most accurate steps for your platform.
|
||||
|
||||
# Klipper Note
|
||||
|
||||
If you're running Klipper, it's recommended to add the following configuration to your `printer.cfg` file.
|
||||
|
||||
```gcode
|
||||
# Enable object exclusion
|
||||
[exclude_object]
|
||||
|
||||
# Enable arcs support
|
||||
[gcode_arcs]
|
||||
resolution: 0.1
|
||||
```
|
||||
|
||||
# Supports
|
||||
|
||||
**OrcaSlicer** is an open-source project and I'm deeply grateful to all my sponsors and backers.
|
||||
Their generous support enables me to purchase filaments and other essential 3D printing materials for the project.
|
||||
Thank you! :)
|
||||
|
||||
## Sponsors
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://qidi3d.com/" style="display:inline-block; border-radius:8px; background:#fff;">
|
||||
<img src="SoftFever_doc\sponsor_logos\QIDI.png" alt="QIDI" width="100" height="100">
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a href="https://bigtree-tech.com/" style="display:inline-block; border-radius:8px; background:#222;">
|
||||
<img src="SoftFever_doc\sponsor_logos\BigTreeTech.png" alt="BIGTREE TECH" width="100" height="100">
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
## Backers:
|
||||
|
||||
**Ko-fi supporters** ☕: [Backers list](https://github.com/user-attachments/files/16147016/Supporters_638561417699952499.csv)
|
||||
|
||||
## Support me
|
||||
|
||||
<a href="https://github.com/sponsors/SoftFever"><img src="https://img.shields.io/badge/GitHub%20Sponsors-30363D?style=flat&logo=GitHub-Sponsors&logoColor=EA4AAA" height="50"></a>
|
||||
<a href="https://ko-fi.com/G2G5IP3CP"><img src="https://img.shields.io/badge/Support_me_on_Ko--fi-FF5E5B?style=flat&logo=ko-fi&logoColor=white" height="50"></a>
|
||||
<a href="https://paypal.me/softfever3d"><img src="https://img.shields.io/badge/PayPal-003087?style=flat&logo=paypal&logoColor=fff" height="50"></a>
|
||||
|
||||
## Some Background
|
||||
|
||||
Open-source slicing has always been built on a tradition of collaboration and attribution. [Slic3r](https://github.com/Slic3r/Slic3r), created by Alessandro Ranellucci and the RepRap community, laid the foundation. [PrusaSlicer](https://github.com/prusa3d/PrusaSlicer) by Prusa Research built on Slic3r and acknowledged that heritage. [Bambu Studio](https://github.com/bambulab/BambuStudio) in turn forked from PrusaSlicer, and [SuperSlicer](https://github.com/supermerill/SuperSlicer) by @supermerill extended PrusaSlicer with community-driven enhancements. Each project carried the work of its predecessors forward, crediting those who came before.
|
||||
|
||||
OrcaSlicer began in that same spirit, drawing from BambuStudio, PrusaSlicer, and ideas inspired by CuraSlicer and SuperSlicer. But it has since grown far beyond its origins. Through relentless innovation — introducing advanced calibration tools, precise wall and seam control, tree supports, adaptive slicing, and hundreds of other features — OrcaSlicer has become the most widely used and actively developed open-source slicer in the 3D printing community. Many of its innovations have been adopted by other slicers, making it a driving force for the entire industry.
|
||||
|
||||
The OrcaSlicer logo was designed by community member [Justin Levine](https://github.com/jal-co).
|
||||
|
||||
# License
|
||||
|
||||
- **OrcaSlicer** is licensed under the GNU Affero General Public License, version 3.
|
||||
- The **GNU Affero General Public License**, version 3 ensures that if you use any part of this software in any way (even behind a web server), your software must be released under the same license.
|
||||
- OrcaSlicer includes a **pressure advance calibration pattern test** adapted from Andrew Ellis' generator, which is licensed under GNU General Public License, version 3. Ellis' generator is itself adapted from a generator developed by Sineos for Marlin, which is licensed under GNU General Public License, version 3.
|
||||
- The **Bambu networking plugin** is based on non-free libraries from BambuLab. It is optional to the OrcaSlicer and provides extended functionalities for Bambulab printer users.
|
||||
Diese Builds sind Ableitungen von [OrcaSlicer](https://github.com/SoftFever/OrcaSlicer), lizenziert unter **GNU AGPL-3.0**.
|
||||
Der KX-Patch-Quellcode liegt auf Branch [`kx-v2.4`](https://gitea.it-drui.de/viewit/OrcaSlicer-KX/src/branch/kx-v2.4) dieses Repos.
|
||||
|
||||
@@ -504,13 +504,24 @@ if [[ -n "${USE_LLD}" ]] ; then
|
||||
fi
|
||||
fi
|
||||
|
||||
# Auto-detect ccache for faster rebuilds
|
||||
export CMAKE_CCACHE_ARGS=()
|
||||
if command -v ccache >/dev/null 2>&1 ; then
|
||||
echo "ccache found at $(command -v ccache), enabling compiler caching..."
|
||||
export CMAKE_CCACHE_ARGS=(-DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache)
|
||||
CMAKE_CCACHE=${CMAKE_CCACHE:-}
|
||||
if [ -n "$CMAKE_CCACHE" ]; then
|
||||
echo "Checking ${CMAKE_CCACHE} environment variable for compiler cache program..."
|
||||
CMAKE_CCACHE=$(command -v "${CMAKE_CCACHE}") || {
|
||||
echo "CMAKE_CCACHE environment variable is set to '${CMAKE_CCACHE}' but it was not found in PATH."
|
||||
CMAKE_CCACHE=""
|
||||
}
|
||||
elif command -v sccache >/dev/null 2>&1 ; then
|
||||
CMAKE_CCACHE=$(command -v sccache)
|
||||
elif command -v ccache >/dev/null 2>&1 ; then
|
||||
CMAKE_CCACHE=$(command -v ccache)
|
||||
fi
|
||||
if [ -n "${CMAKE_CCACHE}" ] ; then
|
||||
echo "${CMAKE_CCACHE} found, enabling compiler caching..."
|
||||
export CMAKE_CCACHE_ARGS=(-DCMAKE_C_COMPILER_LAUNCHER="${CMAKE_CCACHE}" -DCMAKE_CXX_COMPILER_LAUNCHER="${CMAKE_CCACHE}")
|
||||
else
|
||||
echo "Note: ccache not found. Install ccache for faster rebuilds."
|
||||
echo "Note: ccache or sccache are not found. Install either of them for faster rebuilds."
|
||||
fi
|
||||
|
||||
if [[ -n "${BUILD_DEPS}" ]] ; then
|
||||
@@ -525,7 +536,7 @@ if [[ -n "${BUILD_DEPS}" ]] ; then
|
||||
BUILD_ARGS+=(-DCMAKE_BUILD_TYPE="${BUILD_CONFIG}")
|
||||
fi
|
||||
|
||||
print_and_run cmake -S deps -B deps/$BUILD_DIR "${CMAKE_C_CXX_COMPILER_CLANG[@]}" "${CMAKE_LLD_LINKER_ARGS[@]}" -G Ninja "${COLORED_OUTPUT}" "${BUILD_ARGS[@]}"
|
||||
print_and_run cmake -S deps -B deps/$BUILD_DIR "${CMAKE_C_CXX_COMPILER_CLANG[@]}" "${CMAKE_LLD_LINKER_ARGS[@]}" "${CMAKE_CCACHE_ARGS[@]}" -G Ninja "${COLORED_OUTPUT}" "${BUILD_ARGS[@]}"
|
||||
print_and_run cmake --build deps/$BUILD_DIR -j1
|
||||
fi
|
||||
|
||||
|
||||
4
deps/CMakeLists.txt
vendored
4
deps/CMakeLists.txt
vendored
@@ -196,6 +196,8 @@ if (NOT IS_CROSS_COMPILE OR NOT APPLE)
|
||||
-DCMAKE_DEBUG_POSTFIX:STRING=d
|
||||
-DCMAKE_C_COMPILER:STRING=${CMAKE_C_COMPILER}
|
||||
-DCMAKE_CXX_COMPILER:STRING=${CMAKE_CXX_COMPILER}
|
||||
-DCMAKE_C_COMPILER_LAUNCHER:STRING=${CMAKE_C_COMPILER_LAUNCHER}
|
||||
-DCMAKE_CXX_COMPILER_LAUNCHER:STRING=${CMAKE_CXX_COMPILER_LAUNCHER}
|
||||
-DCMAKE_TOOLCHAIN_FILE:STRING=${CMAKE_TOOLCHAIN_FILE}
|
||||
-DCMAKE_EXE_LINKER_FLAGS:STRING=${CMAKE_EXE_LINKER_FLAGS}
|
||||
-DCMAKE_SHARED_LINKER_FLAGS:STRING=${CMAKE_SHARED_LINKER_FLAGS}
|
||||
@@ -241,6 +243,8 @@ else()
|
||||
-DCMAKE_INSTALL_PREFIX:STRING=${DESTDIR}
|
||||
-DCMAKE_PREFIX_PATH:STRING=${DESTDIR}
|
||||
-DCMAKE_IGNORE_PREFIX_PATH:STRING=${CMAKE_IGNORE_PREFIX_PATH}
|
||||
-DCMAKE_C_COMPILER_LAUNCHER:STRING=${CMAKE_C_COMPILER_LAUNCHER}
|
||||
-DCMAKE_CXX_COMPILER_LAUNCHER:STRING=${CMAKE_CXX_COMPILER_LAUNCHER}
|
||||
-DBUILD_SHARED_LIBS:BOOL=OFF
|
||||
${_cmake_osx_arch}
|
||||
"${_configs_line}"
|
||||
|
||||
356
docs/filament-preset-bridge-guide.md
Normal file
356
docs/filament-preset-bridge-guide.md
Normal file
@@ -0,0 +1,356 @@
|
||||
# Eigene Filament-Presets anlegen, prüfen und mit KX-Bridge verknüpfen
|
||||
|
||||
> **Gilt für:** OrcaSlicer-KX v2.4.0-alpha-kx2 oder neuer
|
||||
|
||||
---
|
||||
|
||||
## Was ist die `filament_id` und warum ist sie wichtig?
|
||||
|
||||
Jedes Filament-Preset in OrcaSlicer hat eine interne `filament_id`. Diese ID wird von der KX-Bridge genutzt, um beim AMS-Sync das richtige Preset zuzuordnen.
|
||||
|
||||
- System-Presets (z.B. "Polymaker PolyTerra PLA") haben eine feste ID wie `GFL99` oder `OGFL04`.
|
||||
- **Eigene (User-)Presets** bekommen in OrcaSlicer-KX automatisch eine eindeutige ID, die mit `P` beginnt (z.B. `P3a7f2c1`).
|
||||
|
||||
Ohne eindeutige ID zeigt OrcaSlicer beim Sync immer "Generic PLA" — auch wenn das Preset existiert.
|
||||
|
||||
> **Achtung — abgeleitete Presets (Issue #52):** Wenn du dein Preset von einem **Hersteller-Preset** ableitest (z.B. "Anycubic PLA Matte"), übernimmt es zunächst die feste Hersteller-ID (z.B. `GFA001`). Beim Sync wird dann fälschlicherweise das Hersteller-Preset statt deines eigenen ausgewählt.
|
||||
> Ab OrcaSlicer-KX **v2.4.0-alpha-kx3** wird beim Speichern automatisch eine eigene `P...`-ID vergeben — auch für abgeleitete Presets. Hast du das Preset mit einer älteren Version angelegt, **öffne es einmal und speichere es erneut** (Save), damit die `P`-ID generiert wird.
|
||||
|
||||
---
|
||||
|
||||
## 1. Eigenes Filament-Preset anlegen
|
||||
|
||||
1. OrcaSlicer-KX starten
|
||||
2. Rechts oben im **Filament-Dropdown** ein passendes Basis-Preset wählen (z.B. "Generic PLA" oder ein Hersteller-Preset)
|
||||
3. Einstellungen nach Wunsch anpassen (Temperaturen, Kühlung, etc.)
|
||||
4. Auf das **Speichern-Symbol** (Diskette) klicken → **"Save as new preset"**
|
||||
5. Namen eingeben — z.B. `SUNLU PLA+ 2.0`
|
||||
> Der Name muss später exakt so in der Bridge eingetragen werden.
|
||||
6. Drucker auswählen: **Anycubic Kobra X 0.4 nozzle** — wichtig für die Kompatibilität!
|
||||
7. **Speichern** klicken
|
||||
8. OrcaSlicer **einmal neu starten** — erst dann wird die `filament_id` dauerhaft gespeichert.
|
||||
|
||||
---
|
||||
|
||||
## 2. Eindeutige ID prüfen
|
||||
|
||||
Nach dem Neustart prüfen, ob die ID korrekt gesetzt wurde:
|
||||
|
||||
**Windows:**
|
||||
```
|
||||
%APPDATA%\OrcaSlicer\user\default\filament\SUNLU PLA+ 2.0.json
|
||||
```
|
||||
|
||||
**Linux:**
|
||||
```
|
||||
~/.config/OrcaSlicer/user/default/filament/SUNLU PLA+ 2.0.json
|
||||
```
|
||||
|
||||
Die Datei öffnen und nach `filament_id` suchen:
|
||||
|
||||
```json
|
||||
{
|
||||
"filament_id": "P3a7f2c1",
|
||||
...
|
||||
}
|
||||
```
|
||||
|
||||
✅ Korrekt: ID beginnt mit `P` gefolgt von 7 Hex-Zeichen
|
||||
❌ Fehlt oder leer: OrcaSlicer-KX zu alt — Update auf v2.4.0-alpha-kx2 oder neuer
|
||||
|
||||
---
|
||||
|
||||
## 3. Preset auf einen anderen PC übertragen (Import)
|
||||
|
||||
### Exportieren (Quell-PC)
|
||||
|
||||
Die Preset-Datei einfach kopieren:
|
||||
|
||||
**Windows:**
|
||||
```
|
||||
%APPDATA%\OrcaSlicer\user\default\filament\SUNLU PLA+ 2.0.json
|
||||
```
|
||||
|
||||
**Linux:**
|
||||
```
|
||||
~/.config/OrcaSlicer/user/default/filament/SUNLU PLA+ 2.0.json
|
||||
```
|
||||
|
||||
### Importieren (Ziel-PC)
|
||||
|
||||
**Methode A — Datei direkt kopieren:**
|
||||
1. Die `.json`-Datei in das gleiche Verzeichnis auf dem Ziel-PC kopieren
|
||||
2. OrcaSlicer neu starten → Preset erscheint im Dropdown
|
||||
|
||||
**Methode B — OrcaSlicer Import-Funktion:**
|
||||
1. In OrcaSlicer: **File → Import → Import Configs...**
|
||||
2. Die `.json`-Datei auswählen
|
||||
3. OrcaSlicer neu starten
|
||||
|
||||
> **Wichtig:** Die `filament_id` in der Datei bleibt erhalten — das Preset wird auf dem Ziel-PC genauso erkannt wie auf dem Quell-PC.
|
||||
|
||||
---
|
||||
|
||||
## 4. Preset in KX-Bridge verknüpfen
|
||||
|
||||
1. KX-Bridge UI öffnen
|
||||
2. **Filament-Verwaltung** → AMS-Slot auswählen
|
||||
3. Im Feld **Filament-Name** exakt den OrcaSlicer-Preset-Namen eintragen:
|
||||
```
|
||||
SUNLU PLA+ 2.0
|
||||
```
|
||||
4. Speichern
|
||||
|
||||
Die Bridge sendet beim Sync `filament_name: "SUNLU PLA+ 2.0"` → OrcaSlicer findet das Preset anhand von Name und `filament_id` → zeigt es korrekt an.
|
||||
|
||||
---
|
||||
|
||||
## Wichtige Hinweise
|
||||
|
||||
| Was | Warum |
|
||||
|-----|-------|
|
||||
| Name in OrcaSlicer und Bridge müssen **exakt** übereinstimmen | Groß-/Kleinschreibung und Sonderzeichen werden verglichen |
|
||||
| Preset muss für **Anycubic Kobra X 0.4 nozzle** kompatibel sein | Beim Speichern den richtigen Drucker auswählen |
|
||||
| Nach dem ersten Speichern OrcaSlicer **neu starten** | Erst dann wird die `filament_id` persistent geschrieben |
|
||||
| **OrcaSlicer-KX v2.4.0-alpha-kx2** oder neuer verwenden | Ältere Versionen generieren keine eindeutige `filament_id` für User-Presets |
|
||||
| Bei von Hersteller-Presets abgeleiteten Presets: **v2.4.0-alpha-kx3** oder neuer | Erst ab dieser Version wird die geerbte Hersteller-ID beim Speichern durch eine eigene `P`-ID ersetzt (Issue #52) |
|
||||
|
||||
---
|
||||
---
|
||||
|
||||
# How to Create, Verify and Import Custom Filament Presets for KX-Bridge
|
||||
|
||||
> **Requires:** OrcaSlicer-KX v2.4.0-alpha-kx2 or newer
|
||||
|
||||
---
|
||||
|
||||
## What is the `filament_id` and why does it matter?
|
||||
|
||||
Every filament preset in OrcaSlicer has an internal `filament_id`. The KX-Bridge uses this ID to match the correct preset during AMS sync.
|
||||
|
||||
- System presets (e.g. "Polymaker PolyTerra PLA") have a fixed ID like `GFL99` or `OGFL04`.
|
||||
- **Custom (user) presets** automatically receive a unique ID starting with `P` (e.g. `P3a7f2c1`) in OrcaSlicer-KX.
|
||||
|
||||
Without a unique ID, OrcaSlicer will always show "Generic PLA" during sync — even if the preset exists.
|
||||
|
||||
> **Caution — derived presets (Issue #52):** If you derive your preset from a **vendor preset** (e.g. "Anycubic PLA Matte"), it initially inherits the fixed vendor ID (e.g. `GFA001`). During sync the vendor preset is then incorrectly selected instead of your own.
|
||||
> As of OrcaSlicer-KX **v2.4.0-alpha-kx3**, a unique `P...` ID is generated automatically on save — including for derived presets. If you created the preset with an older version, **open it once and save it again** so the `P` ID gets generated.
|
||||
|
||||
---
|
||||
|
||||
## 1. Create a Custom Filament Preset
|
||||
|
||||
1. Launch OrcaSlicer-KX
|
||||
2. Select a suitable base preset from the **filament dropdown** (e.g. "Generic PLA" or a vendor preset)
|
||||
3. Adjust settings as needed (temperatures, cooling, etc.)
|
||||
4. Click the **save icon** (floppy disk) → **"Save as new preset"**
|
||||
5. Enter a name — e.g. `SUNLU PLA+ 2.0`
|
||||
> This name must be entered in the bridge exactly as typed here.
|
||||
6. Select printer: **Anycubic Kobra X 0.4 nozzle** — required for compatibility!
|
||||
7. Click **Save**
|
||||
8. **Restart OrcaSlicer once** — the `filament_id` is only written permanently after a restart.
|
||||
|
||||
---
|
||||
|
||||
## 2. Verify the Unique ID
|
||||
|
||||
After restarting, check that the ID was set correctly:
|
||||
|
||||
**Windows:**
|
||||
```
|
||||
%APPDATA%\OrcaSlicer\user\default\filament\SUNLU PLA+ 2.0.json
|
||||
```
|
||||
|
||||
**Linux:**
|
||||
```
|
||||
~/.config/OrcaSlicer/user/default/filament/SUNLU PLA+ 2.0.json
|
||||
```
|
||||
|
||||
Open the file and look for `filament_id`:
|
||||
|
||||
```json
|
||||
{
|
||||
"filament_id": "P3a7f2c1",
|
||||
...
|
||||
}
|
||||
```
|
||||
|
||||
✅ Correct: ID starts with `P` followed by 7 hex characters
|
||||
❌ Missing or empty: Your OrcaSlicer-KX version is too old — update to v2.4.0-alpha-kx2 or newer
|
||||
|
||||
---
|
||||
|
||||
## 3. Transfer a Preset to Another PC (Import)
|
||||
|
||||
### Export (source PC)
|
||||
|
||||
Simply copy the preset file:
|
||||
|
||||
**Windows:**
|
||||
```
|
||||
%APPDATA%\OrcaSlicer\user\default\filament\SUNLU PLA+ 2.0.json
|
||||
```
|
||||
|
||||
**Linux:**
|
||||
```
|
||||
~/.config/OrcaSlicer/user/default/filament/SUNLU PLA+ 2.0.json
|
||||
```
|
||||
|
||||
### Import (target PC)
|
||||
|
||||
**Method A — Copy file directly:**
|
||||
1. Copy the `.json` file to the same directory on the target PC
|
||||
2. Restart OrcaSlicer → preset appears in the dropdown
|
||||
|
||||
**Method B — OrcaSlicer import function:**
|
||||
1. In OrcaSlicer: **File → Import → Import Configs...**
|
||||
2. Select the `.json` file
|
||||
3. Restart OrcaSlicer
|
||||
|
||||
> **Note:** The `filament_id` inside the file is preserved — the preset will be recognized on the target PC exactly as on the source PC.
|
||||
|
||||
---
|
||||
|
||||
## 4. Link the Preset in KX-Bridge
|
||||
|
||||
1. Open the KX-Bridge UI
|
||||
2. Go to **Filament Management** → select the AMS slot
|
||||
3. In the **Filament Name** field, enter the OrcaSlicer preset name exactly:
|
||||
```
|
||||
SUNLU PLA+ 2.0
|
||||
```
|
||||
4. Save
|
||||
|
||||
The bridge sends `filament_name: "SUNLU PLA+ 2.0"` during sync → OrcaSlicer matches by name and `filament_id` → displays the preset correctly.
|
||||
|
||||
---
|
||||
|
||||
## Quick Reference
|
||||
|
||||
| What | Why |
|
||||
|------|-----|
|
||||
| Name in OrcaSlicer and Bridge must match **exactly** | Case and special characters are compared |
|
||||
| Preset must be compatible with **Anycubic Kobra X 0.4 nozzle** | Select the correct printer when saving |
|
||||
| **Restart OrcaSlicer** after saving for the first time | The `filament_id` is only written persistently after a restart |
|
||||
| Use **OrcaSlicer-KX v2.4.0-alpha-kx2** or newer | Older versions do not generate a unique `filament_id` for user presets |
|
||||
| For presets derived from vendor presets: **v2.4.0-alpha-kx3** or newer | Only from this version is the inherited vendor ID replaced with a unique `P` ID on save (Issue #52) |
|
||||
|
||||
---
|
||||
---
|
||||
|
||||
# Cómo crear, verificar e importar perfiles de filamento personalizados para KX-Bridge
|
||||
|
||||
> **Requiere:** OrcaSlicer-KX v2.4.0-alpha-kx2 o superior
|
||||
|
||||
---
|
||||
|
||||
## ¿Qué es el `filament_id` y por qué es importante?
|
||||
|
||||
Cada perfil de filamento en OrcaSlicer tiene un `filament_id` interno. KX-Bridge usa este ID para asignar el perfil correcto durante la sincronización AMS.
|
||||
|
||||
- Los perfiles del sistema (p. ej. "Polymaker PolyTerra PLA") tienen un ID fijo como `GFL99` o `OGFL04`.
|
||||
- Los **perfiles personalizados (usuario)** reciben automáticamente un ID único que empieza por `P` (p. ej. `P3a7f2c1`) en OrcaSlicer-KX.
|
||||
|
||||
Sin un ID único, OrcaSlicer mostrará siempre "Generic PLA" durante la sincronización, aunque el perfil exista.
|
||||
|
||||
> **Atención — perfiles derivados (Issue #52):** Si derivas tu perfil de un **perfil de fabricante** (p. ej. "Anycubic PLA Matte"), inicialmente hereda el ID fijo del fabricante (p. ej. `GFA001`). Durante la sincronización se selecciona entonces por error el perfil del fabricante en lugar del tuyo.
|
||||
> A partir de OrcaSlicer-KX **v2.4.0-alpha-kx3**, se genera automáticamente un ID `P...` único al guardar — también para perfiles derivados. Si creaste el perfil con una versión anterior, **ábrelo una vez y vuelve a guardarlo** (Save) para que se genere el ID `P`.
|
||||
|
||||
---
|
||||
|
||||
## 1. Crear un perfil de filamento personalizado
|
||||
|
||||
1. Iniciar OrcaSlicer-KX
|
||||
2. Seleccionar un perfil base adecuado en el **menú desplegable de filamento** (p. ej. "Generic PLA" o un perfil de fabricante)
|
||||
3. Ajustar la configuración según sea necesario (temperaturas, refrigeración, etc.)
|
||||
4. Hacer clic en el **icono de guardar** (disquete) → **"Save as new preset"**
|
||||
5. Introducir un nombre — p. ej. `SUNLU PLA+ 2.0`
|
||||
> Este nombre debe introducirse en la bridge exactamente igual.
|
||||
6. Seleccionar impresora: **Anycubic Kobra X 0.4 nozzle** — ¡necesario para la compatibilidad!
|
||||
7. Hacer clic en **Guardar**
|
||||
8. **Reiniciar OrcaSlicer una vez** — el `filament_id` solo se escribe de forma permanente tras un reinicio.
|
||||
|
||||
---
|
||||
|
||||
## 2. Verificar el ID único
|
||||
|
||||
Tras reiniciar, comprobar que el ID se ha establecido correctamente:
|
||||
|
||||
**Windows:**
|
||||
```
|
||||
%APPDATA%\OrcaSlicer\user\default\filament\SUNLU PLA+ 2.0.json
|
||||
```
|
||||
|
||||
**Linux:**
|
||||
```
|
||||
~/.config/OrcaSlicer/user/default/filament/SUNLU PLA+ 2.0.json
|
||||
```
|
||||
|
||||
Abrir el archivo y buscar `filament_id`:
|
||||
|
||||
```json
|
||||
{
|
||||
"filament_id": "P3a7f2c1",
|
||||
...
|
||||
}
|
||||
```
|
||||
|
||||
✅ Correcto: el ID empieza por `P` seguido de 7 caracteres hexadecimales
|
||||
❌ Falta o está vacío: la versión de OrcaSlicer-KX es demasiado antigua — actualizar a v2.4.0-alpha-kx2 o superior
|
||||
|
||||
---
|
||||
|
||||
## 3. Transferir un perfil a otro PC (importar)
|
||||
|
||||
### Exportar (PC de origen)
|
||||
|
||||
Simplemente copiar el archivo del perfil:
|
||||
|
||||
**Windows:**
|
||||
```
|
||||
%APPDATA%\OrcaSlicer\user\default\filament\SUNLU PLA+ 2.0.json
|
||||
```
|
||||
|
||||
**Linux:**
|
||||
```
|
||||
~/.config/OrcaSlicer/user/default/filament/SUNLU PLA+ 2.0.json
|
||||
```
|
||||
|
||||
### Importar (PC de destino)
|
||||
|
||||
**Método A — Copiar el archivo directamente:**
|
||||
1. Copiar el archivo `.json` al mismo directorio en el PC de destino
|
||||
2. Reiniciar OrcaSlicer → el perfil aparece en el menú desplegable
|
||||
|
||||
**Método B — Función de importación de OrcaSlicer:**
|
||||
1. En OrcaSlicer: **File → Import → Import Configs...**
|
||||
2. Seleccionar el archivo `.json`
|
||||
3. Reiniciar OrcaSlicer
|
||||
|
||||
> **Nota:** El `filament_id` dentro del archivo se conserva — el perfil se reconocerá en el PC de destino exactamente igual que en el de origen.
|
||||
|
||||
---
|
||||
|
||||
## 4. Vincular el perfil en KX-Bridge
|
||||
|
||||
1. Abrir la interfaz de KX-Bridge
|
||||
2. Ir a **Gestión de filamentos** → seleccionar la ranura AMS
|
||||
3. En el campo **Nombre de filamento**, introducir el nombre exacto del perfil de OrcaSlicer:
|
||||
```
|
||||
SUNLU PLA+ 2.0
|
||||
```
|
||||
4. Guardar
|
||||
|
||||
La bridge envía `filament_name: "SUNLU PLA+ 2.0"` durante la sincronización → OrcaSlicer busca por nombre y `filament_id` → muestra el perfil correctamente.
|
||||
|
||||
---
|
||||
|
||||
## Referencia rápida
|
||||
|
||||
| Qué | Por qué |
|
||||
|-----|---------|
|
||||
| El nombre en OrcaSlicer y en Bridge debe coincidir **exactamente** | Se comparan mayúsculas, minúsculas y caracteres especiales |
|
||||
| El perfil debe ser compatible con **Anycubic Kobra X 0.4 nozzle** | Seleccionar la impresora correcta al guardar |
|
||||
| **Reiniciar OrcaSlicer** tras guardar por primera vez | El `filament_id` solo se escribe de forma permanente tras un reinicio |
|
||||
| Usar **OrcaSlicer-KX v2.4.0-alpha-kx2** o superior | Las versiones anteriores no generan un `filament_id` único para perfiles de usuario |
|
||||
| Para perfiles derivados de perfiles de fabricante: **v2.4.0-alpha-kx3** o superior | Solo a partir de esta versión se reemplaza el ID heredado del fabricante por un ID `P` único al guardar (Issue #52) |
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-06-08 00:18+0800\n"
|
||||
"POT-Creation-Date: 2026-06-17 18:00+0800\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@@ -187,6 +187,15 @@ msgstr ""
|
||||
msgid "Support Generated"
|
||||
msgstr ""
|
||||
|
||||
msgid "Entering Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on supports editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gizmo-Place on Face"
|
||||
msgstr ""
|
||||
|
||||
@@ -272,6 +281,15 @@ msgstr ""
|
||||
msgid "To:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Entering color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color painting editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
@@ -291,6 +309,15 @@ msgstr ""
|
||||
msgid "Enable painted fuzzy skin for this object"
|
||||
msgstr ""
|
||||
|
||||
msgid "Entering Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
@@ -673,6 +700,15 @@ msgstr ""
|
||||
msgid "Delete connector"
|
||||
msgstr ""
|
||||
|
||||
msgid "Entering Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Cut gizmo editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Mesh name"
|
||||
msgstr ""
|
||||
|
||||
@@ -1514,6 +1550,12 @@ msgstr ""
|
||||
msgid "Flip by Face 2"
|
||||
msgstr ""
|
||||
|
||||
msgid "Entering Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Assemble"
|
||||
msgstr ""
|
||||
|
||||
@@ -1539,14 +1581,20 @@ msgid "Warning: please select Point's or Circle's feature."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"It is recommended to assemble the objects first,\n"
|
||||
"because the objects is restriced to bed \n"
|
||||
"It is recommended to assemble objects first,\n"
|
||||
"because they are restricted to the bed \n"
|
||||
"and only parts can be lifted."
|
||||
msgstr ""
|
||||
|
||||
msgid "Face and face assembly"
|
||||
msgstr ""
|
||||
|
||||
msgid "Entering Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr ""
|
||||
|
||||
@@ -1604,7 +1652,7 @@ msgstr ""
|
||||
msgid "3MF files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gcode 3MF files"
|
||||
msgid "G-code 3MF files"
|
||||
msgstr ""
|
||||
|
||||
msgid "G-code files"
|
||||
@@ -1805,6 +1853,20 @@ msgid ""
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from "
|
||||
"the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your "
|
||||
"local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset "
|
||||
"conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local "
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy with your local preset changes.\n"
|
||||
"Do you want to continue?"
|
||||
@@ -3024,6 +3086,51 @@ msgstr ""
|
||||
msgid "The minmum temperature should not be less than "
|
||||
msgstr ""
|
||||
|
||||
msgid "Type to filter..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgid "No selected items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All items selected..."
|
||||
msgstr ""
|
||||
|
||||
msgid "No matching items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter nonSelected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Simple settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Expert settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Developer mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Launch troubleshoot center"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"All the selected objects are on a locked plate.\n"
|
||||
"Cannot auto-arrange these objects."
|
||||
@@ -3264,6 +3371,9 @@ msgstr ""
|
||||
msgid "There is no valid surface for text projection."
|
||||
msgstr ""
|
||||
|
||||
msgid "An unexpected error occurred"
|
||||
msgstr ""
|
||||
|
||||
msgid "Thermal Preconditioning for first layer optimization"
|
||||
msgstr ""
|
||||
|
||||
@@ -4976,10 +5086,7 @@ msgstr ""
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "Object Selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part Selection"
|
||||
msgid "Object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys"
|
||||
@@ -5162,9 +5269,6 @@ msgstr ""
|
||||
msgid "Paint Toolbar"
|
||||
msgstr ""
|
||||
|
||||
msgid "part selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "Explosion Ratio"
|
||||
msgstr ""
|
||||
|
||||
@@ -5189,7 +5293,7 @@ msgstr ""
|
||||
msgid "Size:"
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
#, possible-boost-format
|
||||
msgid ""
|
||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -5397,10 +5501,10 @@ msgstr ""
|
||||
msgid "Export G-code file"
|
||||
msgstr ""
|
||||
|
||||
msgid "Send"
|
||||
msgid "Export plate sliced file"
|
||||
msgstr ""
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
msgid "Export all sliced file"
|
||||
@@ -7356,7 +7460,7 @@ msgstr ""
|
||||
msgid "The selected object couldn't be split."
|
||||
msgstr ""
|
||||
|
||||
msgid "Disable Auto-Drop to preserve z positioning?\n"
|
||||
msgid "Disable Auto-Drop to preserve Z positioning?\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Object with floating parts was detected"
|
||||
@@ -7976,9 +8080,6 @@ msgstr ""
|
||||
msgid "Group user filament presets based on selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgid "By type"
|
||||
msgstr ""
|
||||
|
||||
@@ -8319,6 +8420,14 @@ msgstr ""
|
||||
msgid "Associate files to OrcaSlicer"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File associations for the Microsoft Store version are managed by Windows "
|
||||
"Settings."
|
||||
msgstr ""
|
||||
|
||||
msgid "Open Windows Default Apps Settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Associate 3MF files to OrcaSlicer"
|
||||
msgstr ""
|
||||
|
||||
@@ -8349,9 +8458,6 @@ msgstr ""
|
||||
msgid "Developer"
|
||||
msgstr ""
|
||||
|
||||
msgid "Developer mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Skip AMS blacklist check"
|
||||
msgstr ""
|
||||
|
||||
@@ -9079,6 +9185,9 @@ msgid ""
|
||||
"operation or verify if the printer is functioning properly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sending failed, please try again!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice ok."
|
||||
msgstr ""
|
||||
|
||||
@@ -9329,8 +9438,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -9447,6 +9556,9 @@ msgstr ""
|
||||
msgid "Travel speed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Jerk(XY)"
|
||||
msgstr ""
|
||||
|
||||
@@ -10237,9 +10349,6 @@ msgid ""
|
||||
"list."
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add unused AMS filaments to filaments list."
|
||||
msgstr ""
|
||||
|
||||
@@ -10698,12 +10807,23 @@ msgstr ""
|
||||
msgid "New version of Orca Slicer"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check on Github"
|
||||
msgid "Check on Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check on GitHub"
|
||||
msgstr ""
|
||||
|
||||
msgid "Open Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Skip this Version"
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid ""
|
||||
"New version available: %s. Please update OrcaSlicer from the Microsoft Store."
|
||||
msgstr ""
|
||||
|
||||
msgid "Confirm and Update Nozzle"
|
||||
msgstr ""
|
||||
|
||||
@@ -10807,6 +10927,9 @@ msgstr ""
|
||||
msgid "Auto Fire Extinguishing System"
|
||||
msgstr ""
|
||||
|
||||
msgid "Beta"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update firmware"
|
||||
msgstr ""
|
||||
|
||||
@@ -11465,6 +11588,15 @@ msgstr ""
|
||||
msgid "Allow controlling BambuLab's printer through 3rd party print hosts."
|
||||
msgstr ""
|
||||
|
||||
msgid "Use 3MF instead of G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this if the printer accepts a 3MF file as the print job. When "
|
||||
"enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a "
|
||||
"plain .gcode file."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer Agent"
|
||||
msgstr ""
|
||||
|
||||
@@ -11800,7 +11932,7 @@ msgid "External bridge density"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of external bridge lines. Default is 100%.\n"
|
||||
"Controls the density (spacing) of external bridge lines.\n"
|
||||
"Theoretically, 100% means a solid bridge, but due to the tendency of bridge "
|
||||
"extrusions to sag, 100% may not be sufficient.\n"
|
||||
"\n"
|
||||
@@ -11814,18 +11946,14 @@ msgid ""
|
||||
" - Pros: Can create a string-like first layer. Faster and with better "
|
||||
"cooling because there is more space for air to circulate around the extruded "
|
||||
"bridge.\n"
|
||||
" - Cons: May lead to sagging and poorer surface finish.\n"
|
||||
"\n"
|
||||
"Recommended range: Minimum 10% - Maximum 125%."
|
||||
" - Cons: May lead to sagging and poorer surface finish."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge density"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of internal bridge lines. Default is 100%. "
|
||||
"100% means a solid internal bridge.\n"
|
||||
"\n"
|
||||
"Controls the density (spacing) of internal bridge lines.\n"
|
||||
"Internal bridges act as intermediate support between sparse infill and top "
|
||||
"solid infill and can strongly affect top surface quality.\n"
|
||||
"\n"
|
||||
@@ -11860,11 +11988,9 @@ msgid ""
|
||||
"filament flow ratio, and if set, the object's flow ratio."
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid ""
|
||||
"Bridge line width is expressed either as an absolute value or as a "
|
||||
"percentage of the active nozzle diameter (percentages are computed from the "
|
||||
"nozzle diameter).\n"
|
||||
"Line width of the Bridge. If expressed as a %, it will be computed over the "
|
||||
"nozzle diameter.\n"
|
||||
"Recommended to use with a higher Bridge density or Bridge flow ratio.\n"
|
||||
"\n"
|
||||
"The maximum value is 100% or the nozzle diameter.\n"
|
||||
@@ -13348,7 +13474,6 @@ msgstr ""
|
||||
msgid "Z-buckling bias optimization (experimental)"
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid ""
|
||||
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
|
||||
"to shorten the effective vertical column length and improve Z-axis "
|
||||
@@ -13528,8 +13653,8 @@ msgid "mm/s² or %"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -13568,9 +13693,6 @@ msgstr ""
|
||||
msgid "Default jerk."
|
||||
msgstr ""
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Marlin Firmware Junction Deviation (replaces the traditional XY Jerk "
|
||||
"setting)."
|
||||
@@ -13647,10 +13769,10 @@ msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
|
||||
msgid "layer"
|
||||
@@ -14462,16 +14584,13 @@ msgid ""
|
||||
"A reasonable value is 35. Set to 0 to disable."
|
||||
msgstr ""
|
||||
|
||||
msgid "°"
|
||||
msgstr ""
|
||||
|
||||
msgid "Don't alternate fill direction"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disable alternating fill direction when using Z contouring."
|
||||
msgstr ""
|
||||
|
||||
msgid "Minimum z height"
|
||||
msgid "Minimum Z height"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -15406,8 +15525,8 @@ msgid "Role base wipe speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||
"g. if a wipe action is executed immediately following an outer wall "
|
||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
||||
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||
"wipe action."
|
||||
msgstr ""
|
||||
@@ -16153,8 +16272,8 @@ msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present.\n"
|
||||
@@ -16940,8 +17059,8 @@ msgid "Debug level"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
"trace\n"
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
"5:trace\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log file"
|
||||
@@ -18548,8 +18667,8 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\".\n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\".\n"
|
||||
"To add preset for more printers, please go to printer selection"
|
||||
msgstr ""
|
||||
|
||||
@@ -18632,9 +18751,6 @@ msgstr ""
|
||||
msgid "Filament Preset Template"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Process Preset Template"
|
||||
msgstr ""
|
||||
|
||||
@@ -19053,9 +19169,21 @@ msgstr ""
|
||||
msgid "Authorizing..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error. Can't get api token for authorization"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not parse server response."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error saving session to file"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error session check"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error during file upload"
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid "Mismatched type of print host: %s"
|
||||
msgstr ""
|
||||
@@ -19693,6 +19821,105 @@ msgstr ""
|
||||
msgid "Flashforge local API requires both serial number and access code."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer returned an error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing system_info in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing printer serial number in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error parsing response"
|
||||
msgstr ""
|
||||
|
||||
msgid "ElegooLink not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid access code"
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 device not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to ElegooLink is working correctly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to ElegooLink"
|
||||
msgstr ""
|
||||
|
||||
#, possible-boost-format
|
||||
msgid "Error code: %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The file has been transferred, but some unknown errors occurred. Please "
|
||||
"check the device page for the file and try to start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open file for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to read file chunk for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is empty or could not be read."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to calculate file checksum."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error code not found"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The printer is busy, Please check the device page for the file and try to "
|
||||
"start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is lost, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is corrupted, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Transmission abnormality, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file does not match the printer, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print timeout"
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to CrealityPrint successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to CrealityPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Connection timed out. Please check if the printer and computer network are "
|
||||
"functioning properly, and confirm that they are on the same network."
|
||||
msgstr ""
|
||||
|
||||
msgid "The Hostname/IP/URL could not be parsed, please check it and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File/data transfer interrupted. Please check the printer and network, then "
|
||||
"try it again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr ""
|
||||
|
||||
@@ -19743,6 +19970,12 @@ msgstr ""
|
||||
msgid "Please select single object."
|
||||
msgstr ""
|
||||
|
||||
msgid "Entering Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
|
||||
@@ -19752,6 +19985,9 @@ msgstr ""
|
||||
msgid "Load skipping objects information failed. Please try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to create the temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid "/%d Selected"
|
||||
msgstr ""
|
||||
@@ -19897,6 +20133,100 @@ msgstr ""
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr ""
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bundle folder does not exist."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open folder."
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete selected bundle from folder and all presets loaded from it?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to remove bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Remove Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe bundle?"
|
||||
msgstr ""
|
||||
|
||||
msgid "UnsubscribeBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to unsubscribe bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "ExportPresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Save preset bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - boost::filesystem::canonical did not "
|
||||
"return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Performing desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed because the application directory was "
|
||||
"not found."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - could not create Gcodeviewer desktop "
|
||||
"file. OrcaSlicer desktop file was probably created successfully."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - "
|
||||
"boost::filesystem::canonical did not return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed because the application "
|
||||
"directory was not found."
|
||||
msgstr ""
|
||||
|
||||
msgid "Desktop Integration"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Desktop Integration sets this binary to be searchable by the system.\n"
|
||||
"\n"
|
||||
"Press \"Perform\" to proceed."
|
||||
msgstr ""
|
||||
|
||||
msgid "The download has failed"
|
||||
msgstr ""
|
||||
|
||||
#. TRN %1% = file path
|
||||
#, possible-boost-format
|
||||
msgid "Can't create file at %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Archive preview"
|
||||
msgstr ""
|
||||
|
||||
msgid "Open File"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The filament may not be compatible with the current machine settings. "
|
||||
"Generic filament presets will be used."
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-06-08 00:18+0800\n"
|
||||
"POT-Creation-Date: 2026-06-17 18:00+0800\n"
|
||||
"PO-Revision-Date: 2025-03-15 10:55+0100\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -202,6 +202,15 @@ msgstr "Fet"
|
||||
msgid "Support Generated"
|
||||
msgstr "Suport generat"
|
||||
|
||||
msgid "Entering Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on supports editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gizmo-Place on Face"
|
||||
msgstr "Gizmo-Recolzar sobre la Cara"
|
||||
|
||||
@@ -289,6 +298,15 @@ msgstr "Pintat amb: Filament %1%"
|
||||
msgid "To:"
|
||||
msgstr "A:"
|
||||
|
||||
msgid "Entering color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color painting editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin"
|
||||
msgstr "Pell difusa pintada"
|
||||
|
||||
@@ -310,6 +328,15 @@ msgstr ""
|
||||
msgid "Enable painted fuzzy skin for this object"
|
||||
msgstr "Activa la pell difusa pintada per a aquest objecte"
|
||||
|
||||
msgid "Entering Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Move"
|
||||
msgstr "Moure"
|
||||
|
||||
@@ -700,6 +727,15 @@ msgstr "Tall per línia"
|
||||
msgid "Delete connector"
|
||||
msgstr "Suprimeix el connector"
|
||||
|
||||
msgid "Entering Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Cut gizmo editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Mesh name"
|
||||
msgstr "Nom de la malla"
|
||||
|
||||
@@ -1577,6 +1613,12 @@ msgstr "Distància paral·lela:"
|
||||
msgid "Flip by Face 2"
|
||||
msgstr "Gira per la cara 2"
|
||||
|
||||
msgid "Entering Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Assemble"
|
||||
msgstr "Ensamblar"
|
||||
|
||||
@@ -1603,8 +1645,8 @@ msgid "Warning: please select Point's or Circle's feature."
|
||||
msgstr "Avís: seleccioneu la funció de Punt o Cercle."
|
||||
|
||||
msgid ""
|
||||
"It is recommended to assemble the objects first,\n"
|
||||
"because the objects is restriced to bed \n"
|
||||
"It is recommended to assemble objects first,\n"
|
||||
"because they are restricted to the bed \n"
|
||||
"and only parts can be lifted."
|
||||
msgstr ""
|
||||
"Es recomana muntar els objectes primer,\n"
|
||||
@@ -1614,6 +1656,12 @@ msgstr ""
|
||||
msgid "Face and face assembly"
|
||||
msgstr "Muntatge cara a cara"
|
||||
|
||||
msgid "Entering Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
|
||||
@@ -1677,7 +1725,7 @@ msgstr "Fitxers AMF"
|
||||
msgid "3MF files"
|
||||
msgstr "Fitxers 3MF"
|
||||
|
||||
msgid "Gcode 3MF files"
|
||||
msgid "G-code 3MF files"
|
||||
msgstr "Fitxers G-code 3MF"
|
||||
|
||||
msgid "G-code files"
|
||||
@@ -1902,6 +1950,20 @@ msgid ""
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from "
|
||||
"the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your "
|
||||
"local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset "
|
||||
"conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local "
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy with your local preset changes.\n"
|
||||
"Do you want to continue?"
|
||||
@@ -3194,6 +3256,52 @@ msgstr "La temperatura màxima no pot superar "
|
||||
msgid "The minmum temperature should not be less than "
|
||||
msgstr "La temperatura mínima no hauria de ser inferior a "
|
||||
|
||||
msgid "Type to filter..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All"
|
||||
msgstr "Tots"
|
||||
|
||||
msgid "No selected items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All items selected..."
|
||||
msgstr ""
|
||||
|
||||
msgid "No matching items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "Deseleccionar-ho tot"
|
||||
|
||||
msgid "Select visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter nonSelected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Simple settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr "Configuració avançada"
|
||||
|
||||
msgid "Expert settings"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "Developer mode"
|
||||
msgstr "Mode de desenvolupament"
|
||||
|
||||
msgid "Launch troubleshoot center"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"All the selected objects are on a locked plate.\n"
|
||||
"Cannot auto-arrange these objects."
|
||||
@@ -3477,6 +3585,9 @@ msgstr "La tipografia no té cap forma per al text indicat."
|
||||
msgid "There is no valid surface for text projection."
|
||||
msgstr "No hi ha cap superfície vàlida per a la projecció del text."
|
||||
|
||||
msgid "An unexpected error occurred"
|
||||
msgstr ""
|
||||
|
||||
msgid "Thermal Preconditioning for first layer optimization"
|
||||
msgstr "Precondicionament tèrmic per a l'optimització de la primera capa"
|
||||
|
||||
@@ -4193,8 +4304,8 @@ msgid ""
|
||||
"be opened during copy check. The output G-code is at %1%.tmp."
|
||||
msgstr ""
|
||||
"La còpia del codi-G temporal ha finalitzat, però el codi exportat no s'ha "
|
||||
"pogut obrir durant la verificació de la còpia. El codi-G de sortida és a %1%."
|
||||
"tmp."
|
||||
"pogut obrir durant la verificació de la còpia. El codi-G de sortida és a "
|
||||
"%1%.tmp."
|
||||
|
||||
#, boost-format
|
||||
msgid "G-code file exported to %1%"
|
||||
@@ -5423,11 +5534,8 @@ msgstr "Incrementar/reduir àrea edició"
|
||||
msgid "Sequence"
|
||||
msgstr "Seqüència"
|
||||
|
||||
msgid "Object Selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part Selection"
|
||||
msgstr ""
|
||||
msgid "Object selection"
|
||||
msgstr "Selecció d'objecte"
|
||||
|
||||
msgid "number keys"
|
||||
msgstr "tecles numèriques"
|
||||
@@ -5615,9 +5723,6 @@ msgstr "Etiquetes"
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "Barra d'eines de pintura"
|
||||
|
||||
msgid "part selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "Explosion Ratio"
|
||||
msgstr "Relació d'explosió"
|
||||
|
||||
@@ -5642,7 +5747,7 @@ msgstr "Volum:"
|
||||
msgid "Size:"
|
||||
msgstr "Mida:"
|
||||
|
||||
#, fuzzy, c-format, boost-format
|
||||
#, fuzzy, boost-format
|
||||
msgid ""
|
||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -5819,8 +5924,8 @@ msgid ""
|
||||
"You can find it in \"Setting > Setting > LAN only > Access Code\"\n"
|
||||
"on the printer, as shown in the figure:"
|
||||
msgstr ""
|
||||
"Podeu trobar-lo a \"Configuració > Configuració > Només LAN > Codi d'accés"
|
||||
"\"\n"
|
||||
"Podeu trobar-lo a \"Configuració > Configuració > Només LAN > Codi "
|
||||
"d'accés\"\n"
|
||||
"a la impressora, com es mostra a la figura:"
|
||||
|
||||
msgid "Invalid input."
|
||||
@@ -5874,12 +5979,12 @@ msgstr "Imprimir placa d'impressió"
|
||||
msgid "Export G-code file"
|
||||
msgstr "Exportar el fitxer del Codi-G"
|
||||
|
||||
msgid "Send"
|
||||
msgstr "Enviar"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "Exportar fitxer de la placa laminada"
|
||||
|
||||
msgid "Send"
|
||||
msgstr "Enviar"
|
||||
|
||||
msgid "Export all sliced file"
|
||||
msgstr "Exportar el fitxer amb tot laminat"
|
||||
|
||||
@@ -8021,7 +8126,7 @@ msgstr ""
|
||||
msgid "The selected object couldn't be split."
|
||||
msgstr "L'objecte seleccionat no s'ha pogut partir."
|
||||
|
||||
msgid "Disable Auto-Drop to preserve z positioning?\n"
|
||||
msgid "Disable Auto-Drop to preserve Z positioning?\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Object with floating parts was detected"
|
||||
@@ -8716,9 +8821,6 @@ msgstr "Agrupa els perfils de filament de l'usuari"
|
||||
msgid "Group user filament presets based on selection"
|
||||
msgstr "Agrupa els perfils de filament de l'usuari segons la selecció"
|
||||
|
||||
msgid "All"
|
||||
msgstr "Tots"
|
||||
|
||||
msgid "By type"
|
||||
msgstr "Per tipus"
|
||||
|
||||
@@ -9101,6 +9203,14 @@ msgstr "Descarrega el connector de xarxa"
|
||||
msgid "Associate files to OrcaSlicer"
|
||||
msgstr "Associar fitxers a OrcaSlicer"
|
||||
|
||||
msgid ""
|
||||
"File associations for the Microsoft Store version are managed by Windows "
|
||||
"Settings."
|
||||
msgstr ""
|
||||
|
||||
msgid "Open Windows Default Apps Settings"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "Associate 3MF files to OrcaSlicer"
|
||||
msgstr "Associar .3mf fitxers a OrcaSlicer"
|
||||
@@ -9144,10 +9254,6 @@ msgstr "Associar enllaços web a OrcaSlicer"
|
||||
msgid "Developer"
|
||||
msgstr "Desenvolupador"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Developer mode"
|
||||
msgstr "Mode de desenvolupament"
|
||||
|
||||
msgid "Skip AMS blacklist check"
|
||||
msgstr "Omet la comprovació de la llista negra AMS"
|
||||
|
||||
@@ -9979,6 +10085,9 @@ msgstr ""
|
||||
"firmware admet aquesta operació o verifiqueu si la impressora funciona "
|
||||
"correctament."
|
||||
|
||||
msgid "Sending failed, please try again!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice ok."
|
||||
msgstr "Laminat ok."
|
||||
|
||||
@@ -10306,8 +10415,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Quan graveu timelapse sense capçal d'impressió, es recomana afegir una "
|
||||
"\"Torre de Purga Timelapse\" \n"
|
||||
@@ -10439,6 +10548,9 @@ msgstr "Establir la velocitat dels ponts externs i interns"
|
||||
msgid "Travel speed"
|
||||
msgstr "Velocitat de desplaçament"
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr "Desviació de cruïlla"
|
||||
|
||||
msgid "Jerk(XY)"
|
||||
msgstr "Sacsejada( XY )-Jerk( XY )"
|
||||
|
||||
@@ -11321,9 +11433,6 @@ msgstr ""
|
||||
"els filaments de la impressora. Els filaments de la impressora no utilitzats "
|
||||
"s'afegiran automàticament al final de la llista."
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr "Configuració avançada"
|
||||
|
||||
msgid "Add unused AMS filaments to filaments list."
|
||||
msgstr "Afegeix filaments d'AMS no utilitzats a la llista de filaments."
|
||||
|
||||
@@ -11834,12 +11943,23 @@ msgstr "Un nou plugin de Xarxa( %s ) disponible, Vols instal·lar-lo?"
|
||||
msgid "New version of Orca Slicer"
|
||||
msgstr "Nova versió d'Orca Slicer"
|
||||
|
||||
msgid "Check on Github"
|
||||
msgid "Check on Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check on GitHub"
|
||||
msgstr ""
|
||||
|
||||
msgid "Open Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Skip this Version"
|
||||
msgstr "Omet aquesta versió"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"New version available: %s. Please update OrcaSlicer from the Microsoft Store."
|
||||
msgstr ""
|
||||
|
||||
msgid "Confirm and Update Nozzle"
|
||||
msgstr "Confirmar i Actualitzar el broquet"
|
||||
|
||||
@@ -11956,6 +12076,9 @@ msgstr "Mòdul de tall"
|
||||
msgid "Auto Fire Extinguishing System"
|
||||
msgstr "Sistema d'extinció automàtica d'incendis"
|
||||
|
||||
msgid "Beta"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update firmware"
|
||||
msgstr "Actualitzar el firmware"
|
||||
|
||||
@@ -12759,6 +12882,15 @@ msgstr ""
|
||||
"Permetre controlar la impressora de BambuLab a través d'amfitrions "
|
||||
"d'impressió de 3 ª part"
|
||||
|
||||
msgid "Use 3MF instead of G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this if the printer accepts a 3MF file as the print job. When "
|
||||
"enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a "
|
||||
"plain .gcode file."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer Agent"
|
||||
msgstr "Agent de la impressora"
|
||||
|
||||
@@ -13204,7 +13336,7 @@ msgid "External bridge density"
|
||||
msgstr "Densitat del pont exterior"
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of external bridge lines. Default is 100%.\n"
|
||||
"Controls the density (spacing) of external bridge lines.\n"
|
||||
"Theoretically, 100% means a solid bridge, but due to the tendency of bridge "
|
||||
"extrusions to sag, 100% may not be sufficient.\n"
|
||||
"\n"
|
||||
@@ -13218,18 +13350,14 @@ msgid ""
|
||||
" - Pros: Can create a string-like first layer. Faster and with better "
|
||||
"cooling because there is more space for air to circulate around the extruded "
|
||||
"bridge.\n"
|
||||
" - Cons: May lead to sagging and poorer surface finish.\n"
|
||||
"\n"
|
||||
"Recommended range: Minimum 10% - Maximum 125%."
|
||||
" - Cons: May lead to sagging and poorer surface finish."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge density"
|
||||
msgstr "Densitat del pont intern"
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of internal bridge lines. Default is 100%. "
|
||||
"100% means a solid internal bridge.\n"
|
||||
"\n"
|
||||
"Controls the density (spacing) of internal bridge lines.\n"
|
||||
"Internal bridges act as intermediate support between sparse infill and top "
|
||||
"solid infill and can strongly affect top surface quality.\n"
|
||||
"\n"
|
||||
@@ -13264,11 +13392,9 @@ msgid ""
|
||||
"filament flow ratio, and if set, the object's flow ratio."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Bridge line width is expressed either as an absolute value or as a "
|
||||
"percentage of the active nozzle diameter (percentages are computed from the "
|
||||
"nozzle diameter).\n"
|
||||
"Line width of the Bridge. If expressed as a %, it will be computed over the "
|
||||
"nozzle diameter.\n"
|
||||
"Recommended to use with a higher Bridge density or Bridge flow ratio.\n"
|
||||
"\n"
|
||||
"The maximum value is 100% or the nozzle diameter.\n"
|
||||
@@ -14013,8 +14139,9 @@ msgstr ""
|
||||
"reducció de coixins a les superfícies superiors, així com una separació "
|
||||
"reduïda de la capa de pont externa dels seus perímetres circumdants.\n"
|
||||
"\n"
|
||||
"En general, es recomana establir això com a mínim com a \"Només pont extern"
|
||||
"\", tret que es detectin problemes específics amb el model en rodanxes.\n"
|
||||
"En general, es recomana establir això com a mínim com a \"Només pont "
|
||||
"extern\", tret que es detectin problemes específics amb el model en "
|
||||
"rodanxes.\n"
|
||||
"\n"
|
||||
"Opcions:\n"
|
||||
"1. Desactivat: no genera segones capes de pont. Aquest és el valor "
|
||||
@@ -15274,7 +15401,6 @@ msgstr ""
|
||||
msgid "Z-buckling bias optimization (experimental)"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
|
||||
"to shorten the effective vertical column length and improve Z-axis "
|
||||
@@ -15485,8 +15611,8 @@ msgid "mm/s² or %"
|
||||
msgstr "mm/s o %"
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
msgstr ""
|
||||
"Acceleració del farciment poc dens. Si el valor s'expressa en percentatge "
|
||||
"( per exemple, 100% ), es calcularà a partir de l'acceleració predeterminada."
|
||||
@@ -15532,9 +15658,6 @@ msgstr "El max_accel_to_decel de Klipper s'ajustarà a aquest %% d'acceleració"
|
||||
msgid "Default jerk."
|
||||
msgstr "Jerk predeterminat."
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr "Desviació de cruïlla"
|
||||
|
||||
msgid ""
|
||||
"Marlin Firmware Junction Deviation (replaces the traditional XY Jerk "
|
||||
"setting)."
|
||||
@@ -15622,15 +15745,15 @@ msgstr "Velocitat màxima del ventilador a la capa"
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"La velocitat del ventilador augmentarà linealment de zero a la capa "
|
||||
"\"close_fan_the_first_x_layers\" al màxim a la capa \"full_fan_speed_layer"
|
||||
"\". S'ignorarà \"full_fan_speed_layer\" si és inferior a "
|
||||
"\"close_fan_the_first_x_layers\", en aquest cas el ventilador funcionarà a "
|
||||
"\"close_fan_the_first_x_layers\" al màxim a la capa "
|
||||
"\"full_fan_speed_layer\". S'ignorarà \"full_fan_speed_layer\" si és inferior "
|
||||
"a \"close_fan_the_first_x_layers\", en aquest cas el ventilador funcionarà a "
|
||||
"la velocitat màxima permesa a la capa \"close_fan_the_first_x_layers\" + 1."
|
||||
|
||||
msgid "layer"
|
||||
@@ -15826,9 +15949,9 @@ msgstr ""
|
||||
"inferior a un cert nivell. Normalment equival al 15-25%% de l'alçada de la "
|
||||
"capa. Per tant, el gruix màxim de pell difusa amb una amplada de perímetre "
|
||||
"de 0.4 mm i una alçada de capa de 0.2 mm serà 0.4-(0.2*0.25)=±0.35mm! Si "
|
||||
"introduïu un paràmetre superior a aquest, es mostrarà l'error Flow::"
|
||||
"spacing() i el model no es tallarà. Podeu triar aquest número fins que es "
|
||||
"repeteixi l'error."
|
||||
"introduïu un paràmetre superior a aquest, es mostrarà l'error "
|
||||
"Flow::spacing() i el model no es tallarà. Podeu triar aquest número fins que "
|
||||
"es repeteixi l'error."
|
||||
|
||||
msgid "Displacement"
|
||||
msgstr "Desplaçament"
|
||||
@@ -16660,16 +16783,13 @@ msgid ""
|
||||
"A reasonable value is 35. Set to 0 to disable."
|
||||
msgstr ""
|
||||
|
||||
msgid "°"
|
||||
msgstr "°"
|
||||
|
||||
msgid "Don't alternate fill direction"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disable alternating fill direction when using Z contouring."
|
||||
msgstr ""
|
||||
|
||||
msgid "Minimum z height"
|
||||
msgid "Minimum Z height"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -17826,8 +17946,8 @@ msgid "Role base wipe speed"
|
||||
msgstr "Velocitat de neteja basada en l'acció"
|
||||
|
||||
msgid ""
|
||||
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||
"g. if a wipe action is executed immediately following an outer wall "
|
||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
||||
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||
"wipe action."
|
||||
msgstr ""
|
||||
@@ -18778,8 +18898,8 @@ msgstr "Activar el control de temperatura"
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present.\n"
|
||||
@@ -19263,8 +19383,9 @@ msgid ""
|
||||
"0 to disable."
|
||||
msgstr ""
|
||||
"Temperatura del broquet quan l'eina no s'utilitza actualment en "
|
||||
"configuracions multieina. Només s'utilitza quan la \"Prevenció de supuració"
|
||||
"\" està activa a la configuració d'impressió. Establiu a 0 per desactivar."
|
||||
"configuracions multieina. Només s'utilitza quan la \"Prevenció de "
|
||||
"supuració\" està activa a la configuració d'impressió. Establiu a 0 per "
|
||||
"desactivar."
|
||||
|
||||
msgid "X-Y hole compensation"
|
||||
msgstr "Compensació de forat( contorn intern ) X-Y"
|
||||
@@ -19809,11 +19930,11 @@ msgid "Debug level"
|
||||
msgstr "Nivell de depuració"
|
||||
|
||||
msgid ""
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
"trace\n"
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
"5:trace\n"
|
||||
msgstr ""
|
||||
"Defineix el nivell de registre de depuració. 0:fatal, 1:error, 2:warning, 3:"
|
||||
"info, 4:debug, 5:tracejar\n"
|
||||
"Defineix el nivell de registre de depuració. 0:fatal, 1:error, 2:warning, "
|
||||
"3:info, 4:debug, 5:tracejar\n"
|
||||
|
||||
msgid "Log file"
|
||||
msgstr ""
|
||||
@@ -20366,8 +20487,8 @@ msgstr "El fitxer subministrat no s'ha pogut llegir perquè està buit"
|
||||
msgid ""
|
||||
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
|
||||
msgstr ""
|
||||
"Format de fitxer desconegut. El fitxer d'entrada ha de tenir extensió .stl, ."
|
||||
"obj, .amf( .xml )."
|
||||
"Format de fitxer desconegut. El fitxer d'entrada ha de tenir "
|
||||
"extensió .stl, .obj, .amf( .xml )."
|
||||
|
||||
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
|
||||
msgstr ""
|
||||
@@ -21685,8 +21806,8 @@ msgstr ""
|
||||
"Vols reescriure'l?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\".\n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\".\n"
|
||||
"To add preset for more printers, please go to printer selection"
|
||||
msgstr ""
|
||||
"Canviaríem el nom dels perfils seleccionats com a \"Proveïdor Tipus "
|
||||
@@ -21775,9 +21896,6 @@ msgstr "Perfil d'Impressora"
|
||||
msgid "Filament Preset Template"
|
||||
msgstr "Plantilla de Perfil de Filament"
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "Deseleccionar-ho tot"
|
||||
|
||||
msgid "Process Preset Template"
|
||||
msgstr "Plantilla de Perfil de Processament"
|
||||
|
||||
@@ -22301,9 +22419,21 @@ msgstr ""
|
||||
msgid "Authorizing..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error. Can't get api token for authorization"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not parse server response."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error saving session to file"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error session check"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error during file upload"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Mismatched type of print host: %s"
|
||||
msgstr "Tipus d'amfitrió( host ) d'impressió no coincident: %s"
|
||||
@@ -23126,6 +23256,105 @@ msgstr "No s'ha pogut connectar a Flashforge per sèrie"
|
||||
msgid "Flashforge local API requires both serial number and access code."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer returned an error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing system_info in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing printer serial number in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error parsing response"
|
||||
msgstr ""
|
||||
|
||||
msgid "ElegooLink not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid access code"
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 device not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to ElegooLink is working correctly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to ElegooLink"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Error code: %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The file has been transferred, but some unknown errors occurred. Please "
|
||||
"check the device page for the file and try to start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open file for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to read file chunk for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is empty or could not be read."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to calculate file checksum."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error code not found"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The printer is busy, Please check the device page for the file and try to "
|
||||
"start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is lost, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is corrupted, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Transmission abnormality, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file does not match the printer, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print timeout"
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to CrealityPrint successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to CrealityPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Connection timed out. Please check if the printer and computer network are "
|
||||
"functioning properly, and confirm that they are on the same network."
|
||||
msgstr ""
|
||||
|
||||
msgid "The Hostname/IP/URL could not be parsed, please check it and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File/data transfer interrupted. Please check the printer and network, then "
|
||||
"try it again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr "L'estat proporcionat no és correcte."
|
||||
|
||||
@@ -23165,8 +23394,8 @@ msgid ""
|
||||
"Warning: The brim type is not set to \"painted\", the brim ears will not "
|
||||
"take effect!"
|
||||
msgstr ""
|
||||
"Advertència: el tipus de Vora d'Adherència no està configurat com a \"pintat"
|
||||
"\", les orelles de la Vora d'Adherència no tindran efecte!"
|
||||
"Advertència: el tipus de Vora d'Adherència no està configurat com a "
|
||||
"\"pintat\", les orelles de la Vora d'Adherència no tindran efecte!"
|
||||
|
||||
msgid "Set the brim type of this object to \"painted\""
|
||||
msgstr "Estableix el tipus de vora d'aquest objecte a \"pintat\""
|
||||
@@ -23180,6 +23409,12 @@ msgstr "Orelles de la Vora d'Adherència"
|
||||
msgid "Please select single object."
|
||||
msgstr "Seleccioneu un sol objecte."
|
||||
|
||||
msgid "Entering Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom Out"
|
||||
msgstr "Allunya"
|
||||
|
||||
@@ -23190,6 +23425,9 @@ msgid "Load skipping objects information failed. Please try again."
|
||||
msgstr ""
|
||||
"La càrrega d'informació dels objectes a ometre ha fallat. Torneu-ho a provar."
|
||||
|
||||
msgid "Failed to create the temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "/%d Selected"
|
||||
msgstr "/%d Seleccionats"
|
||||
@@ -23340,6 +23578,100 @@ msgstr "Nombre de cares triangulars"
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr "Calculant, espereu..."
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bundle folder does not exist."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open folder."
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete selected bundle from folder and all presets loaded from it?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to remove bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Remove Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe bundle?"
|
||||
msgstr ""
|
||||
|
||||
msgid "UnsubscribeBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to unsubscribe bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "ExportPresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Save preset bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - boost::filesystem::canonical did not "
|
||||
"return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Performing desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed because the application directory was "
|
||||
"not found."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - could not create Gcodeviewer desktop "
|
||||
"file. OrcaSlicer desktop file was probably created successfully."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - "
|
||||
"boost::filesystem::canonical did not return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed because the application "
|
||||
"directory was not found."
|
||||
msgstr ""
|
||||
|
||||
msgid "Desktop Integration"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Desktop Integration sets this binary to be searchable by the system.\n"
|
||||
"\n"
|
||||
"Press \"Perform\" to proceed."
|
||||
msgstr ""
|
||||
|
||||
msgid "The download has failed"
|
||||
msgstr ""
|
||||
|
||||
#. TRN %1% = file path
|
||||
#, boost-format
|
||||
msgid "Can't create file at %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Archive preview"
|
||||
msgstr ""
|
||||
|
||||
msgid "Open File"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The filament may not be compatible with the current machine settings. "
|
||||
"Generic filament presets will be used."
|
||||
@@ -23758,6 +24090,9 @@ msgstr ""
|
||||
"augmentar adequadament la temperatura del llit pot reduir la probabilitat de "
|
||||
"deformació?"
|
||||
|
||||
#~ msgid "°"
|
||||
#~ msgstr "°"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The Wipe option is not available when using the Firmware Retraction "
|
||||
#~ "mode.\n"
|
||||
@@ -23972,9 +24307,9 @@ msgstr ""
|
||||
#~ "Filament to print support base and raft. \"Default\" means no specific "
|
||||
#~ "filament for support and current filament is used."
|
||||
#~ msgstr ""
|
||||
#~ "Filament per imprimir base del suport i Vora d'Adherència. \"Per defecte"
|
||||
#~ "\" significa que no s'utilitza cap filament específic per al suport i "
|
||||
#~ "s'usarà el filament actual"
|
||||
#~ "Filament per imprimir base del suport i Vora d'Adherència. \"Per "
|
||||
#~ "defecte\" significa que no s'utilitza cap filament específic per al "
|
||||
#~ "suport i s'usarà el filament actual"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Filament to print support interface. \"Default\" means no specific "
|
||||
@@ -24110,9 +24445,6 @@ msgstr ""
|
||||
#~ msgid "Mouse wheel:"
|
||||
#~ msgstr "Roda del ratolí:"
|
||||
|
||||
#~ msgid "Object selection"
|
||||
#~ msgstr "Selecció d'objecte"
|
||||
|
||||
#~ msgid "Pass 1"
|
||||
#~ msgstr "Pas 1"
|
||||
|
||||
@@ -24670,8 +25002,8 @@ msgstr ""
|
||||
#~ "No AMS filaments. Please select a printer in 'Device' page to load AMS "
|
||||
#~ "info."
|
||||
#~ msgstr ""
|
||||
#~ "Sense filaments AMS. Seleccioneu una impressora a la pàgina \"Dispositiu"
|
||||
#~ "\" per carregar informació AMS."
|
||||
#~ "Sense filaments AMS. Seleccioneu una impressora a la pàgina "
|
||||
#~ "\"Dispositiu\" per carregar informació AMS."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Sync filaments with AMS will drop all current selected filament presets "
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-06-08 00:18+0800\n"
|
||||
"POT-Creation-Date: 2026-06-17 18:00+0800\n"
|
||||
"PO-Revision-Date: 2025-05-18 09:32-0300\n"
|
||||
"Last-Translator: Alexandre Folle de Menezes\n"
|
||||
"Language-Team: \n"
|
||||
@@ -183,6 +183,15 @@ msgstr ""
|
||||
msgid "Support Generated"
|
||||
msgstr "Support generated"
|
||||
|
||||
msgid "Entering Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on supports editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gizmo-Place on Face"
|
||||
msgstr ""
|
||||
|
||||
@@ -268,6 +277,15 @@ msgstr ""
|
||||
msgid "To:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Entering color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color painting editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
@@ -287,6 +305,15 @@ msgstr ""
|
||||
msgid "Enable painted fuzzy skin for this object"
|
||||
msgstr ""
|
||||
|
||||
msgid "Entering Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
@@ -669,6 +696,15 @@ msgstr ""
|
||||
msgid "Delete connector"
|
||||
msgstr ""
|
||||
|
||||
msgid "Entering Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Cut gizmo editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Mesh name"
|
||||
msgstr ""
|
||||
|
||||
@@ -1510,6 +1546,12 @@ msgstr ""
|
||||
msgid "Flip by Face 2"
|
||||
msgstr ""
|
||||
|
||||
msgid "Entering Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Assemble"
|
||||
msgstr ""
|
||||
|
||||
@@ -1535,14 +1577,20 @@ msgid "Warning: please select Point's or Circle's feature."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"It is recommended to assemble the objects first,\n"
|
||||
"because the objects is restriced to bed \n"
|
||||
"It is recommended to assemble objects first,\n"
|
||||
"because they are restricted to the bed \n"
|
||||
"and only parts can be lifted."
|
||||
msgstr ""
|
||||
|
||||
msgid "Face and face assembly"
|
||||
msgstr ""
|
||||
|
||||
msgid "Entering Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr ""
|
||||
|
||||
@@ -1602,7 +1650,7 @@ msgstr ""
|
||||
msgid "3MF files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gcode 3MF files"
|
||||
msgid "G-code 3MF files"
|
||||
msgstr ""
|
||||
|
||||
msgid "G-code files"
|
||||
@@ -1805,6 +1853,20 @@ msgid ""
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from "
|
||||
"the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your "
|
||||
"local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset "
|
||||
"conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local "
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy with your local preset changes.\n"
|
||||
"Do you want to continue?"
|
||||
@@ -3031,6 +3093,51 @@ msgstr ""
|
||||
msgid "The minmum temperature should not be less than "
|
||||
msgstr ""
|
||||
|
||||
msgid "Type to filter..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgid "No selected items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All items selected..."
|
||||
msgstr ""
|
||||
|
||||
msgid "No matching items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter nonSelected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Simple settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Expert settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Developer mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Launch troubleshoot center"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"All the selected objects are on a locked plate.\n"
|
||||
"Cannot auto-arrange these objects."
|
||||
@@ -3277,6 +3384,9 @@ msgstr ""
|
||||
msgid "There is no valid surface for text projection."
|
||||
msgstr ""
|
||||
|
||||
msgid "An unexpected error occurred"
|
||||
msgstr ""
|
||||
|
||||
msgid "Thermal Preconditioning for first layer optimization"
|
||||
msgstr ""
|
||||
|
||||
@@ -5033,10 +5143,7 @@ msgstr ""
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "Object Selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part Selection"
|
||||
msgid "Object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys"
|
||||
@@ -5219,9 +5326,6 @@ msgstr ""
|
||||
msgid "Paint Toolbar"
|
||||
msgstr ""
|
||||
|
||||
msgid "part selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "Explosion Ratio"
|
||||
msgstr ""
|
||||
|
||||
@@ -5246,7 +5350,7 @@ msgstr ""
|
||||
msgid "Size:"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -5454,10 +5558,10 @@ msgstr ""
|
||||
msgid "Export G-code file"
|
||||
msgstr ""
|
||||
|
||||
msgid "Send"
|
||||
msgid "Export plate sliced file"
|
||||
msgstr ""
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
|
||||
msgid "Export all sliced file"
|
||||
@@ -7436,7 +7540,7 @@ msgstr ""
|
||||
msgid "The selected object couldn't be split."
|
||||
msgstr ""
|
||||
|
||||
msgid "Disable Auto-Drop to preserve z positioning?\n"
|
||||
msgid "Disable Auto-Drop to preserve Z positioning?\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Object with floating parts was detected"
|
||||
@@ -8068,9 +8172,6 @@ msgstr ""
|
||||
msgid "Group user filament presets based on selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgid "By type"
|
||||
msgstr ""
|
||||
|
||||
@@ -8411,6 +8512,14 @@ msgstr ""
|
||||
msgid "Associate files to OrcaSlicer"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File associations for the Microsoft Store version are managed by Windows "
|
||||
"Settings."
|
||||
msgstr ""
|
||||
|
||||
msgid "Open Windows Default Apps Settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Associate 3MF files to OrcaSlicer"
|
||||
msgstr ""
|
||||
|
||||
@@ -8447,9 +8556,6 @@ msgstr ""
|
||||
msgid "Developer"
|
||||
msgstr ""
|
||||
|
||||
msgid "Developer mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Skip AMS blacklist check"
|
||||
msgstr ""
|
||||
|
||||
@@ -9182,6 +9288,9 @@ msgid ""
|
||||
"operation or verify if the printer is functioning properly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sending failed, please try again!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice ok."
|
||||
msgstr "Slice complete"
|
||||
|
||||
@@ -9440,8 +9549,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -9558,6 +9667,9 @@ msgstr ""
|
||||
msgid "Travel speed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Jerk(XY)"
|
||||
msgstr ""
|
||||
|
||||
@@ -10373,9 +10485,6 @@ msgid ""
|
||||
"list."
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add unused AMS filaments to filaments list."
|
||||
msgstr ""
|
||||
|
||||
@@ -10835,12 +10944,23 @@ msgstr ""
|
||||
msgid "New version of Orca Slicer"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check on Github"
|
||||
msgid "Check on Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check on GitHub"
|
||||
msgstr ""
|
||||
|
||||
msgid "Open Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Skip this Version"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"New version available: %s. Please update OrcaSlicer from the Microsoft Store."
|
||||
msgstr ""
|
||||
|
||||
msgid "Confirm and Update Nozzle"
|
||||
msgstr ""
|
||||
|
||||
@@ -10944,6 +11064,9 @@ msgstr ""
|
||||
msgid "Auto Fire Extinguishing System"
|
||||
msgstr ""
|
||||
|
||||
msgid "Beta"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update firmware"
|
||||
msgstr ""
|
||||
|
||||
@@ -11627,6 +11750,15 @@ msgstr ""
|
||||
msgid "Allow controlling BambuLab's printer through 3rd party print hosts."
|
||||
msgstr ""
|
||||
|
||||
msgid "Use 3MF instead of G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this if the printer accepts a 3MF file as the print job. When "
|
||||
"enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a "
|
||||
"plain .gcode file."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer Agent"
|
||||
msgstr ""
|
||||
|
||||
@@ -11998,7 +12130,7 @@ msgid "External bridge density"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of external bridge lines. Default is 100%.\n"
|
||||
"Controls the density (spacing) of external bridge lines.\n"
|
||||
"Theoretically, 100% means a solid bridge, but due to the tendency of bridge "
|
||||
"extrusions to sag, 100% may not be sufficient.\n"
|
||||
"\n"
|
||||
@@ -12012,18 +12144,14 @@ msgid ""
|
||||
" - Pros: Can create a string-like first layer. Faster and with better "
|
||||
"cooling because there is more space for air to circulate around the extruded "
|
||||
"bridge.\n"
|
||||
" - Cons: May lead to sagging and poorer surface finish.\n"
|
||||
"\n"
|
||||
"Recommended range: Minimum 10% - Maximum 125%."
|
||||
" - Cons: May lead to sagging and poorer surface finish."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge density"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of internal bridge lines. Default is 100%. "
|
||||
"100% means a solid internal bridge.\n"
|
||||
"\n"
|
||||
"Controls the density (spacing) of internal bridge lines.\n"
|
||||
"Internal bridges act as intermediate support between sparse infill and top "
|
||||
"solid infill and can strongly affect top surface quality.\n"
|
||||
"\n"
|
||||
@@ -12058,11 +12186,9 @@ msgid ""
|
||||
"filament flow ratio, and if set, the object's flow ratio."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Bridge line width is expressed either as an absolute value or as a "
|
||||
"percentage of the active nozzle diameter (percentages are computed from the "
|
||||
"nozzle diameter).\n"
|
||||
"Line width of the Bridge. If expressed as a %, it will be computed over the "
|
||||
"nozzle diameter.\n"
|
||||
"Recommended to use with a higher Bridge density or Bridge flow ratio.\n"
|
||||
"\n"
|
||||
"The maximum value is 100% or the nozzle diameter.\n"
|
||||
@@ -13607,7 +13733,6 @@ msgstr ""
|
||||
msgid "Z-buckling bias optimization (experimental)"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
|
||||
"to shorten the effective vertical column length and improve Z-axis "
|
||||
@@ -13789,8 +13914,8 @@ msgid "mm/s² or %"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -13831,9 +13956,6 @@ msgstr ""
|
||||
msgid "Default jerk."
|
||||
msgstr ""
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Marlin Firmware Junction Deviation (replaces the traditional XY Jerk "
|
||||
"setting)."
|
||||
@@ -13915,10 +14037,10 @@ msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
|
||||
msgid "layer"
|
||||
@@ -14755,16 +14877,13 @@ msgid ""
|
||||
"A reasonable value is 35. Set to 0 to disable."
|
||||
msgstr ""
|
||||
|
||||
msgid "°"
|
||||
msgstr ""
|
||||
|
||||
msgid "Don't alternate fill direction"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disable alternating fill direction when using Z contouring."
|
||||
msgstr ""
|
||||
|
||||
msgid "Minimum z height"
|
||||
msgid "Minimum Z height"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -15721,8 +15840,8 @@ msgid "Role base wipe speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||
"g. if a wipe action is executed immediately following an outer wall "
|
||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
||||
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||
"wipe action."
|
||||
msgstr ""
|
||||
@@ -16498,8 +16617,8 @@ msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present.\n"
|
||||
@@ -17327,8 +17446,8 @@ msgid "Debug level"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
"trace\n"
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
"5:trace\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log file"
|
||||
@@ -18967,8 +19086,8 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\".\n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\".\n"
|
||||
"To add preset for more printers, please go to printer selection"
|
||||
msgstr ""
|
||||
|
||||
@@ -19051,9 +19170,6 @@ msgstr ""
|
||||
msgid "Filament Preset Template"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Process Preset Template"
|
||||
msgstr ""
|
||||
|
||||
@@ -19496,9 +19612,21 @@ msgstr ""
|
||||
msgid "Authorizing..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error. Can't get api token for authorization"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not parse server response."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error saving session to file"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error session check"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error during file upload"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Mismatched type of print host: %s"
|
||||
msgstr ""
|
||||
@@ -20137,6 +20265,105 @@ msgstr ""
|
||||
msgid "Flashforge local API requires both serial number and access code."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer returned an error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing system_info in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing printer serial number in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error parsing response"
|
||||
msgstr ""
|
||||
|
||||
msgid "ElegooLink not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid access code"
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 device not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to ElegooLink is working correctly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to ElegooLink"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Error code: %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The file has been transferred, but some unknown errors occurred. Please "
|
||||
"check the device page for the file and try to start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open file for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to read file chunk for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is empty or could not be read."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to calculate file checksum."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error code not found"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The printer is busy, Please check the device page for the file and try to "
|
||||
"start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is lost, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is corrupted, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Transmission abnormality, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file does not match the printer, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print timeout"
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to CrealityPrint successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to CrealityPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Connection timed out. Please check if the printer and computer network are "
|
||||
"functioning properly, and confirm that they are on the same network."
|
||||
msgstr ""
|
||||
|
||||
msgid "The Hostname/IP/URL could not be parsed, please check it and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File/data transfer interrupted. Please check the printer and network, then "
|
||||
"try it again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr ""
|
||||
|
||||
@@ -20187,6 +20414,12 @@ msgstr ""
|
||||
msgid "Please select single object."
|
||||
msgstr ""
|
||||
|
||||
msgid "Entering Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom Out"
|
||||
msgstr ""
|
||||
|
||||
@@ -20196,6 +20429,9 @@ msgstr ""
|
||||
msgid "Load skipping objects information failed. Please try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to create the temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "/%d Selected"
|
||||
msgstr ""
|
||||
@@ -20341,6 +20577,100 @@ msgstr ""
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr ""
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bundle folder does not exist."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open folder."
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete selected bundle from folder and all presets loaded from it?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to remove bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Remove Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe bundle?"
|
||||
msgstr ""
|
||||
|
||||
msgid "UnsubscribeBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to unsubscribe bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "ExportPresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Save preset bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - boost::filesystem::canonical did not "
|
||||
"return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Performing desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed because the application directory was "
|
||||
"not found."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - could not create Gcodeviewer desktop "
|
||||
"file. OrcaSlicer desktop file was probably created successfully."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - "
|
||||
"boost::filesystem::canonical did not return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed because the application "
|
||||
"directory was not found."
|
||||
msgstr ""
|
||||
|
||||
msgid "Desktop Integration"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Desktop Integration sets this binary to be searchable by the system.\n"
|
||||
"\n"
|
||||
"Press \"Perform\" to proceed."
|
||||
msgstr ""
|
||||
|
||||
msgid "The download has failed"
|
||||
msgstr ""
|
||||
|
||||
#. TRN %1% = file path
|
||||
#, boost-format
|
||||
msgid "Can't create file at %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Archive preview"
|
||||
msgstr ""
|
||||
|
||||
msgid "Open File"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The filament may not be compatible with the current machine settings. "
|
||||
"Generic filament presets will be used."
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-06-08 00:18+0800\n"
|
||||
"POT-Creation-Date: 2026-06-17 18:00+0800\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -194,6 +194,15 @@ msgstr "Kész"
|
||||
msgid "Support Generated"
|
||||
msgstr "Támasz legenerálva"
|
||||
|
||||
msgid "Entering Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on supports editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gizmo-Place on Face"
|
||||
msgstr "Gizmo-Felület Tárgyasztalra Illesztése"
|
||||
|
||||
@@ -281,6 +290,15 @@ msgstr "A következővel festve: %1% filament"
|
||||
msgid "To:"
|
||||
msgstr "Ide:"
|
||||
|
||||
msgid "Entering color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color painting editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin"
|
||||
msgstr "Festett bolyhos felület"
|
||||
|
||||
@@ -302,6 +320,15 @@ msgstr ""
|
||||
msgid "Enable painted fuzzy skin for this object"
|
||||
msgstr "Festett bolyhos felület engedélyezése ennél az objektumnál"
|
||||
|
||||
msgid "Entering Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Move"
|
||||
msgstr "Mozgatás"
|
||||
|
||||
@@ -339,7 +366,7 @@ msgid "mm"
|
||||
msgstr "mm"
|
||||
|
||||
msgid "Part selection"
|
||||
msgstr "Rész kijelölése"
|
||||
msgstr "Alkatrész kijelölés"
|
||||
|
||||
msgid "Fixed step drag"
|
||||
msgstr "Rögzített lépésközű húzás"
|
||||
@@ -691,6 +718,15 @@ msgstr "Vágás vonallal"
|
||||
msgid "Delete connector"
|
||||
msgstr "Csatlakozó törlése"
|
||||
|
||||
msgid "Entering Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Cut gizmo editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Mesh name"
|
||||
msgstr "Háló neve"
|
||||
|
||||
@@ -1566,6 +1602,12 @@ msgstr "Párhuzamos távolság:"
|
||||
msgid "Flip by Face 2"
|
||||
msgstr "Tükrözés a 2. felület szerint"
|
||||
|
||||
msgid "Entering Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Assemble"
|
||||
msgstr "Összeállítás"
|
||||
|
||||
@@ -1593,17 +1635,20 @@ msgid "Warning: please select Point's or Circle's feature."
|
||||
msgstr "Figyelmeztetés: válaszd a pont vagy kör jellemzőt."
|
||||
|
||||
msgid ""
|
||||
"It is recommended to assemble the objects first,\n"
|
||||
"because the objects is restriced to bed \n"
|
||||
"It is recommended to assemble objects first,\n"
|
||||
"because they are restricted to the bed \n"
|
||||
"and only parts can be lifted."
|
||||
msgstr ""
|
||||
"Ajánlott először összeállítani az objektumokat,\n"
|
||||
"mert az objektumok a tárgyasztalhoz vannak rögzítve\n"
|
||||
"és csak az alkatrészek emelhetők fel."
|
||||
|
||||
msgid "Face and face assembly"
|
||||
msgstr "Felület-felület összeállítás"
|
||||
|
||||
msgid "Entering Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
|
||||
@@ -1665,8 +1710,8 @@ msgstr "AMF fájlok"
|
||||
msgid "3MF files"
|
||||
msgstr "3MF fájlok"
|
||||
|
||||
msgid "Gcode 3MF files"
|
||||
msgstr "Gcode 3MF fájlok"
|
||||
msgid "G-code 3MF files"
|
||||
msgstr "G-code 3MF fájlok"
|
||||
|
||||
msgid "G-code files"
|
||||
msgstr "G-code fájlok"
|
||||
@@ -1886,6 +1931,20 @@ msgid ""
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from "
|
||||
"the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your "
|
||||
"local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset "
|
||||
"conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local "
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy with your local preset changes.\n"
|
||||
"Do you want to continue?"
|
||||
@@ -3191,6 +3250,52 @@ msgstr "A maximális hőmérséklet nem haladhatja meg ezt: "
|
||||
msgid "The minmum temperature should not be less than "
|
||||
msgstr "A minimális hőmérséklet nem lehet kevesebb ennél: "
|
||||
|
||||
msgid "Type to filter..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All"
|
||||
msgstr "Összes"
|
||||
|
||||
msgid "No selected items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All items selected..."
|
||||
msgstr ""
|
||||
|
||||
msgid "No matching items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "Kijelölés megszüntetése"
|
||||
|
||||
msgid "Select visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter nonSelected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Simple settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr "Előrehaladott beállítások"
|
||||
|
||||
msgid "Expert settings"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "Developer mode"
|
||||
msgstr "Fejlesztői mód"
|
||||
|
||||
msgid "Launch troubleshoot center"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"All the selected objects are on a locked plate.\n"
|
||||
"Cannot auto-arrange these objects."
|
||||
@@ -3472,6 +3577,9 @@ msgstr "A betűtípus nem tartalmaz alakzatot a megadott szöveghez."
|
||||
msgid "There is no valid surface for text projection."
|
||||
msgstr "Nincs érvényes felület a szöveg vetítéséhez."
|
||||
|
||||
msgid "An unexpected error occurred"
|
||||
msgstr ""
|
||||
|
||||
msgid "Thermal Preconditioning for first layer optimization"
|
||||
msgstr "Hőelőkészítés az első réteg optimalizálásához"
|
||||
|
||||
@@ -5419,12 +5527,9 @@ msgstr "Szerkesztési terület növelése/csökkentése"
|
||||
msgid "Sequence"
|
||||
msgstr "Sorrend"
|
||||
|
||||
msgid "Object Selection"
|
||||
msgid "Object selection"
|
||||
msgstr "Objektum kijelölés"
|
||||
|
||||
msgid "Part Selection"
|
||||
msgstr "Alkatrész kijelölés"
|
||||
|
||||
msgid "number keys"
|
||||
msgstr "számbillentyűk"
|
||||
|
||||
@@ -5615,9 +5720,6 @@ msgstr "Címkék"
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "Festés eszköztár"
|
||||
|
||||
msgid "part selection"
|
||||
msgstr "alkatrész kijelölés"
|
||||
|
||||
msgid "Explosion Ratio"
|
||||
msgstr "Robbantási arány"
|
||||
|
||||
@@ -5642,7 +5744,7 @@ msgstr "Térfogat:"
|
||||
msgid "Size:"
|
||||
msgstr "Méret:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -5874,12 +5976,12 @@ msgstr "Nyomtatótálca"
|
||||
msgid "Export G-code file"
|
||||
msgstr "G-kód fájl exportálása"
|
||||
|
||||
msgid "Send"
|
||||
msgstr "Küldés"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "Szeletelt tálca exportálása"
|
||||
|
||||
msgid "Send"
|
||||
msgstr "Küldés"
|
||||
|
||||
msgid "Export all sliced file"
|
||||
msgstr "Minden szeletelt fájl exportálása"
|
||||
|
||||
@@ -8005,8 +8107,8 @@ msgstr ""
|
||||
msgid "The selected object couldn't be split."
|
||||
msgstr "A kijelölt objektumot nem lehet feldarabolni."
|
||||
|
||||
msgid "Disable Auto-Drop to preserve z positioning?\n"
|
||||
msgstr "Letiltja az Auto-Drop funkciót a z pozicionálás megőrzéséhez?\n"
|
||||
msgid "Disable Auto-Drop to preserve Z positioning?\n"
|
||||
msgstr "Letiltja az Auto-Drop funkciót a Z pozicionálás megőrzéséhez?\n"
|
||||
|
||||
msgid "Object with floating parts was detected"
|
||||
msgstr "Lebegő részeket tartalmazó tárgyat észleltünk"
|
||||
@@ -8695,9 +8797,6 @@ msgstr "Felhasználói filamentbeállítások csoportosítása"
|
||||
msgid "Group user filament presets based on selection"
|
||||
msgstr "Felhasználói filamentbeállítások csoportosítása kiválasztás alapján"
|
||||
|
||||
msgid "All"
|
||||
msgstr "Összes"
|
||||
|
||||
msgid "By type"
|
||||
msgstr "Típus szerint"
|
||||
|
||||
@@ -9095,6 +9194,14 @@ msgstr "Hálózati bővítmény letöltése"
|
||||
msgid "Associate files to OrcaSlicer"
|
||||
msgstr "Fájlok társítása a OrcaSlicerhoz"
|
||||
|
||||
msgid ""
|
||||
"File associations for the Microsoft Store version are managed by Windows "
|
||||
"Settings."
|
||||
msgstr ""
|
||||
|
||||
msgid "Open Windows Default Apps Settings"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "Associate 3MF files to OrcaSlicer"
|
||||
msgstr ".3mf fájlok társítása a OrcaSlicerhoz"
|
||||
@@ -9138,10 +9245,6 @@ msgstr "Webhivatkozások társítása OrcaSlicerhez"
|
||||
msgid "Developer"
|
||||
msgstr "Fejlesztő"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Developer mode"
|
||||
msgstr "Fejlesztői mód"
|
||||
|
||||
msgid "Skip AMS blacklist check"
|
||||
msgstr "AMS tiltólista ellenőrzés kihagyása"
|
||||
|
||||
@@ -9973,6 +10076,9 @@ msgstr ""
|
||||
"Fájlfeltöltés időtúllépés. Ellenőrizd, hogy a firmware verzió támogatja-e "
|
||||
"ezt a műveletet, és hogy a nyomtató megfelelően működik-e."
|
||||
|
||||
msgid "Sending failed, please try again!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice ok."
|
||||
msgstr "Szeletelés kész."
|
||||
|
||||
@@ -10300,8 +10406,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Ha a nyomtatófej nélküli időfelvétel engedélyezve van, javasoljuk, hogy "
|
||||
"helyezz el a tálcán egy \"Időfelvétel törlőtornyot\". Ehhez kattints jobb "
|
||||
@@ -10430,6 +10536,9 @@ msgstr "Sebesség beállítása a külső és belső hidakhoz"
|
||||
msgid "Travel speed"
|
||||
msgstr "Mozgás sebessége"
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr "Csomóponti eltérés"
|
||||
|
||||
msgid "Jerk(XY)"
|
||||
msgstr "Jerk(XY)"
|
||||
|
||||
@@ -11339,9 +11448,6 @@ msgstr ""
|
||||
"lecseréli. A nem használt nyomtató-filamentek automatikusan a lista végére "
|
||||
"kerülnek."
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr "Előrehaladott beállítások"
|
||||
|
||||
msgid "Add unused AMS filaments to filaments list."
|
||||
msgstr "A nem használt AMS filamentek hozzáadása a filamentlistához."
|
||||
|
||||
@@ -11854,12 +11960,23 @@ msgstr "Új hálózati bővítmény (%s) érhető el. Szeretnéd telepíteni?"
|
||||
msgid "New version of Orca Slicer"
|
||||
msgstr "A Orca Slicer új verziója"
|
||||
|
||||
msgid "Check on Github"
|
||||
msgid "Check on Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check on GitHub"
|
||||
msgstr "Ellenőrizd a GitHub-on"
|
||||
|
||||
msgid "Open Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Skip this Version"
|
||||
msgstr "Verzió kihagyása"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"New version available: %s. Please update OrcaSlicer from the Microsoft Store."
|
||||
msgstr ""
|
||||
|
||||
msgid "Confirm and Update Nozzle"
|
||||
msgstr "Fúvóka lecserélésének megerősítése"
|
||||
|
||||
@@ -11976,6 +12093,9 @@ msgstr "Vágómodul"
|
||||
msgid "Auto Fire Extinguishing System"
|
||||
msgstr "Automatikus tűzoltó rendszer"
|
||||
|
||||
msgid "Beta"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update firmware"
|
||||
msgstr "Firmware frissítése"
|
||||
|
||||
@@ -12796,6 +12916,15 @@ msgstr ""
|
||||
"Lehetővé teszi a BambuLab nyomtatók vezérlését külső nyomtatási gazdagépeken "
|
||||
"keresztül."
|
||||
|
||||
msgid "Use 3MF instead of G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this if the printer accepts a 3MF file as the print job. When "
|
||||
"enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a "
|
||||
"plain .gcode file."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer Agent"
|
||||
msgstr "Nyomtatóügynök"
|
||||
|
||||
@@ -13234,7 +13363,7 @@ msgid "External bridge density"
|
||||
msgstr "Külső híd sűrűsége"
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of external bridge lines. Default is 100%.\n"
|
||||
"Controls the density (spacing) of external bridge lines.\n"
|
||||
"Theoretically, 100% means a solid bridge, but due to the tendency of bridge "
|
||||
"extrusions to sag, 100% may not be sufficient.\n"
|
||||
"\n"
|
||||
@@ -13248,18 +13377,14 @@ msgid ""
|
||||
" - Pros: Can create a string-like first layer. Faster and with better "
|
||||
"cooling because there is more space for air to circulate around the extruded "
|
||||
"bridge.\n"
|
||||
" - Cons: May lead to sagging and poorer surface finish.\n"
|
||||
"\n"
|
||||
"Recommended range: Minimum 10% - Maximum 125%."
|
||||
" - Cons: May lead to sagging and poorer surface finish."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge density"
|
||||
msgstr "Belső híd sűrűsége"
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of internal bridge lines. Default is 100%. "
|
||||
"100% means a solid internal bridge.\n"
|
||||
"\n"
|
||||
"Controls the density (spacing) of internal bridge lines.\n"
|
||||
"Internal bridges act as intermediate support between sparse infill and top "
|
||||
"solid infill and can strongly affect top surface quality.\n"
|
||||
"\n"
|
||||
@@ -13294,11 +13419,9 @@ msgid ""
|
||||
"filament flow ratio, and if set, the object's flow ratio."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Bridge line width is expressed either as an absolute value or as a "
|
||||
"percentage of the active nozzle diameter (percentages are computed from the "
|
||||
"nozzle diameter).\n"
|
||||
"Line width of the Bridge. If expressed as a %, it will be computed over the "
|
||||
"nozzle diameter.\n"
|
||||
"Recommended to use with a higher Bridge density or Bridge flow ratio.\n"
|
||||
"\n"
|
||||
"The maximum value is 100% or the nozzle diameter.\n"
|
||||
@@ -15285,7 +15408,7 @@ msgstr ""
|
||||
msgid "Z-buckling bias optimization (experimental)"
|
||||
msgstr "Z-kihajlási torzítás optimalizálása (kísérleti)"
|
||||
|
||||
#, fuzzy, c-format, boost-format
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
|
||||
"to shorten the effective vertical column length and improve Z-axis "
|
||||
@@ -15502,8 +15625,8 @@ msgid "mm/s² or %"
|
||||
msgstr "mm/s² vagy %"
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
msgstr ""
|
||||
"Gyorsulás a ritkás kitöltéseknél. Ha az érték százalékban van megadva (pl. "
|
||||
"100%), akkor az alapértelmezett gyorsulás alapján kerül kiszámításra."
|
||||
@@ -15553,9 +15676,6 @@ msgstr ""
|
||||
msgid "Default jerk."
|
||||
msgstr "Alapértelmezett jerk."
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr "Csomóponti eltérés"
|
||||
|
||||
msgid ""
|
||||
"Marlin Firmware Junction Deviation (replaces the traditional XY Jerk "
|
||||
"setting)."
|
||||
@@ -15643,10 +15763,10 @@ msgstr "Teljes ventilátor fordulatszám ennél a rétegnél"
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"A ventilátor fordulatszáma lineárisan nő nulláról a "
|
||||
"\"close_fan_the_first_x_layers\" rétegtől a maximális értékig a "
|
||||
@@ -16722,17 +16842,14 @@ msgstr ""
|
||||
"Befolyásolja az ennél a szögnél (foknál) kisebb lejtésű kerületeket.\n"
|
||||
"Az ésszerű érték 35. A letiltáshoz állítsd 0-ra."
|
||||
|
||||
msgid "°"
|
||||
msgstr "°"
|
||||
|
||||
msgid "Don't alternate fill direction"
|
||||
msgstr "Ne váltakozzon a töltési irány"
|
||||
|
||||
msgid "Disable alternating fill direction when using Z contouring."
|
||||
msgstr "A váltakozó kitöltési irány letiltása Z kontúrozás használatakor."
|
||||
|
||||
msgid "Minimum z height"
|
||||
msgstr "Minimális z magasság"
|
||||
msgid "Minimum Z height"
|
||||
msgstr "Minimális Z magasság"
|
||||
|
||||
msgid ""
|
||||
"Minimum Z-layer height.\n"
|
||||
@@ -17904,8 +18021,8 @@ msgid "Role base wipe speed"
|
||||
msgstr "Szerepalapú törlési sebesség"
|
||||
|
||||
msgid ""
|
||||
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||
"g. if a wipe action is executed immediately following an outer wall "
|
||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
||||
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||
"wipe action."
|
||||
msgstr ""
|
||||
@@ -18869,8 +18986,8 @@ msgstr "Hőmérséklet-szabályozás aktiválása"
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present.\n"
|
||||
@@ -19900,11 +20017,11 @@ msgid "Debug level"
|
||||
msgstr "Hibakeresés szintje"
|
||||
|
||||
msgid ""
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
"trace\n"
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
"5:trace\n"
|
||||
msgstr ""
|
||||
"A hibakeresési naplózási szint beállítása. 0:fatal, 1:error, 2:warning, 3:"
|
||||
"info, 4:debug, 5:trace\n"
|
||||
"A hibakeresési naplózási szint beállítása. 0:fatal, 1:error, 2:warning, "
|
||||
"3:info, 4:debug, 5:trace\n"
|
||||
|
||||
msgid "Log file"
|
||||
msgstr ""
|
||||
@@ -21764,8 +21881,8 @@ msgstr ""
|
||||
"Szeretnéd felülírni?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\".\n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\".\n"
|
||||
"To add preset for more printers, please go to printer selection"
|
||||
msgstr ""
|
||||
"A beállításokat a következő formára nevezzük át: \"Gyártó Típus Sorozat @a "
|
||||
@@ -21855,9 +21972,6 @@ msgstr "Nyomtatóbeállítás"
|
||||
msgid "Filament Preset Template"
|
||||
msgstr "Filamentbeállítás sablon"
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "Kijelölés megszüntetése"
|
||||
|
||||
msgid "Process Preset Template"
|
||||
msgstr "Folyamatbeállítás sablon"
|
||||
|
||||
@@ -22369,9 +22483,21 @@ msgstr ""
|
||||
msgid "Authorizing..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error. Can't get api token for authorization"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not parse server response."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error saving session to file"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error session check"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error during file upload"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Mismatched type of print host: %s"
|
||||
msgstr "A nyomtatóállomás típusa nem egyezik: %s"
|
||||
@@ -23188,6 +23314,105 @@ msgstr "Nem sikerült soros kapcsolaton keresztül csatlakozni a Flashforge-hoz"
|
||||
msgid "Flashforge local API requires both serial number and access code."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer returned an error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing system_info in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing printer serial number in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error parsing response"
|
||||
msgstr ""
|
||||
|
||||
msgid "ElegooLink not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid access code"
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 device not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to ElegooLink is working correctly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to ElegooLink"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Error code: %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The file has been transferred, but some unknown errors occurred. Please "
|
||||
"check the device page for the file and try to start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open file for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to read file chunk for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is empty or could not be read."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to calculate file checksum."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error code not found"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The printer is busy, Please check the device page for the file and try to "
|
||||
"start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is lost, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is corrupted, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Transmission abnormality, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file does not match the printer, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print timeout"
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to CrealityPrint successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to CrealityPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Connection timed out. Please check if the printer and computer network are "
|
||||
"functioning properly, and confirm that they are on the same network."
|
||||
msgstr ""
|
||||
|
||||
msgid "The Hostname/IP/URL could not be parsed, please check it and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File/data transfer interrupted. Please check the printer and network, then "
|
||||
"try it again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr "A megadott állapot nem megfelelő."
|
||||
|
||||
@@ -23241,6 +23466,12 @@ msgstr "Karimás Fülek"
|
||||
msgid "Please select single object."
|
||||
msgstr "Válassz ki egyetlen objektumot."
|
||||
|
||||
msgid "Entering Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom Out"
|
||||
msgstr "Kicsinyítés"
|
||||
|
||||
@@ -23250,6 +23481,9 @@ msgstr "Nagyítás"
|
||||
msgid "Load skipping objects information failed. Please try again."
|
||||
msgstr "A kihagyott objektumok adatainak betöltése sikertelen. Próbáld újra."
|
||||
|
||||
msgid "Failed to create the temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "/%d Selected"
|
||||
msgstr "/%d kiválasztva"
|
||||
@@ -23402,6 +23636,100 @@ msgstr "Háromszögfelületek száma"
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr "Számítás folyamatban, kérlek várj..."
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bundle folder does not exist."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open folder."
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete selected bundle from folder and all presets loaded from it?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to remove bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Remove Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe bundle?"
|
||||
msgstr ""
|
||||
|
||||
msgid "UnsubscribeBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to unsubscribe bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "ExportPresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Save preset bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - boost::filesystem::canonical did not "
|
||||
"return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Performing desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed because the application directory was "
|
||||
"not found."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - could not create Gcodeviewer desktop "
|
||||
"file. OrcaSlicer desktop file was probably created successfully."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - "
|
||||
"boost::filesystem::canonical did not return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed because the application "
|
||||
"directory was not found."
|
||||
msgstr ""
|
||||
|
||||
msgid "Desktop Integration"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Desktop Integration sets this binary to be searchable by the system.\n"
|
||||
"\n"
|
||||
"Press \"Perform\" to proceed."
|
||||
msgstr ""
|
||||
|
||||
msgid "The download has failed"
|
||||
msgstr ""
|
||||
|
||||
#. TRN %1% = file path
|
||||
#, boost-format
|
||||
msgid "Can't create file at %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Archive preview"
|
||||
msgstr ""
|
||||
|
||||
msgid "Open File"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The filament may not be compatible with the current machine settings. "
|
||||
"Generic filament presets will be used."
|
||||
@@ -23820,6 +24148,21 @@ msgstr ""
|
||||
"tárgyasztal hőmérsékletének növelése csökkentheti a kunkorodás "
|
||||
"valószínűségét?"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "It is recommended to assemble objects first,\n"
|
||||
#~ "because the objects is restriced to bed \n"
|
||||
#~ "and only parts can be lifted."
|
||||
#~ msgstr ""
|
||||
#~ "Ajánlott először összeállítani az objektumokat,\n"
|
||||
#~ "mert az objektumok a tárgyasztalhoz vannak rögzítve\n"
|
||||
#~ "és csak az alkatrészek emelhetők fel."
|
||||
|
||||
#~ msgid "part selection"
|
||||
#~ msgstr "alkatrész kijelölés"
|
||||
|
||||
#~ msgid "°"
|
||||
#~ msgstr "°"
|
||||
|
||||
#~ msgid "Loading current beállítás"
|
||||
#~ msgstr "Jelenlegi beállítás betöltése"
|
||||
|
||||
@@ -24211,9 +24554,6 @@ msgstr ""
|
||||
#~ msgid "Mouse wheel:"
|
||||
#~ msgstr "Egérgörgő:"
|
||||
|
||||
#~ msgid "Object selection"
|
||||
#~ msgstr "Objektum kijelölés"
|
||||
|
||||
#~ msgid "Pass 1"
|
||||
#~ msgstr "1. menet"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-06-08 00:18+0800\n"
|
||||
"POT-Creation-Date: 2026-06-17 18:00+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -198,6 +198,15 @@ msgstr "Fatto"
|
||||
msgid "Support Generated"
|
||||
msgstr "Supporto generato"
|
||||
|
||||
msgid "Entering Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on supports editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gizmo-Place on Face"
|
||||
msgstr "Strumento selezione faccia come base"
|
||||
|
||||
@@ -286,6 +295,15 @@ msgstr "Dipinto utilizzando: Filamento %1%"
|
||||
msgid "To:"
|
||||
msgstr "A:"
|
||||
|
||||
msgid "Entering color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color painting editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin"
|
||||
msgstr "Dipingi superficie ruvida"
|
||||
|
||||
@@ -307,6 +325,15 @@ msgstr ""
|
||||
msgid "Enable painted fuzzy skin for this object"
|
||||
msgstr "Abilita la superficie ruvida dipinta per questo oggetto"
|
||||
|
||||
msgid "Entering Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Move"
|
||||
msgstr "Sposta"
|
||||
|
||||
@@ -697,6 +724,15 @@ msgstr "Taglia sulla linea"
|
||||
msgid "Delete connector"
|
||||
msgstr "Cancella connettore"
|
||||
|
||||
msgid "Entering Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Cut gizmo editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Mesh name"
|
||||
msgstr "Nome maglia poligonale"
|
||||
|
||||
@@ -1589,6 +1625,12 @@ msgstr "Distanza parallela:"
|
||||
msgid "Flip by Face 2"
|
||||
msgstr "Capovolgi da Faccia 2"
|
||||
|
||||
msgid "Entering Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Assemble"
|
||||
msgstr "Assembla"
|
||||
|
||||
@@ -1615,17 +1657,20 @@ msgid "Warning: please select Point's or Circle's feature."
|
||||
msgstr "Attenzione: selezionare l'elemento del Punto o del Cerchio."
|
||||
|
||||
msgid ""
|
||||
"It is recommended to assemble the objects first,\n"
|
||||
"because the objects is restriced to bed \n"
|
||||
"It is recommended to assemble objects first,\n"
|
||||
"because they are restricted to the bed \n"
|
||||
"and only parts can be lifted."
|
||||
msgstr ""
|
||||
"Si consiglia di assemblare gli oggetti prima,\n"
|
||||
"poiché gli oggetti sono vincolati al piano\n"
|
||||
"e solo le parti possono essere sollevate."
|
||||
|
||||
msgid "Face and face assembly"
|
||||
msgstr "Assemblaggio faccia a faccia"
|
||||
|
||||
msgid "Entering Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
|
||||
@@ -1689,7 +1734,7 @@ msgstr "File AMF"
|
||||
msgid "3MF files"
|
||||
msgstr "File 3MF"
|
||||
|
||||
msgid "Gcode 3MF files"
|
||||
msgid "G-code 3MF files"
|
||||
msgstr "File G-code 3MF"
|
||||
|
||||
msgid "G-code files"
|
||||
@@ -1911,6 +1956,20 @@ msgid ""
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from "
|
||||
"the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your "
|
||||
"local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset "
|
||||
"conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local "
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy with your local preset changes.\n"
|
||||
"Do you want to continue?"
|
||||
@@ -3218,6 +3277,51 @@ msgstr "La temperatura massima non può superare "
|
||||
msgid "The minmum temperature should not be less than "
|
||||
msgstr "La temperatura minima non deve essere inferiore a "
|
||||
|
||||
msgid "Type to filter..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All"
|
||||
msgstr "Tutto"
|
||||
|
||||
msgid "No selected items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All items selected..."
|
||||
msgstr ""
|
||||
|
||||
msgid "No matching items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "Deseleziona tutto"
|
||||
|
||||
msgid "Select visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter nonSelected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Simple settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr "Impostazioni avanzate"
|
||||
|
||||
msgid "Expert settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Developer mode"
|
||||
msgstr "Modalità sviluppatore"
|
||||
|
||||
msgid "Launch troubleshoot center"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"All the selected objects are on a locked plate.\n"
|
||||
"Cannot auto-arrange these objects."
|
||||
@@ -3501,6 +3605,9 @@ msgstr "Il carattere non ha alcuna forma per il testo specificato."
|
||||
msgid "There is no valid surface for text projection."
|
||||
msgstr "Non esiste una superficie valida per la proiezione del testo."
|
||||
|
||||
msgid "An unexpected error occurred"
|
||||
msgstr ""
|
||||
|
||||
msgid "Thermal Preconditioning for first layer optimization"
|
||||
msgstr "Precondizionamento termico per l'ottimizzazione del primo strato"
|
||||
|
||||
@@ -5476,12 +5583,9 @@ msgstr "Aumenta/diminuisci l'area di modifica"
|
||||
msgid "Sequence"
|
||||
msgstr "Sequenza"
|
||||
|
||||
msgid "Object Selection"
|
||||
msgid "Object selection"
|
||||
msgstr "Selezione oggetto"
|
||||
|
||||
msgid "Part Selection"
|
||||
msgstr "Selezione parte"
|
||||
|
||||
msgid "number keys"
|
||||
msgstr "tasti numerici"
|
||||
|
||||
@@ -5671,9 +5775,6 @@ msgstr "Etichette"
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "Barra strumenti di pittura"
|
||||
|
||||
msgid "part selection"
|
||||
msgstr "selezione parte"
|
||||
|
||||
msgid "Explosion Ratio"
|
||||
msgstr "Rapporto di esplosione"
|
||||
|
||||
@@ -5698,7 +5799,7 @@ msgstr "Volume:"
|
||||
msgid "Size:"
|
||||
msgstr "Dimensione:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -5931,12 +6032,12 @@ msgstr "Piatto di stampa"
|
||||
msgid "Export G-code file"
|
||||
msgstr "Esporta file G-code"
|
||||
|
||||
msgid "Send"
|
||||
msgstr "Invia"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "Esporta il file del piatto elaborato"
|
||||
|
||||
msgid "Send"
|
||||
msgstr "Invia"
|
||||
|
||||
msgid "Export all sliced file"
|
||||
msgstr "Esporta tutti i file elaborati"
|
||||
|
||||
@@ -8082,7 +8183,7 @@ msgstr ""
|
||||
msgid "The selected object couldn't be split."
|
||||
msgstr "L'oggetto selezionato non può essere diviso."
|
||||
|
||||
msgid "Disable Auto-Drop to preserve z positioning?\n"
|
||||
msgid "Disable Auto-Drop to preserve Z positioning?\n"
|
||||
msgstr ""
|
||||
"Disabilitare la funzione di Rilascio automatico per preservare il "
|
||||
"posizionamento sull'asse Z?\n"
|
||||
@@ -8779,9 +8880,6 @@ msgstr "Raggruppa profili di filamento utente"
|
||||
msgid "Group user filament presets based on selection"
|
||||
msgstr "Raggruppa i profili di filamento utente in base alla selezione"
|
||||
|
||||
msgid "All"
|
||||
msgstr "Tutto"
|
||||
|
||||
msgid "By type"
|
||||
msgstr "Per tipo"
|
||||
|
||||
@@ -9168,6 +9266,14 @@ msgstr "Scarica modulo di rete"
|
||||
msgid "Associate files to OrcaSlicer"
|
||||
msgstr "Associa i file ad OrcaSlicer"
|
||||
|
||||
msgid ""
|
||||
"File associations for the Microsoft Store version are managed by Windows "
|
||||
"Settings."
|
||||
msgstr ""
|
||||
|
||||
msgid "Open Windows Default Apps Settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Associate 3MF files to OrcaSlicer"
|
||||
msgstr "Associa i file 3MF ad OrcaSlicer"
|
||||
|
||||
@@ -9206,9 +9312,6 @@ msgstr "Associa i collegamenti web ad OrcaSlicer"
|
||||
msgid "Developer"
|
||||
msgstr "Sviluppatore"
|
||||
|
||||
msgid "Developer mode"
|
||||
msgstr "Modalità sviluppatore"
|
||||
|
||||
msgid "Skip AMS blacklist check"
|
||||
msgstr "Salta il controllo della lista nera dell'AMS"
|
||||
|
||||
@@ -10046,6 +10149,9 @@ msgstr ""
|
||||
"Timeout caricamento file. Verificare se la versione del firmware supporta "
|
||||
"questa operazione o se la stampante funziona correttamente."
|
||||
|
||||
msgid "Sending failed, please try again!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice ok."
|
||||
msgstr "Elaborazione completa."
|
||||
|
||||
@@ -10378,8 +10484,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Quando si registra un timelapse senza la testina di stampa, si consiglia di "
|
||||
"aggiungere un \"Timelapse Torre di spurgo\"\n"
|
||||
@@ -10512,6 +10618,9 @@ msgstr "Imposta la velocità per ponti esterni e interni"
|
||||
msgid "Travel speed"
|
||||
msgstr "Velocità di spostamento"
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr "Deviazione di giunzione"
|
||||
|
||||
msgid "Jerk(XY)"
|
||||
msgstr "Scatto(XY)"
|
||||
|
||||
@@ -11421,9 +11530,6 @@ msgstr ""
|
||||
"sui filamenti della stampante. I filamenti della stampante non utilizzati "
|
||||
"verranno aggiunti automaticamente alla fine della lista."
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr "Impostazioni avanzate"
|
||||
|
||||
msgid "Add unused AMS filaments to filaments list."
|
||||
msgstr "Aggiungi filamenti AMS non utilizzati alla lista filamenti."
|
||||
|
||||
@@ -11947,12 +12053,23 @@ msgstr "È disponibile un nuovo modulo di rete (%s). Vuoi installarlo?"
|
||||
msgid "New version of Orca Slicer"
|
||||
msgstr "Nuova versione di OrcaSlicer"
|
||||
|
||||
msgid "Check on Github"
|
||||
msgid "Check on Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check on GitHub"
|
||||
msgstr "Visualizza su GitHub"
|
||||
|
||||
msgid "Open Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Skip this Version"
|
||||
msgstr "Salta questa versione"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"New version available: %s. Please update OrcaSlicer from the Microsoft Store."
|
||||
msgstr ""
|
||||
|
||||
msgid "Confirm and Update Nozzle"
|
||||
msgstr "Conferma e aggiorna l'ugello"
|
||||
|
||||
@@ -12071,6 +12188,9 @@ msgstr "Modulo di taglio"
|
||||
msgid "Auto Fire Extinguishing System"
|
||||
msgstr "Sistema antincendio automatico"
|
||||
|
||||
msgid "Beta"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update firmware"
|
||||
msgstr "Aggiorna firmware"
|
||||
|
||||
@@ -12100,8 +12220,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"È stato rilevato un aggiornamento importante che deve essere eseguito prima "
|
||||
"che la stampa possa continuare. Si desidera aggiornare ora? È possibile "
|
||||
"effettuare l'aggiornamento anche in un secondo momento da \"Aggiorna firmware"
|
||||
"\"."
|
||||
"effettuare l'aggiornamento anche in un secondo momento da \"Aggiorna "
|
||||
"firmware\"."
|
||||
|
||||
msgid ""
|
||||
"The firmware version is abnormal. Repairing and updating are required before "
|
||||
@@ -12903,6 +13023,15 @@ msgstr ""
|
||||
"Consente il controllo della stampante di BambuLab attraverso host di stampa "
|
||||
"di terze parti."
|
||||
|
||||
msgid "Use 3MF instead of G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this if the printer accepts a 3MF file as the print job. When "
|
||||
"enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a "
|
||||
"plain .gcode file."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer Agent"
|
||||
msgstr "Agente stampante"
|
||||
|
||||
@@ -13359,7 +13488,7 @@ msgid "External bridge density"
|
||||
msgstr "Densità ponti esterni"
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of external bridge lines. Default is 100%.\n"
|
||||
"Controls the density (spacing) of external bridge lines.\n"
|
||||
"Theoretically, 100% means a solid bridge, but due to the tendency of bridge "
|
||||
"extrusions to sag, 100% may not be sufficient.\n"
|
||||
"\n"
|
||||
@@ -13373,18 +13502,14 @@ msgid ""
|
||||
" - Pros: Can create a string-like first layer. Faster and with better "
|
||||
"cooling because there is more space for air to circulate around the extruded "
|
||||
"bridge.\n"
|
||||
" - Cons: May lead to sagging and poorer surface finish.\n"
|
||||
"\n"
|
||||
"Recommended range: Minimum 10% - Maximum 125%."
|
||||
" - Cons: May lead to sagging and poorer surface finish."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge density"
|
||||
msgstr "Densità ponti interni"
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of internal bridge lines. Default is 100%. "
|
||||
"100% means a solid internal bridge.\n"
|
||||
"\n"
|
||||
"Controls the density (spacing) of internal bridge lines.\n"
|
||||
"Internal bridges act as intermediate support between sparse infill and top "
|
||||
"solid infill and can strongly affect top surface quality.\n"
|
||||
"\n"
|
||||
@@ -13419,11 +13544,9 @@ msgid ""
|
||||
"filament flow ratio, and if set, the object's flow ratio."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Bridge line width is expressed either as an absolute value or as a "
|
||||
"percentage of the active nozzle diameter (percentages are computed from the "
|
||||
"nozzle diameter).\n"
|
||||
"Line width of the Bridge. If expressed as a %, it will be computed over the "
|
||||
"nozzle diameter.\n"
|
||||
"Recommended to use with a higher Bridge density or Bridge flow ratio.\n"
|
||||
"\n"
|
||||
"The maximum value is 100% or the nozzle diameter.\n"
|
||||
@@ -15184,9 +15307,9 @@ msgid ""
|
||||
"this movement should be before the filament is retracted again."
|
||||
msgstr ""
|
||||
"Se impostato su un valore diverso da zero, il filamento viene spostato verso "
|
||||
"l'ugello tra i singoli movimenti nei tubi di raffreddamento (\"timbratura"
|
||||
"\"). Questa opzione configura la durata di questo movimento prima che il "
|
||||
"filamento venga nuovamente retratto."
|
||||
"l'ugello tra i singoli movimenti nei tubi di raffreddamento "
|
||||
"(\"timbratura\"). Questa opzione configura la durata di questo movimento "
|
||||
"prima che il filamento venga nuovamente retratto."
|
||||
|
||||
msgid "Speed of the first cooling move"
|
||||
msgstr "Velocità del primo movimento di raffreddamento"
|
||||
@@ -15467,7 +15590,6 @@ msgstr ""
|
||||
msgid "Z-buckling bias optimization (experimental)"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
|
||||
"to shorten the effective vertical column length and improve Z-axis "
|
||||
@@ -15679,8 +15801,8 @@ msgid "mm/s² or %"
|
||||
msgstr "mm/s o %"
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
msgstr ""
|
||||
"Accelerazione del riempimento sparso. Se il valore è espresso in percentuale "
|
||||
"(ad esempio 100%), verrà calcolato in base all'accelerazione predefinita."
|
||||
@@ -15731,9 +15853,6 @@ msgstr ""
|
||||
msgid "Default jerk."
|
||||
msgstr "Jerk predefinito."
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr "Deviazione di giunzione"
|
||||
|
||||
msgid ""
|
||||
"Marlin Firmware Junction Deviation (replaces the traditional XY Jerk "
|
||||
"setting)."
|
||||
@@ -15825,17 +15944,17 @@ msgstr "Velocità massima ventola su strato"
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"La velocità della ventola aumenterà in modo lineare da zero nello strato "
|
||||
"\"close_fan_the_first_x_layers\" al massimo nello strato "
|
||||
"\"full_fan_speed_layer\". Se inferiore a \"close_fan_the_first_x_layers\", "
|
||||
"\"full_fan_speed_layer\" verrà ignorato. in tal caso la ventola funzionerà "
|
||||
"alla massima velocità consentita nello strato \"close_fan_the_first_x_layers"
|
||||
"\" + 1."
|
||||
"alla massima velocità consentita nello strato "
|
||||
"\"close_fan_the_first_x_layers\" + 1."
|
||||
|
||||
msgid "layer"
|
||||
msgstr "strato"
|
||||
@@ -16910,9 +17029,6 @@ msgstr ""
|
||||
"gradi).\n"
|
||||
"Il valore consigliato è 35. Impostare a 0 per disabilitare questa funzione."
|
||||
|
||||
msgid "°"
|
||||
msgstr "°"
|
||||
|
||||
msgid "Don't alternate fill direction"
|
||||
msgstr "Non alternare direzione riempimento"
|
||||
|
||||
@@ -16921,7 +17037,7 @@ msgstr ""
|
||||
"Disabilita il riempimento a direzione alternata quando si utilizza l'opzione "
|
||||
"\"Contornatura Z\"."
|
||||
|
||||
msgid "Minimum z height"
|
||||
msgid "Minimum Z height"
|
||||
msgstr "Altezza Z minima"
|
||||
|
||||
msgid ""
|
||||
@@ -17393,9 +17509,9 @@ msgid ""
|
||||
"in which case the fan will run at maximum allowed speed at layer \"For the "
|
||||
"first\" + 1."
|
||||
msgstr ""
|
||||
"La velocità della ventola ausiliaria aumenterà linearmente da \"Per il primo"
|
||||
"\" fino al valore massimo impostato su \"Velocità massima ventola su strato"
|
||||
"\".\n"
|
||||
"La velocità della ventola ausiliaria aumenterà linearmente da \"Per il "
|
||||
"primo\" fino al valore massimo impostato su \"Velocità massima ventola su "
|
||||
"strato\".\n"
|
||||
"Il valore \"Velocità massima ventola su strato\" verrà ignorato se inferiore "
|
||||
"a \"Per il primo\"; in tal caso, la ventola funzionerà alla velocità massima "
|
||||
"consentita con il valore \"Per il primo\" + 1."
|
||||
@@ -18135,8 +18251,8 @@ msgid "Role base wipe speed"
|
||||
msgstr "Velocità di spurgo basata su ruolo"
|
||||
|
||||
msgid ""
|
||||
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||
"g. if a wipe action is executed immediately following an outer wall "
|
||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
||||
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||
"wipe action."
|
||||
msgstr ""
|
||||
@@ -19100,8 +19216,8 @@ msgstr "Attiva controllo della temperatura"
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present.\n"
|
||||
@@ -20140,11 +20256,11 @@ msgid "Debug level"
|
||||
msgstr "Livello di debug"
|
||||
|
||||
msgid ""
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
"trace\n"
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
"5:trace\n"
|
||||
msgstr ""
|
||||
"Imposta livello di debug. 0:fatale, 1:errore, 2:avviso, 3:info, 4:debug, 5:"
|
||||
"traccia\n"
|
||||
"Imposta livello di debug. 0:fatale, 1:errore, 2:avviso, 3:info, 4:debug, "
|
||||
"5:traccia\n"
|
||||
|
||||
msgid "Log file"
|
||||
msgstr ""
|
||||
@@ -20711,13 +20827,13 @@ msgstr "Impossibile leggere il file fornito perché è vuoto"
|
||||
msgid ""
|
||||
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
|
||||
msgstr ""
|
||||
"Formato file sconosciuto: il file di input deve avere un'estensione .stl, ."
|
||||
"obj o .amf(.xml)."
|
||||
"Formato file sconosciuto: il file di input deve avere "
|
||||
"un'estensione .stl, .obj o .amf(.xml)."
|
||||
|
||||
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
|
||||
msgstr ""
|
||||
"Formato file sconosciuto: il file di input deve avere un'estensione .3mf o ."
|
||||
"zip.amf."
|
||||
"Formato file sconosciuto: il file di input deve avere un'estensione .3mf "
|
||||
"o .zip.amf."
|
||||
|
||||
msgid "load_obj: failed to parse"
|
||||
msgstr "load_obj: impossibile analizzare"
|
||||
@@ -22048,12 +22164,12 @@ msgstr ""
|
||||
"Vuoi riscriverlo?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\".\n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\".\n"
|
||||
"To add preset for more printers, please go to printer selection"
|
||||
msgstr ""
|
||||
"Rinomineremo i profili come \"Produttore Tipo Seriale @stampante selezionata"
|
||||
"\".\n"
|
||||
"Rinomineremo i profili come \"Produttore Tipo Seriale @stampante "
|
||||
"selezionata\".\n"
|
||||
"Per aggiungere il profilo per più stampanti, vai alla selezione della "
|
||||
"stampante"
|
||||
|
||||
@@ -22143,9 +22259,6 @@ msgstr "Profilo stampante"
|
||||
msgid "Filament Preset Template"
|
||||
msgstr "Modello profilo di filamento"
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "Deseleziona tutto"
|
||||
|
||||
msgid "Process Preset Template"
|
||||
msgstr "Modello profilo di processo"
|
||||
|
||||
@@ -22662,9 +22775,21 @@ msgstr ""
|
||||
msgid "Authorizing..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error. Can't get api token for authorization"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not parse server response."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error saving session to file"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error session check"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error during file upload"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Mismatched type of print host: %s"
|
||||
msgstr "Tipo di host di stampa non corrispondente: %s"
|
||||
@@ -23486,6 +23611,105 @@ msgstr "Impossibile connettersi a Flashforge tramite seriale"
|
||||
msgid "Flashforge local API requires both serial number and access code."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer returned an error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing system_info in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing printer serial number in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error parsing response"
|
||||
msgstr ""
|
||||
|
||||
msgid "ElegooLink not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid access code"
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 device not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to ElegooLink is working correctly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to ElegooLink"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Error code: %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The file has been transferred, but some unknown errors occurred. Please "
|
||||
"check the device page for the file and try to start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open file for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to read file chunk for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is empty or could not be read."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to calculate file checksum."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error code not found"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The printer is busy, Please check the device page for the file and try to "
|
||||
"start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is lost, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is corrupted, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Transmission abnormality, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file does not match the printer, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print timeout"
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to CrealityPrint successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to CrealityPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Connection timed out. Please check if the printer and computer network are "
|
||||
"functioning properly, and confirm that they are on the same network."
|
||||
msgstr ""
|
||||
|
||||
msgid "The Hostname/IP/URL could not be parsed, please check it and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File/data transfer interrupted. Please check the printer and network, then "
|
||||
"try it again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr "Lo stato fornito non è corretto."
|
||||
|
||||
@@ -23542,6 +23766,12 @@ msgstr "Tese ad orecchio"
|
||||
msgid "Please select single object."
|
||||
msgstr "Seleziona un singolo oggetto."
|
||||
|
||||
msgid "Entering Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom Out"
|
||||
msgstr "Zoom indietro"
|
||||
|
||||
@@ -23551,6 +23781,9 @@ msgstr "Zoom avanti"
|
||||
msgid "Load skipping objects information failed. Please try again."
|
||||
msgstr "Caricamento informazioni sugli oggetti da saltare fallito. Riprovare."
|
||||
|
||||
msgid "Failed to create the temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "/%d Selected"
|
||||
msgstr "/%d Selezionati"
|
||||
@@ -23703,6 +23936,100 @@ msgstr "Numero di facce triangolari"
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr "Calcolo in corso, attendere..."
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bundle folder does not exist."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open folder."
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete selected bundle from folder and all presets loaded from it?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to remove bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Remove Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe bundle?"
|
||||
msgstr ""
|
||||
|
||||
msgid "UnsubscribeBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to unsubscribe bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "ExportPresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Save preset bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - boost::filesystem::canonical did not "
|
||||
"return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Performing desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed because the application directory was "
|
||||
"not found."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - could not create Gcodeviewer desktop "
|
||||
"file. OrcaSlicer desktop file was probably created successfully."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - "
|
||||
"boost::filesystem::canonical did not return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed because the application "
|
||||
"directory was not found."
|
||||
msgstr ""
|
||||
|
||||
msgid "Desktop Integration"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Desktop Integration sets this binary to be searchable by the system.\n"
|
||||
"\n"
|
||||
"Press \"Perform\" to proceed."
|
||||
msgstr ""
|
||||
|
||||
msgid "The download has failed"
|
||||
msgstr ""
|
||||
|
||||
#. TRN %1% = file path
|
||||
#, boost-format
|
||||
msgid "Can't create file at %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Archive preview"
|
||||
msgstr ""
|
||||
|
||||
msgid "Open File"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The filament may not be compatible with the current machine settings. "
|
||||
"Generic filament presets will be used."
|
||||
@@ -24121,6 +24448,21 @@ msgstr ""
|
||||
"aumentare in modo appropriato la temperatura del piano riscaldato può "
|
||||
"ridurre la probabilità di deformazione?"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "It is recommended to assemble objects first,\n"
|
||||
#~ "because the objects is restriced to bed \n"
|
||||
#~ "and only parts can be lifted."
|
||||
#~ msgstr ""
|
||||
#~ "Si consiglia di assemblare gli oggetti prima,\n"
|
||||
#~ "poiché gli oggetti sono vincolati al piano\n"
|
||||
#~ "e solo le parti possono essere sollevate."
|
||||
|
||||
#~ msgid "part selection"
|
||||
#~ msgstr "selezione parte"
|
||||
|
||||
#~ msgid "°"
|
||||
#~ msgstr "°"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This "
|
||||
#~ "stops the transmission of data to Bambu's cloud services too. Users who "
|
||||
@@ -24492,9 +24834,6 @@ msgstr ""
|
||||
#~ msgid "Mouse wheel:"
|
||||
#~ msgstr "Rotellina del mouse:"
|
||||
|
||||
#~ msgid "Object selection"
|
||||
#~ msgstr "Selezione oggetto"
|
||||
|
||||
#~ msgid "Pass 1"
|
||||
#~ msgstr "Passaggio 1"
|
||||
|
||||
@@ -26210,9 +26549,10 @@ msgstr ""
|
||||
#~ "\n"
|
||||
#~ "\n"
|
||||
#~ "Per impostazione predefinita, i piccoli bridge interni vengono filtrati e "
|
||||
#~ "il riempimento solido interno viene stampato direttamente sul riempimento."
|
||||
#~ "Questo metodo funziona bene nella maggior parte dei casi, velocizzando la "
|
||||
#~ "stampa senza compromettere troppo la qualità della superficie superiore.\n"
|
||||
#~ "il riempimento solido interno viene stampato direttamente sul "
|
||||
#~ "riempimento.Questo metodo funziona bene nella maggior parte dei casi, "
|
||||
#~ "velocizzando la stampa senza compromettere troppo la qualità della "
|
||||
#~ "superficie superiore.\n"
|
||||
#~ "\n"
|
||||
#~ "Tuttavia, in modelli fortemente inclinati o curvi, soprattutto se si "
|
||||
#~ "utilizza una densità di riempimento troppo bassa, potrebbe comportare "
|
||||
@@ -26426,12 +26766,13 @@ msgstr ""
|
||||
#~ "nostro wiki.\n"
|
||||
#~ "\n"
|
||||
#~ "Di solito la calibrazione non è necessaria. Quando si avvia una stampa a "
|
||||
#~ "singolo colore/materiale, con l'opzione \"calibrazione dinamica del flusso"
|
||||
#~ "\" selezionata nel menu di avvio della stampa, la stampante seguirà il "
|
||||
#~ "vecchio modo, calibrando il filamento prima della stampa; Quando si avvia "
|
||||
#~ "una stampa multicolore/materiale, la stampante utilizzerà il parametro di "
|
||||
#~ "compensazione predefinito per il filamento durante ogni cambio di "
|
||||
#~ "filamento, che avrà un buon risultato nella maggior parte dei casi.\n"
|
||||
#~ "singolo colore/materiale, con l'opzione \"calibrazione dinamica del "
|
||||
#~ "flusso\" selezionata nel menu di avvio della stampa, la stampante seguirà "
|
||||
#~ "il vecchio modo, calibrando il filamento prima della stampa; Quando si "
|
||||
#~ "avvia una stampa multicolore/materiale, la stampante utilizzerà il "
|
||||
#~ "parametro di compensazione predefinito per il filamento durante ogni "
|
||||
#~ "cambio di filamento, che avrà un buon risultato nella maggior parte dei "
|
||||
#~ "casi.\n"
|
||||
#~ "\n"
|
||||
#~ "Si prega di notare che ci sono alcuni casi che renderanno il risultato "
|
||||
#~ "della calibrazione non affidabile: utilizzo di una piastra di texture per "
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-06-08 00:18+0800\n"
|
||||
"POT-Creation-Date: 2026-06-17 18:00+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -196,6 +196,15 @@ msgstr "完了"
|
||||
msgid "Support Generated"
|
||||
msgstr "生成されたサポート"
|
||||
|
||||
msgid "Entering Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on supports editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gizmo-Place on Face"
|
||||
msgstr "ギズモ-面に配置"
|
||||
|
||||
@@ -282,6 +291,15 @@ msgstr "フィラメント %1%でペイントします"
|
||||
msgid "To:"
|
||||
msgstr "先:"
|
||||
|
||||
msgid "Entering color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color painting editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin"
|
||||
msgstr "ファジースキンのペイント"
|
||||
|
||||
@@ -303,6 +321,15 @@ msgstr ""
|
||||
msgid "Enable painted fuzzy skin for this object"
|
||||
msgstr "このオブジェクトのペイントファジースキンを有効にする"
|
||||
|
||||
msgid "Entering Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Move"
|
||||
msgstr "移動"
|
||||
|
||||
@@ -688,6 +715,15 @@ msgstr "ラインでカット"
|
||||
msgid "Delete connector"
|
||||
msgstr "コネクター削除"
|
||||
|
||||
msgid "Entering Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Cut gizmo editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Mesh name"
|
||||
msgstr "メッシュ名"
|
||||
|
||||
@@ -1559,6 +1595,12 @@ msgstr "平行距離:"
|
||||
msgid "Flip by Face 2"
|
||||
msgstr "面2で反転"
|
||||
|
||||
msgid "Entering Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Assemble"
|
||||
msgstr "組立てる"
|
||||
|
||||
@@ -1585,17 +1627,20 @@ msgid "Warning: please select Point's or Circle's feature."
|
||||
msgstr "警告: 点または円のフィーチャーを選択してください。"
|
||||
|
||||
msgid ""
|
||||
"It is recommended to assemble the objects first,\n"
|
||||
"because the objects is restriced to bed \n"
|
||||
"It is recommended to assemble objects first,\n"
|
||||
"because they are restricted to the bed \n"
|
||||
"and only parts can be lifted."
|
||||
msgstr ""
|
||||
"オブジェクトは先に組み立てることをお勧めします。\n"
|
||||
"オブジェクトはベッドに固定されており、\n"
|
||||
"パーツのみ持ち上げることができます。"
|
||||
|
||||
msgid "Face and face assembly"
|
||||
msgstr "面と面の組み立て"
|
||||
|
||||
msgid "Entering Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
|
||||
@@ -1653,8 +1698,8 @@ msgstr "AMFファイル"
|
||||
msgid "3MF files"
|
||||
msgstr "3MFファイル"
|
||||
|
||||
msgid "Gcode 3MF files"
|
||||
msgstr "Gcode 3MFファイル"
|
||||
msgid "G-code 3MF files"
|
||||
msgstr "G-code 3MFファイル"
|
||||
|
||||
msgid "G-code files"
|
||||
msgstr "G-codeファイル"
|
||||
@@ -1869,6 +1914,20 @@ msgid ""
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from "
|
||||
"the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your "
|
||||
"local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset "
|
||||
"conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local "
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy with your local preset changes.\n"
|
||||
"Do you want to continue?"
|
||||
@@ -3141,6 +3200,52 @@ msgstr "最高温度は次の値を超えることはできません "
|
||||
msgid "The minmum temperature should not be less than "
|
||||
msgstr "最低温度は次の値を下回ることはできません "
|
||||
|
||||
msgid "Type to filter..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All"
|
||||
msgstr "すべて"
|
||||
|
||||
msgid "No selected items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All items selected..."
|
||||
msgstr ""
|
||||
|
||||
msgid "No matching items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "すべて選択解除"
|
||||
|
||||
msgid "Select visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter nonSelected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Simple settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr "詳細設定"
|
||||
|
||||
msgid "Expert settings"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "Developer mode"
|
||||
msgstr "開発者モード"
|
||||
|
||||
msgid "Launch troubleshoot center"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"All the selected objects are on a locked plate.\n"
|
||||
"Cannot auto-arrange these objects."
|
||||
@@ -3413,6 +3518,9 @@ msgstr "フォントに指定されたテキストの形状がありません。
|
||||
msgid "There is no valid surface for text projection."
|
||||
msgstr "テキスト投影に有効な面がありません。"
|
||||
|
||||
msgid "An unexpected error occurred"
|
||||
msgstr ""
|
||||
|
||||
msgid "Thermal Preconditioning for first layer optimization"
|
||||
msgstr "初期レイヤー最適化のための熱プリコンディショニング"
|
||||
|
||||
@@ -5288,10 +5396,7 @@ msgstr "編集領域を拡大/縮小"
|
||||
msgid "Sequence"
|
||||
msgstr "順番"
|
||||
|
||||
msgid "Object Selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part Selection"
|
||||
msgid "Object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys"
|
||||
@@ -5478,9 +5583,6 @@ msgstr "ラベル"
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "ペイント ツールバー"
|
||||
|
||||
msgid "part selection"
|
||||
msgstr "パーツ選択"
|
||||
|
||||
msgid "Explosion Ratio"
|
||||
msgstr "分解比率"
|
||||
|
||||
@@ -5505,7 +5607,7 @@ msgstr "ボリューム"
|
||||
msgid "Size:"
|
||||
msgstr "サイズ:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -5733,12 +5835,12 @@ msgstr "造形開始"
|
||||
msgid "Export G-code file"
|
||||
msgstr "G-codeをエクスポート"
|
||||
|
||||
msgid "Send"
|
||||
msgstr "送信"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "エクスポート"
|
||||
|
||||
msgid "Send"
|
||||
msgstr "送信"
|
||||
|
||||
msgid "Export all sliced file"
|
||||
msgstr "エクスポート (全プレート)"
|
||||
|
||||
@@ -7809,7 +7911,7 @@ msgstr ""
|
||||
msgid "The selected object couldn't be split."
|
||||
msgstr "選択したオブジェクトを分割できませんでした。"
|
||||
|
||||
msgid "Disable Auto-Drop to preserve z positioning?\n"
|
||||
msgid "Disable Auto-Drop to preserve Z positioning?\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Object with floating parts was detected"
|
||||
@@ -8487,9 +8589,6 @@ msgstr "ユーザーフィラメントプリセットをグループ化"
|
||||
msgid "Group user filament presets based on selection"
|
||||
msgstr "選択に基づいてユーザーフィラメントプリセットをグループ化"
|
||||
|
||||
msgid "All"
|
||||
msgstr "すべて"
|
||||
|
||||
msgid "By type"
|
||||
msgstr "タイプ別"
|
||||
|
||||
@@ -8861,6 +8960,14 @@ msgstr "ネットワークプラグインをダウンロード"
|
||||
msgid "Associate files to OrcaSlicer"
|
||||
msgstr "ファイルをOrca Slicerに関連付ける"
|
||||
|
||||
msgid ""
|
||||
"File associations for the Microsoft Store version are managed by Windows "
|
||||
"Settings."
|
||||
msgstr ""
|
||||
|
||||
msgid "Open Windows Default Apps Settings"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "Associate 3MF files to OrcaSlicer"
|
||||
msgstr ".3mfファイルをOrca Slicerに関連付けます。"
|
||||
@@ -8898,10 +9005,6 @@ msgstr "ウェブリンクをOrcaSlicerに関連付け"
|
||||
msgid "Developer"
|
||||
msgstr "開発者"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Developer mode"
|
||||
msgstr "開発者モード"
|
||||
|
||||
msgid "Skip AMS blacklist check"
|
||||
msgstr "AMSブラックリストチェックをスキップ"
|
||||
|
||||
@@ -9697,6 +9800,9 @@ msgstr ""
|
||||
"ファイルアップロードがタイムアウトしました。ファームウェアバージョンがこの操"
|
||||
"作をサポートしているか、プリンターが正常に動作しているか確認してください。"
|
||||
|
||||
msgid "Sending failed, please try again!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice ok."
|
||||
msgstr "スライス完了"
|
||||
|
||||
@@ -10007,8 +10113,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"ヘッド無しのタイムラプスビデオを録画する時に、「タイムラプスプライムタワー」"
|
||||
"を追加してください。プレートで右クリックして、「プリミティブを追加」→「タイム"
|
||||
@@ -10135,6 +10241,9 @@ msgstr "外部および内部ブリッジの速度を設定"
|
||||
msgid "Travel speed"
|
||||
msgstr "移動速度"
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr "接合偏差"
|
||||
|
||||
msgid "Jerk(XY)"
|
||||
msgstr "ジャーク(XY)"
|
||||
|
||||
@@ -10981,9 +11090,6 @@ msgstr ""
|
||||
"プリンターのフィラメントに基づいてプロジェクトフィラメントリストを順次置き換"
|
||||
"えます。未使用のプリンターフィラメントはリストの末尾に自動的に追加されます。"
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr "詳細設定"
|
||||
|
||||
msgid "Add unused AMS filaments to filaments list."
|
||||
msgstr "未使用のAMSフィラメントをフィラメントリストに追加します。"
|
||||
|
||||
@@ -11468,12 +11574,23 @@ msgstr "新しいプラグイン (%s) が発見しました、インストール
|
||||
msgid "New version of Orca Slicer"
|
||||
msgstr "新バージョン"
|
||||
|
||||
msgid "Check on Github"
|
||||
msgid "Check on Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check on GitHub"
|
||||
msgstr ""
|
||||
|
||||
msgid "Open Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Skip this Version"
|
||||
msgstr "このバージョンをスキップ"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"New version available: %s. Please update OrcaSlicer from the Microsoft Store."
|
||||
msgstr ""
|
||||
|
||||
msgid "Confirm and Update Nozzle"
|
||||
msgstr "確認してノズルを更新"
|
||||
|
||||
@@ -11585,6 +11702,9 @@ msgstr "カッティングモジュール"
|
||||
msgid "Auto Fire Extinguishing System"
|
||||
msgstr "自動消火システム"
|
||||
|
||||
msgid "Beta"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update firmware"
|
||||
msgstr "ファームウェアを更新"
|
||||
|
||||
@@ -12318,6 +12438,15 @@ msgstr ""
|
||||
"サードパーティの印刷ホストを通じてBambuLabのプリンターを制御することを許可し"
|
||||
"ます。"
|
||||
|
||||
msgid "Use 3MF instead of G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this if the printer accepts a 3MF file as the print job. When "
|
||||
"enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a "
|
||||
"plain .gcode file."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer Agent"
|
||||
msgstr "プリンターエージェント"
|
||||
|
||||
@@ -12679,7 +12808,7 @@ msgid "External bridge density"
|
||||
msgstr "外部ブリッジ密度"
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of external bridge lines. Default is 100%.\n"
|
||||
"Controls the density (spacing) of external bridge lines.\n"
|
||||
"Theoretically, 100% means a solid bridge, but due to the tendency of bridge "
|
||||
"extrusions to sag, 100% may not be sufficient.\n"
|
||||
"\n"
|
||||
@@ -12693,18 +12822,14 @@ msgid ""
|
||||
" - Pros: Can create a string-like first layer. Faster and with better "
|
||||
"cooling because there is more space for air to circulate around the extruded "
|
||||
"bridge.\n"
|
||||
" - Cons: May lead to sagging and poorer surface finish.\n"
|
||||
"\n"
|
||||
"Recommended range: Minimum 10% - Maximum 125%."
|
||||
" - Cons: May lead to sagging and poorer surface finish."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge density"
|
||||
msgstr "内部ブリッジ密度"
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of internal bridge lines. Default is 100%. "
|
||||
"100% means a solid internal bridge.\n"
|
||||
"\n"
|
||||
"Controls the density (spacing) of internal bridge lines.\n"
|
||||
"Internal bridges act as intermediate support between sparse infill and top "
|
||||
"solid infill and can strongly affect top surface quality.\n"
|
||||
"\n"
|
||||
@@ -12739,11 +12864,9 @@ msgid ""
|
||||
"filament flow ratio, and if set, the object's flow ratio."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Bridge line width is expressed either as an absolute value or as a "
|
||||
"percentage of the active nozzle diameter (percentages are computed from the "
|
||||
"nozzle diameter).\n"
|
||||
"Line width of the Bridge. If expressed as a %, it will be computed over the "
|
||||
"nozzle diameter.\n"
|
||||
"Recommended to use with a higher Bridge density or Bridge flow ratio.\n"
|
||||
"\n"
|
||||
"The maximum value is 100% or the nozzle diameter.\n"
|
||||
@@ -14322,7 +14445,6 @@ msgstr "充填パターンが対応している場合は、複数のラインを
|
||||
msgid "Z-buckling bias optimization (experimental)"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
|
||||
"to shorten the effective vertical column length and improve Z-axis "
|
||||
@@ -14504,8 +14626,8 @@ msgid "mm/s² or %"
|
||||
msgstr "mm/s² 或は %"
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
msgstr ""
|
||||
"スパースインフィルの加速度です。値がパーセンテージ(例:100%)で指定された場"
|
||||
"合、デフォルトの加速度を基に計算されます。"
|
||||
@@ -14547,9 +14669,6 @@ msgstr ""
|
||||
msgid "Default jerk."
|
||||
msgstr "デフォルトジャーク。"
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr "接合偏差"
|
||||
|
||||
msgid ""
|
||||
"Marlin Firmware Junction Deviation (replaces the traditional XY Jerk "
|
||||
"setting)."
|
||||
@@ -14627,10 +14746,10 @@ msgstr "最大回転速度の積層"
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
|
||||
msgid "layer"
|
||||
@@ -15349,8 +15468,8 @@ msgid ""
|
||||
"\"mmu_segmented_region_interlocking_depth\" is bigger than "
|
||||
"\"mmu_segmented_region_max_width\". Zero disables this feature."
|
||||
msgstr ""
|
||||
"セグメント化された領域の連動深さ。mmu_segmented_region_max_width \"が0"
|
||||
"か、\"mmu_segmented_region_interlocking_depth \"が "
|
||||
"セグメント化された領域の連動深さ。mmu_segmented_region_max_width \"が0か、"
|
||||
"\"mmu_segmented_region_interlocking_depth \"が "
|
||||
"\"mmu_segmented_region_max_width \"より大きい場合は無視される。ゼロはこの機能"
|
||||
"を無効にする。"
|
||||
|
||||
@@ -15486,16 +15605,13 @@ msgid ""
|
||||
"A reasonable value is 35. Set to 0 to disable."
|
||||
msgstr ""
|
||||
|
||||
msgid "°"
|
||||
msgstr "°"
|
||||
|
||||
msgid "Don't alternate fill direction"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disable alternating fill direction when using Z contouring."
|
||||
msgstr ""
|
||||
|
||||
msgid "Minimum z height"
|
||||
msgid "Minimum Z height"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -16478,8 +16594,8 @@ msgid "Role base wipe speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||
"g. if a wipe action is executed immediately following an outer wall "
|
||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
||||
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||
"wipe action."
|
||||
msgstr ""
|
||||
@@ -17279,8 +17395,8 @@ msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present.\n"
|
||||
@@ -18119,11 +18235,11 @@ msgid "Debug level"
|
||||
msgstr "デバッグ レベル"
|
||||
|
||||
msgid ""
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
"trace\n"
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
"5:trace\n"
|
||||
msgstr ""
|
||||
"デバッグロギングレベルを設定します。0:fatal、1:error、2:warning、3:info、4:"
|
||||
"debug、5:trace。\n"
|
||||
"デバッグロギングレベルを設定します。0:fatal、1:error、2:warning、3:info、"
|
||||
"4:debug、5:trace。\n"
|
||||
|
||||
msgid "Log file"
|
||||
msgstr ""
|
||||
@@ -19865,8 +19981,8 @@ msgstr ""
|
||||
"書き直しますか?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\".\n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\".\n"
|
||||
"To add preset for more printers, please go to printer selection"
|
||||
msgstr ""
|
||||
|
||||
@@ -19950,9 +20066,6 @@ msgstr "プリンタープリセット"
|
||||
msgid "Filament Preset Template"
|
||||
msgstr "フィラメントプリセットテンプレート"
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "すべて選択解除"
|
||||
|
||||
msgid "Process Preset Template"
|
||||
msgstr "プロセスプリセットテンプレート"
|
||||
|
||||
@@ -20433,9 +20546,21 @@ msgstr ""
|
||||
msgid "Authorizing..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error. Can't get api token for authorization"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not parse server response."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error saving session to file"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error session check"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error during file upload"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Mismatched type of print host: %s"
|
||||
msgstr "印刷ホストのタイプが一致しません: %s"
|
||||
@@ -21133,6 +21258,105 @@ msgstr "シリアル経由でFlashforgeに接続できませんでした"
|
||||
msgid "Flashforge local API requires both serial number and access code."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer returned an error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing system_info in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing printer serial number in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error parsing response"
|
||||
msgstr ""
|
||||
|
||||
msgid "ElegooLink not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid access code"
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 device not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to ElegooLink is working correctly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to ElegooLink"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Error code: %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The file has been transferred, but some unknown errors occurred. Please "
|
||||
"check the device page for the file and try to start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open file for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to read file chunk for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is empty or could not be read."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to calculate file checksum."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error code not found"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The printer is busy, Please check the device page for the file and try to "
|
||||
"start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is lost, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is corrupted, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Transmission abnormality, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file does not match the printer, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print timeout"
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to CrealityPrint successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to CrealityPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Connection timed out. Please check if the printer and computer network are "
|
||||
"functioning properly, and confirm that they are on the same network."
|
||||
msgstr ""
|
||||
|
||||
msgid "The Hostname/IP/URL could not be parsed, please check it and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File/data transfer interrupted. Please check the printer and network, then "
|
||||
"try it again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr "指定された状態が正しくありません。"
|
||||
|
||||
@@ -21184,6 +21408,12 @@ msgstr "ブリム"
|
||||
msgid "Please select single object."
|
||||
msgstr "単一のオブジェクトを選択してください"
|
||||
|
||||
msgid "Entering Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom Out"
|
||||
msgstr "ズームアウト"
|
||||
|
||||
@@ -21193,6 +21423,9 @@ msgstr "ズームイン"
|
||||
msgid "Load skipping objects information failed. Please try again."
|
||||
msgstr "スキップオブジェクト情報のロードに失敗しました。再試行してください。"
|
||||
|
||||
msgid "Failed to create the temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "/%d Selected"
|
||||
msgstr "/%d 選択済み"
|
||||
@@ -21345,6 +21578,100 @@ msgstr "三角面の数"
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr "計算中、お待ちください..."
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bundle folder does not exist."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open folder."
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete selected bundle from folder and all presets loaded from it?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to remove bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Remove Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe bundle?"
|
||||
msgstr ""
|
||||
|
||||
msgid "UnsubscribeBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to unsubscribe bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "ExportPresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Save preset bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - boost::filesystem::canonical did not "
|
||||
"return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Performing desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed because the application directory was "
|
||||
"not found."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - could not create Gcodeviewer desktop "
|
||||
"file. OrcaSlicer desktop file was probably created successfully."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - "
|
||||
"boost::filesystem::canonical did not return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed because the application "
|
||||
"directory was not found."
|
||||
msgstr ""
|
||||
|
||||
msgid "Desktop Integration"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Desktop Integration sets this binary to be searchable by the system.\n"
|
||||
"\n"
|
||||
"Press \"Perform\" to proceed."
|
||||
msgstr ""
|
||||
|
||||
msgid "The download has failed"
|
||||
msgstr ""
|
||||
|
||||
#. TRN %1% = file path
|
||||
#, boost-format
|
||||
msgid "Can't create file at %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Archive preview"
|
||||
msgstr ""
|
||||
|
||||
msgid "Open File"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The filament may not be compatible with the current machine settings. "
|
||||
"Generic filament presets will be used."
|
||||
@@ -21704,6 +22031,21 @@ msgstr ""
|
||||
"ABSのような反りやすい素材を印刷する場合、ヒートベッドの温度を適切に上げること"
|
||||
"で、反りが発生する確率を下げることができることをご存知ですか?"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "It is recommended to assemble objects first,\n"
|
||||
#~ "because the objects is restriced to bed \n"
|
||||
#~ "and only parts can be lifted."
|
||||
#~ msgstr ""
|
||||
#~ "オブジェクトは先に組み立てることをお勧めします。\n"
|
||||
#~ "オブジェクトはベッドに固定されており、\n"
|
||||
#~ "パーツのみ持ち上げることができます。"
|
||||
|
||||
#~ msgid "part selection"
|
||||
#~ msgstr "パーツ選択"
|
||||
|
||||
#~ msgid "°"
|
||||
#~ msgstr "°"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The Wipe option is not available when using the Firmware Retraction "
|
||||
#~ "mode.\n"
|
||||
@@ -21869,9 +22211,6 @@ msgstr ""
|
||||
#~ msgid "Mouse wheel:"
|
||||
#~ msgstr "マウスホイール"
|
||||
|
||||
#~ msgid "Object selection"
|
||||
#~ msgstr "オブジェクト選択"
|
||||
|
||||
#~ msgid "Pass 1"
|
||||
#~ msgstr "パス1"
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-06-08 00:18+0800\n"
|
||||
"POT-Creation-Date: 2026-06-17 18:00+0800\n"
|
||||
"PO-Revision-Date: 2025-06-02 17:12+0900\n"
|
||||
"Last-Translator: crwusiz <crwusiz@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
@@ -198,6 +198,15 @@ msgstr "완료"
|
||||
msgid "Support Generated"
|
||||
msgstr "서포트 생성됨"
|
||||
|
||||
msgid "Entering Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on supports editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gizmo-Place on Face"
|
||||
msgstr "변형도구 - 면에 배치"
|
||||
|
||||
@@ -285,6 +294,15 @@ msgstr "칠하기에 사용한 필라멘트 %1%"
|
||||
msgid "To:"
|
||||
msgstr "대상:"
|
||||
|
||||
msgid "Entering color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color painting editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin"
|
||||
msgstr "퍼지 스킨 칠하기"
|
||||
|
||||
@@ -305,6 +323,15 @@ msgstr ""
|
||||
msgid "Enable painted fuzzy skin for this object"
|
||||
msgstr "이 객체의 칠한 퍼지 스킨 활성화"
|
||||
|
||||
msgid "Entering Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Move"
|
||||
msgstr "이동"
|
||||
|
||||
@@ -691,6 +718,15 @@ msgstr "라인별로 자르기"
|
||||
msgid "Delete connector"
|
||||
msgstr "커넥터 삭제"
|
||||
|
||||
msgid "Entering Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Cut gizmo editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Mesh name"
|
||||
msgstr "메시 이름"
|
||||
|
||||
@@ -1555,6 +1591,12 @@ msgstr "평행 거리:"
|
||||
msgid "Flip by Face 2"
|
||||
msgstr "면 2로 뒤집기"
|
||||
|
||||
msgid "Entering Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Assemble"
|
||||
msgstr "병합"
|
||||
|
||||
@@ -1580,17 +1622,20 @@ msgid "Warning: please select Point's or Circle's feature."
|
||||
msgstr "경고: 점 또는 원의 특징을 선택하십시오."
|
||||
|
||||
msgid ""
|
||||
"It is recommended to assemble the objects first,\n"
|
||||
"because the objects is restriced to bed \n"
|
||||
"It is recommended to assemble objects first,\n"
|
||||
"because they are restricted to the bed \n"
|
||||
"and only parts can be lifted."
|
||||
msgstr ""
|
||||
"먼저 객체를 조립하는 것이 좋습니다.\n"
|
||||
"객체는 베드에 고정되어 있으며\n"
|
||||
"파트만 들어올릴 수 있습니다."
|
||||
|
||||
msgid "Face and face assembly"
|
||||
msgstr "면과 면 조립"
|
||||
|
||||
msgid "Entering Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
|
||||
@@ -1648,8 +1693,8 @@ msgstr "AMF 파일"
|
||||
msgid "3MF files"
|
||||
msgstr "3MF 파일"
|
||||
|
||||
msgid "Gcode 3MF files"
|
||||
msgstr "Gcode 3MF 파일"
|
||||
msgid "G-code 3MF files"
|
||||
msgstr "G-code 3MF 파일"
|
||||
|
||||
msgid "G-code files"
|
||||
msgstr "G-code 파일"
|
||||
@@ -1866,6 +1911,20 @@ msgid ""
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from "
|
||||
"the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your "
|
||||
"local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset "
|
||||
"conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local "
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy with your local preset changes.\n"
|
||||
"Do you want to continue?"
|
||||
@@ -3130,6 +3189,52 @@ msgstr "최대 온도는 다음 값을 초과할 수 없습니다 "
|
||||
msgid "The minmum temperature should not be less than "
|
||||
msgstr "최소 온도는 다음 값보다 낮아서는 안 됩니다 "
|
||||
|
||||
msgid "Type to filter..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All"
|
||||
msgstr "모두"
|
||||
|
||||
msgid "No selected items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All items selected..."
|
||||
msgstr ""
|
||||
|
||||
msgid "No matching items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "모두 선택 해제"
|
||||
|
||||
msgid "Select visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter nonSelected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Simple settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr "고급 설정"
|
||||
|
||||
msgid "Expert settings"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "Developer mode"
|
||||
msgstr "개발자 모드"
|
||||
|
||||
msgid "Launch troubleshoot center"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"All the selected objects are on a locked plate.\n"
|
||||
"Cannot auto-arrange these objects."
|
||||
@@ -3399,6 +3504,9 @@ msgstr "글꼴에 지정된 텍스트의 형태가 없습니다."
|
||||
msgid "There is no valid surface for text projection."
|
||||
msgstr "텍스트 프로젝션에 유효한 표면이 없습니다."
|
||||
|
||||
msgid "An unexpected error occurred"
|
||||
msgstr ""
|
||||
|
||||
msgid "Thermal Preconditioning for first layer optimization"
|
||||
msgstr "첫 번째 레이어 최적화를 위한 열 사전 조건"
|
||||
|
||||
@@ -5269,10 +5377,7 @@ msgstr "편집 영역 증가/감소"
|
||||
msgid "Sequence"
|
||||
msgstr "순서"
|
||||
|
||||
msgid "Object Selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part Selection"
|
||||
msgid "Object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys"
|
||||
@@ -5457,9 +5562,6 @@ msgstr "레이블"
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "칠하기 도구 모음"
|
||||
|
||||
msgid "part selection"
|
||||
msgstr "부품 선택"
|
||||
|
||||
msgid "Explosion Ratio"
|
||||
msgstr "분해 비율"
|
||||
|
||||
@@ -5484,7 +5586,7 @@ msgstr "용량:"
|
||||
msgid "Size:"
|
||||
msgstr "크기:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -5711,12 +5813,12 @@ msgstr "플레이트 출력"
|
||||
msgid "Export G-code file"
|
||||
msgstr "Gcode 파일 내보내기"
|
||||
|
||||
msgid "Send"
|
||||
msgstr "전송"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "플레이트 슬라이스 파일 내보내기"
|
||||
|
||||
msgid "Send"
|
||||
msgstr "전송"
|
||||
|
||||
msgid "Export all sliced file"
|
||||
msgstr "모든 슬라이스 파일 내보내기"
|
||||
|
||||
@@ -6372,8 +6474,8 @@ msgid ""
|
||||
"The .gcode.3mf file contains no G-code data. Please slice it with Orca "
|
||||
"Slicer and export a new .gcode.3mf file."
|
||||
msgstr ""
|
||||
".gcode.3mf 파일에는 Gcode 데이터가 없습니다. OrcaSlicer에서 슬라이스하고 새 ."
|
||||
"gcode.3mf 파일을 내보내십시오."
|
||||
".gcode.3mf 파일에는 Gcode 데이터가 없습니다. OrcaSlicer에서 슬라이스하고 "
|
||||
"새 .gcode.3mf 파일을 내보내십시오."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "File '%s' was lost! Please download it again."
|
||||
@@ -7768,7 +7870,7 @@ msgstr ""
|
||||
msgid "The selected object couldn't be split."
|
||||
msgstr "선택한 객체를 분할할 수 없습니다."
|
||||
|
||||
msgid "Disable Auto-Drop to preserve z positioning?\n"
|
||||
msgid "Disable Auto-Drop to preserve Z positioning?\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Object with floating parts was detected"
|
||||
@@ -8428,9 +8530,6 @@ msgstr ""
|
||||
msgid "Group user filament presets based on selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "All"
|
||||
msgstr "모두"
|
||||
|
||||
msgid "By type"
|
||||
msgstr ""
|
||||
|
||||
@@ -8777,6 +8876,14 @@ msgstr ""
|
||||
msgid "Associate files to OrcaSlicer"
|
||||
msgstr "파일을 OrcaSlicer에 연결"
|
||||
|
||||
msgid ""
|
||||
"File associations for the Microsoft Store version are managed by Windows "
|
||||
"Settings."
|
||||
msgstr ""
|
||||
|
||||
msgid "Open Windows Default Apps Settings"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "Associate 3MF files to OrcaSlicer"
|
||||
msgstr ".3mf 파일을 OrcaSlicer에 연결"
|
||||
@@ -8816,10 +8923,6 @@ msgstr "OrcaSlicer에 웹 링크 연결"
|
||||
msgid "Developer"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "Developer mode"
|
||||
msgstr "개발자 모드"
|
||||
|
||||
msgid "Skip AMS blacklist check"
|
||||
msgstr "AMS 블랙리스트 확인 건너뛰기"
|
||||
|
||||
@@ -9600,6 +9703,9 @@ msgstr ""
|
||||
"파일 업로드 시간이 초과되었습니다. 펌웨어 버전이 이 작업을 지원하는지 확인하"
|
||||
"거나 프린터가 제대로 작동하는지 확인하세요."
|
||||
|
||||
msgid "Sending failed, please try again!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice ok."
|
||||
msgstr "슬라이스 완료."
|
||||
|
||||
@@ -9894,8 +10000,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"툴헤드 없이 시간 경과를 기록할 경우 \"타임랩스 프라임 타워\"를 추가하는 것이 "
|
||||
"좋습니다\n"
|
||||
@@ -10022,6 +10128,9 @@ msgstr "외부 및 내부 브릿지 속도 설정"
|
||||
msgid "Travel speed"
|
||||
msgstr "이동 속도"
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Jerk(XY)"
|
||||
msgstr "저크(XY)"
|
||||
|
||||
@@ -10874,9 +10983,6 @@ msgstr ""
|
||||
"프린터 필라멘트를 기준으로 프로젝트 필라멘트 목록을 순차적으로 교체합니다. 사"
|
||||
"용하지 않는 프린터 필라멘트는 자동으로 목록 끝에 추가됩니다."
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr "고급 설정"
|
||||
|
||||
msgid "Add unused AMS filaments to filaments list."
|
||||
msgstr "미사용 AMS 필라멘트를 필라멘트 목록에 추가하기."
|
||||
|
||||
@@ -11364,12 +11470,23 @@ msgstr "새 네트워크 플러그인(%s)을 사용할 수 있습니다. 설치
|
||||
msgid "New version of Orca Slicer"
|
||||
msgstr "Orca Slicer의 새 버전"
|
||||
|
||||
msgid "Check on Github"
|
||||
msgid "Check on Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check on GitHub"
|
||||
msgstr ""
|
||||
|
||||
msgid "Open Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Skip this Version"
|
||||
msgstr "이 버전 건너뛰기"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"New version available: %s. Please update OrcaSlicer from the Microsoft Store."
|
||||
msgstr ""
|
||||
|
||||
msgid "Confirm and Update Nozzle"
|
||||
msgstr "노즐 확인 및 업데이트"
|
||||
|
||||
@@ -11482,6 +11599,9 @@ msgstr "커팅 모듈"
|
||||
msgid "Auto Fire Extinguishing System"
|
||||
msgstr "자동 화재 진압 시스템"
|
||||
|
||||
msgid "Beta"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update firmware"
|
||||
msgstr "펌웨어 업데이트"
|
||||
|
||||
@@ -12216,6 +12336,15 @@ msgstr "타사 출력 호스트 사용"
|
||||
msgid "Allow controlling BambuLab's printer through 3rd party print hosts."
|
||||
msgstr "타사 프린트 호스트를 통해 뱀부랩의 프린터 제어 허용"
|
||||
|
||||
msgid "Use 3MF instead of G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this if the printer accepts a 3MF file as the print job. When "
|
||||
"enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a "
|
||||
"plain .gcode file."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer Agent"
|
||||
msgstr ""
|
||||
|
||||
@@ -12234,9 +12363,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Orca Slicer은 Gcode 파일을 프린터 호스트에 업로드할 수 있습니다. 이 필드에는 "
|
||||
"프린터 호스트 인스턴스의 호스트 이름, IP 주소 또는 URL이 포함되어야 합니다. "
|
||||
"기본 인증이 활성화된 HAProxy 뒤의 출력 호스트는 https://username:"
|
||||
"password@your-octopi-address/ 형식의 URL에 사용자 이름과 암호를 입력하여 액세"
|
||||
"스할 수 있습니다"
|
||||
"기본 인증이 활성화된 HAProxy 뒤의 출력 호스트는 https://"
|
||||
"username:password@your-octopi-address/ 형식의 URL에 사용자 이름과 암호를 입력"
|
||||
"하여 액세스할 수 있습니다"
|
||||
|
||||
msgid "Device UI"
|
||||
msgstr "장치 UI"
|
||||
@@ -12631,7 +12760,7 @@ msgid "External bridge density"
|
||||
msgstr "외부 브릿지 밀도"
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of external bridge lines. Default is 100%.\n"
|
||||
"Controls the density (spacing) of external bridge lines.\n"
|
||||
"Theoretically, 100% means a solid bridge, but due to the tendency of bridge "
|
||||
"extrusions to sag, 100% may not be sufficient.\n"
|
||||
"\n"
|
||||
@@ -12645,18 +12774,14 @@ msgid ""
|
||||
" - Pros: Can create a string-like first layer. Faster and with better "
|
||||
"cooling because there is more space for air to circulate around the extruded "
|
||||
"bridge.\n"
|
||||
" - Cons: May lead to sagging and poorer surface finish.\n"
|
||||
"\n"
|
||||
"Recommended range: Minimum 10% - Maximum 125%."
|
||||
" - Cons: May lead to sagging and poorer surface finish."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge density"
|
||||
msgstr "내부 브릿지 밀도"
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of internal bridge lines. Default is 100%. "
|
||||
"100% means a solid internal bridge.\n"
|
||||
"\n"
|
||||
"Controls the density (spacing) of internal bridge lines.\n"
|
||||
"Internal bridges act as intermediate support between sparse infill and top "
|
||||
"solid infill and can strongly affect top surface quality.\n"
|
||||
"\n"
|
||||
@@ -12691,11 +12816,9 @@ msgid ""
|
||||
"filament flow ratio, and if set, the object's flow ratio."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Bridge line width is expressed either as an absolute value or as a "
|
||||
"percentage of the active nozzle diameter (percentages are computed from the "
|
||||
"nozzle diameter).\n"
|
||||
"Line width of the Bridge. If expressed as a %, it will be computed over the "
|
||||
"nozzle diameter.\n"
|
||||
"Recommended to use with a higher Bridge density or Bridge flow ratio.\n"
|
||||
"\n"
|
||||
"The maximum value is 100% or the nozzle diameter.\n"
|
||||
@@ -14499,7 +14622,6 @@ msgstr "채우기 패턴에서 지원되는 경우 채우기 패턴에 여러
|
||||
msgid "Z-buckling bias optimization (experimental)"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
|
||||
"to shorten the effective vertical column length and improve Z-axis "
|
||||
@@ -14699,8 +14821,8 @@ msgid "mm/s² or %"
|
||||
msgstr "mm/s² 또는 %"
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
msgstr ""
|
||||
"드문 채우기 가속도. 값이 백분율 (예. 100%)로 표시되면 기본 가속도를 기준으로 "
|
||||
"계산됩니다."
|
||||
@@ -14745,9 +14867,6 @@ msgstr "Klipper의 max_accel_to_decel은 가속도의 %%로 조정됩니다"
|
||||
msgid "Default jerk."
|
||||
msgstr ""
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Marlin Firmware Junction Deviation (replaces the traditional XY Jerk "
|
||||
"setting)."
|
||||
@@ -14829,10 +14948,10 @@ msgstr "팬 최대 속도 레이어"
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"팬 속도는 \"close_fan_the_first_x_layers\" 의 0에서 \"full_fan_speed_layer\" "
|
||||
"의 최고 속도까지 선형적으로 증가합니다. \"full_fan_speed_layer\"가 "
|
||||
@@ -15752,16 +15871,13 @@ msgid ""
|
||||
"A reasonable value is 35. Set to 0 to disable."
|
||||
msgstr ""
|
||||
|
||||
msgid "°"
|
||||
msgstr "°"
|
||||
|
||||
msgid "Don't alternate fill direction"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disable alternating fill direction when using Z contouring."
|
||||
msgstr ""
|
||||
|
||||
msgid "Minimum z height"
|
||||
msgid "Minimum Z height"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -16838,8 +16954,8 @@ msgid "Role base wipe speed"
|
||||
msgstr "역할 기반 노즐 청소 속도"
|
||||
|
||||
msgid ""
|
||||
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||
"g. if a wipe action is executed immediately following an outer wall "
|
||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
||||
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||
"wipe action."
|
||||
msgstr ""
|
||||
@@ -17706,8 +17822,8 @@ msgstr "온도 제어 활성화"
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present.\n"
|
||||
@@ -18640,8 +18756,8 @@ msgid "Debug level"
|
||||
msgstr "디버그 수준"
|
||||
|
||||
msgid ""
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
"trace\n"
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
"5:trace\n"
|
||||
msgstr ""
|
||||
"디버그 로깅 수준을 설정합니다. 0:치명적, 1:오류, 2:경고, 3:정보, 4:디버그, 5:"
|
||||
"추적\n"
|
||||
@@ -20394,8 +20510,8 @@ msgstr ""
|
||||
"다시 작성하시겠습니까?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\".\n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\".\n"
|
||||
"To add preset for more printers, please go to printer selection"
|
||||
msgstr ""
|
||||
|
||||
@@ -20478,9 +20594,6 @@ msgstr "프린터 사전 설정"
|
||||
msgid "Filament Preset Template"
|
||||
msgstr "필라멘트 사전 설정 템플릿"
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "모두 선택 해제"
|
||||
|
||||
msgid "Process Preset Template"
|
||||
msgstr "프로세스 사전 설정 템플릿"
|
||||
|
||||
@@ -20964,9 +21077,21 @@ msgstr ""
|
||||
msgid "Authorizing..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error. Can't get api token for authorization"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not parse server response."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error saving session to file"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error session check"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error during file upload"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Mismatched type of print host: %s"
|
||||
msgstr "일치하지 않는 출력 호스트 유형: %s"
|
||||
@@ -21710,6 +21835,105 @@ msgstr ""
|
||||
msgid "Flashforge local API requires both serial number and access code."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer returned an error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing system_info in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing printer serial number in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error parsing response"
|
||||
msgstr ""
|
||||
|
||||
msgid "ElegooLink not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid access code"
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 device not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to ElegooLink is working correctly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to ElegooLink"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Error code: %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The file has been transferred, but some unknown errors occurred. Please "
|
||||
"check the device page for the file and try to start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open file for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to read file chunk for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is empty or could not be read."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to calculate file checksum."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error code not found"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The printer is busy, Please check the device page for the file and try to "
|
||||
"start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is lost, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is corrupted, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Transmission abnormality, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file does not match the printer, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print timeout"
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to CrealityPrint successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to CrealityPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Connection timed out. Please check if the printer and computer network are "
|
||||
"functioning properly, and confirm that they are on the same network."
|
||||
msgstr ""
|
||||
|
||||
msgid "The Hostname/IP/URL could not be parsed, please check it and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File/data transfer interrupted. Please check the printer and network, then "
|
||||
"try it again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr "제공된 상태가 올바르지 않습니다."
|
||||
|
||||
@@ -21763,6 +21987,12 @@ msgstr "브림 귀"
|
||||
msgid "Please select single object."
|
||||
msgstr "단일 객체를 선택하세요."
|
||||
|
||||
msgid "Entering Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom Out"
|
||||
msgstr "축소"
|
||||
|
||||
@@ -21772,6 +22002,9 @@ msgstr "확대"
|
||||
msgid "Load skipping objects information failed. Please try again."
|
||||
msgstr "건너뛰는 개체 정보를 로드하지 못했습니다. 다시 시도해 주세요."
|
||||
|
||||
msgid "Failed to create the temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "/%d Selected"
|
||||
msgstr "/%d 선택됨"
|
||||
@@ -21918,6 +22151,100 @@ msgstr "삼각형 패싯 수"
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr "계산 중, 잠시만 기다려주세요..."
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bundle folder does not exist."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open folder."
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete selected bundle from folder and all presets loaded from it?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to remove bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Remove Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe bundle?"
|
||||
msgstr ""
|
||||
|
||||
msgid "UnsubscribeBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to unsubscribe bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "ExportPresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Save preset bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - boost::filesystem::canonical did not "
|
||||
"return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Performing desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed because the application directory was "
|
||||
"not found."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - could not create Gcodeviewer desktop "
|
||||
"file. OrcaSlicer desktop file was probably created successfully."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - "
|
||||
"boost::filesystem::canonical did not return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed because the application "
|
||||
"directory was not found."
|
||||
msgstr ""
|
||||
|
||||
msgid "Desktop Integration"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Desktop Integration sets this binary to be searchable by the system.\n"
|
||||
"\n"
|
||||
"Press \"Perform\" to proceed."
|
||||
msgstr ""
|
||||
|
||||
msgid "The download has failed"
|
||||
msgstr ""
|
||||
|
||||
#. TRN %1% = file path
|
||||
#, boost-format
|
||||
msgid "Can't create file at %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Archive preview"
|
||||
msgstr ""
|
||||
|
||||
msgid "Open File"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The filament may not be compatible with the current machine settings. "
|
||||
"Generic filament presets will be used."
|
||||
@@ -22319,6 +22646,21 @@ msgstr ""
|
||||
"ABS와 같이 뒤틀림이 발생하기 쉬운 소재를 출력할 때, 히트베드 온도를 적절하게 "
|
||||
"높이면 뒤틀림 가능성을 줄일 수 있다는 사실을 알고 계셨나요?"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "It is recommended to assemble objects first,\n"
|
||||
#~ "because the objects is restriced to bed \n"
|
||||
#~ "and only parts can be lifted."
|
||||
#~ msgstr ""
|
||||
#~ "먼저 객체를 조립하는 것이 좋습니다.\n"
|
||||
#~ "객체는 베드에 고정되어 있으며\n"
|
||||
#~ "파트만 들어올릴 수 있습니다."
|
||||
|
||||
#~ msgid "part selection"
|
||||
#~ msgstr "부품 선택"
|
||||
|
||||
#~ msgid "°"
|
||||
#~ msgstr "°"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The Wipe option is not available when using the Firmware Retraction "
|
||||
#~ "mode.\n"
|
||||
@@ -22556,9 +22898,6 @@ msgstr ""
|
||||
#~ msgid "Mouse wheel:"
|
||||
#~ msgstr "마우스 휠:"
|
||||
|
||||
#~ msgid "Object selection"
|
||||
#~ msgstr "객체 선택"
|
||||
|
||||
#~ msgid "Pass 1"
|
||||
#~ msgstr "1차 테스트"
|
||||
|
||||
@@ -23785,8 +24124,8 @@ msgstr ""
|
||||
#~ msgstr "mm/mm"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
#~ "\".\n"
|
||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
#~ "selected\".\n"
|
||||
#~ "To add preset for more printers, Please go to printer selection"
|
||||
#~ msgstr ""
|
||||
#~ "사전 설정의 이름을 \"선택한 공급업체 유형 직렬 @프린터\"로 변경합니다.\n"
|
||||
@@ -24813,8 +25152,8 @@ msgstr ""
|
||||
#~ "로 지정되지 않은 경우 필라멘트의 최소 출력 속도가 활성화됩니다."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
#~ "\".\n"
|
||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
#~ "selected\".\n"
|
||||
#~ "To add preset for more prinetrs, Please go to printer selection"
|
||||
#~ msgstr ""
|
||||
#~ "사전 설정의 이름을 \"선택한 공급업체 유형 직렬 @프린터\"로 변경합니다.\n"
|
||||
|
||||
@@ -48,9 +48,12 @@ src/slic3r/GUI/DeviceTab/uiAmsHumidityPopup.cpp
|
||||
src/slic3r/GUI/DeviceTab/uiDeviceUpdateVersion.h
|
||||
src/slic3r/GUI/DeviceTab/uiDeviceUpdateVersion.cpp
|
||||
src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp
|
||||
src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.hpp
|
||||
src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp
|
||||
src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp
|
||||
src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.hpp
|
||||
src/slic3r/GUI/Gizmos/GLGizmoFuzzySkin.cpp
|
||||
src/slic3r/GUI/Gizmos/GLGizmoFuzzySkin.hpp
|
||||
src/slic3r/GUI/Gizmos/GLGizmoMove.cpp
|
||||
src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp
|
||||
src/slic3r/GUI/Gizmos/GLGizmoScale.cpp
|
||||
@@ -58,6 +61,7 @@ src/slic3r/GUI/Gizmos/GLGizmosManager.cpp
|
||||
src/slic3r/GUI/Gizmos/GLGizmoPainterBase.cpp
|
||||
src/slic3r/GUI/Gizmos/GizmoObjectManipulation.cpp
|
||||
src/slic3r/GUI/Gizmos/GLGizmoCut.cpp
|
||||
src/slic3r/GUI/Gizmos/GLGizmoCut.hpp
|
||||
src/slic3r/GUI/Gizmos/GLGizmoSimplify.cpp
|
||||
src/slic3r/GUI/Gizmos/GLGizmoFaceDetector.cpp
|
||||
src/slic3r/GUI/Gizmos/GLGizmoSeam.cpp
|
||||
@@ -67,7 +71,9 @@ src/slic3r/GUI/Gizmos/GLGizmoText.hpp
|
||||
src/slic3r/GUI/Gizmos/GLGizmoEmboss.cpp
|
||||
src/slic3r/GUI/Gizmos/GLGizmoSVG.cpp
|
||||
src/slic3r/GUI/Gizmos/GLGizmoMeasure.cpp
|
||||
src/slic3r/GUI/Gizmos/GLGizmoMeasure.hpp
|
||||
src/slic3r/GUI/Gizmos/GLGizmoAssembly.cpp
|
||||
src/slic3r/GUI/Gizmos/GLGizmoAssembly.hpp
|
||||
src/slic3r/GUI/GUI.cpp
|
||||
src/slic3r/GUI/GUI_App.cpp
|
||||
src/slic3r/GUI/GUI_AuxiliaryList.cpp
|
||||
@@ -89,6 +95,8 @@ src/slic3r/GUI/Widgets/AMSControl.cpp
|
||||
src/slic3r/GUI/Widgets/FanControl.cpp
|
||||
src/slic3r/GUI/Widgets/FilamentLoad.cpp
|
||||
src/slic3r/GUI/Widgets/TempInput.cpp
|
||||
src/slic3r/GUI/Widgets/CheckList.cpp
|
||||
src/slic3r/GUI/Widgets/SwitchButton.cpp
|
||||
src/slic3r/GUI/ImGuiWrapper.cpp
|
||||
src/slic3r/GUI/Jobs/ArrangeJob.cpp
|
||||
src/slic3r/GUI/Jobs/OrientJob.cpp
|
||||
@@ -98,6 +106,7 @@ src/slic3r/GUI/Jobs/BindJob.cpp
|
||||
src/slic3r/GUI/Jobs/PrintJob.cpp
|
||||
src/slic3r/GUI/Jobs/SendJob.cpp
|
||||
src/slic3r/GUI/Jobs/EmbossJob.cpp
|
||||
src/slic3r/GUI/Jobs/PlaterWorker.hpp
|
||||
src/slic3r/GUI/ThermalPreconditioningDialog.cpp
|
||||
src/slic3r/GUI/ThermalPreconditioningDialog.hpp
|
||||
src/slic3r/GUI/Jobs/SLAImportJob.cpp
|
||||
@@ -237,8 +246,12 @@ src/slic3r/GUI/FilamentMapPanel.cpp
|
||||
src/slic3r/Utils/Obico.cpp
|
||||
src/slic3r/Utils/SimplyPrint.cpp
|
||||
src/slic3r/Utils/Flashforge.cpp
|
||||
src/slic3r/Utils/ElegooLink.cpp
|
||||
src/slic3r/Utils/CrealityPrint.cpp
|
||||
src/slic3r/Utils/PrintHost.cpp
|
||||
src/slic3r/GUI/Jobs/OAuthJob.cpp
|
||||
src/slic3r/GUI/Gizmos/GLGizmoBrimEars.cpp
|
||||
src/slic3r/GUI/Gizmos/GLGizmoBrimEars.hpp
|
||||
src/slic3r/GUI/PartSkipDialog.cpp
|
||||
src/slic3r/GUI/PartSkipDialog.hpp
|
||||
src/slic3r/GUI/SkipPartCanvas.cpp
|
||||
@@ -250,4 +263,12 @@ src/slic3r/GUI/NetworkPluginDialog.cpp
|
||||
src/slic3r/GUI/RammingChart.cpp
|
||||
src/slic3r/GUI/StepMeshDialog.cpp
|
||||
src/slic3r/GUI/FilamentPickerDialog.hpp
|
||||
src/slic3r/GUI/PresetBundleDialog.cpp
|
||||
src/slic3r/GUI/ExportPresetBundleDialog.cpp
|
||||
src/slic3r/GUI/DesktopIntegrationDialog.cpp
|
||||
src/slic3r/GUI/Downloader.cpp
|
||||
src/slic3r/GUI/DownloaderFileGet.cpp
|
||||
src/slic3r/GUI/FileArchiveDialog.cpp
|
||||
src/slic3r/GUI/PrinterCloudAuthDialog.cpp
|
||||
src/slic3r/GUI/PrinterWebViewHandler.cpp
|
||||
src/libslic3r/PresetBundle.cpp
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-06-08 00:18+0800\n"
|
||||
"POT-Creation-Date: 2026-06-17 18:00+0800\n"
|
||||
"PO-Revision-Date: 2025-10-25 23:01+0300\n"
|
||||
"Last-Translator: Gintaras Kučinskas <sharanchius@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
@@ -16,8 +16,8 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && (n%100<11 || n%100>19) ? 0 : n"
|
||||
"%10>=2 && n%10<=9 && (n%100<11 || n%100>19) ? 1 : 2);\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && (n%100<11 || n%100>19) ? 0 : "
|
||||
"n%10>=2 && n%10<=9 && (n%100<11 || n%100>19) ? 1 : 2);\n"
|
||||
"X-Generator: Poedit 3.6\n"
|
||||
|
||||
msgid "right"
|
||||
@@ -197,6 +197,15 @@ msgstr "Atlikta"
|
||||
msgid "Support Generated"
|
||||
msgstr "Atramos sugeneruotos"
|
||||
|
||||
msgid "Entering Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on supports editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gizmo-Place on Face"
|
||||
msgstr "Gizmo-Patalpinti ant paviršiaus"
|
||||
|
||||
@@ -284,6 +293,15 @@ msgstr "Piešta naudojant: Gija %1%"
|
||||
msgid "To:"
|
||||
msgstr "To:"
|
||||
|
||||
msgid "Entering color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color painting editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin"
|
||||
msgstr "Piešti grublėtą paviršių"
|
||||
|
||||
@@ -304,6 +322,15 @@ msgstr ""
|
||||
msgid "Enable painted fuzzy skin for this object"
|
||||
msgstr "Enable painted fuzzy skin for this object"
|
||||
|
||||
msgid "Entering Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Move"
|
||||
msgstr "Perkelti"
|
||||
|
||||
@@ -695,6 +722,15 @@ msgstr "Pjovimas pagal liniją"
|
||||
msgid "Delete connector"
|
||||
msgstr "Ištrinti jungtį"
|
||||
|
||||
msgid "Entering Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Cut gizmo editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Mesh name"
|
||||
msgstr "Figūros pavadinimas"
|
||||
|
||||
@@ -1564,6 +1600,12 @@ msgstr "Lygiagretus atstumas:"
|
||||
msgid "Flip by Face 2"
|
||||
msgstr "Apversti pagal paviršių 2"
|
||||
|
||||
msgid "Entering Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Assemble"
|
||||
msgstr "Surinkti"
|
||||
|
||||
@@ -1589,16 +1631,19 @@ msgid "Warning: please select Point's or Circle's feature."
|
||||
msgstr "Įspėjimas: pasirinkite Taško arba Apskritimo funkciją."
|
||||
|
||||
msgid ""
|
||||
"It is recommended to assemble the objects first,\n"
|
||||
"because the objects is restriced to bed \n"
|
||||
"It is recommended to assemble objects first,\n"
|
||||
"because they are restricted to the bed \n"
|
||||
"and only parts can be lifted."
|
||||
msgstr ""
|
||||
"It is recommended to assemble the objects first,\n"
|
||||
"because the objects is restriced to bed \n"
|
||||
"and only parts can be lifted."
|
||||
|
||||
msgid "Face and face assembly"
|
||||
msgstr "Face and face assembly"
|
||||
msgstr ""
|
||||
|
||||
msgid "Entering Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
@@ -1661,8 +1706,8 @@ msgstr "AMF files"
|
||||
msgid "3MF files"
|
||||
msgstr "3MF files"
|
||||
|
||||
msgid "Gcode 3MF files"
|
||||
msgstr "Gcode 3MF files"
|
||||
msgid "G-code 3MF files"
|
||||
msgstr "G-code 3MF files"
|
||||
|
||||
msgid "G-code files"
|
||||
msgstr "G-code files"
|
||||
@@ -1886,6 +1931,20 @@ msgid ""
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from "
|
||||
"the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your "
|
||||
"local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset "
|
||||
"conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local "
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy with your local preset changes.\n"
|
||||
"Do you want to continue?"
|
||||
@@ -3184,6 +3243,52 @@ msgstr "The maximum temperature cannot exceed "
|
||||
msgid "The minmum temperature should not be less than "
|
||||
msgstr "The minmum temperature should not be less than "
|
||||
|
||||
msgid "Type to filter..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All"
|
||||
msgstr "Visi"
|
||||
|
||||
msgid "No selected items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All items selected..."
|
||||
msgstr ""
|
||||
|
||||
msgid "No matching items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "Atšaukti visus"
|
||||
|
||||
msgid "Select visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter nonSelected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Simple settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr "Advanced settings"
|
||||
|
||||
msgid "Expert settings"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "Developer mode"
|
||||
msgstr "Kūrėjo režimas"
|
||||
|
||||
msgid "Launch troubleshoot center"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"All the selected objects are on a locked plate.\n"
|
||||
"Cannot auto-arrange these objects."
|
||||
@@ -3464,6 +3569,9 @@ msgstr "Font doesn't have any shape for given text."
|
||||
msgid "There is no valid surface for text projection."
|
||||
msgstr "There is no valid surface for text projection."
|
||||
|
||||
msgid "An unexpected error occurred"
|
||||
msgstr ""
|
||||
|
||||
msgid "Thermal Preconditioning for first layer optimization"
|
||||
msgstr "Thermal Preconditioning for first layer optimization"
|
||||
|
||||
@@ -5388,10 +5496,7 @@ msgstr "Padidinti / sumažinti redagavimo sritį"
|
||||
msgid "Sequence"
|
||||
msgstr "Seka"
|
||||
|
||||
msgid "Object Selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part Selection"
|
||||
msgid "Object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys"
|
||||
@@ -5580,9 +5685,6 @@ msgstr "Labels"
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "Piešimo įrankių juosta"
|
||||
|
||||
msgid "part selection"
|
||||
msgstr "detalės pasirinkimas"
|
||||
|
||||
msgid "Explosion Ratio"
|
||||
msgstr "Plėtimosi santykis"
|
||||
|
||||
@@ -5607,7 +5709,7 @@ msgstr "Tūris:"
|
||||
msgid "Size:"
|
||||
msgstr "Dydis:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -5836,12 +5938,12 @@ msgstr "Spausdinti plokštę"
|
||||
msgid "Export G-code file"
|
||||
msgstr "Eksportuoti G-kodo failą"
|
||||
|
||||
msgid "Send"
|
||||
msgstr "Siųsti"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "Eksportuoti sluoksniuotos plokštės failą"
|
||||
|
||||
msgid "Send"
|
||||
msgstr "Siųsti"
|
||||
|
||||
msgid "Export all sliced file"
|
||||
msgstr "Eksportuoti visko sluoksniuoto failą"
|
||||
|
||||
@@ -7957,7 +8059,7 @@ msgstr ""
|
||||
msgid "The selected object couldn't be split."
|
||||
msgstr "Pasirinkto objekto negalima suskaidyti."
|
||||
|
||||
msgid "Disable Auto-Drop to preserve z positioning?\n"
|
||||
msgid "Disable Auto-Drop to preserve Z positioning?\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Object with floating parts was detected"
|
||||
@@ -8641,9 +8743,6 @@ msgstr "Group user filament presets"
|
||||
msgid "Group user filament presets based on selection"
|
||||
msgstr "Group user filament presets based on selection"
|
||||
|
||||
msgid "All"
|
||||
msgstr "Visi"
|
||||
|
||||
msgid "By type"
|
||||
msgstr "By type"
|
||||
|
||||
@@ -9018,6 +9117,14 @@ msgstr "Download Network Plug-in"
|
||||
msgid "Associate files to OrcaSlicer"
|
||||
msgstr "Susieti failus su Orca Slicer"
|
||||
|
||||
msgid ""
|
||||
"File associations for the Microsoft Store version are managed by Windows "
|
||||
"Settings."
|
||||
msgstr ""
|
||||
|
||||
msgid "Open Windows Default Apps Settings"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "Associate 3MF files to OrcaSlicer"
|
||||
msgstr "Susieti .3mf failus su Orca Slicer"
|
||||
@@ -9060,10 +9167,6 @@ msgstr "Susieti interneto nuorodas su Orca Slicer"
|
||||
msgid "Developer"
|
||||
msgstr "Developer"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Developer mode"
|
||||
msgstr "Kūrėjo režimas"
|
||||
|
||||
msgid "Skip AMS blacklist check"
|
||||
msgstr "Praleisti AMS draudžiamo sąrašo tikrinimą"
|
||||
|
||||
@@ -9877,6 +9980,9 @@ msgstr ""
|
||||
"File upload timed out. Please check if the firmware version supports this "
|
||||
"operation or verify if the printer is functioning properly."
|
||||
|
||||
msgid "Sending failed, please try again!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice ok."
|
||||
msgstr "Sluoksniavimas baigtas."
|
||||
|
||||
@@ -10200,8 +10306,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Įrašant pakadrinį vaizdo įrašą be spausdinimo galvutės judesių, "
|
||||
"rekomenduojama naudoti „Pakadrinio valymo bokštą“.\n"
|
||||
@@ -10338,6 +10444,9 @@ msgstr "Vidinių ir išorinių tiltų greitis"
|
||||
msgid "Travel speed"
|
||||
msgstr "Judėjimo greitis"
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr "Sujungimo nuokrypis"
|
||||
|
||||
msgid "Jerk(XY)"
|
||||
msgstr "Pagreitis (XY)"
|
||||
|
||||
@@ -11222,9 +11331,6 @@ msgstr ""
|
||||
"And unused printer filaments will be automatically added to the end of the "
|
||||
"list."
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr "Advanced settings"
|
||||
|
||||
msgid "Add unused AMS filaments to filaments list."
|
||||
msgstr "Add unused AMS filaments to filaments list."
|
||||
|
||||
@@ -11727,12 +11833,23 @@ msgstr "Yra naujas tinklo papildinys(%s), ar norite jį įdiegti?"
|
||||
msgid "New version of Orca Slicer"
|
||||
msgstr "Nauja \"Orca Slicer\" versija"
|
||||
|
||||
msgid "Check on Github"
|
||||
msgid "Check on Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check on GitHub"
|
||||
msgstr ""
|
||||
|
||||
msgid "Open Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Skip this Version"
|
||||
msgstr "Praleisti šią versiją"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"New version available: %s. Please update OrcaSlicer from the Microsoft Store."
|
||||
msgstr ""
|
||||
|
||||
msgid "Confirm and Update Nozzle"
|
||||
msgstr "Patvirtinti ir atnaujinti purkštuką"
|
||||
|
||||
@@ -11846,6 +11963,9 @@ msgstr "Pjovimo modulis"
|
||||
msgid "Auto Fire Extinguishing System"
|
||||
msgstr "Auto Fire Extinguishing System"
|
||||
|
||||
msgid "Beta"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update firmware"
|
||||
msgstr "Atnaujinti programinę įrangą"
|
||||
|
||||
@@ -11884,8 +12004,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Įterptinės programinės įrangos versija yra nenormali. Prieš spausdinant "
|
||||
"reikia pataisyti ir atnaujinti. Ar norite atnaujinti dabar? Taip pat galite "
|
||||
"atnaujinti vėliau spausdintuve arba atnaujinti kitą kartą paleisdami \"Orca"
|
||||
"\"."
|
||||
"atnaujinti vėliau spausdintuve arba atnaujinti kitą kartą paleisdami "
|
||||
"\"Orca\"."
|
||||
|
||||
msgid "Extension Board"
|
||||
msgstr "Išplėtimo plokštė"
|
||||
@@ -12255,8 +12375,8 @@ msgid ""
|
||||
"The prime tower is currently only supported for the Marlin, RepRap/Sprinter, "
|
||||
"RepRapFirmware and Repetier G-code flavors."
|
||||
msgstr ""
|
||||
"Pagrindinis bokštas šiuo metu palaikomas tik \"Marlin\", \"RepRap/Sprinter"
|
||||
"\", \"RepRapFirmware\" ir \"Repetier\" G-kodo tipuose."
|
||||
"Pagrindinis bokštas šiuo metu palaikomas tik \"Marlin\", \"RepRap/"
|
||||
"Sprinter\", \"RepRapFirmware\" ir \"Repetier\" G-kodo tipuose."
|
||||
|
||||
msgid "The prime tower is not supported in \"By object\" print."
|
||||
msgstr "Pirminis bokštas nepalaikomas spausdinant \"Pagal objektą\"."
|
||||
@@ -12640,6 +12760,15 @@ msgstr ""
|
||||
"Leidimas valdyti \"BambuLab\" spausdintuvą per trečiosios šalies spausdinimo "
|
||||
"prieglobą."
|
||||
|
||||
msgid "Use 3MF instead of G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this if the printer accepts a 3MF file as the print job. When "
|
||||
"enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a "
|
||||
"plain .gcode file."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer Agent"
|
||||
msgstr "Printer Agent"
|
||||
|
||||
@@ -13079,7 +13208,7 @@ msgid "External bridge density"
|
||||
msgstr "Išorinio tilto tankis"
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of external bridge lines. Default is 100%.\n"
|
||||
"Controls the density (spacing) of external bridge lines.\n"
|
||||
"Theoretically, 100% means a solid bridge, but due to the tendency of bridge "
|
||||
"extrusions to sag, 100% may not be sufficient.\n"
|
||||
"\n"
|
||||
@@ -13093,18 +13222,14 @@ msgid ""
|
||||
" - Pros: Can create a string-like first layer. Faster and with better "
|
||||
"cooling because there is more space for air to circulate around the extruded "
|
||||
"bridge.\n"
|
||||
" - Cons: May lead to sagging and poorer surface finish.\n"
|
||||
"\n"
|
||||
"Recommended range: Minimum 10% - Maximum 125%."
|
||||
" - Cons: May lead to sagging and poorer surface finish."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge density"
|
||||
msgstr "Vidinių tiltų tankis"
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of internal bridge lines. Default is 100%. "
|
||||
"100% means a solid internal bridge.\n"
|
||||
"\n"
|
||||
"Controls the density (spacing) of internal bridge lines.\n"
|
||||
"Internal bridges act as intermediate support between sparse infill and top "
|
||||
"solid infill and can strongly affect top surface quality.\n"
|
||||
"\n"
|
||||
@@ -13139,11 +13264,9 @@ msgid ""
|
||||
"filament flow ratio, and if set, the object's flow ratio."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Bridge line width is expressed either as an absolute value or as a "
|
||||
"percentage of the active nozzle diameter (percentages are computed from the "
|
||||
"nozzle diameter).\n"
|
||||
"Line width of the Bridge. If expressed as a %, it will be computed over the "
|
||||
"nozzle diameter.\n"
|
||||
"Recommended to use with a higher Bridge density or Bridge flow ratio.\n"
|
||||
"\n"
|
||||
"The maximum value is 100% or the nozzle diameter.\n"
|
||||
@@ -15096,7 +15219,6 @@ msgstr ""
|
||||
msgid "Z-buckling bias optimization (experimental)"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
|
||||
"to shorten the effective vertical column length and improve Z-axis "
|
||||
@@ -15304,8 +15426,8 @@ msgid "mm/s² or %"
|
||||
msgstr "mm/s² arba %"
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
msgstr ""
|
||||
"Retų užpildų pagreitis. Jei reikšmė išreikšta procentais (pvz., 100 %), ji "
|
||||
"bus apskaičiuota pagal numatytąjį pagreitį."
|
||||
@@ -15350,9 +15472,6 @@ msgstr "\"Klipper\" max_accel_to_decel bus pakoreguotas pagal šį pagreičio %%
|
||||
msgid "Default jerk."
|
||||
msgstr "Numatytasis trūkčiojimas."
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr "Sujungimo nuokrypis"
|
||||
|
||||
msgid ""
|
||||
"Marlin Firmware Junction Deviation (replaces the traditional XY Jerk "
|
||||
"setting)."
|
||||
@@ -15440,10 +15559,10 @@ msgstr "Visas ventiliatoriaus greitis sluoksnyje"
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"Ventiliatoriaus greitis bus didinamas tiesiškai nuo nulio sluoksnyje "
|
||||
"\"close_fan_the_first_x_layers\" iki maksimalaus sluoksnyje "
|
||||
@@ -16462,16 +16581,13 @@ msgid ""
|
||||
"A reasonable value is 35. Set to 0 to disable."
|
||||
msgstr ""
|
||||
|
||||
msgid "°"
|
||||
msgstr "°"
|
||||
|
||||
msgid "Don't alternate fill direction"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disable alternating fill direction when using Z contouring."
|
||||
msgstr ""
|
||||
|
||||
msgid "Minimum z height"
|
||||
msgid "Minimum Z height"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -17604,8 +17720,8 @@ msgid "Role base wipe speed"
|
||||
msgstr "Vaidmens pagrindo nuvalymo greitis"
|
||||
|
||||
msgid ""
|
||||
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||
"g. if a wipe action is executed immediately following an outer wall "
|
||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
||||
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||
"wipe action."
|
||||
msgstr ""
|
||||
@@ -18545,8 +18661,8 @@ msgstr "Suaktyvinti temperatūros reguliavimą"
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present.\n"
|
||||
@@ -19554,8 +19670,8 @@ msgid "Debug level"
|
||||
msgstr "Derinimo lygis"
|
||||
|
||||
msgid ""
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
"trace\n"
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
"5:trace\n"
|
||||
msgstr ""
|
||||
"Nustato derinimo žurnalizavimo lygį. 0: mirtinas, 1: klaida, 2: įspėjimas, "
|
||||
"3: informacija, 4: derinimas, 5: sekimas\n"
|
||||
@@ -20104,13 +20220,13 @@ msgstr "Pateikto failo nepavyko perskaityti, nes jis tuščias"
|
||||
msgid ""
|
||||
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
|
||||
msgstr ""
|
||||
"Nežinomas failo formatas. Įvesties failo plėtinys turi būti .stl, .obj, ."
|
||||
"amf(.xml)."
|
||||
"Nežinomas failo formatas. Įvesties failo plėtinys turi "
|
||||
"būti .stl, .obj, .amf(.xml)."
|
||||
|
||||
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
|
||||
msgstr ""
|
||||
"Nežinomas failo formatas. Įvesties failo plėtinys turi būti .3mf arba .zip."
|
||||
"amf."
|
||||
"Nežinomas failo formatas. Įvesties failo plėtinys turi būti .3mf "
|
||||
"arba .zip.amf."
|
||||
|
||||
msgid "load_obj: failed to parse"
|
||||
msgstr "load_obj: nepavyko apdoroti"
|
||||
@@ -21406,8 +21522,8 @@ msgstr ""
|
||||
"Ar norite jį perrašyti?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\".\n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\".\n"
|
||||
"To add preset for more printers, please go to printer selection"
|
||||
msgstr ""
|
||||
"Būtų galima pervadinti iš anksto nustatytus nustatymus į \"Pardavėjo tipo "
|
||||
@@ -21493,9 +21609,6 @@ msgstr "Spausdintuvo nustatymai"
|
||||
msgid "Filament Preset Template"
|
||||
msgstr "Gijos nustatymų šablonas"
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "Atšaukti visus"
|
||||
|
||||
msgid "Process Preset Template"
|
||||
msgstr "Proceso nustatymų šablonas"
|
||||
|
||||
@@ -22012,9 +22125,21 @@ msgstr ""
|
||||
msgid "Authorizing..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error. Can't get api token for authorization"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not parse server response."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error saving session to file"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error session check"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error during file upload"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Mismatched type of print host: %s"
|
||||
msgstr "Neatitinka tinklinio spausdintuvo tipas: %s"
|
||||
@@ -22272,9 +22397,9 @@ msgid ""
|
||||
"quality but much longer print time."
|
||||
msgstr ""
|
||||
"Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jo sluoksnio aukštis "
|
||||
"mažesnis, greitis ir pagreitis mažesni, o retas užpildymo raštas yra \"Gyroid"
|
||||
"\". Taigi, dėl jo mažiau matomų sluoksnio linijų ir daug geresnė spausdinimo "
|
||||
"kokybė, tačiau daug ilgesnis spausdinimo laikas."
|
||||
"mažesnis, greitis ir pagreitis mažesni, o retas užpildymo raštas yra "
|
||||
"\"Gyroid\". Taigi, dėl jo mažiau matomų sluoksnio linijų ir daug geresnė "
|
||||
"spausdinimo kokybė, tačiau daug ilgesnis spausdinimo laikas."
|
||||
|
||||
msgid ""
|
||||
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
|
||||
@@ -22816,6 +22941,105 @@ msgstr "Nepavyko prisijungti prie „Flashforge“ per nuoseklųjį prievadą"
|
||||
msgid "Flashforge local API requires both serial number and access code."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer returned an error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing system_info in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing printer serial number in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error parsing response"
|
||||
msgstr ""
|
||||
|
||||
msgid "ElegooLink not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid access code"
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 device not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to ElegooLink is working correctly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to ElegooLink"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Error code: %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The file has been transferred, but some unknown errors occurred. Please "
|
||||
"check the device page for the file and try to start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open file for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to read file chunk for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is empty or could not be read."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to calculate file checksum."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error code not found"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The printer is busy, Please check the device page for the file and try to "
|
||||
"start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is lost, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is corrupted, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Transmission abnormality, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file does not match the printer, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print timeout"
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to CrealityPrint successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to CrealityPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Connection timed out. Please check if the printer and computer network are "
|
||||
"functioning properly, and confirm that they are on the same network."
|
||||
msgstr ""
|
||||
|
||||
msgid "The Hostname/IP/URL could not be parsed, please check it and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File/data transfer interrupted. Please check the printer and network, then "
|
||||
"try it again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr "Pateikta būsena neteisinga."
|
||||
|
||||
@@ -22868,6 +23092,12 @@ msgstr "Krašto \"ausys\""
|
||||
msgid "Please select single object."
|
||||
msgstr "Pasirinkite vieną objektą."
|
||||
|
||||
msgid "Entering Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom Out"
|
||||
msgstr "Zoom Out"
|
||||
|
||||
@@ -22877,6 +23107,9 @@ msgstr "Zoom In"
|
||||
msgid "Load skipping objects information failed. Please try again."
|
||||
msgstr "Load skipping objects information failed. Please try again."
|
||||
|
||||
msgid "Failed to create the temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "/%d Selected"
|
||||
msgstr "/%d Selected"
|
||||
@@ -23028,6 +23261,100 @@ msgstr "Number of triangular facets"
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr "Calculating, please wait..."
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bundle folder does not exist."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open folder."
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete selected bundle from folder and all presets loaded from it?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to remove bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Remove Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe bundle?"
|
||||
msgstr ""
|
||||
|
||||
msgid "UnsubscribeBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to unsubscribe bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "ExportPresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Save preset bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - boost::filesystem::canonical did not "
|
||||
"return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Performing desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed because the application directory was "
|
||||
"not found."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - could not create Gcodeviewer desktop "
|
||||
"file. OrcaSlicer desktop file was probably created successfully."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - "
|
||||
"boost::filesystem::canonical did not return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed because the application "
|
||||
"directory was not found."
|
||||
msgstr ""
|
||||
|
||||
msgid "Desktop Integration"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Desktop Integration sets this binary to be searchable by the system.\n"
|
||||
"\n"
|
||||
"Press \"Perform\" to proceed."
|
||||
msgstr ""
|
||||
|
||||
msgid "The download has failed"
|
||||
msgstr ""
|
||||
|
||||
#. TRN %1% = file path
|
||||
#, boost-format
|
||||
msgid "Can't create file at %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Archive preview"
|
||||
msgstr ""
|
||||
|
||||
msgid "Open File"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The filament may not be compatible with the current machine settings. "
|
||||
"Generic filament presets will be used."
|
||||
@@ -23439,6 +23766,12 @@ msgstr ""
|
||||
"pavyzdžiui, ABS, tinkamai padidinus kaitinimo pagrindo temperatūrą galima "
|
||||
"sumažinti deformavimosi tikimybę."
|
||||
|
||||
#~ msgid "part selection"
|
||||
#~ msgstr "detalės pasirinkimas"
|
||||
|
||||
#~ msgid "°"
|
||||
#~ msgstr "°"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The Wipe option is not available when using the Firmware Retraction "
|
||||
#~ "mode.\n"
|
||||
@@ -23789,9 +24122,6 @@ msgstr ""
|
||||
#~ msgid "Mouse wheel:"
|
||||
#~ msgstr "Pelės ratukas:"
|
||||
|
||||
#~ msgid "Object selection"
|
||||
#~ msgstr "objekto pasirinkimas"
|
||||
|
||||
#~ msgid "Pass 1"
|
||||
#~ msgstr "1 fazė"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-06-08 00:18+0800\n"
|
||||
"POT-Creation-Date: 2026-06-17 18:00+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -191,6 +191,15 @@ msgstr "Klaar"
|
||||
msgid "Support Generated"
|
||||
msgstr "Ondersteuning gegenereerd"
|
||||
|
||||
msgid "Entering Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on supports editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gizmo-Place on Face"
|
||||
msgstr "Plaats op vlak"
|
||||
|
||||
@@ -279,6 +288,15 @@ msgstr "Geschilderd met filament %1%"
|
||||
msgid "To:"
|
||||
msgstr "Naar:"
|
||||
|
||||
msgid "Entering color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color painting editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin"
|
||||
msgstr "Paint-on fuzzy skin"
|
||||
|
||||
@@ -299,6 +317,15 @@ msgstr ""
|
||||
msgid "Enable painted fuzzy skin for this object"
|
||||
msgstr "Enable painted fuzzy skin for this object"
|
||||
|
||||
msgid "Entering Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Move"
|
||||
msgstr "Verplaats"
|
||||
|
||||
@@ -688,6 +715,15 @@ msgstr "Cut by line"
|
||||
msgid "Delete connector"
|
||||
msgstr "Delete connector"
|
||||
|
||||
msgid "Entering Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Cut gizmo editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Mesh name"
|
||||
msgstr "Meshnaam"
|
||||
|
||||
@@ -1557,6 +1593,12 @@ msgstr "Parallel distance:"
|
||||
msgid "Flip by Face 2"
|
||||
msgstr "Flip by Face 2"
|
||||
|
||||
msgid "Entering Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Assemble"
|
||||
msgstr "Monteren"
|
||||
|
||||
@@ -1582,16 +1624,19 @@ msgid "Warning: please select Point's or Circle's feature."
|
||||
msgstr "Warning: please select Point's or Circle's feature."
|
||||
|
||||
msgid ""
|
||||
"It is recommended to assemble the objects first,\n"
|
||||
"because the objects is restriced to bed \n"
|
||||
"It is recommended to assemble objects first,\n"
|
||||
"because they are restricted to the bed \n"
|
||||
"and only parts can be lifted."
|
||||
msgstr ""
|
||||
"It is recommended to assemble the objects first,\n"
|
||||
"because the objects is restriced to bed \n"
|
||||
"and only parts can be lifted."
|
||||
|
||||
msgid "Face and face assembly"
|
||||
msgstr "Face and face assembly"
|
||||
msgstr ""
|
||||
|
||||
msgid "Entering Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
@@ -1654,8 +1699,8 @@ msgstr "AMF files"
|
||||
msgid "3MF files"
|
||||
msgstr "3MF files"
|
||||
|
||||
msgid "Gcode 3MF files"
|
||||
msgstr "Gcode 3MF files"
|
||||
msgid "G-code 3MF files"
|
||||
msgstr "G-code 3MF files"
|
||||
|
||||
msgid "G-code files"
|
||||
msgstr "G-code files"
|
||||
@@ -1874,6 +1919,20 @@ msgid ""
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from "
|
||||
"the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your "
|
||||
"local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset "
|
||||
"conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local "
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy with your local preset changes.\n"
|
||||
"Do you want to continue?"
|
||||
@@ -3172,6 +3231,52 @@ msgstr "The maximum temperature cannot exceed "
|
||||
msgid "The minmum temperature should not be less than "
|
||||
msgstr "The minmum temperature should not be less than "
|
||||
|
||||
msgid "Type to filter..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All"
|
||||
msgstr "Alles"
|
||||
|
||||
msgid "No selected items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All items selected..."
|
||||
msgstr ""
|
||||
|
||||
msgid "No matching items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "Alles deselecteren"
|
||||
|
||||
msgid "Select visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter nonSelected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Simple settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr "Advanced settings"
|
||||
|
||||
msgid "Expert settings"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "Developer mode"
|
||||
msgstr "Ontwikkelmodus"
|
||||
|
||||
msgid "Launch troubleshoot center"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"All the selected objects are on a locked plate.\n"
|
||||
"Cannot auto-arrange these objects."
|
||||
@@ -3448,6 +3553,9 @@ msgstr "Font doesn't have any shape for given text."
|
||||
msgid "There is no valid surface for text projection."
|
||||
msgstr "There is no valid surface for text projection."
|
||||
|
||||
msgid "An unexpected error occurred"
|
||||
msgstr ""
|
||||
|
||||
msgid "Thermal Preconditioning for first layer optimization"
|
||||
msgstr "Thermal Preconditioning for first layer optimization"
|
||||
|
||||
@@ -5375,10 +5483,7 @@ msgstr "Bewerkingsgebied vergroten/verkleinen"
|
||||
msgid "Sequence"
|
||||
msgstr "Reeks"
|
||||
|
||||
msgid "Object Selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part Selection"
|
||||
msgid "Object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys"
|
||||
@@ -5567,9 +5672,6 @@ msgstr "Labels"
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "Kleur instellingen"
|
||||
|
||||
msgid "part selection"
|
||||
msgstr "onderdeel selectie"
|
||||
|
||||
msgid "Explosion Ratio"
|
||||
msgstr "Vergrotings ratio"
|
||||
|
||||
@@ -5594,7 +5696,7 @@ msgstr "Volume:"
|
||||
msgid "Size:"
|
||||
msgstr "Maat:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -5823,12 +5925,12 @@ msgstr "Printplaat"
|
||||
msgid "Export G-code file"
|
||||
msgstr "G-codebestand exporteren"
|
||||
|
||||
msgid "Send"
|
||||
msgstr "Versturen"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "Exporteer plate sliced bestand"
|
||||
|
||||
msgid "Send"
|
||||
msgstr "Versturen"
|
||||
|
||||
msgid "Export all sliced file"
|
||||
msgstr "Alle sliced bestanden exporteren"
|
||||
|
||||
@@ -7959,7 +8061,7 @@ msgstr ""
|
||||
msgid "The selected object couldn't be split."
|
||||
msgstr "Het geselecteerde object kan niet opgesplitst worden."
|
||||
|
||||
msgid "Disable Auto-Drop to preserve z positioning?\n"
|
||||
msgid "Disable Auto-Drop to preserve Z positioning?\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Object with floating parts was detected"
|
||||
@@ -8648,9 +8750,6 @@ msgstr "Group user filament presets"
|
||||
msgid "Group user filament presets based on selection"
|
||||
msgstr "Group user filament presets based on selection"
|
||||
|
||||
msgid "All"
|
||||
msgstr "Alles"
|
||||
|
||||
msgid "By type"
|
||||
msgstr "By type"
|
||||
|
||||
@@ -9025,6 +9124,14 @@ msgstr "Download Network Plug-in"
|
||||
msgid "Associate files to OrcaSlicer"
|
||||
msgstr "Koppel bestanden aan OrcaSlicer"
|
||||
|
||||
msgid ""
|
||||
"File associations for the Microsoft Store version are managed by Windows "
|
||||
"Settings."
|
||||
msgstr ""
|
||||
|
||||
msgid "Open Windows Default Apps Settings"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "Associate 3MF files to OrcaSlicer"
|
||||
msgstr "Koppel .3mf-bestanden aan OrcaSlicer"
|
||||
@@ -9066,10 +9173,6 @@ msgstr "Koppel weblinks aan OrcaSlicer"
|
||||
msgid "Developer"
|
||||
msgstr "Ontwikkelaar"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Developer mode"
|
||||
msgstr "Ontwikkelmodus"
|
||||
|
||||
msgid "Skip AMS blacklist check"
|
||||
msgstr "AMS-zwartelijstcontrole overslaan"
|
||||
|
||||
@@ -9884,6 +9987,9 @@ msgstr ""
|
||||
"File upload timed out. Please check if the firmware version supports this "
|
||||
"operation or verify if the printer is functioning properly."
|
||||
|
||||
msgid "Sending failed, please try again!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice ok."
|
||||
msgstr "Slice gelukt."
|
||||
|
||||
@@ -10206,8 +10312,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Bij het opnemen van timelapse zonder toolhead is het aan te raden om een "
|
||||
"„Timelapse Wipe Tower” toe te voegen \n"
|
||||
@@ -10338,6 +10444,9 @@ msgstr "Snelheid instellen voor externe en interne bruggen"
|
||||
msgid "Travel speed"
|
||||
msgstr "Verplaatsing-sneleheid"
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr "Junction Deviation"
|
||||
|
||||
msgid "Jerk(XY)"
|
||||
msgstr "Jerk(XY)"
|
||||
|
||||
@@ -11220,9 +11329,6 @@ msgstr ""
|
||||
"And unused printer filaments will be automatically added to the end of the "
|
||||
"list."
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr "Advanced settings"
|
||||
|
||||
msgid "Add unused AMS filaments to filaments list."
|
||||
msgstr "Add unused AMS filaments to filaments list."
|
||||
|
||||
@@ -11729,12 +11835,23 @@ msgstr ""
|
||||
msgid "New version of Orca Slicer"
|
||||
msgstr "Nieuwe versie van Orca Slicer"
|
||||
|
||||
msgid "Check on Github"
|
||||
msgid "Check on Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check on GitHub"
|
||||
msgstr ""
|
||||
|
||||
msgid "Open Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Skip this Version"
|
||||
msgstr "Deze versie overslaan"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"New version available: %s. Please update OrcaSlicer from the Microsoft Store."
|
||||
msgstr ""
|
||||
|
||||
msgid "Confirm and Update Nozzle"
|
||||
msgstr "Bevestig en update het mondstuk"
|
||||
|
||||
@@ -11848,6 +11965,9 @@ msgstr "Cutting Module"
|
||||
msgid "Auto Fire Extinguishing System"
|
||||
msgstr "Auto Fire Extinguishing System"
|
||||
|
||||
msgid "Beta"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update firmware"
|
||||
msgstr "Firmware bijwerken"
|
||||
|
||||
@@ -12647,6 +12767,15 @@ msgstr "Gebruik een printhost van derden"
|
||||
msgid "Allow controlling BambuLab's printer through 3rd party print hosts."
|
||||
msgstr "Toestaan om een BambuLab printer te besturen via printhosts van derden"
|
||||
|
||||
msgid "Use 3MF instead of G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this if the printer accepts a 3MF file as the print job. When "
|
||||
"enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a "
|
||||
"plain .gcode file."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer Agent"
|
||||
msgstr "Printer Agent"
|
||||
|
||||
@@ -13083,7 +13212,7 @@ msgid "External bridge density"
|
||||
msgstr "External bridge density"
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of external bridge lines. Default is 100%.\n"
|
||||
"Controls the density (spacing) of external bridge lines.\n"
|
||||
"Theoretically, 100% means a solid bridge, but due to the tendency of bridge "
|
||||
"extrusions to sag, 100% may not be sufficient.\n"
|
||||
"\n"
|
||||
@@ -13097,18 +13226,14 @@ msgid ""
|
||||
" - Pros: Can create a string-like first layer. Faster and with better "
|
||||
"cooling because there is more space for air to circulate around the extruded "
|
||||
"bridge.\n"
|
||||
" - Cons: May lead to sagging and poorer surface finish.\n"
|
||||
"\n"
|
||||
"Recommended range: Minimum 10% - Maximum 125%."
|
||||
" - Cons: May lead to sagging and poorer surface finish."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge density"
|
||||
msgstr "Internal bridge density"
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of internal bridge lines. Default is 100%. "
|
||||
"100% means a solid internal bridge.\n"
|
||||
"\n"
|
||||
"Controls the density (spacing) of internal bridge lines.\n"
|
||||
"Internal bridges act as intermediate support between sparse infill and top "
|
||||
"solid infill and can strongly affect top surface quality.\n"
|
||||
"\n"
|
||||
@@ -13143,11 +13268,9 @@ msgid ""
|
||||
"filament flow ratio, and if set, the object's flow ratio."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Bridge line width is expressed either as an absolute value or as a "
|
||||
"percentage of the active nozzle diameter (percentages are computed from the "
|
||||
"nozzle diameter).\n"
|
||||
"Line width of the Bridge. If expressed as a %, it will be computed over the "
|
||||
"nozzle diameter.\n"
|
||||
"Recommended to use with a higher Bridge density or Bridge flow ratio.\n"
|
||||
"\n"
|
||||
"The maximum value is 100% or the nozzle diameter.\n"
|
||||
@@ -15094,7 +15217,6 @@ msgstr ""
|
||||
msgid "Z-buckling bias optimization (experimental)"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
|
||||
"to shorten the effective vertical column length and improve Z-axis "
|
||||
@@ -15304,8 +15426,8 @@ msgid "mm/s² or %"
|
||||
msgstr "mm/s² of %"
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
msgstr ""
|
||||
"Versnelling van de schaarse invulling. Als de waarde wordt uitgedrukt als "
|
||||
"een percentage (bijvoorbeeld 100%), wordt deze berekend op basis van de "
|
||||
@@ -15353,9 +15475,6 @@ msgstr ""
|
||||
msgid "Default jerk."
|
||||
msgstr "Default jerk."
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr "Junction Deviation"
|
||||
|
||||
msgid ""
|
||||
"Marlin Firmware Junction Deviation (replaces the traditional XY Jerk "
|
||||
"setting)."
|
||||
@@ -15445,16 +15564,16 @@ msgstr "Volledige snelheid op laag"
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
|
||||
msgid "layer"
|
||||
msgstr "laag"
|
||||
@@ -16458,16 +16577,13 @@ msgid ""
|
||||
"A reasonable value is 35. Set to 0 to disable."
|
||||
msgstr ""
|
||||
|
||||
msgid "°"
|
||||
msgstr "°"
|
||||
|
||||
msgid "Don't alternate fill direction"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disable alternating fill direction when using Z contouring."
|
||||
msgstr ""
|
||||
|
||||
msgid "Minimum z height"
|
||||
msgid "Minimum Z height"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -17606,13 +17722,13 @@ msgid "Role base wipe speed"
|
||||
msgstr "Role base wipe speed"
|
||||
|
||||
msgid ""
|
||||
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||
"g. if a wipe action is executed immediately following an outer wall "
|
||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
||||
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||
"wipe action."
|
||||
msgstr ""
|
||||
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||
"g. if a wipe action is executed immediately following an outer wall "
|
||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
||||
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||
"wipe action."
|
||||
|
||||
@@ -18556,8 +18672,8 @@ msgstr "Temperatuurregeling activeren"
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present.\n"
|
||||
@@ -18567,8 +18683,8 @@ msgid ""
|
||||
"heater is installed."
|
||||
msgstr ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present.\n"
|
||||
@@ -19131,10 +19247,11 @@ msgid ""
|
||||
"Wipe tower is only compatible with relative mode. It is recommended on most "
|
||||
"printers. Default is checked."
|
||||
msgstr ""
|
||||
"Relatieve extrusie wordt aanbevolen bij gebruik van de optie \"label_objects"
|
||||
"\". Sommige extruders werken beter als deze optie niet is aangevinkt "
|
||||
"(absolute extrusiemodus). Wipe tower is alleen compatibel met relatieve "
|
||||
"modus. Het wordt aanbevolen op de meeste printers. Standaard is aangevinkt"
|
||||
"Relatieve extrusie wordt aanbevolen bij gebruik van de optie "
|
||||
"\"label_objects\". Sommige extruders werken beter als deze optie niet is "
|
||||
"aangevinkt (absolute extrusiemodus). Wipe tower is alleen compatibel met "
|
||||
"relatieve modus. Het wordt aanbevolen op de meeste printers. Standaard is "
|
||||
"aangevinkt"
|
||||
|
||||
msgid ""
|
||||
"Classic wall generator produces walls with constant extrusion width and for "
|
||||
@@ -19562,11 +19679,11 @@ msgid "Debug level"
|
||||
msgstr "Debuggen level"
|
||||
|
||||
msgid ""
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
"trace\n"
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
"5:trace\n"
|
||||
msgstr ""
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
"trace\n"
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
"5:trace\n"
|
||||
|
||||
msgid "Log file"
|
||||
msgstr ""
|
||||
@@ -21403,12 +21520,12 @@ msgstr ""
|
||||
"Wil je het herschrijven?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\".\n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\".\n"
|
||||
"To add preset for more printers, please go to printer selection"
|
||||
msgstr ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\".\n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\".\n"
|
||||
"To add preset for more printers, please go to printer selection"
|
||||
|
||||
msgid "Create Printer/Nozzle"
|
||||
@@ -21490,9 +21607,6 @@ msgstr "Vooraf ingestelde printer"
|
||||
msgid "Filament Preset Template"
|
||||
msgstr "Filament vooraf ingestelde sjabloon"
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "Alles deselecteren"
|
||||
|
||||
msgid "Process Preset Template"
|
||||
msgstr "Vooraf ingesteld proces sjabloon"
|
||||
|
||||
@@ -21999,9 +22113,21 @@ msgstr ""
|
||||
msgid "Authorizing..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error. Can't get api token for authorization"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not parse server response."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error saving session to file"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error session check"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error during file upload"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Mismatched type of print host: %s"
|
||||
msgstr "Verkeerd type afdrukhost: %s"
|
||||
@@ -22792,6 +22918,105 @@ msgstr "Could not connect to Flashforge via serial"
|
||||
msgid "Flashforge local API requires both serial number and access code."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer returned an error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing system_info in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing printer serial number in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error parsing response"
|
||||
msgstr ""
|
||||
|
||||
msgid "ElegooLink not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid access code"
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 device not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to ElegooLink is working correctly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to ElegooLink"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Error code: %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The file has been transferred, but some unknown errors occurred. Please "
|
||||
"check the device page for the file and try to start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open file for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to read file chunk for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is empty or could not be read."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to calculate file checksum."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error code not found"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The printer is busy, Please check the device page for the file and try to "
|
||||
"start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is lost, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is corrupted, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Transmission abnormality, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file does not match the printer, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print timeout"
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to CrealityPrint successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to CrealityPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Connection timed out. Please check if the printer and computer network are "
|
||||
"functioning properly, and confirm that they are on the same network."
|
||||
msgstr ""
|
||||
|
||||
msgid "The Hostname/IP/URL could not be parsed, please check it and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File/data transfer interrupted. Please check the printer and network, then "
|
||||
"try it again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr "The provided state is not correct."
|
||||
|
||||
@@ -22844,6 +23069,12 @@ msgstr "Rand Oren"
|
||||
msgid "Please select single object."
|
||||
msgstr "Selecteer een enkel object."
|
||||
|
||||
msgid "Entering Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom Out"
|
||||
msgstr "Uitzoomen"
|
||||
|
||||
@@ -22853,6 +23084,9 @@ msgstr "Inzoomen"
|
||||
msgid "Load skipping objects information failed. Please try again."
|
||||
msgstr "Load skipping objects information failed. Please try again."
|
||||
|
||||
msgid "Failed to create the temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "/%d Selected"
|
||||
msgstr "/%d geselecteerd"
|
||||
@@ -23004,6 +23238,100 @@ msgstr "Number of triangular facets"
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr "Calculating, please wait..."
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bundle folder does not exist."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open folder."
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete selected bundle from folder and all presets loaded from it?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to remove bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Remove Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe bundle?"
|
||||
msgstr ""
|
||||
|
||||
msgid "UnsubscribeBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to unsubscribe bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "ExportPresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Save preset bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - boost::filesystem::canonical did not "
|
||||
"return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Performing desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed because the application directory was "
|
||||
"not found."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - could not create Gcodeviewer desktop "
|
||||
"file. OrcaSlicer desktop file was probably created successfully."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - "
|
||||
"boost::filesystem::canonical did not return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed because the application "
|
||||
"directory was not found."
|
||||
msgstr ""
|
||||
|
||||
msgid "Desktop Integration"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Desktop Integration sets this binary to be searchable by the system.\n"
|
||||
"\n"
|
||||
"Press \"Perform\" to proceed."
|
||||
msgstr ""
|
||||
|
||||
msgid "The download has failed"
|
||||
msgstr ""
|
||||
|
||||
#. TRN %1% = file path
|
||||
#, boost-format
|
||||
msgid "Can't create file at %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Archive preview"
|
||||
msgstr ""
|
||||
|
||||
msgid "Open File"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The filament may not be compatible with the current machine settings. "
|
||||
"Generic filament presets will be used."
|
||||
@@ -23414,6 +23742,12 @@ msgstr ""
|
||||
"kromtrekken, zoals ABS, een juiste verhoging van de temperatuur van het "
|
||||
"warmtebed de kans op kromtrekken kan verkleinen?"
|
||||
|
||||
#~ msgid "part selection"
|
||||
#~ msgstr "onderdeel selectie"
|
||||
|
||||
#~ msgid "°"
|
||||
#~ msgstr "°"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The Wipe option is not available when using the Firmware Retraction "
|
||||
#~ "mode.\n"
|
||||
@@ -23623,9 +23957,9 @@ msgstr ""
|
||||
#~ "Filament to print support base and raft. \"Default\" means no specific "
|
||||
#~ "filament for support and current filament is used."
|
||||
#~ msgstr ""
|
||||
#~ "Filament voor het printen van ondersteuning (support) en raft. \"Standaard"
|
||||
#~ "\" betekent geen specifiek filament voor ondersteuning (support) en het "
|
||||
#~ "huidige filament wordt gebruikt."
|
||||
#~ "Filament voor het printen van ondersteuning (support) en raft. "
|
||||
#~ "\"Standaard\" betekent geen specifiek filament voor ondersteuning "
|
||||
#~ "(support) en het huidige filament wordt gebruikt."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Filament to print support interface. \"Default\" means no specific "
|
||||
@@ -23762,9 +24096,6 @@ msgstr ""
|
||||
#~ msgid "Mouse wheel:"
|
||||
#~ msgstr "Muiswiel:"
|
||||
|
||||
#~ msgid "Object selection"
|
||||
#~ msgstr "Objectselectie"
|
||||
|
||||
#~ msgid "Pass 1"
|
||||
#~ msgstr "Fase 1"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OrcaSlicer 2.3.0-rc\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-06-08 00:18+0800\n"
|
||||
"POT-Creation-Date: 2026-06-17 18:00+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Krzysztof Morga <<tlumaczeniebs@gmail.com>>\n"
|
||||
"Language-Team: \n"
|
||||
@@ -199,6 +199,15 @@ msgstr "Gotowe"
|
||||
msgid "Support Generated"
|
||||
msgstr "Wygenerowana podpora"
|
||||
|
||||
msgid "Entering Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on supports editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gizmo-Place on Face"
|
||||
msgstr "Uchwyt-Połóż na Płaszczyźnie"
|
||||
|
||||
@@ -287,6 +296,15 @@ msgstr "Pomalowane za pomocą: Filament %1%"
|
||||
msgid "To:"
|
||||
msgstr "Do:"
|
||||
|
||||
msgid "Entering color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color painting editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin"
|
||||
msgstr "Malowanie Fuzzy Skin"
|
||||
|
||||
@@ -306,6 +324,15 @@ msgstr ""
|
||||
msgid "Enable painted fuzzy skin for this object"
|
||||
msgstr ""
|
||||
|
||||
msgid "Entering Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Move"
|
||||
msgstr "Przesuń"
|
||||
|
||||
@@ -699,6 +726,15 @@ msgstr "Cięcie linią"
|
||||
msgid "Delete connector"
|
||||
msgstr "Usuń łącznik"
|
||||
|
||||
msgid "Entering Cut gizmo"
|
||||
msgstr "Otwieranie uchwytu przecinania"
|
||||
|
||||
msgid "Leaving Cut gizmo"
|
||||
msgstr "Zamykanie uchwytu wytłaczania"
|
||||
|
||||
msgid "Cut gizmo editing"
|
||||
msgstr "Edytowanie uchwytów przecinania"
|
||||
|
||||
msgid "Mesh name"
|
||||
msgstr "Nazwa siatki"
|
||||
|
||||
@@ -1571,6 +1607,12 @@ msgstr "Odległość między równoległymi krawędziami:"
|
||||
msgid "Flip by Face 2"
|
||||
msgstr "Obróć względem 2 powierzchni"
|
||||
|
||||
msgid "Entering Measure gizmo"
|
||||
msgstr "Otwieranie uchwytu pomiaru"
|
||||
|
||||
msgid "Leaving Measure gizmo"
|
||||
msgstr "Zamykanie uchwytu wytłaczania"
|
||||
|
||||
msgid "Assemble"
|
||||
msgstr "Złożenie"
|
||||
|
||||
@@ -1598,17 +1640,20 @@ msgid "Warning: please select Point's or Circle's feature."
|
||||
msgstr "Uwaga: wybierz funkcję Punkt lub Okrąg."
|
||||
|
||||
msgid ""
|
||||
"It is recommended to assemble the objects first,\n"
|
||||
"because the objects is restriced to bed \n"
|
||||
"It is recommended to assemble objects first,\n"
|
||||
"because they are restricted to the bed \n"
|
||||
"and only parts can be lifted."
|
||||
msgstr ""
|
||||
"Należy najpierw zmontować obiekty, \n"
|
||||
"ponieważ obiekt jest związany z powierzchnią stołu, \n"
|
||||
"a tylko części mogą być unoszone."
|
||||
|
||||
msgid "Face and face assembly"
|
||||
msgstr "Montaż - powierzchnia do powierzchni"
|
||||
|
||||
msgid "Entering Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
|
||||
@@ -1670,7 +1715,7 @@ msgstr ""
|
||||
msgid "3MF files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gcode 3MF files"
|
||||
msgid "G-code 3MF files"
|
||||
msgstr ""
|
||||
|
||||
msgid "G-code files"
|
||||
@@ -1892,6 +1937,20 @@ msgid ""
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from "
|
||||
"the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your "
|
||||
"local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset "
|
||||
"conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local "
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy with your local preset changes.\n"
|
||||
"Do you want to continue?"
|
||||
@@ -3168,6 +3227,52 @@ msgstr "Maksymalna temperatura nie może przekroczyć "
|
||||
msgid "The minmum temperature should not be less than "
|
||||
msgstr "Minimalna temperatura nie powinna być mniejsza niż "
|
||||
|
||||
msgid "Type to filter..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All"
|
||||
msgstr "Wszystkie"
|
||||
|
||||
msgid "No selected items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All items selected..."
|
||||
msgstr ""
|
||||
|
||||
msgid "No matching items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "Odznacz wszystko"
|
||||
|
||||
msgid "Select visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter nonSelected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Simple settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr "Ustawienia zaawansowane"
|
||||
|
||||
msgid "Expert settings"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "Developer mode"
|
||||
msgstr "Tryb deweloperski"
|
||||
|
||||
msgid "Launch troubleshoot center"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"All the selected objects are on a locked plate.\n"
|
||||
"Cannot auto-arrange these objects."
|
||||
@@ -3433,6 +3538,9 @@ msgstr "Czcionka nie ma żadnego kształtu dla danego tekstu."
|
||||
msgid "There is no valid surface for text projection."
|
||||
msgstr "Nie ma prawidłowej powierzchni do rzutowania tekstu."
|
||||
|
||||
msgid "An unexpected error occurred"
|
||||
msgstr "Wystąpił nieoczekiwany błąd"
|
||||
|
||||
msgid "Thermal Preconditioning for first layer optimization"
|
||||
msgstr "Wyrównywanie termiczne w celu optymalizacji pierwszej warstwy"
|
||||
|
||||
@@ -5351,10 +5459,7 @@ msgstr "Zwiększ/zmniejsz obszar edycji"
|
||||
msgid "Sequence"
|
||||
msgstr "Kolejność"
|
||||
|
||||
msgid "Object Selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part Selection"
|
||||
msgid "Object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys"
|
||||
@@ -5544,9 +5649,6 @@ msgstr ""
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "Pasek narzędzi do malowania"
|
||||
|
||||
msgid "part selection"
|
||||
msgstr "wybór części"
|
||||
|
||||
msgid "Explosion Ratio"
|
||||
msgstr "Współczynnik wybuchu"
|
||||
|
||||
@@ -5571,7 +5673,7 @@ msgstr "Objętość:"
|
||||
msgid "Size:"
|
||||
msgstr "Rozmiar:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -5794,12 +5896,12 @@ msgstr "Drukuj aktualną płytę"
|
||||
msgid "Export G-code file"
|
||||
msgstr "Eksportuj plik G-code"
|
||||
|
||||
msgid "Send"
|
||||
msgstr "Wyślij"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "Eksportuj plik pociętej płyty"
|
||||
|
||||
msgid "Send"
|
||||
msgstr "Wyślij"
|
||||
|
||||
msgid "Export all sliced file"
|
||||
msgstr "Eksportuj wszystkie pocięte płyty"
|
||||
|
||||
@@ -7920,7 +8022,7 @@ msgstr ""
|
||||
msgid "The selected object couldn't be split."
|
||||
msgstr "Nie można podzielić wybranego obiektu."
|
||||
|
||||
msgid "Disable Auto-Drop to preserve z positioning?\n"
|
||||
msgid "Disable Auto-Drop to preserve Z positioning?\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Object with floating parts was detected"
|
||||
@@ -8599,9 +8701,6 @@ msgstr ""
|
||||
msgid "Group user filament presets based on selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "All"
|
||||
msgstr "Wszystkie"
|
||||
|
||||
msgid "By type"
|
||||
msgstr ""
|
||||
|
||||
@@ -8951,6 +9050,14 @@ msgstr ""
|
||||
msgid "Associate files to OrcaSlicer"
|
||||
msgstr "Skojarzenia plików z OrcaSlicer"
|
||||
|
||||
msgid ""
|
||||
"File associations for the Microsoft Store version are managed by Windows "
|
||||
"Settings."
|
||||
msgstr ""
|
||||
|
||||
msgid "Open Windows Default Apps Settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Associate 3MF files to OrcaSlicer"
|
||||
msgstr "Skojarzenie plików 3MF"
|
||||
|
||||
@@ -8982,10 +9089,6 @@ msgstr "Powiązania odnośników z OrcaSlicer"
|
||||
msgid "Developer"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "Developer mode"
|
||||
msgstr "Tryb deweloperski"
|
||||
|
||||
msgid "Skip AMS blacklist check"
|
||||
msgstr "Pomijanie sprawdzania czarnej listy AMS"
|
||||
|
||||
@@ -9559,8 +9662,8 @@ msgid ""
|
||||
"Tips: If you changed your nozzle of your printer lately, Please go to "
|
||||
"'Device -> Printer parts' to change your nozzle setting."
|
||||
msgstr ""
|
||||
"Wskazówka: Jeśli ostatnio zmieniłeś dyszę , przejdź do opcji \"Urządzenie -"
|
||||
">; Części drukarki\", aby zmienić ustawienia dyszy."
|
||||
"Wskazówka: Jeśli ostatnio zmieniłeś dyszę , przejdź do opcji \"Urządzenie "
|
||||
"->; Części drukarki\", aby zmienić ustawienia dyszy."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
@@ -9802,6 +9905,9 @@ msgstr ""
|
||||
"Przekroczono limit czasu wgrywania pliku. Sprawdź czy Twoja wersja "
|
||||
"oprogramowania obsługuje tą operację oraz czy drukarka działa poprawnie."
|
||||
|
||||
msgid "Sending failed, please try again!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice ok."
|
||||
msgstr "Zakończono cięcie modelu."
|
||||
|
||||
@@ -10103,8 +10209,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Podczas nagrywania timelapse bez głowicy drukującej zaleca się dodanie "
|
||||
"„Timelapse - Wieża czyszcząca” \n"
|
||||
@@ -10236,6 +10342,9 @@ msgstr "Ustaw szybkość dla zewnętrznych i wewnętrznych mostów"
|
||||
msgid "Travel speed"
|
||||
msgstr "Szybkość przemieszczania"
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Jerk(XY)"
|
||||
msgstr "Jerk (XY)"
|
||||
|
||||
@@ -11119,9 +11228,6 @@ msgstr ""
|
||||
"drukarki. Nieużywane filamenty drukarki zostaną automatycznie dodane na "
|
||||
"koniec listy."
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr "Ustawienia zaawansowane"
|
||||
|
||||
msgid "Add unused AMS filaments to filaments list."
|
||||
msgstr "Dodaj nieużywane filamenty AMS do listy filamentów."
|
||||
|
||||
@@ -11619,12 +11725,23 @@ msgstr "Dostępna jest nowa wtyczka sieciowa (%s). Czy zainstalować ją?"
|
||||
msgid "New version of Orca Slicer"
|
||||
msgstr "Nowa wersja Orca Slicer"
|
||||
|
||||
msgid "Check on Github"
|
||||
msgid "Check on Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check on GitHub"
|
||||
msgstr ""
|
||||
|
||||
msgid "Open Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Skip this Version"
|
||||
msgstr "Pomiń tę wersję"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"New version available: %s. Please update OrcaSlicer from the Microsoft Store."
|
||||
msgstr ""
|
||||
|
||||
msgid "Confirm and Update Nozzle"
|
||||
msgstr "Potwierdź i zaktualizuj dyszę"
|
||||
|
||||
@@ -11738,6 +11855,9 @@ msgstr "Moduł tnący"
|
||||
msgid "Auto Fire Extinguishing System"
|
||||
msgstr "Automatyczny system gaśniczy"
|
||||
|
||||
msgid "Beta"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update firmware"
|
||||
msgstr "Aktualizuj oprogramowanie"
|
||||
|
||||
@@ -12520,6 +12640,15 @@ msgid "Allow controlling BambuLab's printer through 3rd party print hosts."
|
||||
msgstr ""
|
||||
"Zezwól na kontrolowanie drukarki BambuLab przez serwery druku innych firm"
|
||||
|
||||
msgid "Use 3MF instead of G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this if the printer accepts a 3MF file as the print job. When "
|
||||
"enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a "
|
||||
"plain .gcode file."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer Agent"
|
||||
msgstr ""
|
||||
|
||||
@@ -12539,8 +12668,8 @@ msgstr ""
|
||||
"Orca Slicer może przesyłać pliki G-code na hosta drukarki. To pole powinno "
|
||||
"zawierać nazwę hosta, adres IP lub URL hosta drukarki. Host drukowania za "
|
||||
"HAProxy z włączoną autoryzacją podstawową można uzyskać, wpisując nazwę "
|
||||
"użytkownika i hasło w URL w następującym formacie: https://username:"
|
||||
"password@your-octopi-address/"
|
||||
"użytkownika i hasło w URL w następującym formacie: https://"
|
||||
"username:password@your-octopi-address/"
|
||||
|
||||
msgid "Device UI"
|
||||
msgstr "UI urządzenia"
|
||||
@@ -12959,7 +13088,7 @@ msgid "External bridge density"
|
||||
msgstr "Gęstość zewnętrznych mostów"
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of external bridge lines. Default is 100%.\n"
|
||||
"Controls the density (spacing) of external bridge lines.\n"
|
||||
"Theoretically, 100% means a solid bridge, but due to the tendency of bridge "
|
||||
"extrusions to sag, 100% may not be sufficient.\n"
|
||||
"\n"
|
||||
@@ -12973,18 +13102,14 @@ msgid ""
|
||||
" - Pros: Can create a string-like first layer. Faster and with better "
|
||||
"cooling because there is more space for air to circulate around the extruded "
|
||||
"bridge.\n"
|
||||
" - Cons: May lead to sagging and poorer surface finish.\n"
|
||||
"\n"
|
||||
"Recommended range: Minimum 10% - Maximum 125%."
|
||||
" - Cons: May lead to sagging and poorer surface finish."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge density"
|
||||
msgstr "Gęstość wewnętrznych mostów"
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of internal bridge lines. Default is 100%. "
|
||||
"100% means a solid internal bridge.\n"
|
||||
"\n"
|
||||
"Controls the density (spacing) of internal bridge lines.\n"
|
||||
"Internal bridges act as intermediate support between sparse infill and top "
|
||||
"solid infill and can strongly affect top surface quality.\n"
|
||||
"\n"
|
||||
@@ -13019,11 +13144,9 @@ msgid ""
|
||||
"filament flow ratio, and if set, the object's flow ratio."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Bridge line width is expressed either as an absolute value or as a "
|
||||
"percentage of the active nozzle diameter (percentages are computed from the "
|
||||
"nozzle diameter).\n"
|
||||
"Line width of the Bridge. If expressed as a %, it will be computed over the "
|
||||
"nozzle diameter.\n"
|
||||
"Recommended to use with a higher Bridge density or Bridge flow ratio.\n"
|
||||
"\n"
|
||||
"The maximum value is 100% or the nozzle diameter.\n"
|
||||
@@ -14938,7 +15061,6 @@ msgstr ""
|
||||
msgid "Z-buckling bias optimization (experimental)"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
|
||||
"to shorten the effective vertical column length and improve Z-axis "
|
||||
@@ -15149,8 +15271,8 @@ msgid "mm/s² or %"
|
||||
msgstr "mm/s² lub %"
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
msgstr ""
|
||||
"Przyspieszenie na rzadkim wypełnieniu. Jeśli wartość jest wyrażona w "
|
||||
"procentach (np. 100%), będzie obliczana na podstawie domyślnego "
|
||||
@@ -15201,9 +15323,6 @@ msgstr ""
|
||||
msgid "Default jerk."
|
||||
msgstr ""
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Marlin Firmware Junction Deviation (replaces the traditional XY Jerk "
|
||||
"setting)."
|
||||
@@ -15288,10 +15407,10 @@ msgstr "Pełna prędkość wentylatora na warstwie"
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"Prędkość wentylatora będzie stopniowo zwiększana liniowo od zera na warstwie "
|
||||
"„close_fan_the_first_x_layers” do maksymalnej na warstwie "
|
||||
@@ -16243,16 +16362,13 @@ msgid ""
|
||||
"A reasonable value is 35. Set to 0 to disable."
|
||||
msgstr ""
|
||||
|
||||
msgid "°"
|
||||
msgstr "°"
|
||||
|
||||
msgid "Don't alternate fill direction"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disable alternating fill direction when using Z contouring."
|
||||
msgstr ""
|
||||
|
||||
msgid "Minimum z height"
|
||||
msgid "Minimum Z height"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -17387,8 +17503,8 @@ msgid "Role base wipe speed"
|
||||
msgstr "Prędkość wycierania dyszy w oparciu o rolę ekstruzji"
|
||||
|
||||
msgid ""
|
||||
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||
"g. if a wipe action is executed immediately following an outer wall "
|
||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
||||
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||
"wipe action."
|
||||
msgstr ""
|
||||
@@ -18307,8 +18423,8 @@ msgstr "Aktywuj kontrolę temperatury"
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present.\n"
|
||||
@@ -19293,11 +19409,11 @@ msgid "Debug level"
|
||||
msgstr "Poziom debugowania"
|
||||
|
||||
msgid ""
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
"trace\n"
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
"5:trace\n"
|
||||
msgstr ""
|
||||
"Ustawia poziom logowania debugowania. 0:fatal, 1:error, 2:warning, 3:info, 4:"
|
||||
"debug, 5:trace\n"
|
||||
"Ustawia poziom logowania debugowania. 0:fatal, 1:error, 2:warning, 3:info, "
|
||||
"4:debug, 5:trace\n"
|
||||
|
||||
msgid "Log file"
|
||||
msgstr ""
|
||||
@@ -19844,13 +19960,13 @@ msgstr "Dostarczony plik nie mógł być odczytany, ponieważ jest pusty"
|
||||
msgid ""
|
||||
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
|
||||
msgstr ""
|
||||
"Nieznany format pliku. Plik wejściowy musi mieć rozszerzenie .stl, .obj, ."
|
||||
"amf(.xml)."
|
||||
"Nieznany format pliku. Plik wejściowy musi mieć "
|
||||
"rozszerzenie .stl, .obj, .amf(.xml)."
|
||||
|
||||
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
|
||||
msgstr ""
|
||||
"Nieznany format pliku. Plik wejściowy musi mieć rozszerzenie .3mf lub .zip."
|
||||
"amf."
|
||||
"Nieznany format pliku. Plik wejściowy musi mieć rozszerzenie .3mf "
|
||||
"lub .zip.amf."
|
||||
|
||||
msgid "load_obj: failed to parse"
|
||||
msgstr "load_obj: nie udało się przetworzyć"
|
||||
@@ -21106,8 +21222,8 @@ msgstr ""
|
||||
"Czy zastąpić go?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\".\n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\".\n"
|
||||
"To add preset for more printers, please go to printer selection"
|
||||
msgstr ""
|
||||
"Nazwa profilu zostanie zmieniona na „Dostawca Typ Seria @nazwa drukarki, "
|
||||
@@ -21196,9 +21312,6 @@ msgstr "Profil drukarki"
|
||||
msgid "Filament Preset Template"
|
||||
msgstr "Opracuj profil filamentu"
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "Odznacz wszystko"
|
||||
|
||||
msgid "Process Preset Template"
|
||||
msgstr "Opracuj profil procesu"
|
||||
|
||||
@@ -21704,9 +21817,21 @@ msgstr ""
|
||||
msgid "Authorizing..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error. Can't get api token for authorization"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not parse server response."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error saving session to file"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error session check"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error during file upload"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Mismatched type of print host: %s"
|
||||
msgstr "Niepasujący typ hosta drukowania: %s"
|
||||
@@ -22496,6 +22621,105 @@ msgstr ""
|
||||
msgid "Flashforge local API requires both serial number and access code."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer returned an error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing system_info in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing printer serial number in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error parsing response"
|
||||
msgstr ""
|
||||
|
||||
msgid "ElegooLink not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid access code"
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 device not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to ElegooLink is working correctly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to ElegooLink"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Error code: %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The file has been transferred, but some unknown errors occurred. Please "
|
||||
"check the device page for the file and try to start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open file for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to read file chunk for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is empty or could not be read."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to calculate file checksum."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error code not found"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The printer is busy, Please check the device page for the file and try to "
|
||||
"start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is lost, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is corrupted, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Transmission abnormality, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file does not match the printer, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print timeout"
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to CrealityPrint successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to CrealityPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Connection timed out. Please check if the printer and computer network are "
|
||||
"functioning properly, and confirm that they are on the same network."
|
||||
msgstr ""
|
||||
|
||||
msgid "The Hostname/IP/URL could not be parsed, please check it and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File/data transfer interrupted. Please check the printer and network, then "
|
||||
"try it again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr "Podany stan nie jest właściwy"
|
||||
|
||||
@@ -22549,6 +22773,12 @@ msgstr "Uszy brim"
|
||||
msgid "Please select single object."
|
||||
msgstr "Proszę wybrać pojedynczy obiekt."
|
||||
|
||||
msgid "Entering Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom Out"
|
||||
msgstr "Pomniejsz"
|
||||
|
||||
@@ -22560,6 +22790,9 @@ msgstr ""
|
||||
"Nie udało się pobrać informacji o pomijanych obiektach. Proszę spróbować "
|
||||
"ponownie."
|
||||
|
||||
msgid "Failed to create the temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "/%d Selected"
|
||||
msgstr "/%d wybrano"
|
||||
@@ -22707,6 +22940,112 @@ msgstr "Liczba trójkątnych faset"
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr "Obliczanie, proszę czekać..."
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bundle folder does not exist."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open folder."
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete selected bundle from folder and all presets loaded from it?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to remove bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Remove Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe bundle?"
|
||||
msgstr ""
|
||||
|
||||
msgid "UnsubscribeBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to unsubscribe bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "ExportPresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Save preset bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - boost::filesystem::canonical did not "
|
||||
"return appimage path."
|
||||
msgstr ""
|
||||
"Integracja z pulpitem nie powiodła się - boost::filesystem::canonical nie "
|
||||
"zwrócił ścieżki do appimage."
|
||||
|
||||
msgid "Performing desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
"Integracji z pulpitem nie powiodła się - nie znaleziono pliku wykonywalnego."
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed because the application directory was "
|
||||
"not found."
|
||||
msgstr ""
|
||||
"Integracja z pulpitem nie powiodła się, ponieważ nie znaleziono katalogu "
|
||||
"aplikacji."
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - could not create Gcodeviewer desktop "
|
||||
"file. OrcaSlicer desktop file was probably created successfully."
|
||||
msgstr ""
|
||||
"Integracji z pulpitem nie powiodła się - nie można utworzyć pliku pulpitu "
|
||||
"Gcodeviewer. Plik pulpitu OrcaSlicer został prawdopodobnie utworzony "
|
||||
"pomyślnie."
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - "
|
||||
"boost::filesystem::canonical did not return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed because the application "
|
||||
"directory was not found."
|
||||
msgstr ""
|
||||
|
||||
msgid "Desktop Integration"
|
||||
msgstr "Integracja z pulpitem"
|
||||
|
||||
msgid ""
|
||||
"Desktop Integration sets this binary to be searchable by the system.\n"
|
||||
"\n"
|
||||
"Press \"Perform\" to proceed."
|
||||
msgstr ""
|
||||
"Integracja z pulpitem ustawia ten plik binarny jako możliwy do wyszukania "
|
||||
"przez system.\n"
|
||||
"\n"
|
||||
"Naciśnij \"Wykonaj\", aby kontynuować."
|
||||
|
||||
msgid "The download has failed"
|
||||
msgstr ""
|
||||
|
||||
#. TRN %1% = file path
|
||||
#, boost-format
|
||||
msgid "Can't create file at %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Archive preview"
|
||||
msgstr ""
|
||||
|
||||
msgid "Open File"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The filament may not be compatible with the current machine settings. "
|
||||
"Generic filament presets will be used."
|
||||
@@ -23118,6 +23457,21 @@ msgstr ""
|
||||
"takimi jak ABS, odpowiednie zwiększenie temperatury podgrzewanej płyty może "
|
||||
"zmniejszyć prawdopodobieństwo odkształceń?"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "It is recommended to assemble objects first,\n"
|
||||
#~ "because the objects is restriced to bed \n"
|
||||
#~ "and only parts can be lifted."
|
||||
#~ msgstr ""
|
||||
#~ "Należy najpierw zmontować obiekty, \n"
|
||||
#~ "ponieważ obiekt jest związany z powierzchnią stołu, \n"
|
||||
#~ "a tylko części mogą być unoszone."
|
||||
|
||||
#~ msgid "part selection"
|
||||
#~ msgstr "wybór części"
|
||||
|
||||
#~ msgid "°"
|
||||
#~ msgstr "°"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The Wipe option is not available when using the Firmware Retraction "
|
||||
#~ "mode.\n"
|
||||
@@ -25138,8 +25492,8 @@ msgstr ""
|
||||
#~ "\n"
|
||||
#~ "Jednakże w mocno pochylonych lub zakrzywionych modelach, zwłaszcza przy "
|
||||
#~ "niskiej gęstości struktury wypełnienia, może to prowadzić do wywijania "
|
||||
#~ "się niewspieranej struktury wypełnienia, co powoduje efekt \"pillowing"
|
||||
#~ "\".\n"
|
||||
#~ "się niewspieranej struktury wypełnienia, co powoduje efekt "
|
||||
#~ "\"pillowing\".\n"
|
||||
#~ "\n"
|
||||
#~ "Włączenie tej opcji spowoduje drukowanie wewnętrznej warstwy mostka nad "
|
||||
#~ "nieco niewspieraną wewnętrzną strukturą wypełnienia. Poniższe opcje "
|
||||
@@ -26075,46 +26429,6 @@ msgstr ""
|
||||
#~ msgid "Configuration &Wizard"
|
||||
#~ msgstr "Asystent Ko&nfiguracji"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Performing desktop integration failed - boost::filesystem::canonical did "
|
||||
#~ "not return appimage path."
|
||||
#~ msgstr ""
|
||||
#~ "Integracja z pulpitem nie powiodła się - boost::filesystem::canonical nie "
|
||||
#~ "zwrócił ścieżki do appimage."
|
||||
|
||||
#~ msgid "Performing desktop integration failed - Could not find executable."
|
||||
#~ msgstr ""
|
||||
#~ "Integracji z pulpitem nie powiodła się - nie znaleziono pliku "
|
||||
#~ "wykonywalnego."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Performing desktop integration failed because the application directory "
|
||||
#~ "was not found."
|
||||
#~ msgstr ""
|
||||
#~ "Integracja z pulpitem nie powiodła się, ponieważ nie znaleziono katalogu "
|
||||
#~ "aplikacji."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Performing desktop integration failed - could not create Gcodeviewer "
|
||||
#~ "desktop file. OrcaSlicer desktop file was probably created successfully."
|
||||
#~ msgstr ""
|
||||
#~ "Integracji z pulpitem nie powiodła się - nie można utworzyć pliku pulpitu "
|
||||
#~ "Gcodeviewer. Plik pulpitu OrcaSlicer został prawdopodobnie utworzony "
|
||||
#~ "pomyślnie."
|
||||
|
||||
#~ msgid "Desktop Integration"
|
||||
#~ msgstr "Integracja z pulpitem"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Desktop Integration sets this binary to be searchable by the system.\n"
|
||||
#~ "\n"
|
||||
#~ "Press \"Perform\" to proceed."
|
||||
#~ msgstr ""
|
||||
#~ "Integracja z pulpitem ustawia ten plik binarny jako możliwy do wyszukania "
|
||||
#~ "przez system.\n"
|
||||
#~ "\n"
|
||||
#~ "Naciśnij \"Wykonaj\", aby kontynuować."
|
||||
|
||||
#~ msgid "3D Models"
|
||||
#~ msgstr "Modele 3D"
|
||||
|
||||
@@ -26193,9 +26507,6 @@ msgstr ""
|
||||
#~ msgid "The maximum temperature cannot exceed"
|
||||
#~ msgstr "Maksymalna temperatura nie może przekroczyć"
|
||||
|
||||
#~ msgid "An unexpected error occurred"
|
||||
#~ msgstr "Wystąpił nieoczekiwany błąd"
|
||||
|
||||
#~ msgid "Best surface quality"
|
||||
#~ msgstr "Najlepsza jakość powierzchni"
|
||||
|
||||
@@ -26276,15 +26587,6 @@ msgstr ""
|
||||
#~ "Nieprawidłowy stan.\n"
|
||||
#~ "Żadna część nie została wybrana do zachowania po cięciu"
|
||||
|
||||
#~ msgid "Entering Cut gizmo"
|
||||
#~ msgstr "Otwieranie uchwytu przecinania"
|
||||
|
||||
#~ msgid "Leaving Cut gizmo"
|
||||
#~ msgstr "Zamykanie uchwytu wytłaczania"
|
||||
|
||||
#~ msgid "Cut gizmo editing"
|
||||
#~ msgstr "Edytowanie uchwytów przecinania"
|
||||
|
||||
#~ msgid "Hollow this object"
|
||||
#~ msgstr "Wydrąż ten model"
|
||||
|
||||
@@ -26318,12 +26620,6 @@ msgstr ""
|
||||
#~ msgid "Hollow and drill"
|
||||
#~ msgstr "Drążenie i wiercenie"
|
||||
|
||||
#~ msgid "Entering Measure gizmo"
|
||||
#~ msgstr "Otwieranie uchwytu pomiaru"
|
||||
|
||||
#~ msgid "Leaving Measure gizmo"
|
||||
#~ msgstr "Zamykanie uchwytu wytłaczania"
|
||||
|
||||
#~ msgid "Measure gizmo editing"
|
||||
#~ msgstr "Edycja uchwytów pomiaru"
|
||||
|
||||
@@ -26429,8 +26725,8 @@ msgstr ""
|
||||
#~ "Elevation is too low for object. Use the \"Pad around object\" feature to "
|
||||
#~ "print the object without elevation."
|
||||
#~ msgstr ""
|
||||
#~ "Podniesienie zbyt małe dla modelu. Użyj funkcji \"Podkładka wokół modelu"
|
||||
#~ "\", aby wydrukować model bez podniesienia."
|
||||
#~ "Podniesienie zbyt małe dla modelu. Użyj funkcji \"Podkładka wokół "
|
||||
#~ "modelu\", aby wydrukować model bez podniesienia."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The endings of the support pillars will be deployed on the gap between "
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OrcaSlicer V2.3.2 beta2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-06-08 00:18+0800\n"
|
||||
"POT-Creation-Date: 2026-06-17 18:00+0800\n"
|
||||
"PO-Revision-Date: 2026-02-25 13:38+0300\n"
|
||||
"Last-Translator: Felix14_v2\n"
|
||||
"Language-Team: Felix14_v2 (ДС/ТГ: @felix14_v2, почта: aleks111001@list.ru), "
|
||||
@@ -16,8 +16,8 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
|
||||
"X-Generator: Poedit 3.8\n"
|
||||
|
||||
# В большинстве мест подставляется в "%s экструдер", но также тянется и в
|
||||
@@ -214,6 +214,15 @@ msgstr "Готово"
|
||||
msgid "Support Generated"
|
||||
msgstr "Поддержка сгенерирована"
|
||||
|
||||
msgid "Entering Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on supports editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gizmo-Place on Face"
|
||||
msgstr "Гизмо: Поверхностью на стол"
|
||||
|
||||
@@ -302,6 +311,15 @@ msgstr "Окрашено с использованием прутка %1%"
|
||||
msgid "To:"
|
||||
msgstr "Заменить на:"
|
||||
|
||||
msgid "Entering color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color painting editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin"
|
||||
msgstr "Рисование нечёткой оболочки"
|
||||
|
||||
@@ -322,6 +340,15 @@ msgstr ""
|
||||
msgid "Enable painted fuzzy skin for this object"
|
||||
msgstr "Включить нечёткую оболочку для модели"
|
||||
|
||||
msgid "Entering Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Move"
|
||||
msgstr "Перемещение"
|
||||
|
||||
@@ -718,6 +745,15 @@ msgstr "Разрез по линии"
|
||||
msgid "Delete connector"
|
||||
msgstr "Удалить соединение"
|
||||
|
||||
msgid "Entering Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Cut gizmo editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Mesh name"
|
||||
msgstr "Название"
|
||||
|
||||
@@ -1603,6 +1639,12 @@ msgstr "Расстояние между параллельными граням
|
||||
msgid "Flip by Face 2"
|
||||
msgstr "Перевернуть грань 2"
|
||||
|
||||
msgid "Entering Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
# при выборе на столе
|
||||
msgid "Assemble"
|
||||
msgstr "Объединить в сборку"
|
||||
@@ -1632,17 +1674,20 @@ msgid "Warning: please select Point's or Circle's feature."
|
||||
msgstr "Внимание: выберите точку или окружность."
|
||||
|
||||
msgid ""
|
||||
"It is recommended to assemble the objects first,\n"
|
||||
"because the objects is restriced to bed \n"
|
||||
"It is recommended to assemble objects first,\n"
|
||||
"because they are restricted to the bed \n"
|
||||
"and only parts can be lifted."
|
||||
msgstr ""
|
||||
"Рекомендуется сначала совместить модели \n"
|
||||
"и только потом собирать их части, так как\n"
|
||||
"части не ограничены плоскостью стола."
|
||||
|
||||
msgid "Face and face assembly"
|
||||
msgstr "Сборка по граням"
|
||||
|
||||
msgid "Entering Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
|
||||
@@ -1710,7 +1755,7 @@ msgid "3MF files"
|
||||
msgstr "Файлы 3MF"
|
||||
|
||||
# В окне выбора файла
|
||||
msgid "Gcode 3MF files"
|
||||
msgid "G-code 3MF files"
|
||||
msgstr "Файлы G-code 3MF"
|
||||
|
||||
# В окне выбора файла
|
||||
@@ -1937,6 +1982,20 @@ msgid ""
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from "
|
||||
"the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your "
|
||||
"local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset "
|
||||
"conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local "
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy with your local preset changes.\n"
|
||||
"Do you want to continue?"
|
||||
@@ -2282,9 +2341,9 @@ msgid ""
|
||||
"No - Do not change these settings for me"
|
||||
msgstr ""
|
||||
"На верхней поверхности модели присутствует рельефный текст. Для достижения "
|
||||
"оптимального результата рекомендуется установить «Порог одного "
|
||||
"периметра» (min_width_top_surface) равным 0, чтобы избежать проблем в работе "
|
||||
"настройки «Только один периметр на верхней поверхности».\n"
|
||||
"оптимального результата рекомендуется установить «Порог одного периметра» "
|
||||
"(min_width_top_surface) равным 0, чтобы избежать проблем в работе настройки "
|
||||
"«Только один периметр на верхней поверхности».\n"
|
||||
"\n"
|
||||
"Да – применить рекомендуемые настройки\n"
|
||||
"Нет – ничего не менять"
|
||||
@@ -3263,6 +3322,54 @@ msgstr "Температура не должна превышать "
|
||||
msgid "The minmum temperature should not be less than "
|
||||
msgstr "Температура не должна быть ниже "
|
||||
|
||||
msgid "Type to filter..."
|
||||
msgstr ""
|
||||
|
||||
# в Сохранение толщины вертикальной оболочки.
|
||||
# было Везде, но из-за условия совместимости изменено.... как тогда быть?
|
||||
msgid "All"
|
||||
msgstr "Все"
|
||||
|
||||
msgid "No selected items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All items selected..."
|
||||
msgstr ""
|
||||
|
||||
msgid "No matching items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "Снять выбор со всего"
|
||||
|
||||
msgid "Select visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter nonSelected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Simple settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr "Расширенные настройки"
|
||||
|
||||
msgid "Expert settings"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "Developer mode"
|
||||
msgstr "Режим разработчика"
|
||||
|
||||
msgid "Launch troubleshoot center"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"All the selected objects are on a locked plate.\n"
|
||||
"Cannot auto-arrange these objects."
|
||||
@@ -3551,6 +3658,9 @@ msgstr "В шрифте отсутствуют данные для создан
|
||||
msgid "There is no valid surface for text projection."
|
||||
msgstr "Невозможно спроецировать текст."
|
||||
|
||||
msgid "An unexpected error occurred"
|
||||
msgstr ""
|
||||
|
||||
msgid "Thermal Preconditioning for first layer optimization"
|
||||
msgstr "Преднагрев для оптимизации первого слоя"
|
||||
|
||||
@@ -5537,10 +5647,7 @@ msgstr "Изменить размер инструмента"
|
||||
msgid "Sequence"
|
||||
msgstr "Последовательность"
|
||||
|
||||
msgid "Object Selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part Selection"
|
||||
msgid "Object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys"
|
||||
@@ -5734,9 +5841,6 @@ msgstr "Имена моделей"
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "Панель рисования"
|
||||
|
||||
msgid "part selection"
|
||||
msgstr "Выбрать часть"
|
||||
|
||||
msgid "Explosion Ratio"
|
||||
msgstr "Разнесение"
|
||||
|
||||
@@ -5761,7 +5865,7 @@ msgstr "Объём:"
|
||||
msgid "Size:"
|
||||
msgstr "Размер:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -6011,14 +6115,14 @@ msgstr "Распечатать стол"
|
||||
msgid "Export G-code file"
|
||||
msgstr "Экспорт в G-код"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "Экспорт стола в файл проекта"
|
||||
|
||||
# ??????? Используется в двух местах или уже исправили? – Судя по коду,
|
||||
# вызывается аж в четырёх местах (Felix) UPD: уже в 5
|
||||
msgid "Send"
|
||||
msgstr "Отправить"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "Экспорт стола в файл проекта"
|
||||
|
||||
msgid "Export all sliced file"
|
||||
msgstr "Экспорт всех столов в файл проекта"
|
||||
|
||||
@@ -8176,7 +8280,7 @@ msgstr ""
|
||||
msgid "The selected object couldn't be split."
|
||||
msgstr "Невозможно разделить выбранную модель."
|
||||
|
||||
msgid "Disable Auto-Drop to preserve z positioning?\n"
|
||||
msgid "Disable Auto-Drop to preserve Z positioning?\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Object with floating parts was detected"
|
||||
@@ -8875,11 +8979,6 @@ msgstr ""
|
||||
"Объединять пользовательские профили материалов в подгруппы по выбранному "
|
||||
"критерию."
|
||||
|
||||
# в Сохранение толщины вертикальной оболочки.
|
||||
# было Везде, но из-за условия совместимости изменено.... как тогда быть?
|
||||
msgid "All"
|
||||
msgstr "Все"
|
||||
|
||||
msgid "By type"
|
||||
msgstr "Тип материала"
|
||||
|
||||
@@ -9260,6 +9359,14 @@ msgstr "Загрузить сетевой плагин"
|
||||
msgid "Associate files to OrcaSlicer"
|
||||
msgstr "Открытие файлов по умолчанию"
|
||||
|
||||
msgid ""
|
||||
"File associations for the Microsoft Store version are managed by Windows "
|
||||
"Settings."
|
||||
msgstr ""
|
||||
|
||||
msgid "Open Windows Default Apps Settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Associate 3MF files to OrcaSlicer"
|
||||
msgstr "Открывать файлы 3MF в OrcaSlicer"
|
||||
|
||||
@@ -9291,10 +9398,6 @@ msgstr "Открытие ссылок в OrcaSlicer"
|
||||
msgid "Developer"
|
||||
msgstr "Разработка"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Developer mode"
|
||||
msgstr "Режим разработчика"
|
||||
|
||||
msgid "Skip AMS blacklist check"
|
||||
msgstr "Пропуск проверки материалов в AMS из файла чёрного списка"
|
||||
|
||||
@@ -10124,6 +10227,9 @@ msgstr ""
|
||||
"Превышено время ожидания отправки файла. Убедитесь, что прошивка "
|
||||
"поддерживает эту функцию, и что принтер работает нормально."
|
||||
|
||||
msgid "Sending failed, please try again!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice ok."
|
||||
msgstr "Нарезка завершена."
|
||||
|
||||
@@ -10452,8 +10558,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"При записи таймлапса со скрытием головы рекомендуется добавить черновую "
|
||||
"башню таймлапса.\n"
|
||||
@@ -10584,6 +10690,9 @@ msgstr ""
|
||||
msgid "Travel speed"
|
||||
msgstr "Ограничение скорости холостых перемещений"
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr "Junction Deviation"
|
||||
|
||||
msgid "Jerk(XY)"
|
||||
msgstr "Рывок (XY)"
|
||||
|
||||
@@ -11494,9 +11603,6 @@ msgstr ""
|
||||
"принтера. Неиспользуемые филаменты принтера будут автоматически добавлены в "
|
||||
"конец списка."
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr "Расширенные настройки"
|
||||
|
||||
msgid "Add unused AMS filaments to filaments list."
|
||||
msgstr "Добавить незадействованные материалы из AMS в список"
|
||||
|
||||
@@ -11994,12 +12100,23 @@ msgstr "Доступен новый сетевой плагин (%s). Хотит
|
||||
msgid "New version of Orca Slicer"
|
||||
msgstr "Доступна новая версия Orca Slicer"
|
||||
|
||||
msgid "Check on Github"
|
||||
msgid "Check on Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check on GitHub"
|
||||
msgstr "Открыть на GitHub"
|
||||
|
||||
msgid "Open Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Skip this Version"
|
||||
msgstr "Пропустить эту версию"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"New version available: %s. Please update OrcaSlicer from the Microsoft Store."
|
||||
msgstr ""
|
||||
|
||||
msgid "Confirm and Update Nozzle"
|
||||
msgstr "Подтвердить и обновить сопло"
|
||||
|
||||
@@ -12120,6 +12237,9 @@ msgstr "Модуль обрезки"
|
||||
msgid "Auto Fire Extinguishing System"
|
||||
msgstr "Автоматическая система пожаротушения"
|
||||
|
||||
msgid "Beta"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update firmware"
|
||||
msgstr "Обновить прошивку"
|
||||
|
||||
@@ -12931,6 +13051,15 @@ msgstr "Использовать сторонний хост печати"
|
||||
msgid "Allow controlling BambuLab's printer through 3rd party print hosts."
|
||||
msgstr "Позволяет управлять принтером BambuLab через сторонние хосты печати."
|
||||
|
||||
msgid "Use 3MF instead of G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this if the printer accepts a 3MF file as the print job. When "
|
||||
"enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a "
|
||||
"plain .gcode file."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer Agent"
|
||||
msgstr "Сетевой агент"
|
||||
|
||||
@@ -13360,7 +13489,7 @@ msgid "External bridge density"
|
||||
msgstr "Плотность внешних мостов"
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of external bridge lines. Default is 100%.\n"
|
||||
"Controls the density (spacing) of external bridge lines.\n"
|
||||
"Theoretically, 100% means a solid bridge, but due to the tendency of bridge "
|
||||
"extrusions to sag, 100% may not be sufficient.\n"
|
||||
"\n"
|
||||
@@ -13374,18 +13503,14 @@ msgid ""
|
||||
" - Pros: Can create a string-like first layer. Faster and with better "
|
||||
"cooling because there is more space for air to circulate around the extruded "
|
||||
"bridge.\n"
|
||||
" - Cons: May lead to sagging and poorer surface finish.\n"
|
||||
"\n"
|
||||
"Recommended range: Minimum 10% - Maximum 125%."
|
||||
" - Cons: May lead to sagging and poorer surface finish."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge density"
|
||||
msgstr "Плотность внутренних мостов"
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of internal bridge lines. Default is 100%. "
|
||||
"100% means a solid internal bridge.\n"
|
||||
"\n"
|
||||
"Controls the density (spacing) of internal bridge lines.\n"
|
||||
"Internal bridges act as intermediate support between sparse infill and top "
|
||||
"solid infill and can strongly affect top surface quality.\n"
|
||||
"\n"
|
||||
@@ -13420,11 +13545,9 @@ msgid ""
|
||||
"filament flow ratio, and if set, the object's flow ratio."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Bridge line width is expressed either as an absolute value or as a "
|
||||
"percentage of the active nozzle diameter (percentages are computed from the "
|
||||
"nozzle diameter).\n"
|
||||
"Line width of the Bridge. If expressed as a %, it will be computed over the "
|
||||
"nozzle diameter.\n"
|
||||
"Recommended to use with a higher Bridge density or Bridge flow ratio.\n"
|
||||
"\n"
|
||||
"The maximum value is 100% or the nozzle diameter.\n"
|
||||
@@ -15472,7 +15595,6 @@ msgstr ""
|
||||
msgid "Z-buckling bias optimization (experimental)"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
|
||||
"to shorten the effective vertical column length and improve Z-axis "
|
||||
@@ -15714,8 +15836,8 @@ msgid "mm/s² or %"
|
||||
msgstr "мм/с² или %"
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
msgstr ""
|
||||
"Ускорение на разреженном заполнении. Можно указать процент от ускорения по "
|
||||
"умолчанию."
|
||||
@@ -15769,9 +15891,6 @@ msgstr ""
|
||||
msgid "Default jerk."
|
||||
msgstr "Рывок по умолчанию."
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr "Junction Deviation"
|
||||
|
||||
msgid ""
|
||||
"Marlin Firmware Junction Deviation (replaces the traditional XY Jerk "
|
||||
"setting)."
|
||||
@@ -15862,10 +15981,10 @@ msgstr "Полная скорость вентилятора на слое"
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"Интенсивность охлаждения будет линейно увеличиваться от нуля со слоя "
|
||||
"заданным параметром «Не включать вентилятор на первых» до заданной "
|
||||
@@ -16020,8 +16139,9 @@ msgstr ""
|
||||
"Максимальная величина отклонения сегментов оболочки. \n"
|
||||
"\n"
|
||||
"Внимание! Режимы «Экструзия» и «Совместный» не будут работать, если значение "
|
||||
"превышает ширину периметра. Если при нарезке возникает ошибка Flow::"
|
||||
"spacing(), проверьте, что значение меньше выражения: [∅ сопла - h слоя/4]."
|
||||
"превышает ширину периметра. Если при нарезке возникает ошибка "
|
||||
"Flow::spacing(), проверьте, что значение меньше выражения: [∅ сопла - h слоя/"
|
||||
"4]."
|
||||
|
||||
msgid "Fuzzy skin point distance"
|
||||
msgstr "Длина сегментов"
|
||||
@@ -16927,16 +17047,13 @@ msgid ""
|
||||
"A reasonable value is 35. Set to 0 to disable."
|
||||
msgstr ""
|
||||
|
||||
msgid "°"
|
||||
msgstr "°"
|
||||
|
||||
msgid "Don't alternate fill direction"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disable alternating fill direction when using Z contouring."
|
||||
msgstr ""
|
||||
|
||||
msgid "Minimum z height"
|
||||
msgid "Minimum Z height"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -18161,8 +18278,8 @@ msgid "Role base wipe speed"
|
||||
msgstr "Местная скорость очистки"
|
||||
|
||||
msgid ""
|
||||
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||
"g. if a wipe action is executed immediately following an outer wall "
|
||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
||||
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||
"wipe action."
|
||||
msgstr ""
|
||||
@@ -19215,8 +19332,8 @@ msgstr "Вкл. контроль температуры"
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present.\n"
|
||||
@@ -20321,8 +20438,8 @@ msgid "Debug level"
|
||||
msgstr "Уровень отладки журнала"
|
||||
|
||||
msgid ""
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
"trace\n"
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
"5:trace\n"
|
||||
msgstr ""
|
||||
"Задаёт параметр чувствительности записи событий в журнал:\n"
|
||||
" 0 – Критическая ошибка\n"
|
||||
@@ -20912,8 +21029,8 @@ msgstr ""
|
||||
|
||||
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
|
||||
msgstr ""
|
||||
"Неизвестный формат файла. Входной файл должен иметь расширение *.3mf или *."
|
||||
"zip.amf."
|
||||
"Неизвестный формат файла. Входной файл должен иметь расширение *.3mf или "
|
||||
"*.zip.amf."
|
||||
|
||||
msgid "load_obj: failed to parse"
|
||||
msgstr "load_obj: ошибка обработки"
|
||||
@@ -22225,8 +22342,8 @@ msgstr ""
|
||||
"Хотите перезаписать его?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\".\n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\".\n"
|
||||
"To add preset for more printers, please go to printer selection"
|
||||
msgstr ""
|
||||
"Мы переименуем профиль в \"Производитель Тип Серия @выбранный принтер\".\n"
|
||||
@@ -22311,9 +22428,6 @@ msgstr "Профиль принтера"
|
||||
msgid "Filament Preset Template"
|
||||
msgstr "Шаблон профиля материала"
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "Снять выбор со всего"
|
||||
|
||||
msgid "Process Preset Template"
|
||||
msgstr "Шаблон профиля настроек"
|
||||
|
||||
@@ -22824,9 +22938,21 @@ msgstr ""
|
||||
msgid "Authorizing..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error. Can't get api token for authorization"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not parse server response."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error saving session to file"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error session check"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error during file upload"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Mismatched type of print host: %s"
|
||||
msgstr "Несоответствующий тип хоста печати: %s"
|
||||
@@ -23625,6 +23751,105 @@ msgstr "Не удалось подключиться к Flashforge через п
|
||||
msgid "Flashforge local API requires both serial number and access code."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer returned an error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing system_info in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing printer serial number in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error parsing response"
|
||||
msgstr ""
|
||||
|
||||
msgid "ElegooLink not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid access code"
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 device not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to ElegooLink is working correctly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to ElegooLink"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Error code: %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The file has been transferred, but some unknown errors occurred. Please "
|
||||
"check the device page for the file and try to start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open file for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to read file chunk for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is empty or could not be read."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to calculate file checksum."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error code not found"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The printer is busy, Please check the device page for the file and try to "
|
||||
"start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is lost, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is corrupted, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Transmission abnormality, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file does not match the printer, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print timeout"
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to CrealityPrint successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to CrealityPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Connection timed out. Please check if the printer and computer network are "
|
||||
"functioning properly, and confirm that they are on the same network."
|
||||
msgstr ""
|
||||
|
||||
msgid "The Hostname/IP/URL could not be parsed, please check it and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File/data transfer interrupted. Please check the printer and network, then "
|
||||
"try it again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr "Указано неверное состояние."
|
||||
|
||||
@@ -23679,6 +23904,12 @@ msgstr "Кайма «мышиные уши»"
|
||||
msgid "Please select single object."
|
||||
msgstr "Пожалуйста, выберите один объект."
|
||||
|
||||
msgid "Entering Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom Out"
|
||||
msgstr "Отдалить"
|
||||
|
||||
@@ -23689,6 +23920,9 @@ msgid "Load skipping objects information failed. Please try again."
|
||||
msgstr ""
|
||||
"Не удалось загрузить информацию о пропуске объектов, попробуйте ещё раз."
|
||||
|
||||
msgid "Failed to create the temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "/%d Selected"
|
||||
msgstr "из %d выбрано"
|
||||
@@ -23843,6 +24077,100 @@ msgstr "Количество треугольников"
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr "Расчёт, подождите..."
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bundle folder does not exist."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open folder."
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete selected bundle from folder and all presets loaded from it?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to remove bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Remove Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe bundle?"
|
||||
msgstr ""
|
||||
|
||||
msgid "UnsubscribeBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to unsubscribe bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "ExportPresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Save preset bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - boost::filesystem::canonical did not "
|
||||
"return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Performing desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed because the application directory was "
|
||||
"not found."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - could not create Gcodeviewer desktop "
|
||||
"file. OrcaSlicer desktop file was probably created successfully."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - "
|
||||
"boost::filesystem::canonical did not return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed because the application "
|
||||
"directory was not found."
|
||||
msgstr ""
|
||||
|
||||
msgid "Desktop Integration"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Desktop Integration sets this binary to be searchable by the system.\n"
|
||||
"\n"
|
||||
"Press \"Perform\" to proceed."
|
||||
msgstr ""
|
||||
|
||||
msgid "The download has failed"
|
||||
msgstr ""
|
||||
|
||||
#. TRN %1% = file path
|
||||
#, boost-format
|
||||
msgid "Can't create file at %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Archive preview"
|
||||
msgstr ""
|
||||
|
||||
msgid "Open File"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The filament may not be compatible with the current machine settings. "
|
||||
"Generic filament presets will be used."
|
||||
@@ -23901,9 +24229,9 @@ msgid ""
|
||||
"overhangs?"
|
||||
msgstr ""
|
||||
"Порядок печати периметров «Навстречу»\n"
|
||||
"Знаете ли вы, что можно использовать порядок печати периметров "
|
||||
"«Навстречу» (Inner/Outer/Inner)? Это улучшает точность, прочность и внешний "
|
||||
"вид, если у модели не очень крутые нависания."
|
||||
"Знаете ли вы, что можно использовать порядок печати периметров «Навстречу» "
|
||||
"(Inner/Outer/Inner)? Это улучшает точность, прочность и внешний вид, если у "
|
||||
"модели не очень крутые нависания."
|
||||
|
||||
#: resources/data/hints.ini: [hint:Chamber temperature]
|
||||
msgid ""
|
||||
@@ -24269,6 +24597,21 @@ msgstr ""
|
||||
"ABS, повышение температуры подогреваемого стола может снизить эту "
|
||||
"вероятность?"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "It is recommended to assemble objects first,\n"
|
||||
#~ "because the objects is restriced to bed \n"
|
||||
#~ "and only parts can be lifted."
|
||||
#~ msgstr ""
|
||||
#~ "Рекомендуется сначала совместить модели \n"
|
||||
#~ "и только потом собирать их части, так как\n"
|
||||
#~ "части не ограничены плоскостью стола."
|
||||
|
||||
#~ msgid "part selection"
|
||||
#~ msgstr "Выбрать часть"
|
||||
|
||||
#~ msgid "°"
|
||||
#~ msgstr "°"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The Wipe option is not available when using the Firmware Retraction "
|
||||
#~ "mode.\n"
|
||||
@@ -24631,9 +24974,6 @@ msgstr ""
|
||||
#~ msgid "Mouse wheel:"
|
||||
#~ msgstr "Вращение колеса мыши:"
|
||||
|
||||
#~ msgid "Object selection"
|
||||
#~ msgstr "Выбрать модель"
|
||||
|
||||
# Хотя бы в скобках, но отсылаем к калибровке потока, а не расхода (баг #6970)
|
||||
#~ msgid "Pass 1"
|
||||
#~ msgstr "Первый проход (примерный подбор)"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-06-08 00:18+0800\n"
|
||||
"POT-Creation-Date: 2026-06-17 18:00+0800\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -188,6 +188,15 @@ msgstr "Klar"
|
||||
msgid "Support Generated"
|
||||
msgstr "Support skapad"
|
||||
|
||||
msgid "Entering Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on supports editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gizmo-Place on Face"
|
||||
msgstr "Gizmo-Place on Face"
|
||||
|
||||
@@ -276,6 +285,15 @@ msgstr "Färgläggning använder: Filament %1%"
|
||||
msgid "To:"
|
||||
msgstr "Till:"
|
||||
|
||||
msgid "Entering color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color painting editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin"
|
||||
msgstr "Paint-on fuzzy skin"
|
||||
|
||||
@@ -296,6 +314,15 @@ msgstr ""
|
||||
msgid "Enable painted fuzzy skin for this object"
|
||||
msgstr "Enable painted fuzzy skin for this object"
|
||||
|
||||
msgid "Entering Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Move"
|
||||
msgstr "Flytta"
|
||||
|
||||
@@ -683,6 +710,15 @@ msgstr "Cut by line"
|
||||
msgid "Delete connector"
|
||||
msgstr "Delete connector"
|
||||
|
||||
msgid "Entering Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Cut gizmo editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Mesh name"
|
||||
msgstr "Mesh namn"
|
||||
|
||||
@@ -1548,6 +1584,12 @@ msgstr "Parallel distance:"
|
||||
msgid "Flip by Face 2"
|
||||
msgstr "Flip by Face 2"
|
||||
|
||||
msgid "Entering Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Assemble"
|
||||
msgstr "Montera"
|
||||
|
||||
@@ -1573,16 +1615,19 @@ msgid "Warning: please select Point's or Circle's feature."
|
||||
msgstr "Warning: please select Point's or Circle's feature."
|
||||
|
||||
msgid ""
|
||||
"It is recommended to assemble the objects first,\n"
|
||||
"because the objects is restriced to bed \n"
|
||||
"It is recommended to assemble objects first,\n"
|
||||
"because they are restricted to the bed \n"
|
||||
"and only parts can be lifted."
|
||||
msgstr ""
|
||||
"It is recommended to assemble the objects first,\n"
|
||||
"because the objects is restriced to bed \n"
|
||||
"and only parts can be lifted."
|
||||
|
||||
msgid "Face and face assembly"
|
||||
msgstr "Face and face assembly"
|
||||
msgstr ""
|
||||
|
||||
msgid "Entering Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl +"
|
||||
@@ -1642,8 +1687,8 @@ msgstr "AMF files"
|
||||
msgid "3MF files"
|
||||
msgstr "3MF files"
|
||||
|
||||
msgid "Gcode 3MF files"
|
||||
msgstr "Gcode 3MF files"
|
||||
msgid "G-code 3MF files"
|
||||
msgstr "G-code 3MF files"
|
||||
|
||||
msgid "G-code files"
|
||||
msgstr "G-code files"
|
||||
@@ -1862,6 +1907,20 @@ msgid ""
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from "
|
||||
"the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your "
|
||||
"local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset "
|
||||
"conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local "
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy with your local preset changes.\n"
|
||||
"Do you want to continue?"
|
||||
@@ -3150,6 +3209,52 @@ msgstr "The maximum temperature cannot exceed "
|
||||
msgid "The minmum temperature should not be less than "
|
||||
msgstr "The minmum temperature should not be less than "
|
||||
|
||||
msgid "Type to filter..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All"
|
||||
msgstr "Allt"
|
||||
|
||||
msgid "No selected items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All items selected..."
|
||||
msgstr ""
|
||||
|
||||
msgid "No matching items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "Avmarkera alla"
|
||||
|
||||
msgid "Select visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter nonSelected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Simple settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr "Advanced settings"
|
||||
|
||||
msgid "Expert settings"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "Developer mode"
|
||||
msgstr "Utvecklingsläge"
|
||||
|
||||
msgid "Launch troubleshoot center"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"All the selected objects are on a locked plate.\n"
|
||||
"Cannot auto-arrange these objects."
|
||||
@@ -3428,6 +3533,9 @@ msgstr "Font doesn't have any shape for given text."
|
||||
msgid "There is no valid surface for text projection."
|
||||
msgstr "There is no valid surface for text projection."
|
||||
|
||||
msgid "An unexpected error occurred"
|
||||
msgstr ""
|
||||
|
||||
msgid "Thermal Preconditioning for first layer optimization"
|
||||
msgstr "Thermal Preconditioning for first layer optimization"
|
||||
|
||||
@@ -5344,10 +5452,7 @@ msgstr "Öka/minska redigeringsområdet"
|
||||
msgid "Sequence"
|
||||
msgstr "Sekvens"
|
||||
|
||||
msgid "Object Selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part Selection"
|
||||
msgid "Object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys"
|
||||
@@ -5536,9 +5641,6 @@ msgstr "Etiketter"
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "Färgläggningsverktyg"
|
||||
|
||||
msgid "part selection"
|
||||
msgstr "val av delar"
|
||||
|
||||
msgid "Explosion Ratio"
|
||||
msgstr "Explosions Förhållande"
|
||||
|
||||
@@ -5563,7 +5665,7 @@ msgstr "Volym:"
|
||||
msgid "Size:"
|
||||
msgstr "Storlek:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -5792,12 +5894,12 @@ msgstr "Skriv ut byggplattan"
|
||||
msgid "Export G-code file"
|
||||
msgstr "Exportera G-kod filen"
|
||||
|
||||
msgid "Send"
|
||||
msgstr "Skicka"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "Exportera byggplattans beredda fil"
|
||||
|
||||
msgid "Send"
|
||||
msgstr "Skicka"
|
||||
|
||||
msgid "Export all sliced file"
|
||||
msgstr "Exportera alla beredda filer"
|
||||
|
||||
@@ -7896,7 +7998,7 @@ msgstr ""
|
||||
msgid "The selected object couldn't be split."
|
||||
msgstr "Det valda objektet kan inte delas."
|
||||
|
||||
msgid "Disable Auto-Drop to preserve z positioning?\n"
|
||||
msgid "Disable Auto-Drop to preserve Z positioning?\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Object with floating parts was detected"
|
||||
@@ -8575,9 +8677,6 @@ msgstr "Group user filament presets"
|
||||
msgid "Group user filament presets based on selection"
|
||||
msgstr "Group user filament presets based on selection"
|
||||
|
||||
msgid "All"
|
||||
msgstr "Allt"
|
||||
|
||||
msgid "By type"
|
||||
msgstr "By type"
|
||||
|
||||
@@ -8949,6 +9048,14 @@ msgstr "Download Network Plug-in"
|
||||
msgid "Associate files to OrcaSlicer"
|
||||
msgstr "Associerade filer till Orca Slicer"
|
||||
|
||||
msgid ""
|
||||
"File associations for the Microsoft Store version are managed by Windows "
|
||||
"Settings."
|
||||
msgstr ""
|
||||
|
||||
msgid "Open Windows Default Apps Settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Associate 3MF files to OrcaSlicer"
|
||||
msgstr "Associerade 3MF filer till Orca Slicer"
|
||||
|
||||
@@ -8981,10 +9088,6 @@ msgstr "Associate web links to OrcaSlicer"
|
||||
msgid "Developer"
|
||||
msgstr "Utvecklare"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Developer mode"
|
||||
msgstr "Utvecklingsläge"
|
||||
|
||||
msgid "Skip AMS blacklist check"
|
||||
msgstr "Hoppa över kontrollen av AMS svarta lista"
|
||||
|
||||
@@ -9791,6 +9894,9 @@ msgstr ""
|
||||
"File upload timed out. Please check if the firmware version supports this "
|
||||
"operation or verify if the printer is functioning properly."
|
||||
|
||||
msgid "Sending failed, please try again!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice ok."
|
||||
msgstr "Beredning klar."
|
||||
|
||||
@@ -10111,8 +10217,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"När du spelar in timelapse utan verktygshuvud rekommenderas att du lägger "
|
||||
"till ett \"Timelapse Wipe Tower\".\n"
|
||||
@@ -10242,6 +10348,9 @@ msgstr "Set speed for external and internal bridges"
|
||||
msgid "Travel speed"
|
||||
msgstr "Förflyttnings hastighet"
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr "Junction Deviation"
|
||||
|
||||
msgid "Jerk(XY)"
|
||||
msgstr "Jerk(XY)"
|
||||
|
||||
@@ -11118,9 +11227,6 @@ msgstr ""
|
||||
"And unused printer filaments will be automatically added to the end of the "
|
||||
"list."
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr "Advanced settings"
|
||||
|
||||
msgid "Add unused AMS filaments to filaments list."
|
||||
msgstr "Add unused AMS filaments to filaments list."
|
||||
|
||||
@@ -11180,8 +11286,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"Timelapse is not supported because Print sequence is set to \"By object\"."
|
||||
msgstr ""
|
||||
"Timelapse stöds inte eftersom utskrifts sekvensen är inställd på \"Per objekt"
|
||||
"\"."
|
||||
"Timelapse stöds inte eftersom utskrifts sekvensen är inställd på \"Per "
|
||||
"objekt\"."
|
||||
|
||||
msgid ""
|
||||
"You selected external and AMS filament at the same time in an extruder, you "
|
||||
@@ -11619,12 +11725,23 @@ msgstr "En ny nätverksplugin (%s) är tillgänglig. Vill du installera den?"
|
||||
msgid "New version of Orca Slicer"
|
||||
msgstr "Ny version av Orca Slicer"
|
||||
|
||||
msgid "Check on Github"
|
||||
msgid "Check on Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check on GitHub"
|
||||
msgstr ""
|
||||
|
||||
msgid "Open Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Skip this Version"
|
||||
msgstr "Hoppa över denna version"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"New version available: %s. Please update OrcaSlicer from the Microsoft Store."
|
||||
msgstr ""
|
||||
|
||||
msgid "Confirm and Update Nozzle"
|
||||
msgstr "Bekräfta och uppdatera nozzeln"
|
||||
|
||||
@@ -11738,6 +11855,9 @@ msgstr "Cutting Module"
|
||||
msgid "Auto Fire Extinguishing System"
|
||||
msgstr "Auto Fire Extinguishing System"
|
||||
|
||||
msgid "Beta"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update firmware"
|
||||
msgstr "Uppdatera programvara"
|
||||
|
||||
@@ -12514,6 +12634,15 @@ msgstr "Use 3rd-party print host"
|
||||
msgid "Allow controlling BambuLab's printer through 3rd party print hosts."
|
||||
msgstr "Allow controlling BambuLab's printer through 3rd party print hosts."
|
||||
|
||||
msgid "Use 3MF instead of G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this if the printer accepts a 3MF file as the print job. When "
|
||||
"enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a "
|
||||
"plain .gcode file."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer Agent"
|
||||
msgstr "Printer Agent"
|
||||
|
||||
@@ -12943,7 +13072,7 @@ msgid "External bridge density"
|
||||
msgstr "External bridge density"
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of external bridge lines. Default is 100%.\n"
|
||||
"Controls the density (spacing) of external bridge lines.\n"
|
||||
"Theoretically, 100% means a solid bridge, but due to the tendency of bridge "
|
||||
"extrusions to sag, 100% may not be sufficient.\n"
|
||||
"\n"
|
||||
@@ -12957,18 +13086,14 @@ msgid ""
|
||||
" - Pros: Can create a string-like first layer. Faster and with better "
|
||||
"cooling because there is more space for air to circulate around the extruded "
|
||||
"bridge.\n"
|
||||
" - Cons: May lead to sagging and poorer surface finish.\n"
|
||||
"\n"
|
||||
"Recommended range: Minimum 10% - Maximum 125%."
|
||||
" - Cons: May lead to sagging and poorer surface finish."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge density"
|
||||
msgstr "Internal bridge density"
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of internal bridge lines. Default is 100%. "
|
||||
"100% means a solid internal bridge.\n"
|
||||
"\n"
|
||||
"Controls the density (spacing) of internal bridge lines.\n"
|
||||
"Internal bridges act as intermediate support between sparse infill and top "
|
||||
"solid infill and can strongly affect top surface quality.\n"
|
||||
"\n"
|
||||
@@ -13003,11 +13128,9 @@ msgid ""
|
||||
"filament flow ratio, and if set, the object's flow ratio."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Bridge line width is expressed either as an absolute value or as a "
|
||||
"percentage of the active nozzle diameter (percentages are computed from the "
|
||||
"nozzle diameter).\n"
|
||||
"Line width of the Bridge. If expressed as a %, it will be computed over the "
|
||||
"nozzle diameter.\n"
|
||||
"Recommended to use with a higher Bridge density or Bridge flow ratio.\n"
|
||||
"\n"
|
||||
"The maximum value is 100% or the nozzle diameter.\n"
|
||||
@@ -13577,9 +13700,9 @@ msgid ""
|
||||
"quality for needle and small details."
|
||||
msgstr ""
|
||||
"Aktivera detta val för att sänka utskifts hastigheten för att göra den sista "
|
||||
"lager tiden inte kortare än lager tidströskeln \"Max fläkthastighets tröskel"
|
||||
"\", detta så att lager kan kylas under en längre tid. Detta kan förbättra "
|
||||
"kylnings kvaliteten för små detaljer"
|
||||
"lager tiden inte kortare än lager tidströskeln \"Max fläkthastighets "
|
||||
"tröskel\", detta så att lager kan kylas under en längre tid. Detta kan "
|
||||
"förbättra kylnings kvaliteten för små detaljer"
|
||||
|
||||
msgid "Normal printing"
|
||||
msgstr "Normal utskrift"
|
||||
@@ -14941,7 +15064,6 @@ msgstr ""
|
||||
msgid "Z-buckling bias optimization (experimental)"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
|
||||
"to shorten the effective vertical column length and improve Z-axis "
|
||||
@@ -15150,8 +15272,8 @@ msgid "mm/s² or %"
|
||||
msgstr "mm/s² eller %"
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
msgstr ""
|
||||
"Acceleration av gles utfyllnad. Om värdet uttrycks som en procentsats (t.ex. "
|
||||
"100%) kommer det att beräknas baserat på standard accelerationen."
|
||||
@@ -15198,9 +15320,6 @@ msgstr ""
|
||||
msgid "Default jerk."
|
||||
msgstr "Default jerk."
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr "Junction Deviation"
|
||||
|
||||
msgid ""
|
||||
"Marlin Firmware Junction Deviation (replaces the traditional XY Jerk "
|
||||
"setting)."
|
||||
@@ -15287,16 +15406,16 @@ msgstr "Full fläkthastighet vid lager"
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
|
||||
msgid "layer"
|
||||
msgstr "layer"
|
||||
@@ -16299,16 +16418,13 @@ msgid ""
|
||||
"A reasonable value is 35. Set to 0 to disable."
|
||||
msgstr ""
|
||||
|
||||
msgid "°"
|
||||
msgstr "°"
|
||||
|
||||
msgid "Don't alternate fill direction"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disable alternating fill direction when using Z contouring."
|
||||
msgstr ""
|
||||
|
||||
msgid "Minimum z height"
|
||||
msgid "Minimum Z height"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -17432,13 +17548,13 @@ msgid "Role base wipe speed"
|
||||
msgstr "Role base wipe speed"
|
||||
|
||||
msgid ""
|
||||
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||
"g. if a wipe action is executed immediately following an outer wall "
|
||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
||||
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||
"wipe action."
|
||||
msgstr ""
|
||||
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||
"g. if a wipe action is executed immediately following an outer wall "
|
||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
||||
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||
"wipe action."
|
||||
|
||||
@@ -18367,8 +18483,8 @@ msgstr "Activate temperature control"
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present.\n"
|
||||
@@ -18378,8 +18494,8 @@ msgid ""
|
||||
"heater is installed."
|
||||
msgstr ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present.\n"
|
||||
@@ -19368,11 +19484,11 @@ msgid "Debug level"
|
||||
msgstr "Felsökningsnivå"
|
||||
|
||||
msgid ""
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
"trace\n"
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
"5:trace\n"
|
||||
msgstr ""
|
||||
"Välj felsöknings nivå. 0:allvarlig, 1:fel, 2:varning, 3:info, 4:felsök, 5:"
|
||||
"spåra\n"
|
||||
"Välj felsöknings nivå. 0:allvarlig, 1:fel, 2:varning, 3:info, 4:felsök, "
|
||||
"5:spåra\n"
|
||||
|
||||
msgid "Log file"
|
||||
msgstr ""
|
||||
@@ -21203,12 +21319,12 @@ msgstr ""
|
||||
"Vill du skriva om det?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\".\n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\".\n"
|
||||
"To add preset for more printers, please go to printer selection"
|
||||
msgstr ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\".\n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\".\n"
|
||||
"To add preset for more printers, please go to printer selection"
|
||||
|
||||
msgid "Create Printer/Nozzle"
|
||||
@@ -21290,9 +21406,6 @@ msgstr "Printer inställningar"
|
||||
msgid "Filament Preset Template"
|
||||
msgstr "Filament inställnings mall"
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "Avmarkera alla"
|
||||
|
||||
msgid "Process Preset Template"
|
||||
msgstr "Mall för process inställning"
|
||||
|
||||
@@ -21797,9 +21910,21 @@ msgstr ""
|
||||
msgid "Authorizing..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error. Can't get api token for authorization"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not parse server response."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error saving session to file"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error session check"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error during file upload"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Mismatched type of print host: %s"
|
||||
msgstr "Felaktig typ av utskriftsvärd: %s"
|
||||
@@ -22588,6 +22713,105 @@ msgstr "Could not connect to Flashforge via serial"
|
||||
msgid "Flashforge local API requires both serial number and access code."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer returned an error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing system_info in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing printer serial number in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error parsing response"
|
||||
msgstr ""
|
||||
|
||||
msgid "ElegooLink not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid access code"
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 device not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to ElegooLink is working correctly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to ElegooLink"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Error code: %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The file has been transferred, but some unknown errors occurred. Please "
|
||||
"check the device page for the file and try to start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open file for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to read file chunk for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is empty or could not be read."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to calculate file checksum."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error code not found"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The printer is busy, Please check the device page for the file and try to "
|
||||
"start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is lost, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is corrupted, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Transmission abnormality, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file does not match the printer, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print timeout"
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to CrealityPrint successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to CrealityPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Connection timed out. Please check if the printer and computer network are "
|
||||
"functioning properly, and confirm that they are on the same network."
|
||||
msgstr ""
|
||||
|
||||
msgid "The Hostname/IP/URL could not be parsed, please check it and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File/data transfer interrupted. Please check the printer and network, then "
|
||||
"try it again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr "The provided state is not correct."
|
||||
|
||||
@@ -22641,6 +22865,12 @@ msgstr "Brätte Öron"
|
||||
msgid "Please select single object."
|
||||
msgstr "Please select single object."
|
||||
|
||||
msgid "Entering Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom Out"
|
||||
msgstr "Zoom Out"
|
||||
|
||||
@@ -22650,6 +22880,9 @@ msgstr "Zoom In"
|
||||
msgid "Load skipping objects information failed. Please try again."
|
||||
msgstr "Load skipping objects information failed. Please try again."
|
||||
|
||||
msgid "Failed to create the temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "/%d Selected"
|
||||
msgstr "/%d Selected"
|
||||
@@ -22801,6 +23034,100 @@ msgstr "Number of triangular facets"
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr "Calculating, please wait..."
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bundle folder does not exist."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open folder."
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete selected bundle from folder and all presets loaded from it?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to remove bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Remove Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe bundle?"
|
||||
msgstr ""
|
||||
|
||||
msgid "UnsubscribeBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to unsubscribe bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "ExportPresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Save preset bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - boost::filesystem::canonical did not "
|
||||
"return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Performing desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed because the application directory was "
|
||||
"not found."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - could not create Gcodeviewer desktop "
|
||||
"file. OrcaSlicer desktop file was probably created successfully."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - "
|
||||
"boost::filesystem::canonical did not return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed because the application "
|
||||
"directory was not found."
|
||||
msgstr ""
|
||||
|
||||
msgid "Desktop Integration"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Desktop Integration sets this binary to be searchable by the system.\n"
|
||||
"\n"
|
||||
"Press \"Perform\" to proceed."
|
||||
msgstr ""
|
||||
|
||||
msgid "The download has failed"
|
||||
msgstr ""
|
||||
|
||||
#. TRN %1% = file path
|
||||
#, boost-format
|
||||
msgid "Can't create file at %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Archive preview"
|
||||
msgstr ""
|
||||
|
||||
msgid "Open File"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The filament may not be compatible with the current machine settings. "
|
||||
"Generic filament presets will be used."
|
||||
@@ -23208,6 +23535,12 @@ msgstr ""
|
||||
"ABS, kan en lämplig ökning av värmebäddens temperatur minska sannolikheten "
|
||||
"för vridning?"
|
||||
|
||||
#~ msgid "part selection"
|
||||
#~ msgstr "val av delar"
|
||||
|
||||
#~ msgid "°"
|
||||
#~ msgstr "°"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The Wipe option is not available when using the Firmware Retraction "
|
||||
#~ "mode.\n"
|
||||
@@ -23552,9 +23885,6 @@ msgstr ""
|
||||
#~ msgid "Mouse wheel:"
|
||||
#~ msgstr "Mus hjul:"
|
||||
|
||||
#~ msgid "Object selection"
|
||||
#~ msgstr "Object selection"
|
||||
|
||||
#~ msgid "Pass 1"
|
||||
#~ msgstr "Pass 1"
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-06-08 00:18+0800\n"
|
||||
"POT-Creation-Date: 2026-06-17 18:00+0800\n"
|
||||
"PO-Revision-Date: 2026-06-04 12:39+0700\n"
|
||||
"Last-Translator: Icezaza\n"
|
||||
"Language-Team: Thai\n"
|
||||
@@ -193,6 +193,15 @@ msgstr "เสร็จแล้ว"
|
||||
msgid "Support Generated"
|
||||
msgstr "สร้างส่วนรองรับแล้ว"
|
||||
|
||||
msgid "Entering Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on supports editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gizmo-Place on Face"
|
||||
msgstr "Gizmo-Place บนหน้า"
|
||||
|
||||
@@ -280,6 +289,15 @@ msgstr "ทาสีโดยใช้: เส้นพลาสติก %1%"
|
||||
msgid "To:"
|
||||
msgstr "ถึง:"
|
||||
|
||||
msgid "Entering color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color painting editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin"
|
||||
msgstr "ระบายผิวฟัซซี"
|
||||
|
||||
@@ -299,6 +317,15 @@ msgstr "คำเตือน: ผิวฟัซซีถูกปิดใช
|
||||
msgid "Enable painted fuzzy skin for this object"
|
||||
msgstr "เปิดใช้งานสกินฟัซซี่ที่ทาสีแล้วสำหรับวัตถุนี้"
|
||||
|
||||
msgid "Entering Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Move"
|
||||
msgstr "ย้าย"
|
||||
|
||||
@@ -684,6 +711,15 @@ msgstr "ตัดด้วยเส้น"
|
||||
msgid "Delete connector"
|
||||
msgstr "ลบตัวเชื่อมต่อ"
|
||||
|
||||
msgid "Entering Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Cut gizmo editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Mesh name"
|
||||
msgstr "ชื่อเมช"
|
||||
|
||||
@@ -1544,6 +1580,12 @@ msgstr "ระยะทางขนาน:"
|
||||
msgid "Flip by Face 2"
|
||||
msgstr "พลิกตามผิวหน้า 2"
|
||||
|
||||
msgid "Entering Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Assemble"
|
||||
msgstr "ประกอบ"
|
||||
|
||||
@@ -1569,17 +1611,20 @@ msgid "Warning: please select Point's or Circle's feature."
|
||||
msgstr "คำเตือน: โปรดเลือกคุณลักษณะของจุดหรือวงกลม"
|
||||
|
||||
msgid ""
|
||||
"It is recommended to assemble the objects first,\n"
|
||||
"because the objects is restriced to bed \n"
|
||||
"It is recommended to assemble objects first,\n"
|
||||
"because they are restricted to the bed \n"
|
||||
"and only parts can be lifted."
|
||||
msgstr ""
|
||||
"ขอแนะนำให้ประกอบวัตถุก่อน\n"
|
||||
"เพราะสิ่งของนั้นถูกจำกัดไว้บนฐานพิมพ์ \n"
|
||||
"และยกได้เพียงบางส่วนเท่านั้น"
|
||||
|
||||
msgid "Face and face assembly"
|
||||
msgstr "การประกอบผิวหน้าและผิวหน้า"
|
||||
|
||||
msgid "Entering Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
|
||||
@@ -1637,7 +1682,8 @@ msgstr "ไฟล์ AMF"
|
||||
msgid "3MF files"
|
||||
msgstr "ไฟล์ 3MF"
|
||||
|
||||
msgid "Gcode 3MF files"
|
||||
#, fuzzy
|
||||
msgid "G-code 3MF files"
|
||||
msgstr "ไฟล์ Gcode3MF"
|
||||
|
||||
msgid "G-code files"
|
||||
@@ -1853,6 +1899,20 @@ msgid ""
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from "
|
||||
"the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your "
|
||||
"local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset "
|
||||
"conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local "
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy with your local preset changes.\n"
|
||||
"Do you want to continue?"
|
||||
@@ -3114,6 +3174,51 @@ msgstr "อุณหภูมิสูงสุดต้องไม่เกิ
|
||||
msgid "The minmum temperature should not be less than "
|
||||
msgstr "อุณหภูมิต่ำสุดไม่ควรต่ำกว่า"
|
||||
|
||||
msgid "Type to filter..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All"
|
||||
msgstr "ทั้งหมด"
|
||||
|
||||
msgid "No selected items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All items selected..."
|
||||
msgstr ""
|
||||
|
||||
msgid "No matching items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "ยกเลิกการเลือกทั้งหมด"
|
||||
|
||||
msgid "Select visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter nonSelected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Simple settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr "การตั้งค่าขั้นสูง"
|
||||
|
||||
msgid "Expert settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Developer mode"
|
||||
msgstr "โหมดนักพัฒนา"
|
||||
|
||||
msgid "Launch troubleshoot center"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"All the selected objects are on a locked plate.\n"
|
||||
"Cannot auto-arrange these objects."
|
||||
@@ -3372,6 +3477,9 @@ msgstr "แบบอักษรไม่มีรูปร่างสำหร
|
||||
msgid "There is no valid surface for text projection."
|
||||
msgstr "ไม่มีพื้นผิวที่ถูกต้องสำหรับการฉายข้อความ"
|
||||
|
||||
msgid "An unexpected error occurred"
|
||||
msgstr ""
|
||||
|
||||
msgid "Thermal Preconditioning for first layer optimization"
|
||||
msgstr "การปรับสภาพล่วงหน้าด้วยความร้อนเพื่อการเพิ่มประสิทธิภาพชั้นแรก"
|
||||
|
||||
@@ -4046,8 +4154,8 @@ msgid ""
|
||||
"Renaming of the G-code after copying to the selected destination folder has "
|
||||
"failed. Current path is %1%.tmp. Please try exporting again."
|
||||
msgstr ""
|
||||
"การเปลี่ยนชื่อ G-code หลังจากคัดลอกไปยังโฟลเดอร์ปลายทางที่เลือกล้มเหลว เส้นทางปัจจุบันคือ %1%."
|
||||
"tmp โปรดลองส่งออกอีกครั้ง"
|
||||
"การเปลี่ยนชื่อ G-code หลังจากคัดลอกไปยังโฟลเดอร์ปลายทางที่เลือกล้มเหลว เส้นทางปัจจุบันคือ "
|
||||
"%1%.tmp โปรดลองส่งออกอีกครั้ง"
|
||||
|
||||
#, boost-format
|
||||
msgid ""
|
||||
@@ -5247,12 +5355,10 @@ msgstr "เพิ่ม/ลดพื้นที่แก้ไข"
|
||||
msgid "Sequence"
|
||||
msgstr "ลำดับ"
|
||||
|
||||
msgid "Object Selection"
|
||||
#, fuzzy
|
||||
msgid "Object selection"
|
||||
msgstr "การเลือกวัตถุ"
|
||||
|
||||
msgid "Part Selection"
|
||||
msgstr "การเลือกชิ้นส่วน"
|
||||
|
||||
msgid "number keys"
|
||||
msgstr "ปุ่มตัวเลข"
|
||||
|
||||
@@ -5435,9 +5541,6 @@ msgstr "ป้ายชื่อ"
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "แถบเครื่องมือสี"
|
||||
|
||||
msgid "part selection"
|
||||
msgstr "การเลือกชิ้นส่วน"
|
||||
|
||||
msgid "Explosion Ratio"
|
||||
msgstr "อัตราส่วนการระเบิด"
|
||||
|
||||
@@ -5462,7 +5565,7 @@ msgstr "ปริมาณ:"
|
||||
msgid "Size:"
|
||||
msgstr "ขนาด:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -5686,12 +5789,12 @@ msgstr "พิมพ์ฐานพิมพ์"
|
||||
msgid "Export G-code file"
|
||||
msgstr "ส่งออกไฟล์ G-code"
|
||||
|
||||
msgid "Send"
|
||||
msgstr "ส่ง"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "ส่งออกไฟล์แผ่นสไลซ์บาง ๆ"
|
||||
|
||||
msgid "Send"
|
||||
msgstr "ส่ง"
|
||||
|
||||
msgid "Export all sliced file"
|
||||
msgstr "ส่งออกไฟล์ที่สไลซ์บาง ๆ ทั้งหมด"
|
||||
|
||||
@@ -6350,8 +6453,8 @@ msgid ""
|
||||
"The .gcode.3mf file contains no G-code data. Please slice it with Orca "
|
||||
"Slicer and export a new .gcode.3mf file."
|
||||
msgstr ""
|
||||
"ไฟล์ .gcode.3mf ไม่มีข้อมูล G-code โปรดแบ่งส่วนด้วย Orca Slicer และส่งออกไฟล์ ."
|
||||
"gcode.3mf ใหม่"
|
||||
"ไฟล์ .gcode.3mf ไม่มีข้อมูล G-code โปรดแบ่งส่วนด้วย Orca Slicer "
|
||||
"และส่งออกไฟล์ .gcode.3mf ใหม่"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "File '%s' was lost! Please download it again."
|
||||
@@ -7727,7 +7830,8 @@ msgstr ""
|
||||
msgid "The selected object couldn't be split."
|
||||
msgstr "ไม่สามารถแยกวัตถุที่เลือกได้"
|
||||
|
||||
msgid "Disable Auto-Drop to preserve z positioning?\n"
|
||||
#, fuzzy
|
||||
msgid "Disable Auto-Drop to preserve Z positioning?\n"
|
||||
msgstr "ปิดการใช้งานการวางอัตโนมัติเพื่อรักษาตำแหน่ง z หรือไม่\n"
|
||||
|
||||
msgid "Object with floating parts was detected"
|
||||
@@ -8379,9 +8483,6 @@ msgstr "การตั้งค่าเส้นพลาสติกผู้
|
||||
msgid "Group user filament presets based on selection"
|
||||
msgstr "ตั้งค่าเส้นพลาสติกผู้ใช้แบบกลุ่มตามการเลือก"
|
||||
|
||||
msgid "All"
|
||||
msgstr "ทั้งหมด"
|
||||
|
||||
msgid "By type"
|
||||
msgstr "ตามประเภท"
|
||||
|
||||
@@ -8755,6 +8856,14 @@ msgstr "ดาวน์โหลดปลั๊กอินเครือข่
|
||||
msgid "Associate files to OrcaSlicer"
|
||||
msgstr "เชื่อมโยงไฟล์กับ OrcaSlicer"
|
||||
|
||||
msgid ""
|
||||
"File associations for the Microsoft Store version are managed by Windows "
|
||||
"Settings."
|
||||
msgstr ""
|
||||
|
||||
msgid "Open Windows Default Apps Settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Associate 3MF files to OrcaSlicer"
|
||||
msgstr "เชื่อมโยงไฟล์ 3MF กับ OrcaSlicer"
|
||||
|
||||
@@ -8785,9 +8894,6 @@ msgstr "เชื่อมโยงเว็บลิงก์กับ OrcaSlic
|
||||
msgid "Developer"
|
||||
msgstr "นักพัฒนา"
|
||||
|
||||
msgid "Developer mode"
|
||||
msgstr "โหมดนักพัฒนา"
|
||||
|
||||
msgid "Skip AMS blacklist check"
|
||||
msgstr "ข้ามการตรวจสอบบัญชีดำของ AMS"
|
||||
|
||||
@@ -9562,6 +9668,9 @@ msgstr ""
|
||||
"การอัปโหลดไฟล์หมดเวลา โปรดตรวจสอบว่าเวอร์ชันเฟิร์มแวร์รองรับการทำงานนี้หรือไม่ "
|
||||
"หรือตรวจสอบว่าเครื่องพิมพ์ทำงานอย่างถูกต้องหรือไม่"
|
||||
|
||||
msgid "Sending failed, please try again!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice ok."
|
||||
msgstr "ชิ้นตกลง"
|
||||
|
||||
@@ -9874,12 +9983,12 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"เมื่อบันทึกไทม์แลปส์โดยไม่มีหัวเครื่องมือ แนะนำให้เพิ่ม \"Timelapse Wipe Tower\" \n"
|
||||
"โดยคลิกขวาที่ตำแหน่งว่างของแผ่นงานแล้วเลือก \"Add Primitive\"->\"Timelapse Wipe Tower"
|
||||
"\""
|
||||
"โดยคลิกขวาที่ตำแหน่งว่างของแผ่นงานแล้วเลือก \"Add Primitive\"->\"Timelapse Wipe "
|
||||
"Tower\""
|
||||
|
||||
msgid ""
|
||||
"A copy of the current system preset will be created, which will be detached "
|
||||
@@ -10000,6 +10109,9 @@ msgstr "ตั้งค่าความเร็วสำหรับบริ
|
||||
msgid "Travel speed"
|
||||
msgstr "ความเร็วเดินหัวเปล่า"
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr "ส่วนเบี่ยงเบนทางแยก"
|
||||
|
||||
msgid "Jerk(XY)"
|
||||
msgstr "กระตุก(XY)"
|
||||
|
||||
@@ -10864,9 +10976,6 @@ msgstr ""
|
||||
"แทนที่รายการเส้นพลาสติกของโครงการตามลำดับตามเส้นพลาสติกของเครื่องพิมพ์ "
|
||||
"และเส้นพลาสติกเครื่องพิมพ์ที่ไม่ได้ใช้จะถูกเพิ่มเข้าที่ส่วนท้ายของรายการโดยอัตโนมัติ"
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr "การตั้งค่าขั้นสูง"
|
||||
|
||||
msgid "Add unused AMS filaments to filaments list."
|
||||
msgstr "เพิ่มเส้นพลาสติก AMS ที่ไม่ได้ใช้ลงในรายการเส้นพลาสติก"
|
||||
|
||||
@@ -11356,12 +11465,23 @@ msgstr "มีปลั๊กอินเครือข่ายใหม่ (%
|
||||
msgid "New version of Orca Slicer"
|
||||
msgstr "Orca Slicer เวอร์ชันใหม่"
|
||||
|
||||
msgid "Check on Github"
|
||||
msgstr "ตรวจสอบบน Github"
|
||||
msgid "Check on Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check on GitHub"
|
||||
msgstr "ตรวจสอบบน GitHub"
|
||||
|
||||
msgid "Open Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Skip this Version"
|
||||
msgstr "ข้ามเวอร์ชันนี้"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"New version available: %s. Please update OrcaSlicer from the Microsoft Store."
|
||||
msgstr ""
|
||||
|
||||
msgid "Confirm and Update Nozzle"
|
||||
msgstr "ยืนยันและอัปเดตหัวฉีด"
|
||||
|
||||
@@ -11469,6 +11589,9 @@ msgstr "โมดูลการตัด"
|
||||
msgid "Auto Fire Extinguishing System"
|
||||
msgstr "ระบบดับเพลิงอัตโนมัติ"
|
||||
|
||||
msgid "Beta"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update firmware"
|
||||
msgstr "อัพเดตเฟิร์มแวร์"
|
||||
|
||||
@@ -12192,6 +12315,15 @@ msgstr "ใช้โฮสต์การพิมพ์ของบุคคล
|
||||
msgid "Allow controlling BambuLab's printer through 3rd party print hosts."
|
||||
msgstr "อนุญาตให้ควบคุมเครื่องพิมพ์ของ BambuLab ผ่านโฮสต์การพิมพ์ของบุคคลที่สาม"
|
||||
|
||||
msgid "Use 3MF instead of G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this if the printer accepts a 3MF file as the print job. When "
|
||||
"enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a "
|
||||
"plain .gcode file."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer Agent"
|
||||
msgstr "ตัวแทนเครื่องพิมพ์"
|
||||
|
||||
@@ -12598,7 +12730,7 @@ msgid "External bridge density"
|
||||
msgstr "ความหนาแน่นของสะพานภายนอก"
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of external bridge lines. Default is 100%.\n"
|
||||
"Controls the density (spacing) of external bridge lines.\n"
|
||||
"Theoretically, 100% means a solid bridge, but due to the tendency of bridge "
|
||||
"extrusions to sag, 100% may not be sufficient.\n"
|
||||
"\n"
|
||||
@@ -12612,18 +12744,14 @@ msgid ""
|
||||
" - Pros: Can create a string-like first layer. Faster and with better "
|
||||
"cooling because there is more space for air to circulate around the extruded "
|
||||
"bridge.\n"
|
||||
" - Cons: May lead to sagging and poorer surface finish.\n"
|
||||
"\n"
|
||||
"Recommended range: Minimum 10% - Maximum 125%."
|
||||
" - Cons: May lead to sagging and poorer surface finish."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge density"
|
||||
msgstr "ความหนาแน่นสะพานภายใน"
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of internal bridge lines. Default is 100%. "
|
||||
"100% means a solid internal bridge.\n"
|
||||
"\n"
|
||||
"Controls the density (spacing) of internal bridge lines.\n"
|
||||
"Internal bridges act as intermediate support between sparse infill and top "
|
||||
"solid infill and can strongly affect top surface quality.\n"
|
||||
"\n"
|
||||
@@ -12658,11 +12786,9 @@ msgid ""
|
||||
"filament flow ratio, and if set, the object's flow ratio."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Bridge line width is expressed either as an absolute value or as a "
|
||||
"percentage of the active nozzle diameter (percentages are computed from the "
|
||||
"nozzle diameter).\n"
|
||||
"Line width of the Bridge. If expressed as a %, it will be computed over the "
|
||||
"nozzle diameter.\n"
|
||||
"Recommended to use with a higher Bridge density or Bridge flow ratio.\n"
|
||||
"\n"
|
||||
"The maximum value is 100% or the nozzle diameter.\n"
|
||||
@@ -14502,7 +14628,7 @@ msgstr "การใช้หลายบรรทัดสำหรับรู
|
||||
msgid "Z-buckling bias optimization (experimental)"
|
||||
msgstr "การเพิ่มประสิทธิภาพอคติ Z-buckling (ทดลอง)"
|
||||
|
||||
#, fuzzy, c-format, boost-format
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
|
||||
"to shorten the effective vertical column length and improve Z-axis "
|
||||
@@ -14705,8 +14831,8 @@ msgid "mm/s² or %"
|
||||
msgstr "มม./วินาที² หรือ %"
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
msgstr ""
|
||||
"ความเร่งของไส้ในแบบโปร่ง หากค่าแสดงเป็นเปอร์เซ็นต์ (เช่น 100%) "
|
||||
"ค่านั้นจะถูกคำนวณตามความเร่งเริ่มต้น"
|
||||
@@ -14751,9 +14877,6 @@ msgstr "max_accel_to_decel ของ Klipper จะถูกปรับเป
|
||||
msgid "Default jerk."
|
||||
msgstr "กระตุกเริ่มต้น"
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr "ส่วนเบี่ยงเบนทางแยก"
|
||||
|
||||
msgid ""
|
||||
"Marlin Firmware Junction Deviation (replaces the traditional XY Jerk "
|
||||
"setting)."
|
||||
@@ -14833,10 +14956,10 @@ msgstr "ความเร็วพัดลมเต็มชั้น"
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"ความเร็วพัดลมจะเพิ่มขึ้นเชิงเส้นจากศูนย์ที่เลเยอร์ \"close_fan_the_first_x_layers\" "
|
||||
"ไปจนถึงสูงสุดที่เลเยอร์ \"full_fan_speed_layer\" \"full_fan_speed_layer\" "
|
||||
@@ -15831,16 +15954,14 @@ msgstr ""
|
||||
"ส่งผลต่อเส้นรอบวงที่มีความชันน้อยกว่ามุมนี้ (องศา)\n"
|
||||
"ค่าที่เหมาะสมคือ 35 ตั้งค่าเป็น 0 เพื่อปิดใช้งาน"
|
||||
|
||||
msgid "°"
|
||||
msgstr "°"
|
||||
|
||||
msgid "Don't alternate fill direction"
|
||||
msgstr "อย่าสลับทิศทางไส้ใน"
|
||||
|
||||
msgid "Disable alternating fill direction when using Z contouring."
|
||||
msgstr "ปิดใช้งานการสลับทิศทางไส้ในเมื่อใช้โครงร่าง Z"
|
||||
|
||||
msgid "Minimum z height"
|
||||
#, fuzzy
|
||||
msgid "Minimum Z height"
|
||||
msgstr "ความสูงขั้นต่ำ z"
|
||||
|
||||
msgid ""
|
||||
@@ -16663,8 +16784,8 @@ msgid ""
|
||||
"If this value is positive, Z-hop will only come into effect when Z is above "
|
||||
"the parameter: \"Z-hop lower boundary\" and is below this value."
|
||||
msgstr ""
|
||||
"หากค่านี้เป็นค่าบวก Z-hop จะมีผลเฉพาะเมื่อ Z อยู่เหนือพารามิเตอร์: \"Z-hop lower boundary"
|
||||
"\" และอยู่ต่ำกว่าค่านี้"
|
||||
"หากค่านี้เป็นค่าบวก Z-hop จะมีผลเฉพาะเมื่อ Z อยู่เหนือพารามิเตอร์: \"Z-hop lower "
|
||||
"boundary\" และอยู่ต่ำกว่าค่านี้"
|
||||
|
||||
msgid "Z-hop type"
|
||||
msgstr "ประเภท Z-hop"
|
||||
@@ -16937,8 +17058,8 @@ msgid "Role base wipe speed"
|
||||
msgstr "ความเร็วในการล้างฐานบทบาท"
|
||||
|
||||
msgid ""
|
||||
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||
"g. if a wipe action is executed immediately following an outer wall "
|
||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
||||
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||
"wipe action."
|
||||
msgstr ""
|
||||
@@ -17819,8 +17940,8 @@ msgstr "เปิดใช้งานการควบคุมอุณหภ
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present.\n"
|
||||
@@ -18762,8 +18883,8 @@ msgid "Debug level"
|
||||
msgstr "ระดับการแก้ไขข้อบกพร่อง"
|
||||
|
||||
msgid ""
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
"trace\n"
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
"5:trace\n"
|
||||
msgstr ""
|
||||
"ตั้งค่าระดับการบันทึกการดีบัก 0: ร้ายแรง, 1: ข้อผิดพลาด, 2: คำเตือน, 3: ข้อมูล, 4: ดีบัก, 5: "
|
||||
"ติดตาม\n"
|
||||
@@ -20520,8 +20641,8 @@ msgstr ""
|
||||
"คุณต้องการเขียนใหม่หรือไม่?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\".\n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\".\n"
|
||||
"To add preset for more printers, please go to printer selection"
|
||||
msgstr ""
|
||||
"เราจะเปลี่ยนชื่อค่าที่ตั้งล่วงหน้าเป็น \"Vendor Type Serial @printer ที่คุณเลือก\"\n"
|
||||
@@ -20606,9 +20727,6 @@ msgstr "พรีเซ็ตเครื่องพิมพ์"
|
||||
msgid "Filament Preset Template"
|
||||
msgstr "เทมเพลตที่ตั้งไว้ล่วงหน้าของเส้นพลาสติก"
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "ยกเลิกการเลือกทั้งหมด"
|
||||
|
||||
msgid "Process Preset Template"
|
||||
msgstr "ประมวลผลเทมเพลตที่กำหนดไว้ล่วงหน้า"
|
||||
|
||||
@@ -21086,9 +21204,21 @@ msgstr ""
|
||||
msgid "Authorizing..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error. Can't get api token for authorization"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not parse server response."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error saving session to file"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error session check"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error during file upload"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Mismatched type of print host: %s"
|
||||
msgstr "ประเภทของโฮสต์การพิมพ์ไม่ตรงกัน: %s"
|
||||
@@ -21834,6 +21964,105 @@ msgstr "ไม่สามารถเชื่อมต่อกับ Flashfor
|
||||
msgid "Flashforge local API requires both serial number and access code."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer returned an error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing system_info in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing printer serial number in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error parsing response"
|
||||
msgstr ""
|
||||
|
||||
msgid "ElegooLink not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid access code"
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 device not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to ElegooLink is working correctly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to ElegooLink"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Error code: %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The file has been transferred, but some unknown errors occurred. Please "
|
||||
"check the device page for the file and try to start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open file for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to read file chunk for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is empty or could not be read."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to calculate file checksum."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error code not found"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The printer is busy, Please check the device page for the file and try to "
|
||||
"start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is lost, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is corrupted, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Transmission abnormality, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file does not match the printer, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print timeout"
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to CrealityPrint successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to CrealityPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Connection timed out. Please check if the printer and computer network are "
|
||||
"functioning properly, and confirm that they are on the same network."
|
||||
msgstr ""
|
||||
|
||||
msgid "The Hostname/IP/URL could not be parsed, please check it and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File/data transfer interrupted. Please check the printer and network, then "
|
||||
"try it again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr "สถานะที่ระบุไม่ถูกต้อง"
|
||||
|
||||
@@ -21884,6 +22113,12 @@ msgstr "หู ขอบยึดชิ้นงาน"
|
||||
msgid "Please select single object."
|
||||
msgstr "กรุณาเลือกวัตถุเดียว"
|
||||
|
||||
msgid "Entering Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom Out"
|
||||
msgstr "ซูมออก"
|
||||
|
||||
@@ -21893,6 +22128,9 @@ msgstr "ซูมเข้า"
|
||||
msgid "Load skipping objects information failed. Please try again."
|
||||
msgstr "โหลดข้อมูลวัตถุที่ข้ามล้มเหลว โปรดลองอีกครั้ง"
|
||||
|
||||
msgid "Failed to create the temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "/%d Selected"
|
||||
msgstr "/%d เลือกแล้ว"
|
||||
@@ -22041,6 +22279,100 @@ msgstr "จำนวนด้านสามเหลี่ยม"
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr "กำลังคำนวณ โปรดรอสักครู่..."
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bundle folder does not exist."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open folder."
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete selected bundle from folder and all presets loaded from it?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to remove bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Remove Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe bundle?"
|
||||
msgstr ""
|
||||
|
||||
msgid "UnsubscribeBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to unsubscribe bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "ExportPresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Save preset bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - boost::filesystem::canonical did not "
|
||||
"return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Performing desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed because the application directory was "
|
||||
"not found."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - could not create Gcodeviewer desktop "
|
||||
"file. OrcaSlicer desktop file was probably created successfully."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - "
|
||||
"boost::filesystem::canonical did not return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed because the application "
|
||||
"directory was not found."
|
||||
msgstr ""
|
||||
|
||||
msgid "Desktop Integration"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Desktop Integration sets this binary to be searchable by the system.\n"
|
||||
"\n"
|
||||
"Press \"Perform\" to proceed."
|
||||
msgstr ""
|
||||
|
||||
msgid "The download has failed"
|
||||
msgstr ""
|
||||
|
||||
#. TRN %1% = file path
|
||||
#, boost-format
|
||||
msgid "Can't create file at %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Archive preview"
|
||||
msgstr ""
|
||||
|
||||
msgid "Open File"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The filament may not be compatible with the current machine settings. "
|
||||
"Generic filament presets will be used."
|
||||
@@ -22429,6 +22761,21 @@ msgstr ""
|
||||
"คุณรู้หรือไม่ว่าเมื่อพิมพ์วัสดุที่มีแนวโน้มที่จะเกิดการบิดเบี้ยว เช่น ABS "
|
||||
"การเพิ่มอุณหภูมิฐานพิมพ์อย่างเหมาะสมสามารถลดความน่าจะเป็นของการบิดเบี้ยวได้"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "It is recommended to assemble objects first,\n"
|
||||
#~ "because the objects is restriced to bed \n"
|
||||
#~ "and only parts can be lifted."
|
||||
#~ msgstr ""
|
||||
#~ "ขอแนะนำให้ประกอบวัตถุก่อน\n"
|
||||
#~ "เพราะสิ่งของนั้นถูกจำกัดไว้บนฐานพิมพ์ \n"
|
||||
#~ "และยกได้เพียงบางส่วนเท่านั้น"
|
||||
|
||||
#~ msgid "part selection"
|
||||
#~ msgstr "การเลือกชิ้นส่วน"
|
||||
|
||||
#~ msgid "°"
|
||||
#~ msgstr "°"
|
||||
|
||||
#, c-format, boost-format
|
||||
#~ msgid ""
|
||||
#~ "Failed to connect to OrcaCloud.\n"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-06-08 00:18+0800\n"
|
||||
"POT-Creation-Date: 2026-06-17 18:00+0800\n"
|
||||
"PO-Revision-Date: 2026-04-08 23:59+0300\n"
|
||||
"Last-Translator: GlauTech\n"
|
||||
"Language-Team: \n"
|
||||
@@ -197,6 +197,15 @@ msgstr "Tamamlandı"
|
||||
msgid "Support Generated"
|
||||
msgstr "Destek Oluşturuldu"
|
||||
|
||||
msgid "Entering Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on supports editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gizmo-Place on Face"
|
||||
msgstr "Gizmo-Yüzeye yerleştir"
|
||||
|
||||
@@ -284,6 +293,15 @@ msgstr "Şunlar kullanılarak boyanmıştır: Filament %1%"
|
||||
msgid "To:"
|
||||
msgstr "İle:"
|
||||
|
||||
msgid "Entering color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color painting editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin"
|
||||
msgstr "Pütürlü yüzey boyama"
|
||||
|
||||
@@ -305,6 +323,15 @@ msgstr ""
|
||||
msgid "Enable painted fuzzy skin for this object"
|
||||
msgstr "Bu nesne için boyalı pütürlü yüzeyi etkinleştir"
|
||||
|
||||
msgid "Entering Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Move"
|
||||
msgstr "Taşı"
|
||||
|
||||
@@ -694,6 +721,15 @@ msgstr "Satıra göre kes"
|
||||
msgid "Delete connector"
|
||||
msgstr "Bağlayıcıyı sil"
|
||||
|
||||
msgid "Entering Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Cut gizmo editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Mesh name"
|
||||
msgstr "Mesh adı"
|
||||
|
||||
@@ -1567,6 +1603,12 @@ msgstr "Paralel mesafe:"
|
||||
msgid "Flip by Face 2"
|
||||
msgstr "Yüzey 2’ye Göre Çevir"
|
||||
|
||||
msgid "Entering Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Assemble"
|
||||
msgstr "Birleştir"
|
||||
|
||||
@@ -1593,17 +1635,20 @@ msgid "Warning: please select Point's or Circle's feature."
|
||||
msgstr "Uyarı: Lütfen Noktanın veya Çemberin özelliğini seçin."
|
||||
|
||||
msgid ""
|
||||
"It is recommended to assemble the objects first,\n"
|
||||
"because the objects is restriced to bed \n"
|
||||
"It is recommended to assemble objects first,\n"
|
||||
"because they are restricted to the bed \n"
|
||||
"and only parts can be lifted."
|
||||
msgstr ""
|
||||
"Önce nesnelerin bir araya getirilmesi tavsiye edilir.\n"
|
||||
"çünkü nesneler yatakla sınırlıdır \n"
|
||||
"ve yalnızca parçalar kaldırılabilir."
|
||||
|
||||
msgid "Face and face assembly"
|
||||
msgstr "Yüz ve yüz montajı"
|
||||
|
||||
msgid "Entering Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
|
||||
@@ -1662,7 +1707,8 @@ msgstr "AMF dosyaları"
|
||||
msgid "3MF files"
|
||||
msgstr "3MF dosyaları"
|
||||
|
||||
msgid "Gcode 3MF files"
|
||||
#, fuzzy
|
||||
msgid "G-code 3MF files"
|
||||
msgstr "Gcode 3MF dosyaları"
|
||||
|
||||
msgid "G-code files"
|
||||
@@ -1883,6 +1929,20 @@ msgid ""
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from "
|
||||
"the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your "
|
||||
"local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset "
|
||||
"conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local "
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy with your local preset changes.\n"
|
||||
"Do you want to continue?"
|
||||
@@ -3160,6 +3220,52 @@ msgstr "Maksimum sıcaklık aşılamaz"
|
||||
msgid "The minmum temperature should not be less than "
|
||||
msgstr "Minimum sıcaklık,"
|
||||
|
||||
msgid "Type to filter..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All"
|
||||
msgstr "Tümü"
|
||||
|
||||
msgid "No selected items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All items selected..."
|
||||
msgstr ""
|
||||
|
||||
msgid "No matching items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "Hiçbirini seçme"
|
||||
|
||||
msgid "Select visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter nonSelected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Simple settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr "Gelişmiş ayarlar"
|
||||
|
||||
msgid "Expert settings"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "Developer mode"
|
||||
msgstr "Geliştirici Modu"
|
||||
|
||||
msgid "Launch troubleshoot center"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"All the selected objects are on a locked plate.\n"
|
||||
"Cannot auto-arrange these objects."
|
||||
@@ -3441,6 +3547,9 @@ msgstr "Yazı tipinin verilen metin için herhangi bir şekli yoktur."
|
||||
msgid "There is no valid surface for text projection."
|
||||
msgstr "Metin yansıtma için geçerli bir yüzey yoktur."
|
||||
|
||||
msgid "An unexpected error occurred"
|
||||
msgstr ""
|
||||
|
||||
msgid "Thermal Preconditioning for first layer optimization"
|
||||
msgstr "İlk katman optimizasyonu için Termal Ön Şartlandırma"
|
||||
|
||||
@@ -5361,10 +5470,7 @@ msgstr "Düzenleme alanını artır/azalt"
|
||||
msgid "Sequence"
|
||||
msgstr "Sekans"
|
||||
|
||||
msgid "Object Selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part Selection"
|
||||
msgid "Object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys"
|
||||
@@ -5555,9 +5661,6 @@ msgstr "Etiketler"
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "Boyama Araç Çubuğu"
|
||||
|
||||
msgid "part selection"
|
||||
msgstr "parça seçimi"
|
||||
|
||||
msgid "Explosion Ratio"
|
||||
msgstr "Patlama Oranı"
|
||||
|
||||
@@ -5582,7 +5685,7 @@ msgstr "Hacim:"
|
||||
msgid "Size:"
|
||||
msgstr "Boyut:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -5812,12 +5915,12 @@ msgstr "Plakayı Yazdır"
|
||||
msgid "Export G-code file"
|
||||
msgstr "G-kod dosyasını dışa aktar"
|
||||
|
||||
msgid "Send"
|
||||
msgstr "Gönder"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "Dilimlenmiş plaka dosyasını dışa aktar"
|
||||
|
||||
msgid "Send"
|
||||
msgstr "Gönder"
|
||||
|
||||
msgid "Export all sliced file"
|
||||
msgstr "Tüm dilimlenmiş dosyayı dışa aktar"
|
||||
|
||||
@@ -7929,7 +8032,7 @@ msgstr ""
|
||||
msgid "The selected object couldn't be split."
|
||||
msgstr "Seçilen nesne bölünemedi."
|
||||
|
||||
msgid "Disable Auto-Drop to preserve z positioning?\n"
|
||||
msgid "Disable Auto-Drop to preserve Z positioning?\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Object with floating parts was detected"
|
||||
@@ -8606,9 +8709,6 @@ msgstr "Grup kullanıcı filament ön ayarları"
|
||||
msgid "Group user filament presets based on selection"
|
||||
msgstr "Kullanıcı filament ön ayarlarını seçime göre gruplandırın"
|
||||
|
||||
msgid "All"
|
||||
msgstr "Tümü"
|
||||
|
||||
msgid "By type"
|
||||
msgstr "Türe göre"
|
||||
|
||||
@@ -8987,6 +9087,14 @@ msgstr "Ağ Eklentisini İndirin"
|
||||
msgid "Associate files to OrcaSlicer"
|
||||
msgstr "Dosyaları OrcaSlicer ile ilişkilendirin"
|
||||
|
||||
msgid ""
|
||||
"File associations for the Microsoft Store version are managed by Windows "
|
||||
"Settings."
|
||||
msgstr ""
|
||||
|
||||
msgid "Open Windows Default Apps Settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Associate 3MF files to OrcaSlicer"
|
||||
msgstr ".3mf dosyalarını OrcaSlicer ile ilişkilendirin"
|
||||
|
||||
@@ -9025,10 +9133,6 @@ msgstr "Web bağlantılarını OrcaSlicer ile ilişkilendirin"
|
||||
msgid "Developer"
|
||||
msgstr "Geliştirici"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Developer mode"
|
||||
msgstr "Geliştirici Modu"
|
||||
|
||||
msgid "Skip AMS blacklist check"
|
||||
msgstr "AMS kara liste kontrolünü atla"
|
||||
|
||||
@@ -9850,6 +9954,9 @@ msgstr ""
|
||||
"destekleyip desteklemediğini kontrol edin veya yazıcının düzgün çalışıp "
|
||||
"çalışmadığını kontrol edin."
|
||||
|
||||
msgid "Sending failed, please try again!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice ok."
|
||||
msgstr "Dilimleme tamam."
|
||||
|
||||
@@ -10175,8 +10282,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Araç başlığı olmadan timelapse kaydederken, bir \"Timelapse Wipe Tower\" "
|
||||
"eklenmesi önerilir.\n"
|
||||
@@ -10306,6 +10413,9 @@ msgstr "Harici ve dahili köprüler için hızı ayarlayın"
|
||||
msgid "Travel speed"
|
||||
msgstr "Seyahat Hızı"
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr "Köşe sapması"
|
||||
|
||||
msgid "Jerk(XY)"
|
||||
msgstr "Sarsıntı(XY)"
|
||||
|
||||
@@ -11179,9 +11289,6 @@ msgstr ""
|
||||
"Kullanılmayan yazıcı filamentleri ise otomatik olarak listenin sonuna "
|
||||
"eklenecektir."
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr "Gelişmiş ayarlar"
|
||||
|
||||
msgid "Add unused AMS filaments to filaments list."
|
||||
msgstr "Kullanılmayan AMS filamentlerini filament listesine ekleyin."
|
||||
|
||||
@@ -11682,12 +11789,23 @@ msgstr "Yeni bir Ağ eklentisi(%s) mevcut, Yüklemek istiyor musunuz?"
|
||||
msgid "New version of Orca Slicer"
|
||||
msgstr "Orca Slicer’ın yeni versiyonu"
|
||||
|
||||
msgid "Check on Github"
|
||||
msgid "Check on Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check on GitHub"
|
||||
msgstr ""
|
||||
|
||||
msgid "Open Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Skip this Version"
|
||||
msgstr "Bu versiyonu atla"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"New version available: %s. Please update OrcaSlicer from the Microsoft Store."
|
||||
msgstr ""
|
||||
|
||||
msgid "Confirm and Update Nozzle"
|
||||
msgstr "Nozulu Onaylayın ve Güncelleyin"
|
||||
|
||||
@@ -11802,6 +11920,9 @@ msgstr "Kesim Modülü"
|
||||
msgid "Auto Fire Extinguishing System"
|
||||
msgstr "Otomatik Yangın Söndürme Sistemi"
|
||||
|
||||
msgid "Beta"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update firmware"
|
||||
msgstr "Ürün yazılımını güncelle"
|
||||
|
||||
@@ -12144,8 +12265,8 @@ msgid ""
|
||||
"Please select \"By object\" print sequence to print multiple objects in "
|
||||
"spiral vase mode."
|
||||
msgstr ""
|
||||
"Birden fazla nesneyi spiral vazo modunda yazdırmak için lütfen \"Nesneye göre"
|
||||
"\" yazdırma sırasını seçin."
|
||||
"Birden fazla nesneyi spiral vazo modunda yazdırmak için lütfen \"Nesneye "
|
||||
"göre\" yazdırma sırasını seçin."
|
||||
|
||||
msgid ""
|
||||
"The spiral vase mode does not work when an object contains more than one "
|
||||
@@ -12591,6 +12712,15 @@ msgstr ""
|
||||
"BambuLab yazıcısının 3. taraf yazdırma ana bilgisayarları aracılığıyla "
|
||||
"kontrol edilmesine izin ver."
|
||||
|
||||
msgid "Use 3MF instead of G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this if the printer accepts a 3MF file as the print job. When "
|
||||
"enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a "
|
||||
"plain .gcode file."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer Agent"
|
||||
msgstr "Yazıcı Aracısı"
|
||||
|
||||
@@ -13025,7 +13155,7 @@ msgid "External bridge density"
|
||||
msgstr "Dış köprü yoğunluğu"
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of external bridge lines. Default is 100%.\n"
|
||||
"Controls the density (spacing) of external bridge lines.\n"
|
||||
"Theoretically, 100% means a solid bridge, but due to the tendency of bridge "
|
||||
"extrusions to sag, 100% may not be sufficient.\n"
|
||||
"\n"
|
||||
@@ -13039,18 +13169,14 @@ msgid ""
|
||||
" - Pros: Can create a string-like first layer. Faster and with better "
|
||||
"cooling because there is more space for air to circulate around the extruded "
|
||||
"bridge.\n"
|
||||
" - Cons: May lead to sagging and poorer surface finish.\n"
|
||||
"\n"
|
||||
"Recommended range: Minimum 10% - Maximum 125%."
|
||||
" - Cons: May lead to sagging and poorer surface finish."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge density"
|
||||
msgstr "İç köprü yoğunluğu"
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of internal bridge lines. Default is 100%. "
|
||||
"100% means a solid internal bridge.\n"
|
||||
"\n"
|
||||
"Controls the density (spacing) of internal bridge lines.\n"
|
||||
"Internal bridges act as intermediate support between sparse infill and top "
|
||||
"solid infill and can strongly affect top surface quality.\n"
|
||||
"\n"
|
||||
@@ -13085,11 +13211,9 @@ msgid ""
|
||||
"filament flow ratio, and if set, the object's flow ratio."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Bridge line width is expressed either as an absolute value or as a "
|
||||
"percentage of the active nozzle diameter (percentages are computed from the "
|
||||
"nozzle diameter).\n"
|
||||
"Line width of the Bridge. If expressed as a %, it will be computed over the "
|
||||
"nozzle diameter.\n"
|
||||
"Recommended to use with a higher Bridge density or Bridge flow ratio.\n"
|
||||
"\n"
|
||||
"The maximum value is 100% or the nozzle diameter.\n"
|
||||
@@ -15029,7 +15153,6 @@ msgstr ""
|
||||
msgid "Z-buckling bias optimization (experimental)"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
|
||||
"to shorten the effective vertical column length and improve Z-axis "
|
||||
@@ -15234,8 +15357,8 @@ msgid "mm/s² or %"
|
||||
msgstr "mm/s² veya %"
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
msgstr ""
|
||||
"Seyrek dolgunun hızlandırılması. Değer yüzde olarak ifade edilirse (örn. "
|
||||
"%100), varsayılan ivmeye göre hesaplanacaktır."
|
||||
@@ -15281,9 +15404,6 @@ msgstr ""
|
||||
msgid "Default jerk."
|
||||
msgstr "Varsayılan sarsıntı."
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr "Köşe sapması"
|
||||
|
||||
msgid ""
|
||||
"Marlin Firmware Junction Deviation (replaces the traditional XY Jerk "
|
||||
"setting)."
|
||||
@@ -15367,16 +15487,17 @@ msgstr "Maksimum fan hızı"
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"Fan hızı, \"close_fan_the_first_x_layers\" katmanında sıfırdan "
|
||||
"\"ful_fan_speed_layer\" katmanında maksimuma doğrusal olarak artırılacaktır. "
|
||||
"\"full_fan_speed_layer\", \"close_fan_the_first_x_layers\" değerinden "
|
||||
"düşükse göz ardı edilecektir; bu durumda fan, \"close_fan_the_first_x_layers"
|
||||
"\" + 1 katmanında izin verilen maksimum hızda çalışacaktır."
|
||||
"düşükse göz ardı edilecektir; bu durumda fan, "
|
||||
"\"close_fan_the_first_x_layers\" + 1 katmanında izin verilen maksimum hızda "
|
||||
"çalışacaktır."
|
||||
|
||||
msgid "layer"
|
||||
msgstr "katman"
|
||||
@@ -16385,16 +16506,13 @@ msgid ""
|
||||
"A reasonable value is 35. Set to 0 to disable."
|
||||
msgstr ""
|
||||
|
||||
msgid "°"
|
||||
msgstr "°/s"
|
||||
|
||||
msgid "Don't alternate fill direction"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disable alternating fill direction when using Z contouring."
|
||||
msgstr ""
|
||||
|
||||
msgid "Minimum z height"
|
||||
msgid "Minimum Z height"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -17531,8 +17649,8 @@ msgid "Role base wipe speed"
|
||||
msgstr "Otomatik temizleme hızı"
|
||||
|
||||
msgid ""
|
||||
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||
"g. if a wipe action is executed immediately following an outer wall "
|
||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
||||
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||
"wipe action."
|
||||
msgstr ""
|
||||
@@ -18466,8 +18584,8 @@ msgstr "Sıcaklık kontrolünü etkinleştirin"
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present.\n"
|
||||
@@ -19475,8 +19593,8 @@ msgid "Debug level"
|
||||
msgstr "Hata ayıklama düzeyi"
|
||||
|
||||
msgid ""
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
"trace\n"
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
"5:trace\n"
|
||||
msgstr ""
|
||||
"Hata ayıklama günlüğü düzeyini ayarlar. 0:önemli, 1:hata, 2:uyarı, 3:bilgi, "
|
||||
"4:hata ayıklama, 5:izleme\n"
|
||||
@@ -21327,8 +21445,8 @@ msgstr ""
|
||||
"Yeniden yazmak ister misin?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\".\n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\".\n"
|
||||
"To add preset for more printers, please go to printer selection"
|
||||
msgstr ""
|
||||
"Ön ayarları şu şekilde yeniden adlandırırdık: \"Satıcı Türü Seçtiğiniz Seri "
|
||||
@@ -21414,9 +21532,6 @@ msgstr "Yazıcı Ön Ayarı"
|
||||
msgid "Filament Preset Template"
|
||||
msgstr "Filament Ön Ayar Şablonu"
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "Hiçbirini seçme"
|
||||
|
||||
msgid "Process Preset Template"
|
||||
msgstr "İşleme Ön Ayarı Şablonu"
|
||||
|
||||
@@ -21930,9 +22045,21 @@ msgstr ""
|
||||
msgid "Authorizing..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error. Can't get api token for authorization"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not parse server response."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error saving session to file"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error session check"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error during file upload"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Mismatched type of print host: %s"
|
||||
msgstr "Eşleşmeyen yazdırma ana bilgisayarı türü: %s"
|
||||
@@ -22750,6 +22877,105 @@ msgstr "Flashforge'a seri bağlantı yoluyla bağlanılamadı"
|
||||
msgid "Flashforge local API requires both serial number and access code."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer returned an error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing system_info in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing printer serial number in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error parsing response"
|
||||
msgstr ""
|
||||
|
||||
msgid "ElegooLink not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid access code"
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 device not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to ElegooLink is working correctly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to ElegooLink"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Error code: %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The file has been transferred, but some unknown errors occurred. Please "
|
||||
"check the device page for the file and try to start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open file for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to read file chunk for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is empty or could not be read."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to calculate file checksum."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error code not found"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The printer is busy, Please check the device page for the file and try to "
|
||||
"start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is lost, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is corrupted, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Transmission abnormality, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file does not match the printer, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print timeout"
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to CrealityPrint successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to CrealityPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Connection timed out. Please check if the printer and computer network are "
|
||||
"functioning properly, and confirm that they are on the same network."
|
||||
msgstr ""
|
||||
|
||||
msgid "The Hostname/IP/URL could not be parsed, please check it and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File/data transfer interrupted. Please check the printer and network, then "
|
||||
"try it again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr "Sağlanan durum doğru değil."
|
||||
|
||||
@@ -22803,6 +23029,12 @@ msgstr "Kenar kulakları"
|
||||
msgid "Please select single object."
|
||||
msgstr "Lütfen tek bir nesne seçin."
|
||||
|
||||
msgid "Entering Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom Out"
|
||||
msgstr "Uzaklaştır"
|
||||
|
||||
@@ -22812,6 +23044,9 @@ msgstr "Yakınlaştır"
|
||||
msgid "Load skipping objects information failed. Please try again."
|
||||
msgstr "Nesne bilgilerinin atlanması yüklenemedi. Lütfen tekrar deneyin."
|
||||
|
||||
msgid "Failed to create the temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "/%d Selected"
|
||||
msgstr "/%d Seçildi"
|
||||
@@ -22963,6 +23198,100 @@ msgstr "Üçgen yüzeylerin sayısı"
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr "Hesaplanıyor, lütfen bekleyin..."
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bundle folder does not exist."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open folder."
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete selected bundle from folder and all presets loaded from it?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to remove bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Remove Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe bundle?"
|
||||
msgstr ""
|
||||
|
||||
msgid "UnsubscribeBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to unsubscribe bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "ExportPresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Save preset bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - boost::filesystem::canonical did not "
|
||||
"return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Performing desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed because the application directory was "
|
||||
"not found."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - could not create Gcodeviewer desktop "
|
||||
"file. OrcaSlicer desktop file was probably created successfully."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - "
|
||||
"boost::filesystem::canonical did not return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed because the application "
|
||||
"directory was not found."
|
||||
msgstr ""
|
||||
|
||||
msgid "Desktop Integration"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Desktop Integration sets this binary to be searchable by the system.\n"
|
||||
"\n"
|
||||
"Press \"Perform\" to proceed."
|
||||
msgstr ""
|
||||
|
||||
msgid "The download has failed"
|
||||
msgstr ""
|
||||
|
||||
#. TRN %1% = file path
|
||||
#, boost-format
|
||||
msgid "Can't create file at %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Archive preview"
|
||||
msgstr ""
|
||||
|
||||
msgid "Open File"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The filament may not be compatible with the current machine settings. "
|
||||
"Generic filament presets will be used."
|
||||
@@ -23376,6 +23705,21 @@ msgstr ""
|
||||
"sıcaklığının uygun şekilde arttırılmasının bükülme olasılığını "
|
||||
"azaltabileceğini biliyor muydunuz?"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "It is recommended to assemble objects first,\n"
|
||||
#~ "because the objects is restriced to bed \n"
|
||||
#~ "and only parts can be lifted."
|
||||
#~ msgstr ""
|
||||
#~ "Önce nesnelerin bir araya getirilmesi tavsiye edilir.\n"
|
||||
#~ "çünkü nesneler yatakla sınırlıdır \n"
|
||||
#~ "ve yalnızca parçalar kaldırılabilir."
|
||||
|
||||
#~ msgid "part selection"
|
||||
#~ msgstr "parça seçimi"
|
||||
|
||||
#~ msgid "°"
|
||||
#~ msgstr "°/s"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The Wipe option is not available when using the Firmware Retraction "
|
||||
#~ "mode.\n"
|
||||
@@ -23730,9 +24074,6 @@ msgstr ""
|
||||
#~ msgid "Mouse wheel:"
|
||||
#~ msgstr "Fare tekerleği:"
|
||||
|
||||
#~ msgid "Object selection"
|
||||
#~ msgstr "nesne seçimi"
|
||||
|
||||
#~ msgid "Pass 1"
|
||||
#~ msgstr "Geçiş 1"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: orcaslicerua\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-06-08 00:18+0800\n"
|
||||
"POT-Creation-Date: 2026-06-17 18:00+0800\n"
|
||||
"PO-Revision-Date: 2025-03-07 09:30+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Ukrainian\n"
|
||||
@@ -194,6 +194,15 @@ msgstr "Виконано"
|
||||
msgid "Support Generated"
|
||||
msgstr "Згенеровані підтримки"
|
||||
|
||||
msgid "Entering Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on supports editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gizmo-Place on Face"
|
||||
msgstr "Gizmo - Покласти на грань"
|
||||
|
||||
@@ -282,6 +291,15 @@ msgstr "Забарвлений за допомогою: Філамент %1%"
|
||||
msgid "To:"
|
||||
msgstr "До:"
|
||||
|
||||
msgid "Entering color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color painting editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin"
|
||||
msgstr "Нанесення текстури"
|
||||
|
||||
@@ -301,6 +319,15 @@ msgstr ""
|
||||
msgid "Enable painted fuzzy skin for this object"
|
||||
msgstr ""
|
||||
|
||||
msgid "Entering Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Move"
|
||||
msgstr "Перемістити"
|
||||
|
||||
@@ -695,6 +722,15 @@ msgstr "Розрізати по лінії"
|
||||
msgid "Delete connector"
|
||||
msgstr "Видалити з'єднувач"
|
||||
|
||||
msgid "Entering Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Cut gizmo editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Mesh name"
|
||||
msgstr "Назва сітки"
|
||||
|
||||
@@ -1568,6 +1604,12 @@ msgstr "Паралельна відстань:"
|
||||
msgid "Flip by Face 2"
|
||||
msgstr "Перевернути за Гранню 2"
|
||||
|
||||
msgid "Entering Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Assemble"
|
||||
msgstr "Об'єднати у збірку"
|
||||
|
||||
@@ -1595,8 +1637,8 @@ msgid "Warning: please select Point's or Circle's feature."
|
||||
msgstr "Попередження: будь ласка, виберіть характеристику точки або кола."
|
||||
|
||||
msgid ""
|
||||
"It is recommended to assemble the objects first,\n"
|
||||
"because the objects is restriced to bed \n"
|
||||
"It is recommended to assemble objects first,\n"
|
||||
"because they are restricted to the bed \n"
|
||||
"and only parts can be lifted."
|
||||
msgstr ""
|
||||
"Рекомендується спочатку зібрати об’єкти,\n"
|
||||
@@ -1606,6 +1648,12 @@ msgstr ""
|
||||
msgid "Face and face assembly"
|
||||
msgstr "Збірка грань до грані"
|
||||
|
||||
msgid "Entering Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
|
||||
@@ -1665,7 +1713,7 @@ msgstr ""
|
||||
msgid "3MF files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gcode 3MF files"
|
||||
msgid "G-code 3MF files"
|
||||
msgstr ""
|
||||
|
||||
msgid "G-code files"
|
||||
@@ -1884,6 +1932,20 @@ msgid ""
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from "
|
||||
"the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your "
|
||||
"local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset "
|
||||
"conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local "
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy with your local preset changes.\n"
|
||||
"Do you want to continue?"
|
||||
@@ -3147,6 +3209,52 @@ msgstr ""
|
||||
msgid "The minmum temperature should not be less than "
|
||||
msgstr ""
|
||||
|
||||
msgid "Type to filter..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All"
|
||||
msgstr "Всі"
|
||||
|
||||
msgid "No selected items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All items selected..."
|
||||
msgstr ""
|
||||
|
||||
msgid "No matching items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "Скасувати вибір всіх"
|
||||
|
||||
msgid "Select visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter nonSelected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Simple settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Expert settings"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "Developer mode"
|
||||
msgstr "Режим розробки"
|
||||
|
||||
msgid "Launch troubleshoot center"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"All the selected objects are on a locked plate.\n"
|
||||
"Cannot auto-arrange these objects."
|
||||
@@ -3416,6 +3524,9 @@ msgstr "Шрифт не має жодної форми для вказаного
|
||||
msgid "There is no valid surface for text projection."
|
||||
msgstr "Немає дійсної поверхні для проекції тексту."
|
||||
|
||||
msgid "An unexpected error occurred"
|
||||
msgstr ""
|
||||
|
||||
msgid "Thermal Preconditioning for first layer optimization"
|
||||
msgstr ""
|
||||
|
||||
@@ -3506,8 +3617,8 @@ msgid ""
|
||||
"This software uses open source components whose copyright and other "
|
||||
"proprietary rights belong to their respective owners"
|
||||
msgstr ""
|
||||
"Це програмне забезпечення використовує компоненти з відкритим вихідним кодом,"
|
||||
"авторські права та інші\n"
|
||||
"Це програмне забезпечення використовує компоненти з відкритим вихідним "
|
||||
"кодом,авторські права та інші\n"
|
||||
"права власності належать їх відповідним власникам"
|
||||
|
||||
#, c-format, boost-format
|
||||
@@ -5229,8 +5340,8 @@ msgid ""
|
||||
"confirming that the height is within the build volume."
|
||||
msgstr ""
|
||||
"Об'єкт знаходиться за кордоном пластини або перевищує обмеження по висоті.\n"
|
||||
"Будь ласка, вирішіть проблему, перемістивши її повністю на тарілку або з неї,"
|
||||
"і підтвердження того, що висота знаходиться в межах обсягу збирання."
|
||||
"Будь ласка, вирішіть проблему, перемістивши її повністю на тарілку або з "
|
||||
"неї,і підтвердження того, що висота знаходиться в межах обсягу збирання."
|
||||
|
||||
msgid "Variable layer height"
|
||||
msgstr "Змінна висота шару"
|
||||
@@ -5268,10 +5379,7 @@ msgstr "Збільшення/зменшення області редагува
|
||||
msgid "Sequence"
|
||||
msgstr "Послідовність"
|
||||
|
||||
msgid "Object Selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part Selection"
|
||||
msgid "Object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys"
|
||||
@@ -5458,9 +5566,6 @@ msgstr ""
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "Панель інструментів малювання"
|
||||
|
||||
msgid "part selection"
|
||||
msgstr "вибір частини"
|
||||
|
||||
msgid "Explosion Ratio"
|
||||
msgstr "Коефіцієнт вибуху"
|
||||
|
||||
@@ -5485,7 +5590,7 @@ msgstr "Об'єм:"
|
||||
msgid "Size:"
|
||||
msgstr "Розмір:"
|
||||
|
||||
#, fuzzy, c-format, boost-format
|
||||
#, fuzzy, boost-format
|
||||
msgid ""
|
||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -5698,12 +5803,12 @@ msgstr "Друкувати пластину"
|
||||
msgid "Export G-code file"
|
||||
msgstr "Експорт файлу G-коду"
|
||||
|
||||
msgid "Send"
|
||||
msgstr "Надіслати"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "Експортувати файл нарізки пластини"
|
||||
|
||||
msgid "Send"
|
||||
msgstr "Надіслати"
|
||||
|
||||
msgid "Export all sliced file"
|
||||
msgstr "Експортувати файл нарізки всього"
|
||||
|
||||
@@ -7798,7 +7903,7 @@ msgstr ""
|
||||
msgid "The selected object couldn't be split."
|
||||
msgstr "Вибраний об'єкт не може бути поділений."
|
||||
|
||||
msgid "Disable Auto-Drop to preserve z positioning?\n"
|
||||
msgid "Disable Auto-Drop to preserve Z positioning?\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Object with floating parts was detected"
|
||||
@@ -8461,9 +8566,6 @@ msgstr ""
|
||||
msgid "Group user filament presets based on selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "All"
|
||||
msgstr "Всі"
|
||||
|
||||
msgid "By type"
|
||||
msgstr ""
|
||||
|
||||
@@ -8814,6 +8916,14 @@ msgstr ""
|
||||
msgid "Associate files to OrcaSlicer"
|
||||
msgstr "Асоціювати файли з OrcaSlicer"
|
||||
|
||||
msgid ""
|
||||
"File associations for the Microsoft Store version are managed by Windows "
|
||||
"Settings."
|
||||
msgstr ""
|
||||
|
||||
msgid "Open Windows Default Apps Settings"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "Associate 3MF files to OrcaSlicer"
|
||||
msgstr "Асоціювати файли .3mf з OrcaSlicer"
|
||||
@@ -8856,10 +8966,6 @@ msgstr "Асоціювати веб-посилання з OrcaSlicer"
|
||||
msgid "Developer"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "Developer mode"
|
||||
msgstr "Режим розробки"
|
||||
|
||||
msgid "Skip AMS blacklist check"
|
||||
msgstr "Пропустити перевірку чорного списку AMS"
|
||||
|
||||
@@ -9607,6 +9713,9 @@ msgid ""
|
||||
"operation or verify if the printer is functioning properly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sending failed, please try again!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice ok."
|
||||
msgstr "Нарізка прибл."
|
||||
|
||||
@@ -9910,8 +10019,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"При записі таймлапсу без інструментальної головки рекомендується додати "
|
||||
"“Timelapse Wipe Tower” \n"
|
||||
@@ -10042,6 +10151,9 @@ msgstr "Встановіть швидкість для зовнішніх та
|
||||
msgid "Travel speed"
|
||||
msgstr "Швидкість переміщення"
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Jerk(XY)"
|
||||
msgstr "Ривок (XY)"
|
||||
|
||||
@@ -10906,9 +11018,6 @@ msgid ""
|
||||
"list."
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add unused AMS filaments to filaments list."
|
||||
msgstr ""
|
||||
|
||||
@@ -11395,12 +11504,23 @@ msgstr "Доступний новий мережевий плагін (%s), чи
|
||||
msgid "New version of Orca Slicer"
|
||||
msgstr "Нова версія Orca Slicer"
|
||||
|
||||
msgid "Check on Github"
|
||||
msgid "Check on Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check on GitHub"
|
||||
msgstr ""
|
||||
|
||||
msgid "Open Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Skip this Version"
|
||||
msgstr "Пропустити цю версію"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"New version available: %s. Please update OrcaSlicer from the Microsoft Store."
|
||||
msgstr ""
|
||||
|
||||
msgid "Confirm and Update Nozzle"
|
||||
msgstr "Підтвердити і оновити сопло"
|
||||
|
||||
@@ -11507,6 +11627,9 @@ msgstr ""
|
||||
msgid "Auto Fire Extinguishing System"
|
||||
msgstr ""
|
||||
|
||||
msgid "Beta"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update firmware"
|
||||
msgstr "Оновити прошивку"
|
||||
|
||||
@@ -12264,6 +12387,15 @@ msgstr "Використовувати сторонній хост для дру
|
||||
msgid "Allow controlling BambuLab's printer through 3rd party print hosts."
|
||||
msgstr "Дозволяє керувати принтером BambuLab через сторонні хости друку"
|
||||
|
||||
msgid "Use 3MF instead of G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this if the printer accepts a 3MF file as the print job. When "
|
||||
"enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a "
|
||||
"plain .gcode file."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer Agent"
|
||||
msgstr ""
|
||||
|
||||
@@ -12704,7 +12836,7 @@ msgid "External bridge density"
|
||||
msgstr "Щільність зовнішніх мостів"
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of external bridge lines. Default is 100%.\n"
|
||||
"Controls the density (spacing) of external bridge lines.\n"
|
||||
"Theoretically, 100% means a solid bridge, but due to the tendency of bridge "
|
||||
"extrusions to sag, 100% may not be sufficient.\n"
|
||||
"\n"
|
||||
@@ -12718,18 +12850,14 @@ msgid ""
|
||||
" - Pros: Can create a string-like first layer. Faster and with better "
|
||||
"cooling because there is more space for air to circulate around the extruded "
|
||||
"bridge.\n"
|
||||
" - Cons: May lead to sagging and poorer surface finish.\n"
|
||||
"\n"
|
||||
"Recommended range: Minimum 10% - Maximum 125%."
|
||||
" - Cons: May lead to sagging and poorer surface finish."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge density"
|
||||
msgstr "Щільність внутрішніх мостів"
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of internal bridge lines. Default is 100%. "
|
||||
"100% means a solid internal bridge.\n"
|
||||
"\n"
|
||||
"Controls the density (spacing) of internal bridge lines.\n"
|
||||
"Internal bridges act as intermediate support between sparse infill and top "
|
||||
"solid infill and can strongly affect top surface quality.\n"
|
||||
"\n"
|
||||
@@ -12764,11 +12892,9 @@ msgid ""
|
||||
"filament flow ratio, and if set, the object's flow ratio."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Bridge line width is expressed either as an absolute value or as a "
|
||||
"percentage of the active nozzle diameter (percentages are computed from the "
|
||||
"nozzle diameter).\n"
|
||||
"Line width of the Bridge. If expressed as a %, it will be computed over the "
|
||||
"nozzle diameter.\n"
|
||||
"Recommended to use with a higher Bridge density or Bridge flow ratio.\n"
|
||||
"\n"
|
||||
"The maximum value is 100% or the nozzle diameter.\n"
|
||||
@@ -14651,7 +14777,6 @@ msgstr ""
|
||||
msgid "Z-buckling bias optimization (experimental)"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
|
||||
"to shorten the effective vertical column length and improve Z-axis "
|
||||
@@ -14794,8 +14919,8 @@ msgstr ""
|
||||
"знайдено, лінія заповнення з'єднується з сегментом периметра лише з одного "
|
||||
"боку, і довжина взятого сегменту периметра обмежена цим параметром, але не "
|
||||
"більше anchor_length_max.\n"
|
||||
"Встановіть цей параметр рівним нулю, щоб вимкнути периметри прив'язки."
|
||||
"пов'язані з однією лінією заповнення."
|
||||
"Встановіть цей параметр рівним нулю, щоб вимкнути периметри "
|
||||
"прив'язки.пов'язані з однією лінією заповнення."
|
||||
|
||||
msgid "0 (no open anchors)"
|
||||
msgstr "0 (немає відкритих прив'язок)"
|
||||
@@ -14862,8 +14987,8 @@ msgid "mm/s² or %"
|
||||
msgstr "мм/с² або %"
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
msgstr ""
|
||||
"Прискорення заповнення. Якщо значення виражено у відсотках (наприклад, "
|
||||
"100%), воно буде розраховане на основі прискорення за умовчанням."
|
||||
@@ -14910,9 +15035,6 @@ msgstr "Klipper-ів max_accel_to_decel буде скориговано на ц
|
||||
msgid "Default jerk."
|
||||
msgstr ""
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Marlin Firmware Junction Deviation (replaces the traditional XY Jerk "
|
||||
"setting)."
|
||||
@@ -14997,10 +15119,10 @@ msgstr "Повна швидкість вентилятора на шарі"
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"Швидкість вентилятора лінійно збільшується від нуля на "
|
||||
"рівні«close_fan_the_first_x_layers» до максимуму на рівні "
|
||||
@@ -15959,16 +16081,13 @@ msgid ""
|
||||
"A reasonable value is 35. Set to 0 to disable."
|
||||
msgstr ""
|
||||
|
||||
msgid "°"
|
||||
msgstr "°"
|
||||
|
||||
msgid "Don't alternate fill direction"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disable alternating fill direction when using Z contouring."
|
||||
msgstr ""
|
||||
|
||||
msgid "Minimum z height"
|
||||
msgid "Minimum Z height"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -17087,8 +17206,8 @@ msgid "Role base wipe speed"
|
||||
msgstr "Швидкість протирання залежно від типу"
|
||||
|
||||
msgid ""
|
||||
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||
"g. if a wipe action is executed immediately following an outer wall "
|
||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
||||
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||
"wipe action."
|
||||
msgstr ""
|
||||
@@ -17104,8 +17223,8 @@ msgid ""
|
||||
"To minimize the visibility of the seam in a closed loop extrusion, a small "
|
||||
"inward movement is executed before the extruder leaves the loop."
|
||||
msgstr ""
|
||||
"Щоб звести до мінімуму видимість шва при екструзії із замкнутим контуром,"
|
||||
"Невеликий рух усередину виконується до виходу екструдера з контуру."
|
||||
"Щоб звести до мінімуму видимість шва при екструзії із замкнутим "
|
||||
"контуром,Невеликий рух усередину виконується до виходу екструдера з контуру."
|
||||
|
||||
msgid "Wipe before external loop"
|
||||
msgstr "Протирати перед зовнішнім контуром"
|
||||
@@ -17622,8 +17741,8 @@ msgid ""
|
||||
"Only create support for critical regions including sharp tail, cantilever, "
|
||||
"etc."
|
||||
msgstr ""
|
||||
"Створювати підтримку тільки для критичних областей, включаючи гострий хвіст,"
|
||||
"консоль і т.д."
|
||||
"Створювати підтримку тільки для критичних областей, включаючи гострий "
|
||||
"хвіст,консоль і т.д."
|
||||
|
||||
msgid "Ignore small overhangs"
|
||||
msgstr ""
|
||||
@@ -17992,8 +18111,8 @@ msgstr "Увімкнути контроль температури"
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present.\n"
|
||||
@@ -18181,9 +18300,9 @@ msgstr ""
|
||||
"Залежно від тривалості операції витирання, швидкості та тривалості "
|
||||
"втягування екструдера/нитки, може знадобитися рух накату для нитки.\n"
|
||||
"\n"
|
||||
"Якщо встановити значення у параметрі \"Кількість втягування перед витиранням"
|
||||
"\" нижче, надлишкове втягування буде виконано перед витиранням, інакше воно "
|
||||
"буде виконано після нього."
|
||||
"Якщо встановити значення у параметрі \"Кількість втягування перед "
|
||||
"витиранням\" нижче, надлишкове втягування буде виконано перед витиранням, "
|
||||
"інакше воно буде виконано після нього."
|
||||
|
||||
msgid ""
|
||||
"The wiping tower can be used to clean up the residue on the nozzle and "
|
||||
@@ -18956,8 +19075,8 @@ msgid "Debug level"
|
||||
msgstr "Рівень налагодження"
|
||||
|
||||
msgid ""
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
"trace\n"
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
"5:trace\n"
|
||||
msgstr ""
|
||||
"Встановлює рівень реєстрації налагодження. 0: непереборний, 1: помилка, 2: "
|
||||
"попередження, 3: інформація, 4: налагодження, 5: трасування\n"
|
||||
@@ -19502,13 +19621,13 @@ msgstr "Наданий файл не вдалося прочитати, оскі
|
||||
msgid ""
|
||||
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
|
||||
msgstr ""
|
||||
"Невідомий формат файлу: вхідний файл повинен мати розширення .stl, .obj або ."
|
||||
"amf (.xml)."
|
||||
"Невідомий формат файлу: вхідний файл повинен мати розширення .stl, .obj "
|
||||
"або .amf (.xml)."
|
||||
|
||||
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
|
||||
msgstr ""
|
||||
"Невідомий формат файлу: вхідний файл повинен мати розширення .3mf або .zip."
|
||||
"amf."
|
||||
"Невідомий формат файлу: вхідний файл повинен мати розширення .3mf "
|
||||
"або .zip.amf."
|
||||
|
||||
msgid "load_obj: failed to parse"
|
||||
msgstr "помилка завантаження файлу OBJ: не вдалося розпізнати формат"
|
||||
@@ -20760,8 +20879,8 @@ msgstr ""
|
||||
"Чи бажаєте ви їх перезаписати?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\".\n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\".\n"
|
||||
"To add preset for more printers, please go to printer selection"
|
||||
msgstr ""
|
||||
"Ми б перейменували попередні налаштування на «Вибраний вами серійний "
|
||||
@@ -20850,9 +20969,6 @@ msgstr "Набір параметрів принтера"
|
||||
msgid "Filament Preset Template"
|
||||
msgstr "Шаблон набору параметрів філаменту"
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "Скасувати вибір всіх"
|
||||
|
||||
msgid "Process Preset Template"
|
||||
msgstr "Шаблон набору параметрів процесу"
|
||||
|
||||
@@ -21350,9 +21466,21 @@ msgstr ""
|
||||
msgid "Authorizing..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error. Can't get api token for authorization"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not parse server response."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error saving session to file"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error session check"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error during file upload"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Mismatched type of print host: %s"
|
||||
msgstr "Невідповідність типу принт-сервера: %s"
|
||||
@@ -22130,6 +22258,105 @@ msgstr ""
|
||||
msgid "Flashforge local API requires both serial number and access code."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer returned an error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing system_info in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing printer serial number in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error parsing response"
|
||||
msgstr ""
|
||||
|
||||
msgid "ElegooLink not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid access code"
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 device not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to ElegooLink is working correctly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to ElegooLink"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Error code: %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The file has been transferred, but some unknown errors occurred. Please "
|
||||
"check the device page for the file and try to start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open file for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to read file chunk for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is empty or could not be read."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to calculate file checksum."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error code not found"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The printer is busy, Please check the device page for the file and try to "
|
||||
"start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is lost, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is corrupted, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Transmission abnormality, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file does not match the printer, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print timeout"
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to CrealityPrint successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to CrealityPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Connection timed out. Please check if the printer and computer network are "
|
||||
"functioning properly, and confirm that they are on the same network."
|
||||
msgstr ""
|
||||
|
||||
msgid "The Hostname/IP/URL could not be parsed, please check it and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File/data transfer interrupted. Please check the printer and network, then "
|
||||
"try it again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr "Наданий стан невірний."
|
||||
|
||||
@@ -22182,6 +22409,12 @@ msgstr "Краєчки"
|
||||
msgid "Please select single object."
|
||||
msgstr "Будь ласка, виберіть один об’єкт."
|
||||
|
||||
msgid "Entering Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom Out"
|
||||
msgstr "Зменшити"
|
||||
|
||||
@@ -22191,6 +22424,9 @@ msgstr "Збільшити"
|
||||
msgid "Load skipping objects information failed. Please try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to create the temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "/%d Selected"
|
||||
msgstr ""
|
||||
@@ -22337,6 +22573,100 @@ msgstr "Кількість трикутних граней"
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr "Розрахунок, будь ласка, зачекайте…"
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bundle folder does not exist."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open folder."
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete selected bundle from folder and all presets loaded from it?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to remove bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Remove Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe bundle?"
|
||||
msgstr ""
|
||||
|
||||
msgid "UnsubscribeBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to unsubscribe bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "ExportPresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Save preset bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - boost::filesystem::canonical did not "
|
||||
"return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Performing desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed because the application directory was "
|
||||
"not found."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - could not create Gcodeviewer desktop "
|
||||
"file. OrcaSlicer desktop file was probably created successfully."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - "
|
||||
"boost::filesystem::canonical did not return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed because the application "
|
||||
"directory was not found."
|
||||
msgstr ""
|
||||
|
||||
msgid "Desktop Integration"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Desktop Integration sets this binary to be searchable by the system.\n"
|
||||
"\n"
|
||||
"Press \"Perform\" to proceed."
|
||||
msgstr ""
|
||||
|
||||
msgid "The download has failed"
|
||||
msgstr ""
|
||||
|
||||
#. TRN %1% = file path
|
||||
#, boost-format
|
||||
msgid "Can't create file at %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Archive preview"
|
||||
msgstr ""
|
||||
|
||||
msgid "Open File"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The filament may not be compatible with the current machine settings. "
|
||||
"Generic filament presets will be used."
|
||||
@@ -22750,6 +23080,12 @@ msgstr ""
|
||||
"ABS, відповідне підвищення температури гарячого ліжка може зменшити "
|
||||
"ймовірність деформації?"
|
||||
|
||||
#~ msgid "part selection"
|
||||
#~ msgstr "вибір частини"
|
||||
|
||||
#~ msgid "°"
|
||||
#~ msgstr "°"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The Wipe option is not available when using the Firmware Retraction "
|
||||
#~ "mode.\n"
|
||||
@@ -22882,8 +23218,8 @@ msgstr ""
|
||||
#~ "\n"
|
||||
#~ "**Наприклад, додаткове зниження швидкості застосовується при друку "
|
||||
#~ "нависань на гострих кутах, таких як передня частина корпусу Benchy. Це "
|
||||
#~ "допомагає зменшити загортання, яке може накопичуватися з кожним шаром."
|
||||
#~ "** \n"
|
||||
#~ "допомагає зменшити загортання, яке може накопичуватися з кожним "
|
||||
#~ "шаром.** \n"
|
||||
#~ "\n"
|
||||
#~ "**Зазвичай рекомендується залишати цю опцію увімкненою, якщо тільки ваш "
|
||||
#~ "принтер не має достатньо потужного охолодження або швидкість друку не є "
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-06-08 00:18+0800\n"
|
||||
"POT-Creation-Date: 2026-06-17 18:00+0800\n"
|
||||
"PO-Revision-Date: 2025-10-02 17:43+0700\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: hainguyen.ts13@gmail.com\n"
|
||||
@@ -192,6 +192,15 @@ msgstr "Hoàn thành"
|
||||
msgid "Support Generated"
|
||||
msgstr "Đã tạo support"
|
||||
|
||||
msgid "Entering Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on supports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on supports editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gizmo-Place on Face"
|
||||
msgstr "Gizmo - Đặt lên mặt"
|
||||
|
||||
@@ -279,6 +288,15 @@ msgstr "Vẽ bằng: Filament %1%"
|
||||
msgid "To:"
|
||||
msgstr "To:"
|
||||
|
||||
msgid "Entering color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving color painting"
|
||||
msgstr ""
|
||||
|
||||
msgid "Color painting editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin"
|
||||
msgstr "Tô fuzzy skin"
|
||||
|
||||
@@ -299,6 +317,15 @@ msgstr ""
|
||||
msgid "Enable painted fuzzy skin for this object"
|
||||
msgstr "Enable painted fuzzy skin for this object"
|
||||
|
||||
msgid "Entering Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Paint-on fuzzy skin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint-on fuzzy skin editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Move"
|
||||
msgstr "Di chuyển"
|
||||
|
||||
@@ -685,6 +712,15 @@ msgstr "Cắt bằng đường"
|
||||
msgid "Delete connector"
|
||||
msgstr "Xóa connector"
|
||||
|
||||
msgid "Entering Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Cut gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Cut gizmo editing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Mesh name"
|
||||
msgstr "Tên mesh"
|
||||
|
||||
@@ -1547,6 +1583,12 @@ msgstr "Khoảng cách song song:"
|
||||
msgid "Flip by Face 2"
|
||||
msgstr "Lật theo mặt 2"
|
||||
|
||||
msgid "Entering Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Measure gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Assemble"
|
||||
msgstr "Lắp ráp"
|
||||
|
||||
@@ -1572,16 +1614,19 @@ msgid "Warning: please select Point's or Circle's feature."
|
||||
msgstr "Cảnh báo: vui lòng chọn đặc trưng điểm hoặc đường tròn."
|
||||
|
||||
msgid ""
|
||||
"It is recommended to assemble the objects first,\n"
|
||||
"because the objects is restriced to bed \n"
|
||||
"It is recommended to assemble objects first,\n"
|
||||
"because they are restricted to the bed \n"
|
||||
"and only parts can be lifted."
|
||||
msgstr ""
|
||||
"It is recommended to assemble the objects first,\n"
|
||||
"because the objects is restriced to bed \n"
|
||||
"and only parts can be lifted."
|
||||
|
||||
msgid "Face and face assembly"
|
||||
msgstr "Face and face assembly"
|
||||
msgstr ""
|
||||
|
||||
msgid "Entering Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Assembly gizmo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
@@ -1641,8 +1686,8 @@ msgstr "AMF files"
|
||||
msgid "3MF files"
|
||||
msgstr "3MF files"
|
||||
|
||||
msgid "Gcode 3MF files"
|
||||
msgstr "Gcode 3MF files"
|
||||
msgid "G-code 3MF files"
|
||||
msgstr "G-code 3MF files"
|
||||
|
||||
msgid "G-code files"
|
||||
msgstr "G-code files"
|
||||
@@ -1859,6 +1904,20 @@ msgid ""
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from "
|
||||
"the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your "
|
||||
"local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset "
|
||||
"conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local "
|
||||
"preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy with your local preset changes.\n"
|
||||
"Do you want to continue?"
|
||||
@@ -3133,6 +3192,52 @@ msgstr "The maximum temperature cannot exceed "
|
||||
msgid "The minmum temperature should not be less than "
|
||||
msgstr "The minmum temperature should not be less than "
|
||||
|
||||
msgid "Type to filter..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All"
|
||||
msgstr "Tất cả"
|
||||
|
||||
msgid "No selected items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "All items selected..."
|
||||
msgstr ""
|
||||
|
||||
msgid "No matching items..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "Bỏ chọn tất cả"
|
||||
|
||||
msgid "Select visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deselect visible"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter nonSelected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Simple settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr "Advanced settings"
|
||||
|
||||
msgid "Expert settings"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "Developer mode"
|
||||
msgstr "Chế độ phát triển"
|
||||
|
||||
msgid "Launch troubleshoot center"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"All the selected objects are on a locked plate.\n"
|
||||
"Cannot auto-arrange these objects."
|
||||
@@ -3403,6 +3508,9 @@ msgstr "Font doesn't have any shape for given text."
|
||||
msgid "There is no valid surface for text projection."
|
||||
msgstr "There is no valid surface for text projection."
|
||||
|
||||
msgid "An unexpected error occurred"
|
||||
msgstr ""
|
||||
|
||||
msgid "Thermal Preconditioning for first layer optimization"
|
||||
msgstr "Thermal Preconditioning for first layer optimization"
|
||||
|
||||
@@ -5306,10 +5414,7 @@ msgstr "Tăng/giảm vùng chỉnh sửa"
|
||||
msgid "Sequence"
|
||||
msgstr "Trình tự"
|
||||
|
||||
msgid "Object Selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part Selection"
|
||||
msgid "Object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys"
|
||||
@@ -5498,9 +5603,6 @@ msgstr "Labels"
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "Thanh công cụ vẽ"
|
||||
|
||||
msgid "part selection"
|
||||
msgstr "chọn phần"
|
||||
|
||||
msgid "Explosion Ratio"
|
||||
msgstr "Tỷ lệ nổ"
|
||||
|
||||
@@ -5525,7 +5627,7 @@ msgstr "Thể tích:"
|
||||
msgid "Size:"
|
||||
msgstr "Kích thước:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -5754,12 +5856,12 @@ msgstr "In plate"
|
||||
msgid "Export G-code file"
|
||||
msgstr "Xuất file G-code"
|
||||
|
||||
msgid "Send"
|
||||
msgstr "Gửi"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "Xuất file plate đã slice"
|
||||
|
||||
msgid "Send"
|
||||
msgstr "Gửi"
|
||||
|
||||
msgid "Export all sliced file"
|
||||
msgstr "Xuất tất cả file đã slice"
|
||||
|
||||
@@ -7844,7 +7946,7 @@ msgstr ""
|
||||
msgid "The selected object couldn't be split."
|
||||
msgstr "Đối tượng đã chọn không thể được tách."
|
||||
|
||||
msgid "Disable Auto-Drop to preserve z positioning?\n"
|
||||
msgid "Disable Auto-Drop to preserve Z positioning?\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Object with floating parts was detected"
|
||||
@@ -8521,9 +8623,6 @@ msgstr "Group user filament presets"
|
||||
msgid "Group user filament presets based on selection"
|
||||
msgstr "Group user filament presets based on selection"
|
||||
|
||||
msgid "All"
|
||||
msgstr "Tất cả"
|
||||
|
||||
msgid "By type"
|
||||
msgstr "By type"
|
||||
|
||||
@@ -8894,6 +8993,14 @@ msgstr "Download Network Plug-in"
|
||||
msgid "Associate files to OrcaSlicer"
|
||||
msgstr "Liên kết file với OrcaSlicer"
|
||||
|
||||
msgid ""
|
||||
"File associations for the Microsoft Store version are managed by Windows "
|
||||
"Settings."
|
||||
msgstr ""
|
||||
|
||||
msgid "Open Windows Default Apps Settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Associate 3MF files to OrcaSlicer"
|
||||
msgstr "Liên kết file 3MF với OrcaSlicer"
|
||||
|
||||
@@ -8926,10 +9033,6 @@ msgstr "Liên kết liên kết web với OrcaSlicer"
|
||||
msgid "Developer"
|
||||
msgstr "Developer"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Developer mode"
|
||||
msgstr "Chế độ phát triển"
|
||||
|
||||
msgid "Skip AMS blacklist check"
|
||||
msgstr "Bỏ qua kiểm tra danh sách đen AMS"
|
||||
|
||||
@@ -9723,6 +9826,9 @@ msgstr ""
|
||||
"File upload timed out. Please check if the firmware version supports this "
|
||||
"operation or verify if the printer is functioning properly."
|
||||
|
||||
msgid "Sending failed, please try again!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice ok."
|
||||
msgstr "Slice hoàn tất."
|
||||
|
||||
@@ -10038,8 +10144,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Khi ghi timelapse không có đầu công cụ, khuyến nghị thêm \"Timelapse Wipe "
|
||||
"Tower\" \n"
|
||||
@@ -10168,6 +10274,9 @@ msgstr "Đặt tốc độ cho cầu bên ngoài và bên trong"
|
||||
msgid "Travel speed"
|
||||
msgstr "Tốc độ di chuyển"
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr "Junction Deviation"
|
||||
|
||||
msgid "Jerk(XY)"
|
||||
msgstr "Giật(XY)"
|
||||
|
||||
@@ -11030,9 +11139,6 @@ msgstr ""
|
||||
"And unused printer filaments will be automatically added to the end of the "
|
||||
"list."
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr "Advanced settings"
|
||||
|
||||
msgid "Add unused AMS filaments to filaments list."
|
||||
msgstr "Add unused AMS filaments to filaments list."
|
||||
|
||||
@@ -11528,12 +11634,23 @@ msgstr "Có plug-in mạng mới (%s). Bạn có muốn cài đặt nó?"
|
||||
msgid "New version of Orca Slicer"
|
||||
msgstr "Phiên bản mới của Orca Slicer"
|
||||
|
||||
msgid "Check on Github"
|
||||
msgid "Check on Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check on GitHub"
|
||||
msgstr ""
|
||||
|
||||
msgid "Open Microsoft Store"
|
||||
msgstr ""
|
||||
|
||||
msgid "Skip this Version"
|
||||
msgstr "Bỏ qua phiên bản này"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"New version available: %s. Please update OrcaSlicer from the Microsoft Store."
|
||||
msgstr ""
|
||||
|
||||
msgid "Confirm and Update Nozzle"
|
||||
msgstr "Xác nhận và cập nhật đầu phun"
|
||||
|
||||
@@ -11647,6 +11764,9 @@ msgstr "Module cắt"
|
||||
msgid "Auto Fire Extinguishing System"
|
||||
msgstr "Auto Fire Extinguishing System"
|
||||
|
||||
msgid "Beta"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update firmware"
|
||||
msgstr "Cập nhật firmware"
|
||||
|
||||
@@ -12416,6 +12536,15 @@ msgstr "Sử dụng máy chủ in bên thứ ba"
|
||||
msgid "Allow controlling BambuLab's printer through 3rd party print hosts."
|
||||
msgstr "Cho phép điều khiển máy in BambuLab thông qua máy chủ in bên thứ ba."
|
||||
|
||||
msgid "Use 3MF instead of G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this if the printer accepts a 3MF file as the print job. When "
|
||||
"enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a "
|
||||
"plain .gcode file."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer Agent"
|
||||
msgstr "Printer Agent"
|
||||
|
||||
@@ -12435,8 +12564,8 @@ msgstr ""
|
||||
"Orca Slicer có thể tải file G-code lên máy chủ máy in. Trường này nên chứa "
|
||||
"tên máy chủ, địa chỉ IP hoặc URL của phiên bản máy chủ máy in. Máy chủ in "
|
||||
"đằng sau HAProxy với xác thực cơ bản được bật có thể được truy cập bằng cách "
|
||||
"đặt tên người dùng và mật khẩu vào URL theo định dạng sau: https://username:"
|
||||
"password@your-octopi-address/"
|
||||
"đặt tên người dùng và mật khẩu vào URL theo định dạng sau: https://"
|
||||
"username:password@your-octopi-address/"
|
||||
|
||||
msgid "Device UI"
|
||||
msgstr "Giao diện thiết bị"
|
||||
@@ -12839,7 +12968,7 @@ msgid "External bridge density"
|
||||
msgstr "Mật độ cầu bên ngoài"
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of external bridge lines. Default is 100%.\n"
|
||||
"Controls the density (spacing) of external bridge lines.\n"
|
||||
"Theoretically, 100% means a solid bridge, but due to the tendency of bridge "
|
||||
"extrusions to sag, 100% may not be sufficient.\n"
|
||||
"\n"
|
||||
@@ -12853,18 +12982,14 @@ msgid ""
|
||||
" - Pros: Can create a string-like first layer. Faster and with better "
|
||||
"cooling because there is more space for air to circulate around the extruded "
|
||||
"bridge.\n"
|
||||
" - Cons: May lead to sagging and poorer surface finish.\n"
|
||||
"\n"
|
||||
"Recommended range: Minimum 10% - Maximum 125%."
|
||||
" - Cons: May lead to sagging and poorer surface finish."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge density"
|
||||
msgstr "Mật độ cầu bên trong"
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of internal bridge lines. Default is 100%. "
|
||||
"100% means a solid internal bridge.\n"
|
||||
"\n"
|
||||
"Controls the density (spacing) of internal bridge lines.\n"
|
||||
"Internal bridges act as intermediate support between sparse infill and top "
|
||||
"solid infill and can strongly affect top surface quality.\n"
|
||||
"\n"
|
||||
@@ -12899,11 +13024,9 @@ msgid ""
|
||||
"filament flow ratio, and if set, the object's flow ratio."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Bridge line width is expressed either as an absolute value or as a "
|
||||
"percentage of the active nozzle diameter (percentages are computed from the "
|
||||
"nozzle diameter).\n"
|
||||
"Line width of the Bridge. If expressed as a %, it will be computed over the "
|
||||
"nozzle diameter.\n"
|
||||
"Recommended to use with a higher Bridge density or Bridge flow ratio.\n"
|
||||
"\n"
|
||||
"The maximum value is 100% or the nozzle diameter.\n"
|
||||
@@ -14804,7 +14927,6 @@ msgstr "Sử dụng nhiều đường cho mẫu infill, nếu được hỗ tr
|
||||
msgid "Z-buckling bias optimization (experimental)"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
|
||||
"to shorten the effective vertical column length and improve Z-axis "
|
||||
@@ -15008,8 +15130,8 @@ msgid "mm/s² or %"
|
||||
msgstr "mm/s² hoặc %"
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
msgstr ""
|
||||
"Gia tốc của infill thưa. Nếu giá trị được biểu thị dưới dạng phần trăm (ví "
|
||||
"dụ 100%), nó sẽ được tính dựa trên gia tốc mặc định."
|
||||
@@ -15055,9 +15177,6 @@ msgstr ""
|
||||
msgid "Default jerk."
|
||||
msgstr "Giật mặc định."
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr "Junction Deviation"
|
||||
|
||||
msgid ""
|
||||
"Marlin Firmware Junction Deviation (replaces the traditional XY Jerk "
|
||||
"setting)."
|
||||
@@ -15142,14 +15261,14 @@ msgstr "Tốc độ quạt đầy tại lớp"
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"Tốc độ quạt sẽ được tăng tuyến tính từ không tại lớp "
|
||||
"\"close_fan_the_first_x_layers\" đến tối đa tại lớp \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" sẽ bị bỏ qua nếu thấp hơn "
|
||||
"\"close_fan_the_first_x_layers\" đến tối đa tại lớp "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" sẽ bị bỏ qua nếu thấp hơn "
|
||||
"\"close_fan_the_first_x_layers\", trong trường hợp đó quạt sẽ chạy ở tốc độ "
|
||||
"tối đa được phép tại lớp \"close_fan_the_first_x_layers\" + 1."
|
||||
|
||||
@@ -16135,16 +16254,13 @@ msgid ""
|
||||
"A reasonable value is 35. Set to 0 to disable."
|
||||
msgstr ""
|
||||
|
||||
msgid "°"
|
||||
msgstr "°"
|
||||
|
||||
msgid "Don't alternate fill direction"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disable alternating fill direction when using Z contouring."
|
||||
msgstr ""
|
||||
|
||||
msgid "Minimum z height"
|
||||
msgid "Minimum Z height"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -17250,8 +17366,8 @@ msgid "Role base wipe speed"
|
||||
msgstr "Tốc độ lau dựa trên vai trò"
|
||||
|
||||
msgid ""
|
||||
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||
"g. if a wipe action is executed immediately following an outer wall "
|
||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
||||
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||
"wipe action."
|
||||
msgstr ""
|
||||
@@ -18168,8 +18284,8 @@ msgstr "Kích hoạt điều khiển nhiệt độ"
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present.\n"
|
||||
@@ -19147,11 +19263,11 @@ msgid "Debug level"
|
||||
msgstr "Mức gỡ lỗi"
|
||||
|
||||
msgid ""
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
"trace\n"
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
"5:trace\n"
|
||||
msgstr ""
|
||||
"Đặt mức ghi log gỡ lỗi. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
"trace\n"
|
||||
"Đặt mức ghi log gỡ lỗi. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
"5:trace\n"
|
||||
|
||||
msgid "Log file"
|
||||
msgstr ""
|
||||
@@ -19698,13 +19814,13 @@ msgstr "File được cung cấp không thể đọc được vì nó trống"
|
||||
msgid ""
|
||||
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
|
||||
msgstr ""
|
||||
"Định dạng file không xác định. File đầu vào phải có phần mở rộng .stl, ."
|
||||
"obj, .amf(.xml)."
|
||||
"Định dạng file không xác định. File đầu vào phải có phần mở "
|
||||
"rộng .stl, .obj, .amf(.xml)."
|
||||
|
||||
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
|
||||
msgstr ""
|
||||
"Định dạng file không xác định. File đầu vào phải có phần mở rộng .3mf hoặc ."
|
||||
"zip.amf."
|
||||
"Định dạng file không xác định. File đầu vào phải có phần mở rộng .3mf "
|
||||
"hoặc .zip.amf."
|
||||
|
||||
msgid "load_obj: failed to parse"
|
||||
msgstr "load_obj: phân tích thất bại"
|
||||
@@ -20985,8 +21101,8 @@ msgstr ""
|
||||
"Bạn có muốn viết lại nó không?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\".\n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\".\n"
|
||||
"To add preset for more printers, please go to printer selection"
|
||||
msgstr ""
|
||||
"Chúng tôi sẽ đổi tên cài đặt sẵn thành \"Nhà cung cấp Loại Serial @máy in "
|
||||
@@ -21072,9 +21188,6 @@ msgstr "Cài đặt sẵn máy in"
|
||||
msgid "Filament Preset Template"
|
||||
msgstr "Mẫu cài đặt sẵn filament"
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "Bỏ chọn tất cả"
|
||||
|
||||
msgid "Process Preset Template"
|
||||
msgstr "Mẫu cài đặt sẵn quy trình"
|
||||
|
||||
@@ -21574,9 +21687,21 @@ msgstr ""
|
||||
msgid "Authorizing..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error. Can't get api token for authorization"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not parse server response."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error saving session to file"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error session check"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error during file upload"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Mismatched type of print host: %s"
|
||||
msgstr "Loại máy chủ in không khớp: %s"
|
||||
@@ -22365,6 +22490,105 @@ msgstr "Không thể kết nối với Flashforge qua serial"
|
||||
msgid "Flashforge local API requires both serial number and access code."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer returned an error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing system_info in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing printer serial number in response"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error parsing response"
|
||||
msgstr ""
|
||||
|
||||
msgid "ElegooLink not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid access code"
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 device not detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to ElegooLink is working correctly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to ElegooLink"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Error code: %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The file has been transferred, but some unknown errors occurred. Please "
|
||||
"check the device page for the file and try to start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open file for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to read file chunk for upload."
|
||||
msgstr ""
|
||||
|
||||
msgid "CC2 upload failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is empty or could not be read."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to calculate file checksum."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error code not found"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The printer is busy, Please check the device page for the file and try to "
|
||||
"start printing again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is lost, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file is corrupted, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Transmission abnormality, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The file does not match the printer, please check and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print timeout"
|
||||
msgstr ""
|
||||
|
||||
msgid "Start print failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to CrealityPrint successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to CrealityPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Connection timed out. Please check if the printer and computer network are "
|
||||
"functioning properly, and confirm that they are on the same network."
|
||||
msgstr ""
|
||||
|
||||
msgid "The Hostname/IP/URL could not be parsed, please check it and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File/data transfer interrupted. Please check the printer and network, then "
|
||||
"try it again."
|
||||
msgstr ""
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr "Trạng thái được cung cấp không chính xác."
|
||||
|
||||
@@ -22418,6 +22642,12 @@ msgstr "Tai vành"
|
||||
msgid "Please select single object."
|
||||
msgstr "Vui lòng chọn một đối tượng duy nhất."
|
||||
|
||||
msgid "Entering Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leaving Brim Ears"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom Out"
|
||||
msgstr "Zoom Out"
|
||||
|
||||
@@ -22427,6 +22657,9 @@ msgstr "Zoom In"
|
||||
msgid "Load skipping objects information failed. Please try again."
|
||||
msgstr "Load skipping objects information failed. Please try again."
|
||||
|
||||
msgid "Failed to create the temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "/%d Selected"
|
||||
msgstr "/%d Selected"
|
||||
@@ -22578,6 +22811,100 @@ msgstr "Number of triangular facets"
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr "Calculating, please wait..."
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bundle folder does not exist."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to open folder."
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete selected bundle from folder and all presets loaded from it?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to remove bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Remove Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe bundle?"
|
||||
msgstr ""
|
||||
|
||||
msgid "UnsubscribeBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to unsubscribe bundle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unsubscribe Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "ExportPresetBundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Save preset bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - boost::filesystem::canonical did not "
|
||||
"return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Performing desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed because the application directory was "
|
||||
"not found."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - could not create Gcodeviewer desktop "
|
||||
"file. OrcaSlicer desktop file was probably created successfully."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - "
|
||||
"boost::filesystem::canonical did not return appimage path."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - Could not find executable."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed because the application "
|
||||
"directory was not found."
|
||||
msgstr ""
|
||||
|
||||
msgid "Desktop Integration"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Desktop Integration sets this binary to be searchable by the system.\n"
|
||||
"\n"
|
||||
"Press \"Perform\" to proceed."
|
||||
msgstr ""
|
||||
|
||||
msgid "The download has failed"
|
||||
msgstr ""
|
||||
|
||||
#. TRN %1% = file path
|
||||
#, boost-format
|
||||
msgid "Can't create file at %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Archive preview"
|
||||
msgstr ""
|
||||
|
||||
msgid "Open File"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The filament may not be compatible with the current machine settings. "
|
||||
"Generic filament presets will be used."
|
||||
@@ -22986,6 +23313,12 @@ msgstr ""
|
||||
"Bạn có biết rằng khi in vật liệu dễ cong vênh như ABS, tăng nhiệt độ bàn "
|
||||
"nóng một cách thích hợp có thể giảm xác suất cong vênh không?"
|
||||
|
||||
#~ msgid "part selection"
|
||||
#~ msgstr "chọn phần"
|
||||
|
||||
#~ msgid "°"
|
||||
#~ msgstr "°"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The Wipe option is not available when using the Firmware Retraction "
|
||||
#~ "mode.\n"
|
||||
@@ -23325,9 +23658,6 @@ msgstr ""
|
||||
#~ msgid "Mouse wheel:"
|
||||
#~ msgstr "Con lăn chuột:"
|
||||
|
||||
#~ msgid "Object selection"
|
||||
#~ msgstr "chọn vật thể"
|
||||
|
||||
#~ msgid "Pass 1"
|
||||
#~ msgstr "Lần 1"
|
||||
|
||||
|
||||
@@ -6,8 +6,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Slic3rPE\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-06-08 00:18+0800\n"
|
||||
"PO-Revision-Date: 2026-02-28 00:59\n"
|
||||
"POT-Creation-Date: 2026-06-17 18:00+0800\n"
|
||||
"PO-Revision-Date: 2026-06-11 12:37-0300\n"
|
||||
"Last-Translator: Handle <mail@bysb.net>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: zh_CN\n"
|
||||
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: OrcaSlicer Translation Helper\n"
|
||||
"X-Generator: Poedit 3.9\n"
|
||||
|
||||
msgid "right"
|
||||
msgstr "右"
|
||||
@@ -186,6 +186,15 @@ msgstr "完成"
|
||||
msgid "Support Generated"
|
||||
msgstr "已生成支撑"
|
||||
|
||||
msgid "Entering Paint-on supports"
|
||||
msgstr "进入手绘支撑"
|
||||
|
||||
msgid "Leaving Paint-on supports"
|
||||
msgstr "离开手绘支撑"
|
||||
|
||||
msgid "Paint-on supports editing"
|
||||
msgstr "手绘支撑编辑"
|
||||
|
||||
msgid "Gizmo-Place on Face"
|
||||
msgstr "选择底面"
|
||||
|
||||
@@ -272,6 +281,15 @@ msgstr "绘制使用:耗材丝%1%"
|
||||
msgid "To:"
|
||||
msgstr "到:"
|
||||
|
||||
msgid "Entering color painting"
|
||||
msgstr "进入颜色绘制"
|
||||
|
||||
msgid "Leaving color painting"
|
||||
msgstr "离开颜色绘制"
|
||||
|
||||
msgid "Color painting editing"
|
||||
msgstr "颜色绘制编辑"
|
||||
|
||||
msgid "Paint-on fuzzy skin"
|
||||
msgstr "手绘绒毛表面"
|
||||
|
||||
@@ -291,6 +309,15 @@ msgstr "警告:绒毛表面已禁用,手绘的绒毛表面将不会生效!
|
||||
msgid "Enable painted fuzzy skin for this object"
|
||||
msgstr "为此对象启用手绘绒毛表面"
|
||||
|
||||
msgid "Entering Paint-on fuzzy skin"
|
||||
msgstr "进入手绘绒毛表面"
|
||||
|
||||
msgid "Leaving Paint-on fuzzy skin"
|
||||
msgstr "离开手绘绒毛表面"
|
||||
|
||||
msgid "Paint-on fuzzy skin editing"
|
||||
msgstr "手绘绒毛表面编辑"
|
||||
|
||||
msgid "Move"
|
||||
msgstr "移动"
|
||||
|
||||
@@ -676,6 +703,15 @@ msgstr "按线切割"
|
||||
msgid "Delete connector"
|
||||
msgstr "删除连接器"
|
||||
|
||||
msgid "Entering Cut gizmo"
|
||||
msgstr "进入切割小工具"
|
||||
|
||||
msgid "Leaving Cut gizmo"
|
||||
msgstr "离开切割小工具"
|
||||
|
||||
msgid "Cut gizmo editing"
|
||||
msgstr "切割小工具编辑"
|
||||
|
||||
msgid "Mesh name"
|
||||
msgstr "网格名称"
|
||||
|
||||
@@ -1529,6 +1565,12 @@ msgstr "平行距离:"
|
||||
msgid "Flip by Face 2"
|
||||
msgstr "通过面2翻转"
|
||||
|
||||
msgid "Entering Measure gizmo"
|
||||
msgstr "进入测量小工具"
|
||||
|
||||
msgid "Leaving Measure gizmo"
|
||||
msgstr "离开测量小工具"
|
||||
|
||||
msgid "Assemble"
|
||||
msgstr "组合"
|
||||
|
||||
@@ -1554,17 +1596,20 @@ msgid "Warning: please select Point's or Circle's feature."
|
||||
msgstr "警告:请选择点或圆特征。"
|
||||
|
||||
msgid ""
|
||||
"It is recommended to assemble the objects first,\n"
|
||||
"because the objects is restriced to bed \n"
|
||||
"It is recommended to assemble objects first,\n"
|
||||
"because they are restricted to the bed \n"
|
||||
"and only parts can be lifted."
|
||||
msgstr ""
|
||||
"建议先装配物体,\n"
|
||||
"因为物体被限制在打印平台上,\n"
|
||||
"只有零件可以被抬起。"
|
||||
msgstr "建议先组合对象,\n因为对象被固定在打印床上,\n只有零件可以被抬起。"
|
||||
|
||||
msgid "Face and face assembly"
|
||||
msgstr "面对面装配"
|
||||
|
||||
msgid "Entering Assembly gizmo"
|
||||
msgstr "进入装配小工具"
|
||||
|
||||
msgid "Leaving Assembly gizmo"
|
||||
msgstr "离开装配小工具"
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
|
||||
@@ -1622,8 +1667,8 @@ msgstr "AMF 文件"
|
||||
msgid "3MF files"
|
||||
msgstr "3MF 文件"
|
||||
|
||||
msgid "Gcode 3MF files"
|
||||
msgstr "Gcode 3MF 文件"
|
||||
msgid "G-code 3MF files"
|
||||
msgstr "G-code 3MF 文件"
|
||||
|
||||
msgid "G-code files"
|
||||
msgstr "G-code 文件"
|
||||
@@ -1836,6 +1881,20 @@ msgstr ""
|
||||
"云同步冲突:OrcaCloud 中已存在同名预设。\n"
|
||||
"拉取将下载云端副本。强制推送将用您的本地预设覆盖它。"
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from "
|
||||
"the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your "
|
||||
"local preset."
|
||||
msgstr "云同步冲突:之前已从云端删除了同名预设。\n“删除”将删除您的本地预设。“强制推送”将用您的本地预设覆盖它。"
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset "
|
||||
"conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local "
|
||||
"preset."
|
||||
msgstr "云同步冲突:发生了意外或无法识别的预设冲突。\n“拉取”将下载云端副本。“强制推送”将用您的本地预设覆盖它。"
|
||||
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy with your local preset changes.\n"
|
||||
"Do you want to continue?"
|
||||
@@ -3081,6 +3140,51 @@ msgstr "最高温度不可超过 "
|
||||
msgid "The minmum temperature should not be less than "
|
||||
msgstr "最低温度不可低于 "
|
||||
|
||||
msgid "Type to filter..."
|
||||
msgstr "输入以筛选……"
|
||||
|
||||
msgid "All"
|
||||
msgstr "所有"
|
||||
|
||||
msgid "No selected items..."
|
||||
msgstr "未选择任何项目……"
|
||||
|
||||
msgid "All items selected..."
|
||||
msgstr "已选择全部项目……"
|
||||
|
||||
msgid "No matching items..."
|
||||
msgstr "没有匹配的项目……"
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "全部取消选中"
|
||||
|
||||
msgid "Select visible"
|
||||
msgstr "选择可见项"
|
||||
|
||||
msgid "Deselect visible"
|
||||
msgstr "取消选择可见项"
|
||||
|
||||
msgid "Filter selected"
|
||||
msgstr "筛选已选项"
|
||||
|
||||
msgid "Filter nonSelected"
|
||||
msgstr "筛选未选项"
|
||||
|
||||
msgid "Simple settings"
|
||||
msgstr "简单设置"
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr "高级设置"
|
||||
|
||||
msgid "Expert settings"
|
||||
msgstr "专家设置"
|
||||
|
||||
msgid "Developer mode"
|
||||
msgstr "开发者模式"
|
||||
|
||||
msgid "Launch troubleshoot center"
|
||||
msgstr "启动故障排查中心"
|
||||
|
||||
msgid ""
|
||||
"All the selected objects are on a locked plate.\n"
|
||||
"Cannot auto-arrange these objects."
|
||||
@@ -3329,6 +3433,9 @@ msgstr "字体没有给定文本对应的形状。"
|
||||
msgid "There is no valid surface for text projection."
|
||||
msgstr "没有有效的表面用于文字投影。"
|
||||
|
||||
msgid "An unexpected error occurred"
|
||||
msgstr "发生了意外错误"
|
||||
|
||||
msgid "Thermal Preconditioning for first layer optimization"
|
||||
msgstr "用于第一层优化的热预处理"
|
||||
|
||||
@@ -5160,12 +5267,9 @@ msgstr "增加/减小编辑区域"
|
||||
msgid "Sequence"
|
||||
msgstr "顺序"
|
||||
|
||||
msgid "Object Selection"
|
||||
msgid "Object selection"
|
||||
msgstr "对象选择"
|
||||
|
||||
msgid "Part Selection"
|
||||
msgstr "零件选择"
|
||||
|
||||
msgid "number keys"
|
||||
msgstr "数字键"
|
||||
|
||||
@@ -5347,9 +5451,6 @@ msgstr "标签"
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "上色工具条"
|
||||
|
||||
msgid "part selection"
|
||||
msgstr "零件选择"
|
||||
|
||||
msgid "Explosion Ratio"
|
||||
msgstr "爆炸比例"
|
||||
|
||||
@@ -5374,7 +5475,7 @@ msgstr "体积:"
|
||||
msgid "Size:"
|
||||
msgstr "尺寸:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -5590,12 +5691,12 @@ msgstr "打印单盘"
|
||||
msgid "Export G-code file"
|
||||
msgstr "导出G-code文件"
|
||||
|
||||
msgid "Send"
|
||||
msgstr "发送"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "导出单盘切片文件"
|
||||
|
||||
msgid "Send"
|
||||
msgstr "发送"
|
||||
|
||||
msgid "Export all sliced file"
|
||||
msgstr "导出所有切片文件"
|
||||
|
||||
@@ -6246,8 +6347,8 @@ msgid ""
|
||||
"The .gcode.3mf file contains no G-code data. Please slice it with Orca "
|
||||
"Slicer and export a new .gcode.3mf file."
|
||||
msgstr ""
|
||||
".gcode.3mf文件中不包含G-code数据。请使用Orca Slicer进行切片并导出新的."
|
||||
"gcode.3mf文件。"
|
||||
".gcode.3mf文件中不包含G-code数据。请使用Orca Slicer进行切片并导出新"
|
||||
"的.gcode.3mf文件。"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "File '%s' was lost! Please download it again."
|
||||
@@ -7593,7 +7694,7 @@ msgstr ""
|
||||
msgid "The selected object couldn't be split."
|
||||
msgstr "选中的模型不可分裂。"
|
||||
|
||||
msgid "Disable Auto-Drop to preserve z positioning?\n"
|
||||
msgid "Disable Auto-Drop to preserve Z positioning?\n"
|
||||
msgstr "禁用自动落板以保留 Z 轴定位?\n"
|
||||
|
||||
msgid "Object with floating parts was detected"
|
||||
@@ -8232,9 +8333,6 @@ msgstr "组用户耗材丝预设"
|
||||
msgid "Group user filament presets based on selection"
|
||||
msgstr "根据选择对用户耗材丝预设进行分组"
|
||||
|
||||
msgid "All"
|
||||
msgstr "所有"
|
||||
|
||||
msgid "By type"
|
||||
msgstr "按类型"
|
||||
|
||||
@@ -8601,6 +8699,14 @@ msgstr "下载网络插件"
|
||||
msgid "Associate files to OrcaSlicer"
|
||||
msgstr "逆戟鲸切片器文件关联"
|
||||
|
||||
msgid ""
|
||||
"File associations for the Microsoft Store version are managed by Windows "
|
||||
"Settings."
|
||||
msgstr "Microsoft Store 版本的文件关联由 Windows 设置管理。"
|
||||
|
||||
msgid "Open Windows Default Apps Settings"
|
||||
msgstr "打开 Windows 默认应用设置"
|
||||
|
||||
msgid "Associate 3MF files to OrcaSlicer"
|
||||
msgstr "将 3MF 文件关联到 OrcaSlicer"
|
||||
|
||||
@@ -8631,9 +8737,6 @@ msgstr "将网页链接关联到OrcaSlicer"
|
||||
msgid "Developer"
|
||||
msgstr "开发者"
|
||||
|
||||
msgid "Developer mode"
|
||||
msgstr "开发者模式"
|
||||
|
||||
msgid "Skip AMS blacklist check"
|
||||
msgstr "跳过AMS黑名单检查"
|
||||
|
||||
@@ -9397,6 +9500,9 @@ msgid ""
|
||||
"operation or verify if the printer is functioning properly."
|
||||
msgstr "文件上传超时。请检查固件版本是否支持此操作或验证打印机是否正常工作。"
|
||||
|
||||
msgid "Sending failed, please try again!"
|
||||
msgstr "发送失败,请重试!"
|
||||
|
||||
msgid "Slice ok."
|
||||
msgstr "切片完成."
|
||||
|
||||
@@ -9685,8 +9791,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"在录制无工具头延时摄影视频时,建议添加“延时摄影擦料塔”\n"
|
||||
"右键单击打印板的空白位置,选择“添加标准模型”->“延时摄影擦料塔”。"
|
||||
@@ -9809,6 +9915,9 @@ msgstr "设置外部和内部桥接的速度"
|
||||
msgid "Travel speed"
|
||||
msgstr "空驶速度"
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr "结点偏差"
|
||||
|
||||
msgid "Jerk(XY)"
|
||||
msgstr "抖动(XY轴)"
|
||||
|
||||
@@ -10660,9 +10769,6 @@ msgid ""
|
||||
msgstr ""
|
||||
"根据打印机耗材顺序替换项目耗材列表。未使用的打印机耗材将自动添加到列表末尾。"
|
||||
|
||||
msgid "Advanced settings"
|
||||
msgstr "高级设置"
|
||||
|
||||
msgid "Add unused AMS filaments to filaments list."
|
||||
msgstr "将未使用的 AMS 耗材丝添加到耗材丝列表中。"
|
||||
|
||||
@@ -11145,12 +11251,23 @@ msgstr "新的网络插件(%s) 可用,您是否需要安装它?"
|
||||
msgid "New version of Orca Slicer"
|
||||
msgstr "新版本的Orca Slicer"
|
||||
|
||||
msgid "Check on Github"
|
||||
msgstr "在 Github 上查看"
|
||||
msgid "Check on Microsoft Store"
|
||||
msgstr "在 Microsoft Store 中查看"
|
||||
|
||||
msgid "Check on GitHub"
|
||||
msgstr "在 GitHub 上查看"
|
||||
|
||||
msgid "Open Microsoft Store"
|
||||
msgstr "打开 Microsoft Store"
|
||||
|
||||
msgid "Skip this Version"
|
||||
msgstr "跳过本版本"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"New version available: %s. Please update OrcaSlicer from the Microsoft Store."
|
||||
msgstr "有新版本可用:%s。请从 Microsoft Store 更新 OrcaSlicer。"
|
||||
|
||||
msgid "Confirm and Update Nozzle"
|
||||
msgstr "确认并更新喷嘴"
|
||||
|
||||
@@ -11256,6 +11373,9 @@ msgstr "切割模块"
|
||||
msgid "Auto Fire Extinguishing System"
|
||||
msgstr "自动灭火系统"
|
||||
|
||||
msgid "Beta"
|
||||
msgstr "测试版"
|
||||
|
||||
msgid "Update firmware"
|
||||
msgstr "更新固件"
|
||||
|
||||
@@ -11967,6 +12087,15 @@ msgstr "启用第三方网络连接"
|
||||
msgid "Allow controlling BambuLab's printer through 3rd party print hosts."
|
||||
msgstr "允许通过第三方网络连接控制BambuLab的打印机"
|
||||
|
||||
msgid "Use 3MF instead of G-code"
|
||||
msgstr "使用 3MF 代替 G-code"
|
||||
|
||||
msgid ""
|
||||
"Enable this if the printer accepts a 3MF file as the print job. When "
|
||||
"enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a "
|
||||
"plain .gcode file."
|
||||
msgstr "如果打印机接受 3MF 文件作为打印任务,请启用此选项。启用后,Orca Slicer 将以 .gcode.3mf 格式发送切片文件,而不是普通的 .gcode 文件。"
|
||||
|
||||
msgid "Printer Agent"
|
||||
msgstr "打印机代理"
|
||||
|
||||
@@ -12358,8 +12487,9 @@ msgstr "启用后,桥接角度值将被加到自动计算出的桥接方向上
|
||||
msgid "External bridge density"
|
||||
msgstr "外部桥接密度"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Controls the density (spacing) of external bridge lines. Default is 100%.\n"
|
||||
"Controls the density (spacing) of external bridge lines.\n"
|
||||
"Theoretically, 100% means a solid bridge, but due to the tendency of bridge "
|
||||
"extrusions to sag, 100% may not be sufficient.\n"
|
||||
"\n"
|
||||
@@ -12373,9 +12503,7 @@ msgid ""
|
||||
" - Pros: Can create a string-like first layer. Faster and with better "
|
||||
"cooling because there is more space for air to circulate around the extruded "
|
||||
"bridge.\n"
|
||||
" - Cons: May lead to sagging and poorer surface finish.\n"
|
||||
"\n"
|
||||
"Recommended range: Minimum 10% - Maximum 125%."
|
||||
" - Cons: May lead to sagging and poorer surface finish."
|
||||
msgstr ""
|
||||
"控制外部桥接线的密度(间距)。默认值为 100%。\n"
|
||||
"理论上 100% 意味着实心桥接,但由于桥接挤出物容易下垂,100% 可能并不足够。\n"
|
||||
@@ -12387,17 +12515,14 @@ msgstr ""
|
||||
"- 低于 100% 的密度(最小 10%):\n"
|
||||
" - 优点:可形成类似拉丝的第一层。速度更快、冷却更好,因为挤出桥接周围有更多"
|
||||
"空气流通的空间。\n"
|
||||
" - 缺点:可能导致下垂和较差的表面光洁度。\n"
|
||||
"\n"
|
||||
"推荐范围:最小 10% - 最大 125%。"
|
||||
" - 缺点:可能导致下垂和较差的表面光洁度。"
|
||||
|
||||
msgid "Internal bridge density"
|
||||
msgstr "内部桥接密度"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Controls the density (spacing) of internal bridge lines. Default is 100%. "
|
||||
"100% means a solid internal bridge.\n"
|
||||
"\n"
|
||||
"Controls the density (spacing) of internal bridge lines.\n"
|
||||
"Internal bridges act as intermediate support between sparse infill and top "
|
||||
"solid infill and can strongly affect top surface quality.\n"
|
||||
"\n"
|
||||
@@ -12454,18 +12579,15 @@ msgstr ""
|
||||
"实际使用的桥接流量是将此值乘以耗材流量比,以及(如已设置)对象的流量比计算得"
|
||||
"出的。"
|
||||
|
||||
#, fuzzy, c-format, boost-format
|
||||
msgid ""
|
||||
"Bridge line width is expressed either as an absolute value or as a "
|
||||
"percentage of the active nozzle diameter (percentages are computed from the "
|
||||
"nozzle diameter).\n"
|
||||
"Line width of the Bridge. If expressed as a %, it will be computed over the "
|
||||
"nozzle diameter.\n"
|
||||
"Recommended to use with a higher Bridge density or Bridge flow ratio.\n"
|
||||
"\n"
|
||||
"The maximum value is 100% or the nozzle diameter.\n"
|
||||
"If set to 0, the line width will match the Internal solid infill width."
|
||||
msgstr ""
|
||||
"桥接线宽可以表示为绝对值,或当前喷嘴直径的百分比(百分比根据喷嘴直径计"
|
||||
"算)。\n"
|
||||
"桥接线的线宽。如果以百分比表示,将根据喷嘴直径计算。\n"
|
||||
"建议与较高的桥接密度或桥接流量比配合使用。\n"
|
||||
"\n"
|
||||
"最大值为 100% 或喷嘴直径。\n"
|
||||
@@ -14241,7 +14363,7 @@ msgstr "如果填充图案支持,使用多线进行填充。"
|
||||
msgid "Z-buckling bias optimization (experimental)"
|
||||
msgstr "Z 轴屈曲偏置优化(实验性)"
|
||||
|
||||
#, fuzzy, c-format, boost-format
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
|
||||
"to shorten the effective vertical column length and improve Z-axis "
|
||||
@@ -14436,8 +14558,8 @@ msgid "mm/s² or %"
|
||||
msgstr "mm/s² 或 %"
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
msgstr ""
|
||||
"稀疏填充的加速度。如果该值表示为百分比(例如100%),则将根据默认加速度进行计"
|
||||
"算。"
|
||||
@@ -14482,9 +14604,6 @@ msgstr "Klipper固件的max_accel_to_decel将被调整为该加速度的百分
|
||||
msgid "Default jerk."
|
||||
msgstr "默认抖动"
|
||||
|
||||
msgid "Junction Deviation"
|
||||
msgstr "结点偏差"
|
||||
|
||||
msgid ""
|
||||
"Marlin Firmware Junction Deviation (replaces the traditional XY Jerk "
|
||||
"setting)."
|
||||
@@ -14567,10 +14686,10 @@ msgstr "满速风扇在"
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"风扇速度将从“禁用第一层”的零转速,线性上升到“全风扇速度层”的最大转速。\n"
|
||||
"如果低于“禁用风扇第一层”,则“全风扇速度第一层”将被忽略,在这种情况下,风扇将"
|
||||
@@ -15521,16 +15640,13 @@ msgstr ""
|
||||
"影响坡度小于此角度(度)的墙壁。\n"
|
||||
"合理的取值为 35。设置为 0 以禁用。"
|
||||
|
||||
msgid "°"
|
||||
msgstr "°"
|
||||
|
||||
msgid "Don't alternate fill direction"
|
||||
msgstr "不交替填充方向"
|
||||
|
||||
msgid "Disable alternating fill direction when using Z contouring."
|
||||
msgstr "在使用 Z 层抗锯齿时禁用交替填充方向。"
|
||||
|
||||
msgid "Minimum z height"
|
||||
msgid "Minimum Z height"
|
||||
msgstr "最小 Z 高度"
|
||||
|
||||
msgid ""
|
||||
@@ -16583,8 +16699,8 @@ msgid "Role base wipe speed"
|
||||
msgstr "自动擦拭速度"
|
||||
|
||||
msgid ""
|
||||
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||
"g. if a wipe action is executed immediately following an outer wall "
|
||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
||||
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||
"wipe action."
|
||||
msgstr ""
|
||||
@@ -17444,8 +17560,8 @@ msgstr "激活温度控制"
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present.\n"
|
||||
@@ -18351,11 +18467,11 @@ msgid "Debug level"
|
||||
msgstr "调试等级"
|
||||
|
||||
msgid ""
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
"trace\n"
|
||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
"5:trace\n"
|
||||
msgstr ""
|
||||
"设置调试日志的等级。0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
"trace\n"
|
||||
"设置调试日志的等级。0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
"5:trace\n"
|
||||
|
||||
msgid "Log file"
|
||||
msgstr "日志文件"
|
||||
@@ -19087,10 +19203,10 @@ msgid ""
|
||||
msgstr ""
|
||||
"请从我们的wiki中找到动态流量校准的详细信息。\n"
|
||||
"\n"
|
||||
"通常情况下,校准是不必要的。当您开始单色/单耗材打印,并在打印开始菜单中勾选"
|
||||
"了“动态流量校准”选项时,打印机将按照旧的方式在打印前校准耗材;当您开始多色/多"
|
||||
"耗材打印时,打印机将在每次换耗材时使用默认的补偿参数,这在大多数情况下会产生"
|
||||
"良好的效果。\n"
|
||||
"通常情况下,校准是不必要的。当您开始单色/单耗材打印,并在打印开始菜单中勾选了"
|
||||
"“动态流量校准”选项时,打印机将按照旧的方式在打印前校准耗材;当您开始多色/多耗"
|
||||
"材打印时,打印机将在每次换耗材时使用默认的补偿参数,这在大多数情况下会产生良"
|
||||
"好的效果。\n"
|
||||
"\n"
|
||||
"有些情况可能导致校准结果不可靠,例如打印板的附着力不足。清洗构建或者使用胶水"
|
||||
"可以增强打印板的附着力。您可以在我们的wiki上找到更多相关信息。\n"
|
||||
@@ -20079,8 +20195,8 @@ msgstr ""
|
||||
"你想重写预设吗"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\".\n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\".\n"
|
||||
"To add preset for more printers, please go to printer selection"
|
||||
msgstr ""
|
||||
"我们将会把预设重命名为“供应商类型名 @ 您选择的打印机”\n"
|
||||
@@ -20165,9 +20281,6 @@ msgstr "打印机预设"
|
||||
msgid "Filament Preset Template"
|
||||
msgstr "耗材预设模板"
|
||||
|
||||
msgid "Deselect All"
|
||||
msgstr "全部取消选中"
|
||||
|
||||
msgid "Process Preset Template"
|
||||
msgstr "工艺预设模板"
|
||||
|
||||
@@ -20628,9 +20741,21 @@ msgstr "未找到打印机类型,请手动选择。"
|
||||
msgid "Authorizing..."
|
||||
msgstr "正在授权..."
|
||||
|
||||
msgid "Error. Can't get api token for authorization"
|
||||
msgstr "错误。无法获取用于授权的 API 令牌"
|
||||
|
||||
msgid "Could not parse server response."
|
||||
msgstr "无法解析服务器响应。"
|
||||
|
||||
msgid "Error saving session to file"
|
||||
msgstr "保存会话到文件时出错"
|
||||
|
||||
msgid "Error session check"
|
||||
msgstr "会话检查出错"
|
||||
|
||||
msgid "Error during file upload"
|
||||
msgstr "文件上传过程中出错"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Mismatched type of print host: %s"
|
||||
msgstr "%s 打印机的主机类型不匹配"
|
||||
@@ -20999,8 +21124,8 @@ msgid ""
|
||||
"to this wiki: Printing Tips for High Temp / Engineering materials."
|
||||
msgstr ""
|
||||
"打印此耗材时,可能有喷嘴堵塞、渗漏、翘曲和层间强度低的风险。为了获得更好的结"
|
||||
"果,请参考此英文wiki:Printing Tips for High Temp / Engineering "
|
||||
"materials(“高温/工程材料的打印技巧”)"
|
||||
"果,请参考此英文wiki:Printing Tips for High Temp / Engineering materials"
|
||||
"(“高温/工程材料的打印技巧”)"
|
||||
|
||||
msgid ""
|
||||
"To get better transparent or translucent results with the corresponding "
|
||||
@@ -21068,8 +21193,8 @@ msgid ""
|
||||
"wiki: PVA Printing Guide."
|
||||
msgstr ""
|
||||
"这是一种水溶性支撑耗材,通常只用作支撑结构,不用于模型本体。打印此类耗材需要"
|
||||
"满足较多条件,为了获得更好的打印质量,请参考这个英文wiki:PVA Printing "
|
||||
"Guide(“PVA打印指南”)"
|
||||
"满足较多条件,为了获得更好的打印质量,请参考这个英文wiki:PVA Printing Guide"
|
||||
"(“PVA打印指南”)"
|
||||
|
||||
msgid ""
|
||||
"This is a non-water-soluble support filament, and usually it is only for the "
|
||||
@@ -21357,6 +21482,105 @@ msgstr "无法通过串口连接Flashforge"
|
||||
msgid "Flashforge local API requires both serial number and access code."
|
||||
msgstr "Flashforge 本地 API 同时需要序列号和访问码。"
|
||||
|
||||
msgid "Printer returned an error"
|
||||
msgstr "打印机返回了一个错误"
|
||||
|
||||
msgid "Missing system_info in response"
|
||||
msgstr "响应中缺少 system_info"
|
||||
|
||||
msgid "Missing printer serial number in response"
|
||||
msgstr "响应中缺少打印机序列号"
|
||||
|
||||
msgid "Error parsing response"
|
||||
msgstr "解析响应时出错"
|
||||
|
||||
msgid "ElegooLink not detected"
|
||||
msgstr "未检测到 ElegooLink"
|
||||
|
||||
msgid "Invalid access code"
|
||||
msgstr "访问码无效"
|
||||
|
||||
msgid "CC2 device not detected"
|
||||
msgstr "未检测到 CC2 设备"
|
||||
|
||||
msgid "Connection to ElegooLink is working correctly."
|
||||
msgstr "与 ElegooLink 的连接正常。"
|
||||
|
||||
msgid "Could not connect to ElegooLink"
|
||||
msgstr "无法连接到 ElegooLink。"
|
||||
|
||||
#, boost-format
|
||||
msgid "Error code: %1%"
|
||||
msgstr "错误代码:%1%"
|
||||
|
||||
msgid "Upload failed"
|
||||
msgstr "上传失败"
|
||||
|
||||
msgid ""
|
||||
"The file has been transferred, but some unknown errors occurred. Please "
|
||||
"check the device page for the file and try to start printing again."
|
||||
msgstr "文件已传输,但发生了一些未知错误。请在设备页面查看该文件,然后重新尝试开始打印。"
|
||||
|
||||
msgid "Failed to open file for upload."
|
||||
msgstr "无法打开要上传的文件。"
|
||||
|
||||
msgid "Failed to read file chunk for upload."
|
||||
msgstr "无法读取要上传的文件块。"
|
||||
|
||||
msgid "CC2 upload failed"
|
||||
msgstr "CC2 上传失败"
|
||||
|
||||
msgid "The file is empty or could not be read."
|
||||
msgstr "文件为空或无法读取。"
|
||||
|
||||
msgid "Failed to calculate file checksum."
|
||||
msgstr "计算文件校验和失败。"
|
||||
|
||||
msgid "Error code not found"
|
||||
msgstr "未找到错误代码"
|
||||
|
||||
msgid ""
|
||||
"The printer is busy, Please check the device page for the file and try to "
|
||||
"start printing again."
|
||||
msgstr "打印机繁忙,请在设备页面查看该文件,然后重新尝试开始打印。"
|
||||
|
||||
msgid "The file is lost, please check and try again."
|
||||
msgstr "文件丢失,请检查后重试。"
|
||||
|
||||
msgid "The file is corrupted, please check and try again."
|
||||
msgstr "文件已损坏,请检查后重试。"
|
||||
|
||||
msgid "Transmission abnormality, please check and try again."
|
||||
msgstr "传输异常,请检查后重试。"
|
||||
|
||||
msgid "The file does not match the printer, please check and try again."
|
||||
msgstr "文件与打印机不匹配,请检查后重试。"
|
||||
|
||||
msgid "Start print timeout"
|
||||
msgstr "开始打印超时"
|
||||
|
||||
msgid "Start print failed"
|
||||
msgstr "开始打印失败"
|
||||
|
||||
msgid "Connected to CrealityPrint successfully!"
|
||||
msgstr "已成功连接到 CrealityPrint!"
|
||||
|
||||
msgid "Could not connect to CrealityPrint"
|
||||
msgstr "无法连接到 CrealityPrint。"
|
||||
|
||||
msgid ""
|
||||
"Connection timed out. Please check if the printer and computer network are "
|
||||
"functioning properly, and confirm that they are on the same network."
|
||||
msgstr "连接超时。请检查打印机和计算机网络是否正常工作,并确认它们处于同一网络中。"
|
||||
|
||||
msgid "The Hostname/IP/URL could not be parsed, please check it and try again."
|
||||
msgstr "无法解析主机名/IP/URL,请检查后重试。"
|
||||
|
||||
msgid ""
|
||||
"File/data transfer interrupted. Please check the printer and network, then "
|
||||
"try it again."
|
||||
msgstr "文件/数据传输中断。请检查打印机和网络,然后重试。"
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr "提供的状态不正确。"
|
||||
|
||||
@@ -21407,6 +21631,12 @@ msgstr "耳状帽檐"
|
||||
msgid "Please select single object."
|
||||
msgstr "请选中单个对象。"
|
||||
|
||||
msgid "Entering Brim Ears"
|
||||
msgstr "进入耳状帽檐"
|
||||
|
||||
msgid "Leaving Brim Ears"
|
||||
msgstr "离开耳状帽檐"
|
||||
|
||||
msgid "Zoom Out"
|
||||
msgstr "缩小"
|
||||
|
||||
@@ -21416,6 +21646,9 @@ msgstr "放大"
|
||||
msgid "Load skipping objects information failed. Please try again."
|
||||
msgstr "加载跳过对象信息失败。请再试一次。"
|
||||
|
||||
msgid "Failed to create the temporary folder."
|
||||
msgstr "创建临时文件夹失败。"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "/%d Selected"
|
||||
msgstr "/%d 已选择"
|
||||
@@ -21561,6 +21794,100 @@ msgstr "三角面片数量"
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr "正在计算,请稍候..."
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr "预设包"
|
||||
|
||||
msgid "Bundle folder does not exist."
|
||||
msgstr "预设包文件夹不存在。"
|
||||
|
||||
msgid "Failed to open folder."
|
||||
msgstr "无法打开文件夹。"
|
||||
|
||||
msgid "Delete selected bundle from folder and all presets loaded from it?"
|
||||
msgstr "从文件夹中删除选定的预设包以及从中加载的所有预设吗?"
|
||||
|
||||
msgid "Delete Bundle"
|
||||
msgstr "删除预设包"
|
||||
|
||||
msgid "Failed to remove bundle."
|
||||
msgstr "移除预设包失败。"
|
||||
|
||||
msgid "Remove Bundle"
|
||||
msgstr "移除预设包"
|
||||
|
||||
msgid "Unsubscribe bundle?"
|
||||
msgstr "取消订阅预设包吗?"
|
||||
|
||||
msgid "UnsubscribeBundle"
|
||||
msgstr "取消订阅预设包"
|
||||
|
||||
msgid "Failed to unsubscribe bundle."
|
||||
msgstr "取消订阅预设包失败。"
|
||||
|
||||
msgid "Unsubscribe Bundle"
|
||||
msgstr "取消订阅预设包"
|
||||
|
||||
msgid "ExportPresetBundle"
|
||||
msgstr "导出预设包"
|
||||
|
||||
msgid "Save preset bundle"
|
||||
msgstr "保存预设包"
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - boost::filesystem::canonical did not "
|
||||
"return appimage path."
|
||||
msgstr "执行桌面集成失败 - boost::filesystem::canonical 未返回 AppImage 路径。"
|
||||
|
||||
msgid "Performing desktop integration failed - Could not find executable."
|
||||
msgstr "执行桌面集成失败 - 无法找到可执行文件。"
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed because the application directory was "
|
||||
"not found."
|
||||
msgstr "执行桌面集成失败,因为未找到应用程序目录。"
|
||||
|
||||
msgid ""
|
||||
"Performing desktop integration failed - could not create Gcodeviewer desktop "
|
||||
"file. OrcaSlicer desktop file was probably created successfully."
|
||||
msgstr "执行桌面集成失败 - 无法创建 Gcodeviewer 桌面文件。OrcaSlicer 桌面文件可能已成功创建。"
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - "
|
||||
"boost::filesystem::canonical did not return appimage path."
|
||||
msgstr "执行下载器桌面集成失败 - boost::filesystem::canonical 未返回 AppImage 路径。"
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed - Could not find executable."
|
||||
msgstr "执行下载器桌面集成失败 - 无法找到可执行文件。"
|
||||
|
||||
msgid ""
|
||||
"Performing downloader desktop integration failed because the application "
|
||||
"directory was not found."
|
||||
msgstr "执行下载器桌面集成失败,因为未找到应用程序目录。"
|
||||
|
||||
msgid "Desktop Integration"
|
||||
msgstr "桌面集成"
|
||||
|
||||
msgid ""
|
||||
"Desktop Integration sets this binary to be searchable by the system.\n"
|
||||
"\n"
|
||||
"Press \"Perform\" to proceed."
|
||||
msgstr "桌面集成会将此二进制文件设置为可被系统搜索到。\n\n按“执行”以继续。"
|
||||
|
||||
msgid "The download has failed"
|
||||
msgstr "下载失败"
|
||||
|
||||
#. TRN %1% = file path
|
||||
#, boost-format
|
||||
msgid "Can't create file at %1%"
|
||||
msgstr "无法在 %1% 处创建文件"
|
||||
|
||||
msgid "Archive preview"
|
||||
msgstr "存档预览"
|
||||
|
||||
msgid "Open File"
|
||||
msgstr "打开文件"
|
||||
|
||||
msgid ""
|
||||
"The filament may not be compatible with the current machine settings. "
|
||||
"Generic filament presets will be used."
|
||||
@@ -21938,6 +22265,112 @@ msgstr ""
|
||||
"避免翘曲\n"
|
||||
"您知道吗?打印ABS这类易翘曲材料时,适当提高热床温度可以降低翘曲的概率。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "It is recommended to assemble objects first,\n"
|
||||
#~ "because the objects is restriced to bed \n"
|
||||
#~ "and only parts can be lifted."
|
||||
#~ msgstr ""
|
||||
#~ "建议先装配物体,\n"
|
||||
#~ "因为物体被限制在打印平台上,\n"
|
||||
#~ "只有零件可以被抬起。"
|
||||
|
||||
#~ msgid "part selection"
|
||||
#~ msgstr "零件选择"
|
||||
|
||||
#~ msgid "°"
|
||||
#~ msgstr "°"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Controls the density (spacing) of external bridge lines. Default is "
|
||||
#~ "100%.\n"
|
||||
#~ "Theoretically, 100% means a solid bridge, but due to the tendency of "
|
||||
#~ "bridge extrusions to sag, 100% may not be sufficient.\n"
|
||||
#~ "\n"
|
||||
#~ "- Higher than 100% density (Recommended Max 125%):\n"
|
||||
#~ " - Pros: Produces smoother bridge surfaces, as overlapping lines provide "
|
||||
#~ "additional support during printing.\n"
|
||||
#~ " - Cons: Can cause overextrusion, which may reduce lower and upper "
|
||||
#~ "surface quality and increase the risk of warping.\n"
|
||||
#~ "\n"
|
||||
#~ "- Lower than 100% density (Min 10%):\n"
|
||||
#~ " - Pros: Can create a string-like first layer. Faster and with better "
|
||||
#~ "cooling because there is more space for air to circulate around the "
|
||||
#~ "extruded bridge.\n"
|
||||
#~ " - Cons: May lead to sagging and poorer surface finish.\n"
|
||||
#~ "\n"
|
||||
#~ "Recommended range: Minimum 10% - Maximum 125%."
|
||||
#~ msgstr ""
|
||||
#~ "控制外部桥接线的密度(间距)。默认值为 100%。\n"
|
||||
#~ "理论上 100% 意味着实心桥接,但由于桥接挤出物容易下垂,100% 可能并不足"
|
||||
#~ "够。\n"
|
||||
#~ "\n"
|
||||
#~ "- 高于 100% 的密度(推荐最大 125%):\n"
|
||||
#~ " - 优点:产生更平滑的桥接表面,因为重叠的线在打印过程中提供额外支撑。\n"
|
||||
#~ " - 缺点:可能导致过度挤出,从而降低上下表面质量并增加翘曲风险。\n"
|
||||
#~ "\n"
|
||||
#~ "- 低于 100% 的密度(最小 10%):\n"
|
||||
#~ " - 优点:可形成类似拉丝的第一层。速度更快、冷却更好,因为挤出桥接周围有更"
|
||||
#~ "多空气流通的空间。\n"
|
||||
#~ " - 缺点:可能导致下垂和较差的表面光洁度。\n"
|
||||
#~ "\n"
|
||||
#~ "推荐范围:最小 10% - 最大 125%。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Controls the density (spacing) of internal bridge lines. Default is 100%. "
|
||||
#~ "100% means a solid internal bridge.\n"
|
||||
#~ "\n"
|
||||
#~ "Internal bridges act as intermediate support between sparse infill and "
|
||||
#~ "top solid infill and can strongly affect top surface quality.\n"
|
||||
#~ "\n"
|
||||
#~ "- Higher than 100% density (Recommended Max 125%):\n"
|
||||
#~ " - Pros: Improves internal bridge strength and support under top layers, "
|
||||
#~ "reducing sagging and improving top-surface finish.\n"
|
||||
#~ " - Cons: Increases material use and print time; excessive density may "
|
||||
#~ "cause overextrusion and internal stresses.\n"
|
||||
#~ "\n"
|
||||
#~ "- Lower than 100% density (Min 10%):\n"
|
||||
#~ " - Pros: Can reduce pillowing and improve cooling (more airflow through "
|
||||
#~ "the bridge), and may speed up printing.\n"
|
||||
#~ " - Cons: May reduce internal support, increasing the risk of sagging and "
|
||||
#~ "top surface defects.\n"
|
||||
#~ "\n"
|
||||
#~ "This option works particularly well when combined with the second "
|
||||
#~ "internal bridge over infill option to improve bridging further before "
|
||||
#~ "solid infill is extruded."
|
||||
#~ msgstr ""
|
||||
#~ "控制内部桥接线的密度(间距)。默认值为 100%。100% 表示实心内部桥接。\n"
|
||||
#~ "\n"
|
||||
#~ "内部桥接作为稀疏填充与顶部实心填充之间的过渡支撑,会强烈影响顶面质量。\n"
|
||||
#~ "\n"
|
||||
#~ "- 高于 100% 的密度(推荐最大 125%):\n"
|
||||
#~ " - 优点:提升内部桥接强度以及对顶层的支撑,减少下垂并改善顶面光洁度。\n"
|
||||
#~ " - 缺点:增加材料用量和打印时间;密度过高可能导致过度挤出和内部应力。\n"
|
||||
#~ "\n"
|
||||
#~ "- 低于 100% 的密度(最小 10%):\n"
|
||||
#~ " - 优点:可减少表面起鼓并改善冷却(更多气流通过桥接),还可能加快打印速"
|
||||
#~ "度。\n"
|
||||
#~ " - 缺点:可能降低内部支撑,增加下垂和顶面缺陷的风险。\n"
|
||||
#~ "\n"
|
||||
#~ "此选项与“在填充上方增加第二层内部桥接”选项结合使用时效果尤佳,可在挤出实心"
|
||||
#~ "填充之前进一步改善桥接。"
|
||||
|
||||
#, fuzzy, c-format, boost-format
|
||||
#~ msgid ""
|
||||
#~ "Bridge line width is expressed either as an absolute value or as a "
|
||||
#~ "percentage of the active nozzle diameter (percentages are computed from "
|
||||
#~ "the nozzle diameter).\n"
|
||||
#~ "Recommended to use with a higher Bridge density or Bridge flow ratio.\n"
|
||||
#~ "\n"
|
||||
#~ "The maximum value is 100% or the nozzle diameter.\n"
|
||||
#~ "If set to 0, the line width will match the Internal solid infill width."
|
||||
#~ msgstr ""
|
||||
#~ "桥接线宽可以表示为绝对值,或当前喷嘴直径的百分比(百分比根据喷嘴直径计"
|
||||
#~ "算)。\n"
|
||||
#~ "建议与较高的桥接密度或桥接流量比配合使用。\n"
|
||||
#~ "\n"
|
||||
#~ "最大值为 100% 或喷嘴直径。\n"
|
||||
#~ "如果设置为 0,线宽将与内部实心填充宽度一致。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The Wipe option is not available when using the Firmware Retraction "
|
||||
#~ "mode.\n"
|
||||
@@ -22236,9 +22669,6 @@ msgstr ""
|
||||
#~ msgid "Mouse wheel:"
|
||||
#~ msgstr "鼠标滚轮:"
|
||||
|
||||
#~ msgid "Object selection"
|
||||
#~ msgstr "对象选择"
|
||||
|
||||
#~ msgid "Pass 1"
|
||||
#~ msgstr "粗调"
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -45,7 +45,7 @@
|
||||
"0"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"1"
|
||||
"10"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
|
||||
@@ -54,7 +54,7 @@
|
||||
"0"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
"12"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
|
||||
@@ -51,7 +51,7 @@
|
||||
"0"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"1"
|
||||
"12"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.8"
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
"0"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"1"
|
||||
"12"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.8"
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
"0"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
"12"
|
||||
],
|
||||
"filament_type": [
|
||||
"PETG"
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
"0"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"1"
|
||||
"16"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
|
||||
@@ -45,7 +45,7 @@
|
||||
"0"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"1"
|
||||
"16"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
|
||||
@@ -45,7 +45,7 @@
|
||||
"0"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"1"
|
||||
"16"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
"0"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"1"
|
||||
"12"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
|
||||
@@ -54,7 +54,7 @@
|
||||
"0"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
"12"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
"0"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"1"
|
||||
"12"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
|
||||
@@ -54,7 +54,7 @@
|
||||
"0"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"1.8"
|
||||
"12"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
"0"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
"16"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
|
||||
@@ -45,7 +45,7 @@
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"3"
|
||||
"6"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"100%"
|
||||
|
||||
@@ -54,7 +54,7 @@
|
||||
"0"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"4"
|
||||
"10"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"100%"
|
||||
|
||||
@@ -54,7 +54,7 @@
|
||||
"0"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"4"
|
||||
"10"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"100%"
|
||||
|
||||
@@ -54,7 +54,7 @@
|
||||
"0"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"4"
|
||||
"10"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"100%"
|
||||
|
||||
@@ -54,7 +54,7 @@
|
||||
"0"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"4"
|
||||
"10"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"100%"
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
"0"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
"16"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"3"
|
||||
"6"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"100"
|
||||
|
||||
@@ -57,7 +57,7 @@
|
||||
"0"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"1"
|
||||
"10"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
|
||||
@@ -51,7 +51,7 @@
|
||||
"0"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
"23"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
|
||||
@@ -54,7 +54,7 @@
|
||||
"0"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
"18"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
|
||||
@@ -51,7 +51,7 @@
|
||||
"0"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
"18"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"100"
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
"0"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
"21"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
|
||||
@@ -45,7 +45,7 @@
|
||||
"0"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
"21"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
|
||||
@@ -51,7 +51,7 @@
|
||||
"0"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
"21"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
|
||||
@@ -124,7 +124,7 @@
|
||||
"default_filament_profile": [
|
||||
"Creality HF Generic PLA"
|
||||
],
|
||||
"machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; creality_uuid: <random_uuid>\n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
|
||||
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
||||
"machine_end_gcode": "END_PRINT",
|
||||
"scan_first_layer": "0",
|
||||
"thumbnails": [
|
||||
|
||||
@@ -124,7 +124,7 @@
|
||||
"default_filament_profile": [
|
||||
"Creality HF Generic PLA"
|
||||
],
|
||||
"machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; creality_uuid: <random_uuid>\n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
|
||||
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
||||
"machine_end_gcode": "END_PRINT",
|
||||
"scan_first_layer": "0",
|
||||
"thumbnails": [
|
||||
|
||||
@@ -124,7 +124,7 @@
|
||||
"default_filament_profile": [
|
||||
"Creality HF Generic PLA"
|
||||
],
|
||||
"machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; creality_uuid: <random_uuid>\n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
|
||||
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
||||
"machine_end_gcode": "END_PRINT",
|
||||
"scan_first_layer": "0",
|
||||
"thumbnails": [
|
||||
|
||||
@@ -54,7 +54,7 @@
|
||||
"machine_pause_gcode": "PAUSE",
|
||||
"machine_platform_motion_enable": "1",
|
||||
"machine_ptc_exist": "1",
|
||||
"machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; creality_uuid: <random_uuid>\n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
|
||||
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
||||
"machine_unload_filament_time": "0",
|
||||
"manual_filament_change": "0",
|
||||
"nozzle_hrc": "0",
|
||||
|
||||
@@ -123,7 +123,7 @@
|
||||
"default_filament_profile": [
|
||||
"Creality Generic PLA @K1-all"
|
||||
],
|
||||
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
||||
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
||||
"machine_end_gcode": "END_PRINT",
|
||||
"scan_first_layer": "0",
|
||||
"thumbnails_format": "PNG",
|
||||
|
||||
@@ -53,7 +53,7 @@
|
||||
"machine_min_travel_rate": "0,0",
|
||||
"machine_pause_gcode": "PAUSE",
|
||||
"machine_platform_motion_enable": "1",
|
||||
"machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; creality_uuid: <random_uuid>\n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
|
||||
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
||||
"machine_unload_filament_time": "0",
|
||||
"manual_filament_change": "0",
|
||||
"nozzle_hrc": "0",
|
||||
|
||||
@@ -54,7 +54,7 @@
|
||||
"machine_pause_gcode": "PAUSE",
|
||||
"machine_platform_motion_enable": "1",
|
||||
"machine_ptc_exist": "1",
|
||||
"machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; creality_uuid: <random_uuid>\n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
|
||||
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
||||
"machine_unload_filament_time": "0",
|
||||
"manual_filament_change": "0",
|
||||
"nozzle_hrc": "0",
|
||||
|
||||
@@ -54,7 +54,7 @@
|
||||
"machine_pause_gcode": "PAUSE",
|
||||
"machine_platform_motion_enable": "1",
|
||||
"machine_ptc_exist": "1",
|
||||
"machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; creality_uuid: <random_uuid>\n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
|
||||
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
||||
"machine_unload_filament_time": "0",
|
||||
"manual_filament_change": "0",
|
||||
"nozzle_hrc": "0",
|
||||
|
||||
@@ -88,7 +88,8 @@
|
||||
"5"
|
||||
],
|
||||
"machine_pause_gcode": "PAUSE",
|
||||
"machine_start_gcode": ";SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y130 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y130 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X130 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
|
||||
"_comment": "the generated by Creality_Print start gcode removes a warning/error message when printing with Orca because it thinks its sliced with CrealityPrint ",
|
||||
"machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
|
||||
"machine_unload_filament_time": "0",
|
||||
"manual_filament_change": "0",
|
||||
"nozzle_type": "hardened_steel",
|
||||
|
||||
@@ -86,8 +86,8 @@
|
||||
"5"
|
||||
],
|
||||
"machine_pause_gcode": "PAUSE",
|
||||
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X150 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
|
||||
"machine_unload_filament_time": "0",
|
||||
"_comment": "the generated by Creality_Print start gcode removes a warning/error message when printing with Orca because it thinks its sliced with CrealityPrint ",
|
||||
"machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
|
||||
"manual_filament_change": "0",
|
||||
"nozzle_type": "hardened_steel",
|
||||
"nozzle_volume": "183",
|
||||
|
||||
@@ -86,7 +86,8 @@
|
||||
"5"
|
||||
],
|
||||
"machine_pause_gcode": "PAUSE",
|
||||
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X150 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
|
||||
"_comment": "the generated by Creality_Print start gcode removes a warning/error message when printing with Orca because it thinks its sliced with CrealityPrint ",
|
||||
"machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
|
||||
"machine_unload_filament_time": "0",
|
||||
"manual_filament_change": "0",
|
||||
"nozzle_type": "hardened_steel",
|
||||
|
||||
@@ -86,7 +86,8 @@
|
||||
"5"
|
||||
],
|
||||
"machine_pause_gcode": "PAUSE",
|
||||
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X150 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
|
||||
"_comment": "the generated by Creality_Print start gcode removes a warning/error message when printing with Orca because it thinks its sliced with CrealityPrint ",
|
||||
"machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
|
||||
"machine_unload_filament_time": "0",
|
||||
"manual_filament_change": "0",
|
||||
"nozzle_type": "hardened_steel",
|
||||
|
||||
@@ -138,7 +138,8 @@
|
||||
"default_filament_profile": [
|
||||
"Creality Generic PLA @K2-all"
|
||||
],
|
||||
"machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; creality_uuid: <random_uuid>\n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
|
||||
"_comment": "the generated by Creality_Print start gcode removes a warning/error message when printing with Orca because it thinks its sliced with CrealityPrint ",
|
||||
"machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
|
||||
"machine_end_gcode": "END_PRINT",
|
||||
"machine_pause_gcode": "PAUSE",
|
||||
"change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X0 Y245 F30000\nG1 Z{z_after_toolchange} F600",
|
||||
|
||||
@@ -138,7 +138,8 @@
|
||||
"default_filament_profile": [
|
||||
"Creality Generic PLA @K2-all"
|
||||
],
|
||||
"machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; creality_uuid: <random_uuid>\n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
|
||||
"_comment": "the generated by Creality_Print start gcode removes a warning/error message when printing with Orca because it thinks its sliced with CrealityPrint ",
|
||||
"machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
|
||||
"machine_end_gcode": "END_PRINT",
|
||||
"machine_pause_gcode": "PAUSE",
|
||||
"change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X0 Y245 F30000\nG1 Z{z_after_toolchange} F600",
|
||||
|
||||
@@ -138,7 +138,8 @@
|
||||
"default_filament_profile": [
|
||||
"Creality Generic PLA @K2-all"
|
||||
],
|
||||
"machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; creality_uuid: <random_uuid>\n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
|
||||
"_comment": "the generated by Creality_Print start gcode removes a warning/error message when printing with Orca because it thinks its sliced with CrealityPrint ",
|
||||
"machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
|
||||
"machine_end_gcode": "END_PRINT",
|
||||
"machine_pause_gcode": "PAUSE",
|
||||
"change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X0 Y245 F30000\nG1 Z{z_after_toolchange} F600",
|
||||
|
||||
@@ -138,7 +138,8 @@
|
||||
"default_filament_profile": [
|
||||
"Creality Generic PLA @K2-all"
|
||||
],
|
||||
"machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; creality_uuid: <random_uuid>\n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
|
||||
"_comment": "the generated by Creality_Print start gcode removes a warning/error message when printing with Orca because it thinks its sliced with CrealityPrint ",
|
||||
"machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
|
||||
"machine_end_gcode": "END_PRINT",
|
||||
"machine_pause_gcode": "PAUSE",
|
||||
"change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X0 Y245 F30000\nG1 Z{z_after_toolchange} F600",
|
||||
|
||||
@@ -138,8 +138,8 @@
|
||||
"default_filament_profile": [
|
||||
"Creality Generic PLA @K2-all"
|
||||
],
|
||||
"machine_start_gcode": ";SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\n\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X150 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
|
||||
"machine_end_gcode": "END_PRINT",
|
||||
"_comment": "the generated by Creality_Print start gcode removes a warning/error message when printing with Orca because it thinks its sliced with CrealityPrint ",
|
||||
"machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
|
||||
"machine_pause_gcode": "PAUSE",
|
||||
"change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X0 Y245 F30000\nG1 Z{z_after_toolchange} F600",
|
||||
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
|
||||
|
||||
@@ -136,7 +136,8 @@
|
||||
"default_filament_profile": [
|
||||
"Creality Generic PLA @K2-all"
|
||||
],
|
||||
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X150 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
|
||||
"_comment": "the generated by Creality_Print start gcode removes a warning/error message when printing with Orca because it thinks its sliced with CrealityPrint ",
|
||||
"machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
|
||||
"machine_end_gcode": "{if print_sequence == \"by object\"}\nG91\nG1 X2 Y2 Z1 F24000\nG90\nG1 Z{max_layer_z+2} F600\n{endif}\nEND_PRINT",
|
||||
"machine_pause_gcode": "PAUSE",
|
||||
"change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\n{if print_sequence == \"by object\"}\nG0 Z{max_layer_z + 0.8} F900\n{endif}\nG1 X0 Y160 F30000\nG1 Z{z_after_toolchange} F600",
|
||||
|
||||
@@ -136,7 +136,8 @@
|
||||
"default_filament_profile": [
|
||||
"Creality Generic PLA @K2-all"
|
||||
],
|
||||
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X150 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
|
||||
"_comment": "the generated by Creality_Print start gcode removes a warning/error message when printing with Orca because it thinks its sliced with CrealityPrint ",
|
||||
"machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
|
||||
"machine_end_gcode": "{if print_sequence == \"by object\"}\nG91\nG1 X2 Y2 Z1 F24000\nG90\nG1 Z{max_layer_z+2} F600\n{endif}\nEND_PRINT",
|
||||
"machine_pause_gcode": "PAUSE",
|
||||
"change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\n{if print_sequence == \"by object\"}\nG0 Z{max_layer_z + 0.8} F900\n{endif}\nG1 X0 Y160 F30000\nG1 Z{z_after_toolchange} F600",
|
||||
|
||||
@@ -136,7 +136,8 @@
|
||||
"default_filament_profile": [
|
||||
"Creality Generic PLA @K2-all"
|
||||
],
|
||||
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X150 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
|
||||
"_comment": "the generated by Creality_Print start gcode removes a warning/error message when printing with Orca because it thinks its sliced with CrealityPrint ",
|
||||
"machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
|
||||
"machine_end_gcode": "{if print_sequence == \"by object\"}\nG91\nG1 X2 Y2 Z1 F24000\nG90\nG1 Z{max_layer_z+2} F600\n{endif}\nEND_PRINT",
|
||||
"machine_pause_gcode": "PAUSE",
|
||||
"change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\n{if print_sequence == \"by object\"}\nG0 Z{max_layer_z + 0.8} F900\n{endif}\nG1 X0 Y160 F30000\nG1 Z{z_after_toolchange} F600",
|
||||
|
||||
@@ -53,7 +53,8 @@
|
||||
"machine_min_travel_rate": "0,0",
|
||||
"machine_pause_gcode": "PAUSE",
|
||||
"machine_platform_motion_enable": "1",
|
||||
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X150 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
|
||||
"_comment": "the generated by Creality_Print start gcode removes a warning/error message when printing with Orca because it thinks its sliced with CrealityPrint ",
|
||||
"machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
|
||||
"machine_unload_filament_time": "0",
|
||||
"manual_filament_change": "0",
|
||||
"nozzle_hrc": "0",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Elegoo",
|
||||
"version": "02.04.00.02",
|
||||
"version": "02.04.00.04",
|
||||
"force_update": "0",
|
||||
"description": "Elegoo configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -62,7 +62,7 @@
|
||||
"change_filament_gcode": "",
|
||||
"machine_pause_gcode": "M600",
|
||||
"support_multi_filament": "0",
|
||||
"layer_change_gcode": "SET_PRINT_STATS_INFO CURRENT_LAYER={layer_num + 1}",
|
||||
"machine_start_gcode": ";;===== date: 20251011 =====================\n;printer_model:[printer_model]\n;initial_filament:{filament_type[initial_extruder]}\n;curr_bed_type:{curr_bed_type}\n;bed_level_temp:[bed_temperature_initial_layer_single]\nM400 ; wait for buffer to clear\nM220 S100 ;Set the feed speed to 100%\nM221 S100 ;Set the flow rate to 100%\nM104 S140\nM140 S[bed_temperature_initial_layer_single]\nG90\nG28 ;home\nM729 ;Clean Nozzle\nM190 S[bed_temperature_initial_layer_single]\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\n\n;enable_pressure_advance:{enable_pressure_advance[initial_extruder]}\n;This value is called if pressure advance is enabled\n{if enable_pressure_advance[initial_extruder] == \"true\"}\nSET_PRESSURE_ADVANCE ADVANCE=[pressure_advance] ;\nM400\n{endif}\nM204 S{min(20000,max(1000,outer_wall_acceleration))} ;Call exterior wall print acceleration\n\n\nG1 X{print_bed_max[0]*0.5} Y-1.2 F20000\nG1 Z0.3 F900\nM109 S[nozzle_temperature_initial_layer]\nM83\nG92 E0 ;Reset Extruder\nG1 F{min(6000, max(900, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X-1.2 E10.156 ;Draw the first line\nG1 Y98.8 E7.934\nG1 X-0.5 Y100 E0.1\nG1 Y-0.3 E7.934\nG1 X{print_bed_max[0]*0.5-50} E6.284\nG1 F{0.2*min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5-30} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5-10} E2\nG1 F{0.2*min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+10} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+30} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+50} E2\n;End PA test.\n\n\nG3 I-1 J0 Z0.6 F1200.0 ;Move to side a little\nG1 F20000\nG92 E0 ;Reset Extruder\nSET_PRINT_STATS_INFO TOTAL_LAYER=[total_layer_count]\n;LAYER_COUNT:[total_layer_count]\n;LAYER:0",
|
||||
"layer_change_gcode": "SET_PRINT_STATS_INFO TOTAL_LAYER=[total_layer_count] CURRENT_LAYER={layer_num+1}",
|
||||
"machine_start_gcode": ";;===== date: 20251011 =====================\n;printer_model:[printer_model]\n;initial_filament:{filament_type[initial_extruder]}\n;curr_bed_type:{curr_bed_type}\n;bed_level_temp:[bed_temperature_initial_layer_single]\nM400 ; wait for buffer to clear\nM220 S100 ;Set the feed speed to 100%\nM221 S100 ;Set the flow rate to 100%\nM104 S140\nM140 S[bed_temperature_initial_layer_single]\nG90\nG28 ;home\nM729 ;Clean Nozzle\nM190 S[bed_temperature_initial_layer_single]\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\n\n;enable_pressure_advance:{enable_pressure_advance[initial_extruder]}\n;This value is called if pressure advance is enabled\n{if enable_pressure_advance[initial_extruder] == \"true\"}\nSET_PRESSURE_ADVANCE ADVANCE=[pressure_advance] ;\nM400\n{endif}\nM204 S{min(20000,max(1000,outer_wall_acceleration))} ;Call exterior wall print acceleration\n\n\nG1 X{print_bed_max[0]*0.5} Y-1.2 F20000\nG1 Z0.3 F900\nM109 S[nozzle_temperature_initial_layer]\nM83\nG92 E0 ;Reset Extruder\nG1 F{min(6000, max(900, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X-1.2 E10.156 ;Draw the first line\nG1 Y98.8 E7.934\nG1 X-0.5 Y100 E0.1\nG1 Y-0.3 E7.934\nG1 X{print_bed_max[0]*0.5-50} E6.284\nG1 F{0.2*min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5-30} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5-10} E2\nG1 F{0.2*min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+10} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+30} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+50} E2\n;End PA test.\n\n\nG3 I-1 J0 Z0.6 F1200.0 ;Move to side a little\nG1 F20000\nG92 E0 ;Reset Extruder\nSET_PRINT_STATS_INFO TOTAL_LAYER=[total_layer_count] CURRENT_LAYER=0\n;LAYER_COUNT:[total_layer_count]\n;LAYER:0",
|
||||
"machine_end_gcode": ";===== date: 20250603 =====================\nM400 ; wait for buffer to clear\nM140 S0 ;Turn-off bed\nM106 S255 ;Cooling nozzle\nM83\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800\nG2 I1 J0 Z{max_layer_z+0.5} F3000 ; lower z a little\nG90\n{if max_layer_z > 100}G1 Z{min(max_layer_z+50, printable_height+0.5)} F20000{else}G1 Z100 F20000 {endif}; Move print head up \nM204 S5000\nM400\nM83\nG1 X202 F20000\nM400\nG1 Y250 F20000\nG1 Y264.5 F1200\nM400\nG92 E0\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\nM84 ;Disable all steppers"
|
||||
}
|
||||
|
||||
@@ -66,7 +66,7 @@
|
||||
"change_filament_gcode": "\n;==========CC_CHANGE_FILAMENT_GCODE_CCB==========\n;===== date: 2025-12-04-001 =====================\nM106 S0\nM106 P2 S0\nG1 Z{min(max_layer_z+3, printable_height+0.5)} F1200\nM6211 T[next_extruder] L[flush_length] M{old_filament_e_feedrate} N{new_filament_e_feedrate} Q[old_filament_temp] R[nozzle_temperature_range_high] S[new_filament_temp]\nT[next_extruder]\n;==========CC_CHANGE_FILAMENT_GCODE_CCE==========",
|
||||
"machine_pause_gcode": "M600",
|
||||
"support_multi_filament": "1",
|
||||
"layer_change_gcode": "SET_PRINT_STATS_INFO CURRENT_LAYER={layer_num + 1}",
|
||||
"machine_start_gcode": ";===== CC_START_GCODE ================\n;===== date: 2026-04-28-001 =====================\n;printer_model:[printer_model]\n;initial_filament:{filament_type[initial_extruder]}\n;curr_bed_type:{curr_bed_type}\n;bed_level_temp:[bed_temperature_initial_layer_single]\nM400 ; wait for buffer to clear\nM220 S100 ;Set the feed speed to 100%\nM221 S100 ;Set the flow rate to 100%\nM104 S140\nM140 S[bed_temperature_initial_layer_single]\nG90\nM83\nG28 ;home\nM729 ;Clean Nozzle\nM190 S[bed_temperature_initial_layer_single]\n\nM109 S[nozzle_temperature_initial_layer]\nM6211 A1 L200 T[initial_no_support_extruder] Q[nozzle_temperature_initial_layer] R[nozzle_temperature_initial_layer] S[nozzle_temperature_initial_layer]\nT[initial_no_support_extruder]\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\n\n;enable_pressure_advance:{enable_pressure_advance[initial_extruder]}\n;This value is called if pressure advance is enabled\n{if enable_pressure_advance[initial_extruder] == \"true\"}\nSET_PRESSURE_ADVANCE ADVANCE=[pressure_advance] ;\nM400\n{endif}\nM204 S{min(20000,max(1000,outer_wall_acceleration))} ;Call exterior wall print acceleration\n\n\nG1 X{print_bed_max[0]*0.5} Y-1.2 F20000\nG1 Z0.3 F900\n\n\nG90\nM83\nG92 E0 ;Reset Extruder\nG1 F{min(6000, max(900, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X0 E10.156 ;Draw the first line\nG1 Y98.8 E7.934\nG1 X0.9 Y100 E0.1\nG1 Y-0.3 E7.934\nG1 X{print_bed_max[0]*0.5-50} E6.284\nG1 F{0.2*min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5-30} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5-10} E2\nG1 F{0.2*min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+10} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+30} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+50} E2\n;End PA test.\n\n\nG3 I-1 J0 Z0.6 F1200.0 ;Move to side a little\nG1 F20000\nG92 E0 ;Reset Extruder\nSET_PRINT_STATS_INFO TOTAL_LAYER=[total_layer_count]\n;LAYER_COUNT:[total_layer_count]\n;LAYER:0",
|
||||
"layer_change_gcode": "SET_PRINT_STATS_INFO TOTAL_LAYER=[total_layer_count] CURRENT_LAYER={layer_num+1}",
|
||||
"machine_start_gcode": ";===== CC_START_GCODE ================\n;===== date: 2026-04-28-001 =====================\n;printer_model:[printer_model]\n;initial_filament:{filament_type[initial_extruder]}\n;curr_bed_type:{curr_bed_type}\n;bed_level_temp:[bed_temperature_initial_layer_single]\nM400 ; wait for buffer to clear\nM220 S100 ;Set the feed speed to 100%\nM221 S100 ;Set the flow rate to 100%\nM104 S140\nM140 S[bed_temperature_initial_layer_single]\nG90\nM83\nG28 ;home\nM729 ;Clean Nozzle\nM190 S[bed_temperature_initial_layer_single]\n\nM109 S[nozzle_temperature_initial_layer]\nM6211 A1 L200 T[initial_no_support_extruder] Q[nozzle_temperature_initial_layer] R[nozzle_temperature_initial_layer] S[nozzle_temperature_initial_layer]\nT[initial_no_support_extruder]\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\n\n;enable_pressure_advance:{enable_pressure_advance[initial_extruder]}\n;This value is called if pressure advance is enabled\n{if enable_pressure_advance[initial_extruder] == \"true\"}\nSET_PRESSURE_ADVANCE ADVANCE=[pressure_advance] ;\nM400\n{endif}\nM204 S{min(20000,max(1000,outer_wall_acceleration))} ;Call exterior wall print acceleration\n\n\nG1 X{print_bed_max[0]*0.5} Y-1.2 F20000\nG1 Z0.3 F900\n\n\nG90\nM83\nG92 E0 ;Reset Extruder\nG1 F{min(6000, max(900, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X0 E10.156 ;Draw the first line\nG1 Y98.8 E7.934\nG1 X0.9 Y100 E0.1\nG1 Y-0.3 E7.934\nG1 X{print_bed_max[0]*0.5-50} E6.284\nG1 F{0.2*min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5-30} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5-10} E2\nG1 F{0.2*min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+10} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+30} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+50} E2\n;End PA test.\n\n\nG3 I-1 J0 Z0.6 F1200.0 ;Move to side a little\nG1 F20000\nG92 E0 ;Reset Extruder\nSET_PRINT_STATS_INFO TOTAL_LAYER=[total_layer_count] CURRENT_LAYER=0\n;LAYER_COUNT:[total_layer_count]\n;LAYER:0",
|
||||
"machine_end_gcode": ";===== CC_END_GCODE ================\n;===== date: 2025-12-04-001 =====================\nM400 ; wait for buffer to clear\nM140 S0 ;Turn-off bed\nM106 S255 ;Cooling nozzle\nM83\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800\nG2 I1 J0 Z{max_layer_z+0.5} F3000 ; lower z a little\nG90\n{if max_layer_z > 100}G1 Z{min(max_layer_z+50, printable_height+0.5)} F20000{else}G1 Z100 F20000 {endif}; Move print head up \nM204 S5000\nM749\nM204 S5000\nM400\nM83\nG1 X202 F20000\nM400\nG1 Y250 F20000\nG1 Y264.5 F1200\nM400\nG92 E0\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\nM84 ;Disable all steppers"
|
||||
}
|
||||
|
||||
@@ -86,9 +86,9 @@
|
||||
"9"
|
||||
],
|
||||
"change_filament_gcode": "\n;==========CC2_CHANGE_FILAMENT_GCODE==========\n;===== date: 2026-01-16-001 =====================\nM106 S0\nM106 P2 S0\nG1 Z{min(max_layer_z+3, printable_height+0.5)} F1200\nM6211 T[next_extruder] L[flush_length] M{old_filament_e_feedrate} N{new_filament_e_feedrate} Q[old_filament_temp] R[nozzle_temperature_range_high] S[new_filament_temp]\nT[next_extruder]\n",
|
||||
"layer_change_gcode": "M73 L{layer_num+1}\n;LAYER:{layer_num+1}\nSET_PRINT_STATS_INFO CURRENT_LAYER={layer_num + 1}",
|
||||
"layer_change_gcode": "M73 L{layer_num+1}\n;LAYER:{layer_num+1}\nSET_PRINT_STATS_INFO TOTAL_LAYER=[total_layer_count] CURRENT_LAYER={layer_num+1}",
|
||||
"machine_end_gcode": ";===== CC2_END_GCODE ================\n;===== date: 2026-01-16-001 =====================\n\n\nM140 S0 ;Turn-off bed\nM83\nG92 E0 ; zero the extruder\nG1 E-1.5 F1800\nG2 I0 J1 Z{max_layer_z+0.5} F3000 ; lower z a little\nM106 S0\nM106 P2 S0\nG90\n{if max_layer_z > 75}G1 Z{min(max_layer_z+5, printable_height+0.5)} F20000{else}G1 Z80 F20000 {endif}; Move print head up \nG180 S9\nM104 S0\nM84\n",
|
||||
"machine_start_gcode": ";===== CC2_START_GCODE ================\n;===== date: 2026-01-16-001 =====================\n\nG90\nM104 S140\nM140 S[bed_temperature_initial_layer_single]\nM190 S[bed_temperature_initial_layer_single] A\nM106 S0\nBED_MESH_CALIBRATE mesh_min={adaptive_bed_mesh_min[0]},{adaptive_bed_mesh_min[1]} mesh_max={adaptive_bed_mesh_max[0]},{adaptive_bed_mesh_max[1]} ALGORITHM=[bed_mesh_algo] PROBE_COUNT={bed_mesh_probe_count[0]},{bed_mesh_probe_count[1]} ADAPTIVE=0 ADAPTIVE_MARGIN=0 FROM_SLICER=1\nM204 S{min(20000,max(1000,outer_wall_acceleration))} ;Call exterior wall print acceleration\nG28\nM109 S[nozzle_temperature_initial_layer]\nM6211 A1 L200 T[initial_no_support_extruder] Q[nozzle_temperature_initial_layer] R[nozzle_temperature_initial_layer] S[nozzle_temperature_initial_layer]\nT[initial_no_support_extruder]\n\n{if first_layer_print_min[1] > 0.5}\nG180 S7\nG1 X{print_bed_max[0]*0.5-1} Y-1.2 F20000\nG1 Z0.5 F900\nM109 S[nozzle_temperature_initial_layer]\nM83\nG92 E0 ;Reset Extruder\nG1 E6 F{min(1200, max(120, filament_max_volumetric_speed[initial_no_support_extruder]*60/2/2.5043))} \nM106 S200\nG1 X{print_bed_max[0]*0.5-41} E20 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]*60/2/2.5043))} \nG1 F6000\nG1 X{print_bed_max[0]*0.5-46} E0.8\n{else}\nG1 E30 F{min(1200, max(120, filament_max_volumetric_speed[initial_no_support_extruder]*60/2/2.5043))}\n{endif}\nM106 S0\nG180 S8\nG1 F20000\nG92 E0 ;Reset Extruder\nSET_PRINT_STATS_INFO TOTAL_LAYER=[total_layer_count]\n;LAYER_COUNT:[total_layer_count]\n;LAYER:0",
|
||||
"machine_start_gcode": ";===== CC2_START_GCODE ================\n;===== date: 2026-01-16-001 =====================\n\nG90\nM104 S140\nM140 S[bed_temperature_initial_layer_single]\nM190 S[bed_temperature_initial_layer_single] A\nM106 S0\nBED_MESH_CALIBRATE mesh_min={adaptive_bed_mesh_min[0]},{adaptive_bed_mesh_min[1]} mesh_max={adaptive_bed_mesh_max[0]},{adaptive_bed_mesh_max[1]} ALGORITHM=[bed_mesh_algo] PROBE_COUNT={bed_mesh_probe_count[0]},{bed_mesh_probe_count[1]} ADAPTIVE=0 ADAPTIVE_MARGIN=0 FROM_SLICER=1\nM204 S{min(20000,max(1000,outer_wall_acceleration))} ;Call exterior wall print acceleration\nG28\nM109 S[nozzle_temperature_initial_layer]\nM6211 A1 L200 T[initial_no_support_extruder] Q[nozzle_temperature_initial_layer] R[nozzle_temperature_initial_layer] S[nozzle_temperature_initial_layer]\nT[initial_no_support_extruder]\n\n{if first_layer_print_min[1] > 0.5}\nG180 S7\nG1 X{print_bed_max[0]*0.5-1} Y-1.2 F20000\nG1 Z0.5 F900\nM109 S[nozzle_temperature_initial_layer]\nM83\nG92 E0 ;Reset Extruder\nG1 E6 F{min(1200, max(120, filament_max_volumetric_speed[initial_no_support_extruder]*60/2/2.5043))} \nM106 S200\nG1 X{print_bed_max[0]*0.5-41} E20 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]*60/2/2.5043))} \nG1 F6000\nG1 X{print_bed_max[0]*0.5-46} E0.8\n{else}\nG1 E30 F{min(1200, max(120, filament_max_volumetric_speed[initial_no_support_extruder]*60/2/2.5043))}\n{endif}\nM106 S0\nG180 S8\nG1 F20000\nG92 E0 ;Reset Extruder\nSET_PRINT_STATS_INFO TOTAL_LAYER=[total_layer_count] CURRENT_LAYER=0\n;LAYER_COUNT:[total_layer_count]\n;LAYER:0",
|
||||
"retract_restart_extra_toolchange": [
|
||||
"0.5"
|
||||
]
|
||||
|
||||
@@ -2,5 +2,6 @@
|
||||
"inherits": "0.20mm Standard @Elegoo Giga 0.4 nozzle",
|
||||
"layer_height": "0.16",
|
||||
"instantiation": "true",
|
||||
"renamed_from": "0.16mm Optimal @EOS Giga 0.4 nozzle",
|
||||
"name": "0.16mm Optimal @Elegoo Giga 0.4 nozzle"
|
||||
}
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
"inherits": "0.30mm Standard @Elegoo Giga 0.6 nozzle",
|
||||
"layer_height": "0.18",
|
||||
"instantiation": "true",
|
||||
"renamed_from": "0.18mm Fine @EOS Giga 0.6 nozzle",
|
||||
"name": "0.18mm Fine @Elegoo Giga 0.6 nozzle",
|
||||
"compatible_printers": [
|
||||
"Elegoo OrangeStorm Giga 0.6 nozzle"
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user