mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-23 13:15:13 +00:00
Merge branch 'main' into release/v2.3
This commit is contained in:
43
.github/workflows/build_all.yml
vendored
43
.github/workflows/build_all.yml
vendored
@@ -58,23 +58,41 @@ jobs:
|
|||||||
os: ubuntu-24.04
|
os: ubuntu-24.04
|
||||||
build-deps-only: ${{ inputs.build-deps-only || false }}
|
build-deps-only: ${{ inputs.build-deps-only || false }}
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
build_all:
|
build_windows:
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
include:
|
|
||||||
- os: windows-latest
|
|
||||||
- os: ${{ vars.SELF_HOSTED && 'orca-macos-arm64' || 'macos-14' }}
|
|
||||||
arch: arm64
|
|
||||||
# Don't run scheduled builds on forks:
|
# Don't run scheduled builds on forks:
|
||||||
if: ${{ !cancelled() && (github.event_name != 'schedule' || github.repository == 'OrcaSlicer/OrcaSlicer') }}
|
if: ${{ !cancelled() && (github.event_name != 'schedule' || github.repository == 'OrcaSlicer/OrcaSlicer') }}
|
||||||
uses: ./.github/workflows/build_check_cache.yml
|
uses: ./.github/workflows/build_check_cache.yml
|
||||||
with:
|
with:
|
||||||
os: ${{ matrix.os }}
|
os: 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 }}
|
arch: ${{ matrix.arch }}
|
||||||
build-deps-only: ${{ inputs.build-deps-only || false }}
|
build-deps-only: ${{ inputs.build-deps-only || false }}
|
||||||
force-build: ${{ github.event_name == 'schedule' }}
|
force-build: ${{ github.event_name == 'schedule' }}
|
||||||
secrets: inherit
|
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:
|
unit_tests:
|
||||||
name: Unit Tests
|
name: Unit Tests
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
@@ -174,10 +192,15 @@ jobs:
|
|||||||
path: .flatpak-builder
|
path: .flatpak-builder
|
||||||
key: flatpak-builder-${{ matrix.variant.arch }}-${{ github.sha }}
|
key: flatpak-builder-${{ matrix.variant.arch }}-${{ github.sha }}
|
||||||
restore-keys: flatpak-builder-${{ matrix.variant.arch }}-
|
restore-keys: flatpak-builder-${{ matrix.variant.arch }}-
|
||||||
|
- name: Disable debug info for faster CI builds
|
||||||
|
run: |
|
||||||
|
sed -i '0,/^finish-args:/s//build-options:\n no-debuginfo: true\n strip: true\nfinish-args:/' \
|
||||||
|
scripts/flatpak/io.github.orcaslicer.OrcaSlicer.yml
|
||||||
|
shell: bash
|
||||||
- uses: flatpak/flatpak-github-actions/flatpak-builder@master
|
- uses: flatpak/flatpak-github-actions/flatpak-builder@master
|
||||||
with:
|
with:
|
||||||
bundle: OrcaSlicer-Linux-flatpak_${{ env.ver }}_${{ matrix.variant.arch }}.flatpak
|
bundle: OrcaSlicer-Linux-flatpak_${{ env.ver }}_${{ matrix.variant.arch }}.flatpak
|
||||||
manifest-path: scripts/flatpak/io.github.softfever.OrcaSlicer.yml
|
manifest-path: scripts/flatpak/io.github.orcaslicer.OrcaSlicer.yml
|
||||||
cache: false
|
cache: false
|
||||||
arch: ${{ matrix.variant.arch }}
|
arch: ${{ matrix.variant.arch }}
|
||||||
upload-artifact: false
|
upload-artifact: false
|
||||||
|
|||||||
6
.github/workflows/build_check_cache.yml
vendored
6
.github/workflows/build_check_cache.yml
vendored
@@ -33,9 +33,9 @@ jobs:
|
|||||||
- name: set outputs
|
- name: set outputs
|
||||||
id: set_outputs
|
id: set_outputs
|
||||||
env:
|
env:
|
||||||
# Normalize macOS runner names so self-hosted and GitHub-hosted produce the same cache key
|
# Keep macOS cache keys and paths architecture-specific.
|
||||||
cache-os: ${{ contains(inputs.os, 'macos') && 'macos-arm64' || inputs.os }}
|
cache-os: ${{ contains(inputs.os, 'macos') && format('macos-{0}', inputs.arch) || inputs.os }}
|
||||||
dep-folder-name: ${{ !contains(inputs.os, 'macos') && '/OrcaSlicer_dep' || '' }}
|
dep-folder-name: ${{ contains(inputs.os, 'macos') && format('/{0}', inputs.arch) || '/OrcaSlicer_dep' }}
|
||||||
output-cmd: ${{ inputs.os == 'windows-latest' && '$env:GITHUB_OUTPUT' || '"$GITHUB_OUTPUT"'}}
|
output-cmd: ${{ inputs.os == 'windows-latest' && '$env:GITHUB_OUTPUT' || '"$GITHUB_OUTPUT"'}}
|
||||||
run: |
|
run: |
|
||||||
echo cache-key=${{ env.cache-os }}-cache-orcaslicer_deps-build-${{ hashFiles('deps/**') }} >> ${{ env.output-cmd }}
|
echo cache-key=${{ env.cache-os }}-cache-orcaslicer_deps-build-${{ hashFiles('deps/**') }} >> ${{ env.output-cmd }}
|
||||||
|
|||||||
6
.github/workflows/build_deps.yml
vendored
6
.github/workflows/build_deps.yml
vendored
@@ -80,11 +80,9 @@ jobs:
|
|||||||
if [ -z "${{ vars.SELF_HOSTED }}" ]; then
|
if [ -z "${{ vars.SELF_HOSTED }}" ]; then
|
||||||
brew install automake texinfo libtool
|
brew install automake texinfo libtool
|
||||||
fi
|
fi
|
||||||
./build_release_macos.sh -dx ${{ !vars.SELF_HOSTED && '-1' || '' }} -a universal -t 10.15
|
./build_release_macos.sh -dx ${{ !vars.SELF_HOSTED && '-1' || '' }} -a ${{ inputs.arch }} -t 10.15
|
||||||
for arch in arm64 x86_64; do
|
(cd "${{ github.workspace }}/deps/build/${{ inputs.arch }}" && \
|
||||||
(cd "${{ github.workspace }}/deps/build/${arch}" && \
|
|
||||||
find . -mindepth 1 -maxdepth 1 ! -name 'OrcaSlicer_dep' -exec rm -rf {} +)
|
find . -mindepth 1 -maxdepth 1 ! -name 'OrcaSlicer_dep' -exec rm -rf {} +)
|
||||||
done
|
|
||||||
|
|
||||||
|
|
||||||
- name: Apt-Install Dependencies
|
- name: Apt-Install Dependencies
|
||||||
|
|||||||
82
.github/workflows/build_orca.yml
vendored
82
.github/workflows/build_orca.yml
vendored
@@ -2,10 +2,10 @@ on:
|
|||||||
workflow_call:
|
workflow_call:
|
||||||
inputs:
|
inputs:
|
||||||
cache-key:
|
cache-key:
|
||||||
required: true
|
required: false
|
||||||
type: string
|
type: string
|
||||||
cache-path:
|
cache-path:
|
||||||
required: true
|
required: false
|
||||||
type: string
|
type: string
|
||||||
os:
|
os:
|
||||||
required: true
|
required: true
|
||||||
@@ -13,6 +13,10 @@ on:
|
|||||||
arch:
|
arch:
|
||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
|
macos-combine-only:
|
||||||
|
required: false
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build_orca:
|
build_orca:
|
||||||
@@ -31,6 +35,7 @@ jobs:
|
|||||||
lfs: 'true'
|
lfs: 'true'
|
||||||
|
|
||||||
- name: load cached deps
|
- name: load cached deps
|
||||||
|
if: ${{ !(contains(inputs.os, 'macos') && inputs.macos-combine-only) }}
|
||||||
uses: actions/cache@v5
|
uses: actions/cache@v5
|
||||||
with:
|
with:
|
||||||
path: ${{ inputs.cache-path }}
|
path: ${{ inputs.cache-path }}
|
||||||
@@ -86,16 +91,16 @@ jobs:
|
|||||||
|
|
||||||
# Mac
|
# Mac
|
||||||
- name: Install tools mac
|
- name: Install tools mac
|
||||||
if: contains(inputs.os, 'macos')
|
if: contains(inputs.os, 'macos') && !inputs.macos-combine-only
|
||||||
run: |
|
run: |
|
||||||
if [ -z "${{ vars.SELF_HOSTED }}" ]; then
|
if [ -z "${{ vars.SELF_HOSTED }}" ]; then
|
||||||
brew install libtool
|
brew install libtool
|
||||||
brew list
|
brew list
|
||||||
fi
|
fi
|
||||||
mkdir -p ${{ github.workspace }}/deps/build
|
mkdir -p ${{ github.workspace }}/deps/build/${{ inputs.arch }}
|
||||||
|
|
||||||
- name: Free disk space
|
- name: Free disk space
|
||||||
if: contains(inputs.os, 'macos') && !vars.SELF_HOSTED
|
if: contains(inputs.os, 'macos') && !inputs.macos-combine-only && !vars.SELF_HOSTED
|
||||||
run: |
|
run: |
|
||||||
df -hI /dev/disk3s1s1
|
df -hI /dev/disk3s1s1
|
||||||
sudo find /Applications -maxdepth 1 -type d -name "Xcode_*.app" ! -name "Xcode_15.4.app" -exec rm -rf {} +
|
sudo find /Applications -maxdepth 1 -type d -name "Xcode_*.app" ! -name "Xcode_15.4.app" -exec rm -rf {} +
|
||||||
@@ -103,14 +108,65 @@ jobs:
|
|||||||
df -hI /dev/disk3s1s1
|
df -hI /dev/disk3s1s1
|
||||||
|
|
||||||
- name: Build slicer mac
|
- name: Build slicer mac
|
||||||
if: contains(inputs.os, 'macos')
|
if: contains(inputs.os, 'macos') && !inputs.macos-combine-only
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: ${{ github.workspace }}
|
||||||
run: |
|
run: |
|
||||||
./build_release_macos.sh -s -n -x ${{ !vars.SELF_HOSTED && '-1' || '' }} -a universal -t 10.15
|
./build_release_macos.sh -s -n -x ${{ !vars.SELF_HOSTED && '-1' || '' }} -a ${{ inputs.arch }} -t 10.15
|
||||||
|
|
||||||
|
- name: Pack macOS app bundle ${{ inputs.arch }}
|
||||||
|
if: contains(inputs.os, 'macos') && !inputs.macos-combine-only
|
||||||
|
working-directory: ${{ github.workspace }}
|
||||||
|
run: |
|
||||||
|
tar -czvf OrcaSlicer_Mac_bundle_${{ inputs.arch }}_${{ github.sha }}.tar.gz -C build/${{ inputs.arch }} OrcaSlicer
|
||||||
|
|
||||||
|
- name: Upload macOS app bundle ${{ inputs.arch }}
|
||||||
|
if: contains(inputs.os, 'macos') && !inputs.macos-combine-only
|
||||||
|
uses: actions/upload-artifact@v6
|
||||||
|
with:
|
||||||
|
name: OrcaSlicer_Mac_bundle_${{ inputs.arch }}_${{ github.sha }}
|
||||||
|
path: ${{ github.workspace }}/OrcaSlicer_Mac_bundle_${{ inputs.arch }}_${{ github.sha }}.tar.gz
|
||||||
|
|
||||||
|
- name: Download macOS arm64 app bundle
|
||||||
|
if: contains(inputs.os, 'macos') && inputs.macos-combine-only
|
||||||
|
uses: actions/download-artifact@v7
|
||||||
|
with:
|
||||||
|
name: OrcaSlicer_Mac_bundle_arm64_${{ github.sha }}
|
||||||
|
path: ${{ github.workspace }}/mac_bundles/arm64
|
||||||
|
|
||||||
|
- name: Download macOS x86_64 app bundle
|
||||||
|
if: contains(inputs.os, 'macos') && inputs.macos-combine-only
|
||||||
|
uses: actions/download-artifact@v7
|
||||||
|
with:
|
||||||
|
name: OrcaSlicer_Mac_bundle_x86_64_${{ github.sha }}
|
||||||
|
path: ${{ github.workspace }}/mac_bundles/x86_64
|
||||||
|
|
||||||
|
- name: Extract macOS app bundles
|
||||||
|
if: contains(inputs.os, 'macos') && inputs.macos-combine-only
|
||||||
|
working-directory: ${{ github.workspace }}
|
||||||
|
run: |
|
||||||
|
mkdir -p build/arm64 build/x86_64
|
||||||
|
arm_bundle=$(find "${{ github.workspace }}/mac_bundles/arm64" -name '*.tar.gz' -print -quit)
|
||||||
|
x86_bundle=$(find "${{ github.workspace }}/mac_bundles/x86_64" -name '*.tar.gz' -print -quit)
|
||||||
|
tar -xzvf "$arm_bundle" -C "${{ github.workspace }}/build/arm64"
|
||||||
|
tar -xzvf "$x86_bundle" -C "${{ github.workspace }}/build/x86_64"
|
||||||
|
|
||||||
|
- name: Build universal mac app bundle
|
||||||
|
if: contains(inputs.os, 'macos') && inputs.macos-combine-only
|
||||||
|
working-directory: ${{ github.workspace }}
|
||||||
|
run: |
|
||||||
|
./build_release_macos.sh -u -x ${{ !vars.SELF_HOSTED && '-1' || '' }} -a universal -t 10.15
|
||||||
|
|
||||||
|
- name: Delete intermediate per-arch artifacts
|
||||||
|
if: contains(inputs.os, 'macos') && inputs.macos-combine-only
|
||||||
|
uses: geekyeggo/delete-artifact@v5
|
||||||
|
with:
|
||||||
|
name: |
|
||||||
|
OrcaSlicer_Mac_bundle_arm64_${{ github.sha }}
|
||||||
|
OrcaSlicer_Mac_bundle_x86_64_${{ github.sha }}
|
||||||
|
|
||||||
# Thanks to RaySajuuk, it's working now
|
# Thanks to RaySajuuk, it's working now
|
||||||
- name: Sign app and notary
|
- name: Sign app and notary
|
||||||
if: github.repository == 'OrcaSlicer/OrcaSlicer' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/')) && contains(inputs.os, 'macos')
|
if: github.repository == 'OrcaSlicer/OrcaSlicer' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/')) && contains(inputs.os, 'macos') && inputs.macos-combine-only
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: ${{ github.workspace }}
|
||||||
env:
|
env:
|
||||||
BUILD_CERTIFICATE_BASE64: ${{ secrets.BUILD_CERTIFICATE_BASE64 }}
|
BUILD_CERTIFICATE_BASE64: ${{ secrets.BUILD_CERTIFICATE_BASE64 }}
|
||||||
@@ -164,7 +220,7 @@ jobs:
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Create DMG without notary
|
- name: Create DMG without notary
|
||||||
if: github.ref != 'refs/heads/main' && contains(inputs.os, 'macos')
|
if: github.ref != 'refs/heads/main' && contains(inputs.os, 'macos') && inputs.macos-combine-only
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: ${{ github.workspace }}
|
||||||
run: |
|
run: |
|
||||||
mkdir -p ${{ github.workspace }}/build/universal/OrcaSlicer_dmg
|
mkdir -p ${{ github.workspace }}/build/universal/OrcaSlicer_dmg
|
||||||
@@ -183,14 +239,14 @@ jobs:
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Upload artifacts mac
|
- name: Upload artifacts mac
|
||||||
if: contains(inputs.os, 'macos')
|
if: contains(inputs.os, 'macos') && inputs.macos-combine-only
|
||||||
uses: actions/upload-artifact@v6
|
uses: actions/upload-artifact@v6
|
||||||
with:
|
with:
|
||||||
name: OrcaSlicer_Mac_universal_${{ env.ver }}
|
name: OrcaSlicer_Mac_universal_${{ env.ver }}
|
||||||
path: ${{ github.workspace }}/OrcaSlicer_Mac_universal_${{ env.ver }}.dmg
|
path: ${{ github.workspace }}/OrcaSlicer_Mac_universal_${{ env.ver }}.dmg
|
||||||
|
|
||||||
- name: Upload OrcaSlicer_profile_validator DMG mac
|
- name: Upload OrcaSlicer_profile_validator DMG mac
|
||||||
if: contains(inputs.os, 'macos')
|
if: contains(inputs.os, 'macos') && inputs.macos-combine-only
|
||||||
uses: actions/upload-artifact@v6
|
uses: actions/upload-artifact@v6
|
||||||
with:
|
with:
|
||||||
name: OrcaSlicer_profile_validator_Mac_universal_DMG_${{ env.ver }}
|
name: OrcaSlicer_profile_validator_Mac_universal_DMG_${{ env.ver }}
|
||||||
@@ -198,7 +254,7 @@ jobs:
|
|||||||
if-no-files-found: ignore
|
if-no-files-found: ignore
|
||||||
|
|
||||||
- name: Deploy Mac release
|
- name: Deploy Mac release
|
||||||
if: github.repository == 'OrcaSlicer/OrcaSlicer' && github.ref == 'refs/heads/main' && contains(inputs.os, 'macos')
|
if: github.repository == 'OrcaSlicer/OrcaSlicer' && github.ref == 'refs/heads/main' && contains(inputs.os, 'macos') && inputs.macos-combine-only
|
||||||
uses: WebFreak001/deploy-nightly@v3.2.0
|
uses: WebFreak001/deploy-nightly@v3.2.0
|
||||||
with:
|
with:
|
||||||
upload_url: https://uploads.github.com/repos/OrcaSlicer/OrcaSlicer/releases/137995723/assets{?name,label}
|
upload_url: https://uploads.github.com/repos/OrcaSlicer/OrcaSlicer/releases/137995723/assets{?name,label}
|
||||||
@@ -209,7 +265,7 @@ jobs:
|
|||||||
max_releases: 1 # optional, if there are more releases than this matching the asset_name, the oldest ones are going to be deleted
|
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 Mac OrcaSlicer_profile_validator DMG release
|
- name: Deploy Mac OrcaSlicer_profile_validator DMG release
|
||||||
if: github.repository == 'OrcaSlicer/OrcaSlicer' && github.ref == 'refs/heads/main' && contains(inputs.os, 'macos')
|
if: github.repository == 'OrcaSlicer/OrcaSlicer' && github.ref == 'refs/heads/main' && contains(inputs.os, 'macos') && inputs.macos-combine-only
|
||||||
uses: WebFreak001/deploy-nightly@v3.2.0
|
uses: WebFreak001/deploy-nightly@v3.2.0
|
||||||
with:
|
with:
|
||||||
upload_url: https://uploads.github.com/repos/OrcaSlicer/OrcaSlicer/releases/137995723/assets{?name,label}
|
upload_url: https://uploads.github.com/repos/OrcaSlicer/OrcaSlicer/releases/137995723/assets{?name,label}
|
||||||
|
|||||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -36,6 +36,7 @@ src/OrcaSlicer-doc/
|
|||||||
/deps/DL_CACHE/
|
/deps/DL_CACHE/
|
||||||
/deps/DL_CACHE
|
/deps/DL_CACHE
|
||||||
**/.flatpak-builder/
|
**/.flatpak-builder/
|
||||||
|
*.no-debug.yml
|
||||||
resources/profiles/user/default
|
resources/profiles/user/default
|
||||||
*.code-workspace
|
*.code-workspace
|
||||||
deps_src/build/
|
deps_src/build/
|
||||||
|
|||||||
@@ -436,8 +436,12 @@ if (NOT MSVC AND ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_CXX_COMP
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
if((${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang" OR ${CMAKE_CXX_COMPILER_ID} STREQUAL "AppleClang") AND ${CMAKE_CXX_COMPILER_VERSION} VERSION_GREATER 15)
|
if((${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang" OR ${CMAKE_CXX_COMPILER_ID} STREQUAL "AppleClang") AND ${CMAKE_CXX_COMPILER_VERSION} VERSION_GREATER 15)
|
||||||
|
include(CheckCXXCompilerFlag)
|
||||||
|
check_cxx_compiler_flag(-Wno-error=enum-constexpr-conversion HAS_WNO_ERROR_ENUM_CONSTEXPR_CONV)
|
||||||
|
if(HAS_WNO_ERROR_ENUM_CONSTEXPR_CONV)
|
||||||
add_compile_options(-Wno-error=enum-constexpr-conversion)
|
add_compile_options(-Wno-error=enum-constexpr-conversion)
|
||||||
endif()
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
#GCC generates loads of -Wunknown-pragmas when compiling igl. The fix is not easy due to a bug in gcc, see
|
#GCC generates loads of -Wunknown-pragmas when compiling igl. The fix is not easy due to a bug in gcc, see
|
||||||
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66943 or
|
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66943 or
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
<img alt="OrcaSlicer logo" src="resources/images/OrcaSlicer.png" width="15%" height="15%">
|
<img alt="OrcaSlicer logo" src="resources/images/OrcaSlicer.png" width="15%" height="15%">
|
||||||
</picture>
|
</picture>
|
||||||
|
|
||||||
<a href="https://trendshift.io/repositories/952" target="_blank"><img src="https://trendshift.io/api/badge/repositories/952" alt="SoftFever%2FOrcaSlicer | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
|
<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>
|
||||||
|
|
||||||
[](https://github.com/OrcaSlicer/OrcaSlicer/stargazers) [](https://github.com/OrcaSlicer/OrcaSlicer/actions/workflows/build_all.yml)
|
[](https://github.com/OrcaSlicer/OrcaSlicer/stargazers) [](https://github.com/OrcaSlicer/OrcaSlicer/actions/workflows/build_all.yml)
|
||||||
|
|
||||||
|
|||||||
@@ -21,6 +21,8 @@ INSTALL_RUNTIME=false
|
|||||||
JOBS=$(nproc)
|
JOBS=$(nproc)
|
||||||
FORCE_CLEAN=false
|
FORCE_CLEAN=false
|
||||||
ENABLE_CCACHE=false
|
ENABLE_CCACHE=false
|
||||||
|
DISABLE_ROFILES_FUSE=false
|
||||||
|
NO_DEBUGINFO=true
|
||||||
CACHE_DIR=".flatpak-builder"
|
CACHE_DIR=".flatpak-builder"
|
||||||
|
|
||||||
# Help function
|
# Help function
|
||||||
@@ -36,6 +38,8 @@ show_help() {
|
|||||||
echo " -c, --cleanup Clean build directory before building"
|
echo " -c, --cleanup Clean build directory before building"
|
||||||
echo " -f, --force-clean Force clean build (disables caching)"
|
echo " -f, --force-clean Force clean build (disables caching)"
|
||||||
echo " --ccache Enable ccache for faster rebuilds (requires ccache in SDK)"
|
echo " --ccache Enable ccache for faster rebuilds (requires ccache in SDK)"
|
||||||
|
echo " --disable-rofiles-fuse Disable rofiles-fuse (workaround for FUSE issues)"
|
||||||
|
echo " --with-debuginfo Include debug info (slower builds, needed for Flathub)"
|
||||||
echo " --cache-dir DIR Flatpak builder cache directory [default: $CACHE_DIR]"
|
echo " --cache-dir DIR Flatpak builder cache directory [default: $CACHE_DIR]"
|
||||||
echo " -i, --install-runtime Install required Flatpak runtime and SDK"
|
echo " -i, --install-runtime Install required Flatpak runtime and SDK"
|
||||||
echo " -h, --help Show this help message"
|
echo " -h, --help Show this help message"
|
||||||
@@ -75,6 +79,14 @@ while [[ $# -gt 0 ]]; do
|
|||||||
ENABLE_CCACHE=true
|
ENABLE_CCACHE=true
|
||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
|
--disable-rofiles-fuse)
|
||||||
|
DISABLE_ROFILES_FUSE=true
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
--with-debuginfo)
|
||||||
|
NO_DEBUGINFO=false
|
||||||
|
shift
|
||||||
|
;;
|
||||||
--cache-dir)
|
--cache-dir)
|
||||||
CACHE_DIR="$2"
|
CACHE_DIR="$2"
|
||||||
shift 2
|
shift 2
|
||||||
@@ -242,8 +254,8 @@ mkdir -p "$BUILD_DIR"
|
|||||||
rm -rf "$BUILD_DIR/build-dir"
|
rm -rf "$BUILD_DIR/build-dir"
|
||||||
|
|
||||||
# Check if flatpak manifest exists
|
# Check if flatpak manifest exists
|
||||||
if [[ ! -f "./scripts/flatpak/io.github.softfever.OrcaSlicer.yml" ]]; then
|
if [[ ! -f "./scripts/flatpak/io.github.orcaslicer.OrcaSlicer.yml" ]]; then
|
||||||
echo -e "${RED}Error: Flatpak manifest not found at scripts/flatpak/io.github.softfever.OrcaSlicer.yml${NC}"
|
echo -e "${RED}Error: Flatpak manifest not found at scripts/flatpak/io.github.orcaslicer.OrcaSlicer.yml${NC}"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@@ -279,6 +291,7 @@ BUILDER_ARGS=(
|
|||||||
--verbose
|
--verbose
|
||||||
--state-dir="$CACHE_DIR"
|
--state-dir="$CACHE_DIR"
|
||||||
--jobs="$JOBS"
|
--jobs="$JOBS"
|
||||||
|
--mirror-screenshots-url=https://dl.flathub.org/media/
|
||||||
)
|
)
|
||||||
|
|
||||||
# Add force-clean only if explicitly requested (disables caching)
|
# Add force-clean only if explicitly requested (disables caching)
|
||||||
@@ -295,21 +308,40 @@ if [[ "$ENABLE_CCACHE" == true ]]; then
|
|||||||
echo -e "${GREEN}Using ccache for compiler caching${NC}"
|
echo -e "${GREEN}Using ccache for compiler caching${NC}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Disable rofiles-fuse if requested (workaround for FUSE issues)
|
||||||
|
if [[ "$DISABLE_ROFILES_FUSE" == true ]]; then
|
||||||
|
BUILDER_ARGS+=(--disable-rofiles-fuse)
|
||||||
|
echo -e "${YELLOW}rofiles-fuse disabled${NC}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Use a temp manifest with no-debuginfo if requested
|
||||||
|
MANIFEST="scripts/flatpak/io.github.orcaslicer.OrcaSlicer.yml"
|
||||||
|
if [[ "$NO_DEBUGINFO" == true ]]; then
|
||||||
|
MANIFEST="scripts/flatpak/io.github.orcaslicer.OrcaSlicer.no-debug.yml"
|
||||||
|
sed '0,/^finish-args:/s//build-options:\n no-debuginfo: true\n strip: true\nfinish-args:/' \
|
||||||
|
scripts/flatpak/io.github.orcaslicer.OrcaSlicer.yml > "$MANIFEST"
|
||||||
|
echo -e "${YELLOW}Debug info disabled (using temp manifest)${NC}"
|
||||||
|
fi
|
||||||
|
|
||||||
if ! flatpak-builder \
|
if ! flatpak-builder \
|
||||||
"${BUILDER_ARGS[@]}" \
|
"${BUILDER_ARGS[@]}" \
|
||||||
"$BUILD_DIR/build-dir" \
|
"$BUILD_DIR/build-dir" \
|
||||||
scripts/flatpak/io.github.softfever.OrcaSlicer.yml; then
|
"$MANIFEST"; then
|
||||||
echo -e "${RED}Error: flatpak-builder failed${NC}"
|
echo -e "${RED}Error: flatpak-builder failed${NC}"
|
||||||
echo -e "${YELLOW}Check the build log above for details${NC}"
|
echo -e "${YELLOW}Check the build log above for details${NC}"
|
||||||
|
rm -f "scripts/flatpak/io.github.orcaslicer.OrcaSlicer.no-debug.yml"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Clean up temp manifest
|
||||||
|
rm -f "scripts/flatpak/io.github.orcaslicer.OrcaSlicer.no-debug.yml"
|
||||||
|
|
||||||
# Create bundle
|
# Create bundle
|
||||||
echo -e "${YELLOW}Creating Flatpak bundle...${NC}"
|
echo -e "${YELLOW}Creating Flatpak bundle...${NC}"
|
||||||
if ! flatpak build-bundle \
|
if ! flatpak build-bundle \
|
||||||
"$BUILD_DIR/repo" \
|
"$BUILD_DIR/repo" \
|
||||||
"$BUNDLE_NAME" \
|
"$BUNDLE_NAME" \
|
||||||
io.github.softfever.OrcaSlicer \
|
io.github.orcaslicer.OrcaSlicer \
|
||||||
--arch="$ARCH"; then
|
--arch="$ARCH"; then
|
||||||
echo -e "${RED}Error: Failed to create Flatpak bundle${NC}"
|
echo -e "${RED}Error: Failed to create Flatpak bundle${NC}"
|
||||||
exit 1
|
exit 1
|
||||||
@@ -328,10 +360,10 @@ echo -e "${BLUE}To install the Flatpak:${NC}"
|
|||||||
echo -e "flatpak install --user $BUNDLE_NAME"
|
echo -e "flatpak install --user $BUNDLE_NAME"
|
||||||
echo ""
|
echo ""
|
||||||
echo -e "${BLUE}To run OrcaSlicer:${NC}"
|
echo -e "${BLUE}To run OrcaSlicer:${NC}"
|
||||||
echo -e "flatpak run io.github.softfever.OrcaSlicer"
|
echo -e "flatpak run io.github.orcaslicer.OrcaSlicer"
|
||||||
echo ""
|
echo ""
|
||||||
echo -e "${BLUE}To uninstall:${NC}"
|
echo -e "${BLUE}To uninstall:${NC}"
|
||||||
echo -e "flatpak uninstall --user io.github.softfever.OrcaSlicer"
|
echo -e "flatpak uninstall --user io.github.orcaslicer.OrcaSlicer"
|
||||||
echo ""
|
echo ""
|
||||||
if [[ "$FORCE_CLEAN" != true ]]; then
|
if [[ "$FORCE_CLEAN" != true ]]; then
|
||||||
echo -e "${BLUE}Cache Management:${NC}"
|
echo -e "${BLUE}Cache Management:${NC}"
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
set -e
|
set -e
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
|
|
||||||
while getopts ":dpa:snt:xbc:1Th" opt; do
|
while getopts ":dpa:snt:xbc:1Tuh" opt; do
|
||||||
case "${opt}" in
|
case "${opt}" in
|
||||||
d )
|
d )
|
||||||
export BUILD_TARGET="deps"
|
export BUILD_TARGET="deps"
|
||||||
@@ -40,10 +40,14 @@ while getopts ":dpa:snt:xbc:1Th" opt; do
|
|||||||
T )
|
T )
|
||||||
export BUILD_TESTS="1"
|
export BUILD_TESTS="1"
|
||||||
;;
|
;;
|
||||||
|
u )
|
||||||
|
export BUILD_TARGET="universal"
|
||||||
|
;;
|
||||||
h ) echo "Usage: ./build_release_macos.sh [-d]"
|
h ) echo "Usage: ./build_release_macos.sh [-d]"
|
||||||
echo " -d: Build deps only"
|
echo " -d: Build deps only"
|
||||||
echo " -a: Set ARCHITECTURE (arm64 or x86_64 or universal)"
|
echo " -a: Set ARCHITECTURE (arm64 or x86_64 or universal)"
|
||||||
echo " -s: Build slicer only"
|
echo " -s: Build slicer only"
|
||||||
|
echo " -u: Build universal app only (requires existing arm64 and x86_64 app bundles)"
|
||||||
echo " -n: Nightly build"
|
echo " -n: Nightly build"
|
||||||
echo " -t: Specify minimum version of the target platform, default is 11.3"
|
echo " -t: Specify minimum version of the target platform, default is 11.3"
|
||||||
echo " -x: Use Ninja Multi-Config CMake generator, default is Xcode"
|
echo " -x: Use Ninja Multi-Config CMake generator, default is Xcode"
|
||||||
@@ -249,48 +253,54 @@ function build_slicer() {
|
|||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function lipo_dir() {
|
||||||
|
local universal_dir="$1"
|
||||||
|
local x86_64_dir="$2"
|
||||||
|
|
||||||
|
# Find all Mach-O files in the universal (arm64-based) copy and lipo them
|
||||||
|
while IFS= read -r -d '' f; do
|
||||||
|
local rel="${f#"$universal_dir"/}"
|
||||||
|
local x86="$x86_64_dir/$rel"
|
||||||
|
if [ -f "$x86" ]; then
|
||||||
|
echo " lipo: $rel"
|
||||||
|
lipo -create "$f" "$x86" -output "$f.tmp"
|
||||||
|
mv "$f.tmp" "$f"
|
||||||
|
else
|
||||||
|
echo " warning: no x86_64 counterpart for $rel, keeping arm64 only"
|
||||||
|
fi
|
||||||
|
done < <(find "$universal_dir" -type f -print0 | while IFS= read -r -d '' candidate; do
|
||||||
|
if file "$candidate" | grep -q "Mach-O"; then
|
||||||
|
printf '%s\0' "$candidate"
|
||||||
|
fi
|
||||||
|
done)
|
||||||
|
}
|
||||||
|
|
||||||
function build_universal() {
|
function build_universal() {
|
||||||
echo "Building universal binary..."
|
echo "Building universal binary..."
|
||||||
|
|
||||||
PROJECT_BUILD_DIR="$PROJECT_DIR/build/$ARCH"
|
PROJECT_BUILD_DIR="$PROJECT_DIR/build/$ARCH"
|
||||||
|
ARM64_APP="$PROJECT_DIR/build/arm64/OrcaSlicer/OrcaSlicer.app"
|
||||||
|
X86_64_APP="$PROJECT_DIR/build/x86_64/OrcaSlicer/OrcaSlicer.app"
|
||||||
|
|
||||||
# Create universal binary
|
|
||||||
echo "Creating universal binary..."
|
|
||||||
# PROJECT_BUILD_DIR="$PROJECT_DIR/build_Universal"
|
|
||||||
mkdir -p "$PROJECT_BUILD_DIR/OrcaSlicer"
|
mkdir -p "$PROJECT_BUILD_DIR/OrcaSlicer"
|
||||||
UNIVERSAL_APP="$PROJECT_BUILD_DIR/OrcaSlicer/OrcaSlicer.app"
|
UNIVERSAL_APP="$PROJECT_BUILD_DIR/OrcaSlicer/OrcaSlicer.app"
|
||||||
rm -rf "$UNIVERSAL_APP"
|
rm -rf "$UNIVERSAL_APP"
|
||||||
cp -R "$PROJECT_DIR/build/arm64/OrcaSlicer/OrcaSlicer.app" "$UNIVERSAL_APP"
|
cp -R "$ARM64_APP" "$UNIVERSAL_APP"
|
||||||
|
|
||||||
# Get the binary path inside the .app bundle
|
echo "Creating universal binaries for OrcaSlicer.app..."
|
||||||
BINARY_PATH="Contents/MacOS/OrcaSlicer"
|
lipo_dir "$UNIVERSAL_APP" "$X86_64_APP"
|
||||||
|
echo "Universal OrcaSlicer.app created at $UNIVERSAL_APP"
|
||||||
# Create universal binary using lipo
|
|
||||||
lipo -create \
|
|
||||||
"$PROJECT_DIR/build/x86_64/OrcaSlicer/OrcaSlicer.app/$BINARY_PATH" \
|
|
||||||
"$PROJECT_DIR/build/arm64/OrcaSlicer/OrcaSlicer.app/$BINARY_PATH" \
|
|
||||||
-output "$UNIVERSAL_APP/$BINARY_PATH"
|
|
||||||
|
|
||||||
echo "Universal binary created at $UNIVERSAL_APP"
|
|
||||||
|
|
||||||
# Create universal binary for profile validator if it exists
|
# Create universal binary for profile validator if it exists
|
||||||
if [ -f "$PROJECT_DIR/build/arm64/OrcaSlicer/OrcaSlicer_profile_validator.app/Contents/MacOS/OrcaSlicer_profile_validator" ] && \
|
ARM64_VALIDATOR="$PROJECT_DIR/build/arm64/OrcaSlicer/OrcaSlicer_profile_validator.app"
|
||||||
[ -f "$PROJECT_DIR/build/x86_64/OrcaSlicer/OrcaSlicer_profile_validator.app/Contents/MacOS/OrcaSlicer_profile_validator" ]; then
|
X86_64_VALIDATOR="$PROJECT_DIR/build/x86_64/OrcaSlicer/OrcaSlicer_profile_validator.app"
|
||||||
echo "Creating universal binary for OrcaSlicer_profile_validator..."
|
if [ -d "$ARM64_VALIDATOR" ] && [ -d "$X86_64_VALIDATOR" ]; then
|
||||||
|
echo "Creating universal binaries for OrcaSlicer_profile_validator.app..."
|
||||||
UNIVERSAL_VALIDATOR_APP="$PROJECT_BUILD_DIR/OrcaSlicer/OrcaSlicer_profile_validator.app"
|
UNIVERSAL_VALIDATOR_APP="$PROJECT_BUILD_DIR/OrcaSlicer/OrcaSlicer_profile_validator.app"
|
||||||
rm -rf "$UNIVERSAL_VALIDATOR_APP"
|
rm -rf "$UNIVERSAL_VALIDATOR_APP"
|
||||||
cp -R "$PROJECT_DIR/build/arm64/OrcaSlicer/OrcaSlicer_profile_validator.app" "$UNIVERSAL_VALIDATOR_APP"
|
cp -R "$ARM64_VALIDATOR" "$UNIVERSAL_VALIDATOR_APP"
|
||||||
|
lipo_dir "$UNIVERSAL_VALIDATOR_APP" "$X86_64_VALIDATOR"
|
||||||
# Get the binary path inside the profile validator .app bundle
|
echo "Universal OrcaSlicer_profile_validator.app created at $UNIVERSAL_VALIDATOR_APP"
|
||||||
VALIDATOR_BINARY_PATH="Contents/MacOS/OrcaSlicer_profile_validator"
|
|
||||||
|
|
||||||
# Create universal binary using lipo
|
|
||||||
lipo -create \
|
|
||||||
"$PROJECT_DIR/build/x86_64/OrcaSlicer/OrcaSlicer_profile_validator.app/$VALIDATOR_BINARY_PATH" \
|
|
||||||
"$PROJECT_DIR/build/arm64/OrcaSlicer/OrcaSlicer_profile_validator.app/$VALIDATOR_BINARY_PATH" \
|
|
||||||
-output "$UNIVERSAL_VALIDATOR_APP/$VALIDATOR_BINARY_PATH"
|
|
||||||
|
|
||||||
echo "Universal binary for OrcaSlicer_profile_validator created at $UNIVERSAL_VALIDATOR_APP"
|
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -305,13 +315,16 @@ case "${BUILD_TARGET}" in
|
|||||||
slicer)
|
slicer)
|
||||||
build_slicer
|
build_slicer
|
||||||
;;
|
;;
|
||||||
|
universal)
|
||||||
|
build_universal
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
echo "Unknown target: $BUILD_TARGET. Available targets: deps, slicer, all."
|
echo "Unknown target: $BUILD_TARGET. Available targets: deps, slicer, universal, all."
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
if [ "$ARCH" = "universal" ] && [ "$BUILD_TARGET" != "deps" ]; then
|
if [ "$ARCH" = "universal" ] && { [ "$BUILD_TARGET" = "all" ] || [ "$BUILD_TARGET" = "slicer" ]; }; then
|
||||||
build_universal
|
build_universal
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|||||||
4
deps/wxWidgets/wxWidgets.cmake
vendored
4
deps/wxWidgets/wxWidgets.cmake
vendored
@@ -1,8 +1,6 @@
|
|||||||
set(_wx_toolkit "")
|
set(_wx_toolkit "")
|
||||||
set(_wx_debug_postfix "")
|
set(_wx_debug_postfix "")
|
||||||
set(_wx_shared -DwxBUILD_SHARED=OFF)
|
set(_wx_shared -DwxBUILD_SHARED=OFF)
|
||||||
set(_wx_flatpak_patch "")
|
|
||||||
|
|
||||||
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
||||||
set(_gtk_ver 2)
|
set(_gtk_ver 2)
|
||||||
|
|
||||||
@@ -14,7 +12,6 @@ if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
|||||||
if (FLATPAK)
|
if (FLATPAK)
|
||||||
set(_wx_debug_postfix "d")
|
set(_wx_debug_postfix "d")
|
||||||
set(_wx_shared -DwxBUILD_SHARED=ON -DBUILD_SHARED_LIBS:BOOL=ON)
|
set(_wx_shared -DwxBUILD_SHARED=ON -DBUILD_SHARED_LIBS:BOOL=ON)
|
||||||
set(_wx_flatpak_patch PATCH_COMMAND ${PATCH_CMD} ${CMAKE_CURRENT_LIST_DIR}/0001-flatpak.patch)
|
|
||||||
endif ()
|
endif ()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
@@ -37,7 +34,6 @@ orcaslicer_add_cmake_project(
|
|||||||
GIT_REPOSITORY "https://github.com/SoftFever/Orca-deps-wxWidgets"
|
GIT_REPOSITORY "https://github.com/SoftFever/Orca-deps-wxWidgets"
|
||||||
GIT_SHALLOW ON
|
GIT_SHALLOW ON
|
||||||
DEPENDS ${PNG_PKG} ${ZLIB_PKG} ${EXPAT_PKG} ${JPEG_PKG}
|
DEPENDS ${PNG_PKG} ${ZLIB_PKG} ${EXPAT_PKG} ${JPEG_PKG}
|
||||||
${_wx_flatpak_patch}
|
|
||||||
CMAKE_ARGS
|
CMAKE_ARGS
|
||||||
${_wx_opengl_override}
|
${_wx_opengl_override}
|
||||||
-DwxBUILD_PRECOMP=ON
|
-DwxBUILD_PRECOMP=ON
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@@ -18,26 +18,6 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. "
|
|
||||||
"Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament model is unknown. Still using the previous filament preset."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. A "
|
|
||||||
"random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. A random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "right"
|
msgid "right"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1537,6 +1517,30 @@ msgstr ""
|
|||||||
msgid "Flip by Face 2"
|
msgid "Flip by Face 2"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Assemble"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "(Moving)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Point and point assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"It is recommended to assemble the objects first,\n"
|
||||||
|
"because the objects is restriced to bed \n"
|
||||||
|
"and only parts can be lifted."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Face and face assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Notice"
|
msgid "Notice"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1573,6 +1577,54 @@ msgstr ""
|
|||||||
msgid "Based on PrusaSlicer and BambuStudio"
|
msgid "Based on PrusaSlicer and BambuStudio"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "STEP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "STL files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "OBJ files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "AMF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Gcode 3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "G-code files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Supported files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "ZIP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Project files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Known files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "INI files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "SVG files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Texture"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Masked SLA files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Draco files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
||||||
"It will be appreciated if you report the issue to our team."
|
"It will be appreciated if you report the issue to our team."
|
||||||
@@ -1596,10 +1648,10 @@ msgstr ""
|
|||||||
msgid "Untitled"
|
msgid "Untitled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reloading network plugin..."
|
msgid "Reloading network plug-in..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Network Plugin"
|
msgid "Downloading Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Bambu Network Plug-in"
|
msgid "Downloading Bambu Network Plug-in"
|
||||||
@@ -1684,6 +1736,9 @@ msgstr ""
|
|||||||
msgid "Choose one file (GCODE/3MF):"
|
msgid "Choose one file (GCODE/3MF):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Ext"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Some presets are modified."
|
msgid "Some presets are modified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1739,7 +1794,7 @@ msgid ""
|
|||||||
"access, enabling full functionality with OrcaSlicer."
|
"access, enabling full functionality with OrcaSlicer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network Plugin Restriction"
|
msgid "Network Plug-in Restriction"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Privacy Policy Update"
|
msgid "Privacy Policy Update"
|
||||||
@@ -1965,6 +2020,9 @@ msgid ""
|
|||||||
"No - Do not change these settings for me"
|
"No - Do not change these settings for me"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Suggestion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -2074,9 +2132,6 @@ msgstr ""
|
|||||||
msgid "Restore to meters"
|
msgid "Restore to meters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Assemble"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Assemble the selected objects to an object with multiple parts"
|
msgid "Assemble the selected objects to an object with multiple parts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -2565,6 +2620,10 @@ msgstr ""
|
|||||||
msgid "Line Type"
|
msgid "Line Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, possible-c-format, possible-boost-format
|
||||||
|
msgid "1x1 Grid: %d mm"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "More"
|
msgid "More"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -2682,7 +2741,7 @@ msgstr ""
|
|||||||
msgid "Connecting..."
|
msgid "Connecting..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Auto-refill"
|
msgid "Auto Refill"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Load"
|
msgid "Load"
|
||||||
@@ -3053,6 +3112,38 @@ msgid ""
|
|||||||
"Storage before sending to printer."
|
"Storage before sending to printer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossCreateObjectJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text object"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossUpdateJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Created text volume is empty. Change text or font."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for CreateSurfaceVolumeJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for UseSurfaceJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRN: This is the title of the action appearing in undo/redo stack.
|
||||||
|
#. It is same for Text and SVG.
|
||||||
|
msgid "Emboss attribute change"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text Volume"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Font doesn't have any shape for given text."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "There is no valid surface for text projection."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Thermal Preconditioning for first layer optimization"
|
msgid "Thermal Preconditioning for first layer optimization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3361,9 +3452,6 @@ msgstr ""
|
|||||||
msgid "Nozzle"
|
msgid "Nozzle"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Ext"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, possible-c-format, possible-boost-format
|
#, possible-c-format, possible-boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
||||||
@@ -3424,9 +3512,6 @@ msgstr ""
|
|||||||
msgid "Print with filaments mounted on the back of the chassis"
|
msgid "Print with filaments mounted on the back of the chassis"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Auto Refill"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Left"
|
msgid "Left"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3438,7 +3523,7 @@ msgid ""
|
|||||||
"following order."
|
"following order."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Identical filament: same brand, type and color"
|
msgid "Identical filament: same brand, type and color."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Group"
|
msgid "Group"
|
||||||
@@ -3558,8 +3643,8 @@ msgid "Calibration"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Failed to download the plug-in. Please check your firewall settings and vpn "
|
"Failed to download the plug-in. Please check your firewall settings and VPN "
|
||||||
"software, check and retry."
|
"software and retry."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -3572,8 +3657,8 @@ msgid "Click here to see more info"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The network plugin was installed but could not be loaded. Please restart the "
|
"The network plug-in was installed but could not be loaded. Please restart "
|
||||||
"application."
|
"the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Restart Required"
|
msgid "Restart Required"
|
||||||
@@ -3719,9 +3804,6 @@ msgstr ""
|
|||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Texture"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3868,6 +3950,7 @@ msgid ""
|
|||||||
"Reset to 0."
|
"Reset to 0."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, possible-c-format, possible-boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Lock depth should smaller than skin depth.\n"
|
"Lock depth should smaller than skin depth.\n"
|
||||||
"Reset to 50% of skin depth."
|
"Reset to 50% of skin depth."
|
||||||
@@ -4473,6 +4556,9 @@ msgstr ""
|
|||||||
msgid "Fan speed"
|
msgid "Fan speed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "°C"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Time"
|
msgid "Time"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4629,7 +4715,7 @@ msgstr ""
|
|||||||
msgid "Fan Speed (%)"
|
msgid "Fan Speed (%)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Temperature (℃)"
|
msgid "Temperature (°C)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Volumetric flow rate (mm³/s)"
|
msgid "Volumetric flow rate (mm³/s)"
|
||||||
@@ -4948,7 +5034,7 @@ msgstr ""
|
|||||||
msgid "Size:"
|
msgid "Size:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, possible-boost-format
|
#, possible-c-format, possible-boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||||
"separate the conflicted objects farther (%s <-> %s)."
|
"separate the conflicted objects farther (%s <-> %s)."
|
||||||
@@ -5019,7 +5105,7 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
||||||
"mixing in models. Please redjust flushing settings."
|
"mixing in models. Please readjust flushing settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Click Wiki for help."
|
msgid "Click Wiki for help."
|
||||||
@@ -6265,6 +6351,9 @@ msgid ""
|
|||||||
"to give a positive rating (4 or 5 stars)."
|
"to give a positive rating (4 or 5 stars)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "click to add machine"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -6275,6 +6364,14 @@ msgstr ""
|
|||||||
msgid "Assistant(HMS)"
|
msgid "Assistant(HMS)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, possible-c-format, possible-boost-format
|
||||||
|
msgid "Network plug-in v%s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, possible-c-format, possible-boost-format
|
||||||
|
msgid "Network plug-in v%s (%s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Don't show again"
|
msgid "Don't show again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -6643,7 +6740,7 @@ msgstr ""
|
|||||||
msgid "Unavailable while heating maintenance function is on."
|
msgid "Unavailable while heating maintenance function is on."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Idel Heating Protection"
|
msgid "Idle Heating Protection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
||||||
@@ -7161,7 +7258,8 @@ msgid "Please resolve the slicing errors and publish again."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Network Plug-in is not detected. Network related features are unavailable."
|
"The network plug-in was not detected. Network related features are "
|
||||||
|
"unavailable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -7696,7 +7794,7 @@ msgstr ""
|
|||||||
msgid "filaments"
|
msgid "filaments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
msgid "Optimizes filament area maximum height by chosen filament count."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Features"
|
msgid "Features"
|
||||||
@@ -7881,40 +7979,40 @@ msgstr ""
|
|||||||
msgid "Color only"
|
msgid "Color only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin"
|
msgid "Network plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Enable network plugin"
|
msgid "Enable network plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin version"
|
msgid "Network plug-in version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Select the network plugin version to use"
|
msgid "Select the network plug-in version to use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "(Latest)"
|
msgid "(Latest)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin switched successfully."
|
msgid "Network plug-in switched successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to load network plugin. Please restart the application."
|
msgid "Failed to load network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, possible-c-format, possible-boost-format
|
#, possible-c-format, possible-boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You've selected network plugin version %s.\n"
|
"You've selected network plug-in version %s.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Would you like to download and install this version now?\n"
|
"Would you like to download and install this version now?\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Note: The application may need to restart after installation."
|
"Note: The application may need to restart after installation."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Download Network Plugin"
|
msgid "Download Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Associate files to OrcaSlicer"
|
msgid "Associate files to OrcaSlicer"
|
||||||
@@ -7982,19 +8080,16 @@ msgstr ""
|
|||||||
msgid "trace"
|
msgid "trace"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network Plugin"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Reload"
|
msgid "Reload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload the network plugin without restarting the application"
|
msgid "Reload the network plug-in without restarting the application"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin reloaded successfully."
|
msgid "Network plug-in reloaded successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to reload network plugin. Please restart the application."
|
msgid "Failed to reload network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload Failed"
|
msgid "Reload Failed"
|
||||||
@@ -8213,7 +8308,10 @@ msgstr ""
|
|||||||
msgid "Slicing Plate 1"
|
msgid "Slicing Plate 1"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Packing data to 3mf"
|
msgid "Packing data to 3MF"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Uploading data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Jump to webpage"
|
msgid "Jump to webpage"
|
||||||
@@ -8516,7 +8614,7 @@ msgstr ""
|
|||||||
msgid "Textured PEI Plate"
|
msgid "Textured PEI Plate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Cool Plate (Supertack)"
|
msgid "Cool Plate (SuperTack)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Click here if you can't connect to the printer"
|
msgid "Click here if you can't connect to the printer"
|
||||||
@@ -8808,7 +8906,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection. There may be flaws on the "
|
"A prime tower is required for clumping detection. There may be flaws on the "
|
||||||
"model without prime tower. Do you still want to enable clumping detection?"
|
"model without prime tower. Do you still want to enable clumping detection?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -8899,8 +8997,8 @@ msgstr ""
|
|||||||
msgid ""
|
msgid ""
|
||||||
"When recording timelapse without toolhead, it is recommended to add a "
|
"When recording timelapse without toolhead, it is recommended to add a "
|
||||||
"\"Timelapse Wipe Tower\" \n"
|
"\"Timelapse Wipe Tower\" \n"
|
||||||
"by right-click the empty position of build plate and choose \"Add "
|
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
"\"->\"Timelapse Wipe Tower\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -9098,9 +9196,6 @@ msgstr ""
|
|||||||
msgid "Nozzle temperature when printing"
|
msgid "Nozzle temperature when printing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Cool Plate (SuperTack)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
||||||
"means the filament does not support printing on the Cool Plate SuperTack."
|
"means the filament does not support printing on the Cool Plate SuperTack."
|
||||||
@@ -9509,6 +9604,12 @@ msgstr ""
|
|||||||
msgid "Select presets to compare"
|
msgid "Select presets to compare"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Left Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Right Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can only transfer to current active profile because it has been modified."
|
"You can only transfer to current active profile because it has been modified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -9908,6 +10009,12 @@ msgstr ""
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "[Action Required] "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "[Action Required]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "The configuration package is changed in previous Config Guide"
|
msgid "The configuration package is changed in previous Config Guide"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -10590,7 +10697,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection; otherwise, there may be "
|
"A prime tower is required for clumping detection; otherwise, there may be "
|
||||||
"flaws on the model."
|
"flaws on the model."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -11790,7 +11897,7 @@ msgid ""
|
|||||||
"models\n"
|
"models\n"
|
||||||
"3. No filtering - creates internal bridges on every potential internal "
|
"3. No filtering - creates internal bridges on every potential internal "
|
||||||
"overhang. This option is useful for heavily slanted top surface models; "
|
"overhang. This option is useful for heavily slanted top surface models; "
|
||||||
"however, in most cases, it creates too many unnecessary bridges"
|
"however, in most cases, it creates too many unnecessary bridges."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Limited filtering"
|
msgid "Limited filtering"
|
||||||
@@ -12155,7 +12262,7 @@ msgid ""
|
|||||||
"less acceleration you print, the larger the range of acceptable PA values. "
|
"less acceleration you print, the larger the range of acceptable PA values. "
|
||||||
"If no difference is visible, use the PA value from the faster test\n"
|
"If no difference is visible, use the PA value from the faster test\n"
|
||||||
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
||||||
"here and save your filament profile"
|
"here and save your filament profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||||
@@ -12800,8 +12907,8 @@ msgid "mm/s² or %"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
"g. 100%), it will be calculated based on the default acceleration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -12905,10 +13012,10 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Fan speed will be ramped up linearly from zero at layer "
|
"Fan speed will be ramped up linearly from zero at layer "
|
||||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "layer"
|
msgid "layer"
|
||||||
@@ -13317,9 +13424,9 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this to add comments into the G-code labeling print moves with what "
|
"Enable this to add comments into the G-code labeling print moves with what "
|
||||||
"object they belong to, which is useful for the Octoprint CancelObject "
|
"object they belong to, which is useful for the Octoprint CancelObject plug-"
|
||||||
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
|
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
|
||||||
"setup and Wipe into Object / Wipe into Infill."
|
"and Wipe into Object / Wipe into Infill."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Exclude objects"
|
msgid "Exclude objects"
|
||||||
@@ -13579,7 +13686,7 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Ironing is using small flow to print on same height of surface again to make "
|
"Ironing is using small flow to print on same height of surface again to make "
|
||||||
"flat surface more smooth. This setting controls which layer being ironed"
|
"flat surface more smooth. This setting controls which layer being ironed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "No ironing"
|
msgid "No ironing"
|
||||||
@@ -14435,8 +14542,8 @@ msgid "Role base wipe speed"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
"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 "
|
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||||
"wipe action."
|
"wipe action."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -14636,7 +14743,7 @@ msgid ""
|
|||||||
"timelapse video when printing completes. If smooth mode is selected, the "
|
"timelapse video when printing completes. If smooth mode is selected, the "
|
||||||
"toolhead will move to the excess chute after each layer is printed and then "
|
"toolhead will move to the excess chute after each layer is printed and then "
|
||||||
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
||||||
"process of taking a snapshot, prime tower is required for smooth mode to "
|
"process of taking a snapshot, a prime tower is required for smooth mode to "
|
||||||
"wipe nozzle."
|
"wipe nozzle."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -15136,8 +15243,8 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this option for automated chamber temperature control. This option "
|
"Enable this option for automated chamber temperature control. This option "
|
||||||
"activates the emitting of an M191 command before the "
|
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||||
"\"machine_start_gcode\"\n"
|
"\"\n"
|
||||||
" which sets the chamber temperature and waits until it is reached. In "
|
" 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 "
|
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||||
"chamber heater, if present.\n"
|
"chamber heater, if present.\n"
|
||||||
@@ -15354,6 +15461,12 @@ msgid ""
|
|||||||
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
|
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Rectangle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Rib"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Extra rib length"
|
msgid "Extra rib length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -15856,7 +15969,7 @@ msgid ""
|
|||||||
"machines in the list."
|
"machines in the list."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "downward machines settings"
|
msgid "Downward machines settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "The machine settings list needs to do downward checking."
|
msgid "The machine settings list needs to do downward checking."
|
||||||
@@ -15887,8 +16000,8 @@ msgid "Debug level"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||||
"5:trace\n"
|
"trace\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Enable timelapse for print"
|
msgid "Enable timelapse for print"
|
||||||
@@ -16474,10 +16587,6 @@ msgstr ""
|
|||||||
msgid "create new preset failed."
|
msgid "create new preset failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, possible-c-format, possible-boost-format
|
|
||||||
msgid "The selected preset: %s is not found."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, possible-c-format, possible-boost-format
|
#, possible-c-format, possible-boost-format
|
||||||
msgid "Could not find parameter: %s."
|
msgid "Could not find parameter: %s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -17056,6 +17165,23 @@ msgstr ""
|
|||||||
msgid "Input shaper type"
|
msgid "Input shaper type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Please ensure the selected type is compatible with your firmware version."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Marlin version => 2.1.2\n"
|
||||||
|
"Fixed-Time motion not yet implemented."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Klipper version => 0.9.0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"RepRap firmware version => 3.4.0\n"
|
||||||
|
"Check your firmware documentation for supported shaper types."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency (Start / End): "
|
msgid "Frequency (Start / End): "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -17090,6 +17216,9 @@ msgstr ""
|
|||||||
msgid "Input shaping Damp test"
|
msgid "Input shaping Damp test"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Check firmware compatibility."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency: "
|
msgid "Frequency: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -17405,8 +17534,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||||
"selected\".\n"
|
"\".\n"
|
||||||
"To add preset for more printers, please go to printer selection"
|
"To add preset for more printers, please go to printer selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -17452,9 +17581,6 @@ msgstr ""
|
|||||||
msgid "Can't find my nozzle diameter"
|
msgid "Can't find my nozzle diameter"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Rectangle"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Printable Space"
|
msgid "Printable Space"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -18631,6 +18757,127 @@ msgstr ""
|
|||||||
msgid "More Colors"
|
msgid "More Colors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Network Plug-in Update Available"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bambu Network Plug-in Required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
|
||||||
|
"and remote printing."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, possible-c-format, possible-boost-format
|
||||||
|
msgid "Error: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Version to install:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Download and Install"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip for Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "A new version of the Bambu Network Plug-in is available."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, possible-c-format, possible-boost-format
|
||||||
|
msgid "Current version: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update to version:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Remind Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Don't Ask Again"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The Bambu Network Plug-in has been installed successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"A restart is required to load the new plug-in. Would you like to restart now?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "NO RAMMING AT ALL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Volumetric speed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Step file import parameters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Smaller linear and angular deflections result in higher-quality "
|
||||||
|
"transformations but increase the processing time."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Linear Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Angle Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Split compound and compsolid into multiple objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Number of triangular facets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Calculating, please wait..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. "
|
||||||
|
"Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament model is unknown. Still using the previous filament preset."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. A "
|
||||||
|
"random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. A random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: resources/data/hints.ini: [hint:Precise wall]
|
#: resources/data/hints.ini: [hint:Precise wall]
|
||||||
msgid "Precise wall\nDid you know that turning on precise wall can improve precision and layer consistency?"
|
msgid "Precise wall\nDid you know that turning on precise wall can improve precision and layer consistency?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: \n"
|
"Project-Id-Version: \n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
|
||||||
"PO-Revision-Date: 2025-03-15 10:55+0100\n"
|
"PO-Revision-Date: 2025-03-15 10:55+0100\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
@@ -19,26 +19,6 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: Poedit 3.5\n"
|
"X-Generator: Poedit 3.5\n"
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. "
|
|
||||||
"Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament model is unknown. Still using the previous filament preset."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. A "
|
|
||||||
"random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. A random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "right"
|
msgid "right"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1587,6 +1567,30 @@ msgstr "Distància paral·lela:"
|
|||||||
msgid "Flip by Face 2"
|
msgid "Flip by Face 2"
|
||||||
msgstr "Gira per la cara 2"
|
msgstr "Gira per la cara 2"
|
||||||
|
|
||||||
|
msgid "Assemble"
|
||||||
|
msgstr "Ensamblar"
|
||||||
|
|
||||||
|
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "(Moving)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Point and point assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"It is recommended to assemble the objects first,\n"
|
||||||
|
"because the objects is restriced to bed \n"
|
||||||
|
"and only parts can be lifted."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Face and face assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Notice"
|
msgid "Notice"
|
||||||
msgstr "Avís"
|
msgstr "Avís"
|
||||||
|
|
||||||
@@ -1629,6 +1633,54 @@ msgstr ""
|
|||||||
msgid "Based on PrusaSlicer and BambuStudio"
|
msgid "Based on PrusaSlicer and BambuStudio"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "STEP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "STL files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "OBJ files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "AMF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Gcode 3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "G-code files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Supported files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "ZIP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Project files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Known files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "INI files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "SVG files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Texture"
|
||||||
|
msgstr "Textura"
|
||||||
|
|
||||||
|
msgid "Masked SLA files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Draco files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
||||||
"It will be appreciated if you report the issue to our team."
|
"It will be appreciated if you report the issue to our team."
|
||||||
@@ -1657,10 +1709,10 @@ msgstr "OrcaSlicer ha tingut una excepció no gestionada: %1%"
|
|||||||
msgid "Untitled"
|
msgid "Untitled"
|
||||||
msgstr "Sense títol"
|
msgstr "Sense títol"
|
||||||
|
|
||||||
msgid "Reloading network plugin..."
|
msgid "Reloading network plug-in..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Network Plugin"
|
msgid "Downloading Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Bambu Network Plug-in"
|
msgid "Downloading Bambu Network Plug-in"
|
||||||
@@ -1757,6 +1809,9 @@ msgstr "Trieu el fitxer ZIP"
|
|||||||
msgid "Choose one file (GCODE/3MF):"
|
msgid "Choose one file (GCODE/3MF):"
|
||||||
msgstr "Trieu un fitxer ( GCODE/3MF ):"
|
msgstr "Trieu un fitxer ( GCODE/3MF ):"
|
||||||
|
|
||||||
|
msgid "Ext"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Some presets are modified."
|
msgid "Some presets are modified."
|
||||||
msgstr "Alguns perfils s'han modificat."
|
msgstr "Alguns perfils s'han modificat."
|
||||||
|
|
||||||
@@ -1818,7 +1873,7 @@ msgid ""
|
|||||||
"access, enabling full functionality with OrcaSlicer."
|
"access, enabling full functionality with OrcaSlicer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network Plugin Restriction"
|
msgid "Network Plug-in Restriction"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Privacy Policy Update"
|
msgid "Privacy Policy Update"
|
||||||
@@ -2056,6 +2111,9 @@ msgstr ""
|
|||||||
"Sí: Canviar aquesta configuració automàticament\n"
|
"Sí: Canviar aquesta configuració automàticament\n"
|
||||||
"No - No canviar aquesta configuració"
|
"No - No canviar aquesta configuració"
|
||||||
|
|
||||||
|
msgid "Suggestion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Text"
|
msgstr "Text"
|
||||||
|
|
||||||
@@ -2165,9 +2223,6 @@ msgstr "Convertir des de metres"
|
|||||||
msgid "Restore to meters"
|
msgid "Restore to meters"
|
||||||
msgstr "Restaurar a metres"
|
msgstr "Restaurar a metres"
|
||||||
|
|
||||||
msgid "Assemble"
|
|
||||||
msgstr "Ensamblar"
|
|
||||||
|
|
||||||
msgid "Assemble the selected objects to an object with multiple parts"
|
msgid "Assemble the selected objects to an object with multiple parts"
|
||||||
msgstr "Ensamblar els objectes seleccionats a un objecte amb diverses peces"
|
msgstr "Ensamblar els objectes seleccionats a un objecte amb diverses peces"
|
||||||
|
|
||||||
@@ -2677,6 +2732,10 @@ msgstr "Impressió multicolor"
|
|||||||
msgid "Line Type"
|
msgid "Line Type"
|
||||||
msgstr "Tipus de línia"
|
msgstr "Tipus de línia"
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "1x1 Grid: %d mm"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "More"
|
msgid "More"
|
||||||
msgstr "Més"
|
msgstr "Més"
|
||||||
|
|
||||||
@@ -2796,8 +2855,8 @@ msgstr "Comproveu la connexió de xarxa de la impressora i l'Orca."
|
|||||||
msgid "Connecting..."
|
msgid "Connecting..."
|
||||||
msgstr "Connectant..."
|
msgstr "Connectant..."
|
||||||
|
|
||||||
msgid "Auto-refill"
|
msgid "Auto Refill"
|
||||||
msgstr ""
|
msgstr "Recàrrega automàtica"
|
||||||
|
|
||||||
msgid "Load"
|
msgid "Load"
|
||||||
msgstr "Carregar"
|
msgstr "Carregar"
|
||||||
@@ -3198,6 +3257,38 @@ msgid ""
|
|||||||
"Storage before sending to printer."
|
"Storage before sending to printer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossCreateObjectJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text object"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossUpdateJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Created text volume is empty. Change text or font."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for CreateSurfaceVolumeJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for UseSurfaceJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRN: This is the title of the action appearing in undo/redo stack.
|
||||||
|
#. It is same for Text and SVG.
|
||||||
|
msgid "Emboss attribute change"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text Volume"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Font doesn't have any shape for given text."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "There is no valid surface for text projection."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Thermal Preconditioning for first layer optimization"
|
msgid "Thermal Preconditioning for first layer optimization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3525,9 +3616,6 @@ msgstr ""
|
|||||||
msgid "Nozzle"
|
msgid "Nozzle"
|
||||||
msgstr "Broquet( nozzle )"
|
msgstr "Broquet( nozzle )"
|
||||||
|
|
||||||
msgid "Ext"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
||||||
@@ -3594,9 +3682,6 @@ msgstr "Imprimir amb filaments en ams"
|
|||||||
msgid "Print with filaments mounted on the back of the chassis"
|
msgid "Print with filaments mounted on the back of the chassis"
|
||||||
msgstr "Impressió amb filaments muntats a la part posterior del xassís"
|
msgstr "Impressió amb filaments muntats a la part posterior del xassís"
|
||||||
|
|
||||||
msgid "Auto Refill"
|
|
||||||
msgstr "Recàrrega automàtica"
|
|
||||||
|
|
||||||
msgid "Left"
|
msgid "Left"
|
||||||
msgstr "Esquerra"
|
msgstr "Esquerra"
|
||||||
|
|
||||||
@@ -3610,7 +3695,7 @@ msgstr ""
|
|||||||
"Quan s'esgoti el material actual, la impressora continuarà imprimint en "
|
"Quan s'esgoti el material actual, la impressora continuarà imprimint en "
|
||||||
"l'ordre següent."
|
"l'ordre següent."
|
||||||
|
|
||||||
msgid "Identical filament: same brand, type and color"
|
msgid "Identical filament: same brand, type and color."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Group"
|
msgid "Group"
|
||||||
@@ -3748,8 +3833,8 @@ msgid "Calibration"
|
|||||||
msgstr "Calibratge"
|
msgstr "Calibratge"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Failed to download the plug-in. Please check your firewall settings and vpn "
|
"Failed to download the plug-in. Please check your firewall settings and VPN "
|
||||||
"software, check and retry."
|
"software and retry."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"No s'ha pogut descarregar el connector. Comproveu la configuració del "
|
"No s'ha pogut descarregar el connector. Comproveu la configuració del "
|
||||||
"tallafoc i el programari VPN, comproveu-ho i torneu-ho a provar."
|
"tallafoc i el programari VPN, comproveu-ho i torneu-ho a provar."
|
||||||
@@ -3764,8 +3849,8 @@ msgid "Click here to see more info"
|
|||||||
msgstr "feu clic aquí per veure més informació"
|
msgstr "feu clic aquí per veure més informació"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The network plugin was installed but could not be loaded. Please restart the "
|
"The network plug-in was installed but could not be loaded. Please restart "
|
||||||
"application."
|
"the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Restart Required"
|
msgid "Restart Required"
|
||||||
@@ -3877,8 +3962,8 @@ msgid ""
|
|||||||
"be opened during copy check. The output G-code is at %1%.tmp."
|
"be opened during copy check. The output G-code is at %1%.tmp."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"La còpia del codi-G temporal ha finalitzat, però el codi exportat no s'ha "
|
"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 "
|
"pogut obrir durant la verificació de la còpia. El codi-G de sortida és a %1%."
|
||||||
"%1%.tmp."
|
"tmp."
|
||||||
|
|
||||||
#, boost-format
|
#, boost-format
|
||||||
msgid "G-code file exported to %1%"
|
msgid "G-code file exported to %1%"
|
||||||
@@ -3938,9 +4023,6 @@ msgstr "Carregar forma des de l'STL..."
|
|||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Configuració"
|
msgstr "Configuració"
|
||||||
|
|
||||||
msgid "Texture"
|
|
||||||
msgstr "Textura"
|
|
||||||
|
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Eliminar"
|
msgstr "Eliminar"
|
||||||
|
|
||||||
@@ -4147,6 +4229,7 @@ msgstr ""
|
|||||||
"seam_slope_start_height ha de ser més petit que layer_height.\n"
|
"seam_slope_start_height ha de ser més petit que layer_height.\n"
|
||||||
"Restablert a 0."
|
"Restablert a 0."
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Lock depth should smaller than skin depth.\n"
|
"Lock depth should smaller than skin depth.\n"
|
||||||
"Reset to 50% of skin depth."
|
"Reset to 50% of skin depth."
|
||||||
@@ -4765,6 +4848,9 @@ msgstr ""
|
|||||||
msgid "Fan speed"
|
msgid "Fan speed"
|
||||||
msgstr "Velocitat del ventilador"
|
msgstr "Velocitat del ventilador"
|
||||||
|
|
||||||
|
msgid "°C"
|
||||||
|
msgstr "°C"
|
||||||
|
|
||||||
msgid "Time"
|
msgid "Time"
|
||||||
msgstr "Temps"
|
msgstr "Temps"
|
||||||
|
|
||||||
@@ -4921,7 +5007,7 @@ msgstr "Velocitat Real (mm/s)"
|
|||||||
msgid "Fan Speed (%)"
|
msgid "Fan Speed (%)"
|
||||||
msgstr "Velocitat Ventilador ( % )"
|
msgstr "Velocitat Ventilador ( % )"
|
||||||
|
|
||||||
msgid "Temperature (℃)"
|
msgid "Temperature (°C)"
|
||||||
msgstr "Temperatura ( °C )"
|
msgstr "Temperatura ( °C )"
|
||||||
|
|
||||||
msgid "Volumetric flow rate (mm³/s)"
|
msgid "Volumetric flow rate (mm³/s)"
|
||||||
@@ -5240,7 +5326,7 @@ msgstr "Volum:"
|
|||||||
msgid "Size:"
|
msgid "Size:"
|
||||||
msgstr "Mida:"
|
msgstr "Mida:"
|
||||||
|
|
||||||
#, fuzzy, boost-format
|
#, fuzzy, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||||
"separate the conflicted objects farther (%s <-> %s)."
|
"separate the conflicted objects farther (%s <-> %s)."
|
||||||
@@ -5313,7 +5399,7 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
||||||
"mixing in models. Please redjust flushing settings."
|
"mixing in models. Please readjust flushing settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Click Wiki for help."
|
msgid "Click Wiki for help."
|
||||||
@@ -6633,6 +6719,9 @@ msgstr ""
|
|||||||
"d'impressió \n"
|
"d'impressió \n"
|
||||||
"per donar una valoració positiva( 4 o 5 estrelles )."
|
"per donar una valoració positiva( 4 o 5 estrelles )."
|
||||||
|
|
||||||
|
msgid "click to add machine"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr "Estat"
|
msgstr "Estat"
|
||||||
|
|
||||||
@@ -6643,6 +6732,14 @@ msgstr ""
|
|||||||
msgid "Assistant(HMS)"
|
msgid "Assistant(HMS)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s (%s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Don't show again"
|
msgid "Don't show again"
|
||||||
msgstr "No tornis a mostrar"
|
msgstr "No tornis a mostrar"
|
||||||
|
|
||||||
@@ -7027,7 +7124,7 @@ msgstr ""
|
|||||||
msgid "Unavailable while heating maintenance function is on."
|
msgid "Unavailable while heating maintenance function is on."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Idel Heating Protection"
|
msgid "Idle Heating Protection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
||||||
@@ -7588,7 +7685,8 @@ msgid "Please resolve the slicing errors and publish again."
|
|||||||
msgstr "Resoleu els errors de laminat i torneu a publicar."
|
msgstr "Resoleu els errors de laminat i torneu a publicar."
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Network Plug-in is not detected. Network related features are unavailable."
|
"The network plug-in was not detected. Network related features are "
|
||||||
|
"unavailable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"No s'ha detectat el Plug-in de Xarxa. Les funcions relacionades amb la Xarxa "
|
"No s'ha detectat el Plug-in de Xarxa. Les funcions relacionades amb la Xarxa "
|
||||||
"no estan disponibles."
|
"no estan disponibles."
|
||||||
@@ -8172,7 +8270,7 @@ msgstr ""
|
|||||||
msgid "filaments"
|
msgid "filaments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
msgid "Optimizes filament area maximum height by chosen filament count."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Features"
|
msgid "Features"
|
||||||
@@ -8375,40 +8473,40 @@ msgstr ""
|
|||||||
msgid "Color only"
|
msgid "Color only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin"
|
msgid "Network plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Enable network plugin"
|
msgid "Enable network plug-in"
|
||||||
msgstr "Habilita el plugin de xarxa"
|
msgstr "Habilita el plugin de xarxa"
|
||||||
|
|
||||||
msgid "Network plugin version"
|
msgid "Network plug-in version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Select the network plugin version to use"
|
msgid "Select the network plug-in version to use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "(Latest)"
|
msgid "(Latest)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin switched successfully."
|
msgid "Network plug-in switched successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to load network plugin. Please restart the application."
|
msgid "Failed to load network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You've selected network plugin version %s.\n"
|
"You've selected network plug-in version %s.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Would you like to download and install this version now?\n"
|
"Would you like to download and install this version now?\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Note: The application may need to restart after installation."
|
"Note: The application may need to restart after installation."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Download Network Plugin"
|
msgid "Download Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Associate files to OrcaSlicer"
|
msgid "Associate files to OrcaSlicer"
|
||||||
@@ -8487,19 +8585,16 @@ msgstr "depurar"
|
|||||||
msgid "trace"
|
msgid "trace"
|
||||||
msgstr "traça"
|
msgstr "traça"
|
||||||
|
|
||||||
msgid "Network Plugin"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Reload"
|
msgid "Reload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload the network plugin without restarting the application"
|
msgid "Reload the network plug-in without restarting the application"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin reloaded successfully."
|
msgid "Network plug-in reloaded successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to reload network plugin. Please restart the application."
|
msgid "Failed to reload network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload Failed"
|
msgid "Reload Failed"
|
||||||
@@ -8719,7 +8814,10 @@ msgstr "La publicació ha estat cancel·lada"
|
|||||||
msgid "Slicing Plate 1"
|
msgid "Slicing Plate 1"
|
||||||
msgstr "Laminant Base 1"
|
msgstr "Laminant Base 1"
|
||||||
|
|
||||||
msgid "Packing data to 3mf"
|
msgid "Packing data to 3MF"
|
||||||
|
msgstr "Empaquetant dades a 3mf"
|
||||||
|
|
||||||
|
msgid "Uploading data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Jump to webpage"
|
msgid "Jump to webpage"
|
||||||
@@ -9038,8 +9136,8 @@ msgstr "Placa Llisa d'Alta Temperatura"
|
|||||||
msgid "Textured PEI Plate"
|
msgid "Textured PEI Plate"
|
||||||
msgstr "Base PEI amb Textura"
|
msgstr "Base PEI amb Textura"
|
||||||
|
|
||||||
msgid "Cool Plate (Supertack)"
|
msgid "Cool Plate (SuperTack)"
|
||||||
msgstr ""
|
msgstr "Cool Plate (SuperTack)"
|
||||||
|
|
||||||
msgid "Click here if you can't connect to the printer"
|
msgid "Click here if you can't connect to the printer"
|
||||||
msgstr "Feu clic aquí si no us podeu connectar a la impressora"
|
msgstr "Feu clic aquí si no us podeu connectar a la impressora"
|
||||||
@@ -9367,7 +9465,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection. There may be flaws on the "
|
"A prime tower is required for clumping detection. There may be flaws on the "
|
||||||
"model without prime tower. Do you still want to enable clumping detection?"
|
"model without prime tower. Do you still want to enable clumping detection?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -9486,8 +9584,8 @@ msgstr ""
|
|||||||
msgid ""
|
msgid ""
|
||||||
"When recording timelapse without toolhead, it is recommended to add a "
|
"When recording timelapse without toolhead, it is recommended to add a "
|
||||||
"\"Timelapse Wipe Tower\" \n"
|
"\"Timelapse Wipe Tower\" \n"
|
||||||
"by right-click the empty position of build plate and choose \"Add "
|
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
"\"->\"Timelapse Wipe Tower\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Quan graveu timelapse sense capçal d'impressió, es recomana afegir una "
|
"Quan graveu timelapse sense capçal d'impressió, es recomana afegir una "
|
||||||
"\"Torre de Purga Timelapse\" \n"
|
"\"Torre de Purga Timelapse\" \n"
|
||||||
@@ -9708,9 +9806,6 @@ msgstr "Temperatura d'impressió"
|
|||||||
msgid "Nozzle temperature when printing"
|
msgid "Nozzle temperature when printing"
|
||||||
msgstr "Temperatura del broquet en imprimir"
|
msgstr "Temperatura del broquet en imprimir"
|
||||||
|
|
||||||
msgid "Cool Plate (SuperTack)"
|
|
||||||
msgstr "Cool Plate (SuperTack)"
|
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
||||||
"means the filament does not support printing on the Cool Plate SuperTack."
|
"means the filament does not support printing on the Cool Plate SuperTack."
|
||||||
@@ -10170,6 +10265,12 @@ msgstr "Mostra tots els perfils ( inclosos els incompatibles )"
|
|||||||
msgid "Select presets to compare"
|
msgid "Select presets to compare"
|
||||||
msgstr "Seleccioneu els perfils a comparar"
|
msgstr "Seleccioneu els perfils a comparar"
|
||||||
|
|
||||||
|
msgid "Left Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Right Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can only transfer to current active profile because it has been modified."
|
"You can only transfer to current active profile because it has been modified."
|
||||||
msgstr "Només es pot transferir al perfil actiu actual perquè s'ha modificat."
|
msgstr "Només es pot transferir al perfil actiu actual perquè s'ha modificat."
|
||||||
@@ -10604,6 +10705,12 @@ msgstr "Feu clic aquí per descarregar-lo."
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "Iniciar sessió"
|
msgstr "Iniciar sessió"
|
||||||
|
|
||||||
|
msgid "[Action Required] "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "[Action Required]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "The configuration package is changed in previous Config Guide"
|
msgid "The configuration package is changed in previous Config Guide"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"El paquet de configuració s'ha canviat a la Guia de Configuració anterior"
|
"El paquet de configuració s'ha canviat a la Guia de Configuració anterior"
|
||||||
@@ -11335,7 +11442,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection; otherwise, there may be "
|
"A prime tower is required for clumping detection; otherwise, there may be "
|
||||||
"flaws on the model."
|
"flaws on the model."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -12874,9 +12981,8 @@ msgstr ""
|
|||||||
"reducció de coixins a les superfícies superiors, així com una separació "
|
"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"
|
"reduïda de la capa de pont externa dels seus perímetres circumdants.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"En general, es recomana establir això com a mínim com a \"Només pont "
|
"En general, es recomana establir això com a mínim com a \"Només pont extern"
|
||||||
"extern\", tret que es detectin problemes específics amb el model en "
|
"\", tret que es detectin problemes específics amb el model en rodanxes.\n"
|
||||||
"rodanxes.\n"
|
|
||||||
"\n"
|
"\n"
|
||||||
"Opcions:\n"
|
"Opcions:\n"
|
||||||
"1. Desactivat: no genera segones capes de pont. Aquest és el valor "
|
"1. Desactivat: no genera segones capes de pont. Aquest és el valor "
|
||||||
@@ -12932,7 +13038,7 @@ msgid ""
|
|||||||
"models\n"
|
"models\n"
|
||||||
"3. No filtering - creates internal bridges on every potential internal "
|
"3. No filtering - creates internal bridges on every potential internal "
|
||||||
"overhang. This option is useful for heavily slanted top surface models; "
|
"overhang. This option is useful for heavily slanted top surface models; "
|
||||||
"however, in most cases, it creates too many unnecessary bridges"
|
"however, in most cases, it creates too many unnecessary bridges."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Aquesta opció pot ajudar a reduir el coixí a les superfícies superiors en "
|
"Aquesta opció pot ajudar a reduir el coixí a les superfícies superiors en "
|
||||||
"models molt inclinats o corbats.\n"
|
"models molt inclinats o corbats.\n"
|
||||||
@@ -13460,7 +13566,7 @@ msgid ""
|
|||||||
"less acceleration you print, the larger the range of acceptable PA values. "
|
"less acceleration you print, the larger the range of acceptable PA values. "
|
||||||
"If no difference is visible, use the PA value from the faster test\n"
|
"If no difference is visible, use the PA value from the faster test\n"
|
||||||
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
||||||
"here and save your filament profile"
|
"here and save your filament profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Afegiu conjunts de valors d'avanç de pressió (PA), les velocitats de cabal "
|
"Afegiu conjunts de valors d'avanç de pressió (PA), les velocitats de cabal "
|
||||||
"volumètric i les acceleracions a les quals es van mesurar, separats per una "
|
"volumètric i les acceleracions a les quals es van mesurar, separats per una "
|
||||||
@@ -14271,8 +14377,8 @@ msgid "mm/s² or %"
|
|||||||
msgstr "mm/s o %"
|
msgstr "mm/s o %"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
"g. 100%), it will be calculated based on the default acceleration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Acceleració del farciment poc dens. Si el valor s'expressa en percentatge "
|
"Acceleració del farciment poc dens. Si el valor s'expressa en percentatge "
|
||||||
"( per exemple, 100% ), es calcularà a partir de l'acceleració predeterminada."
|
"( per exemple, 100% ), es calcularà a partir de l'acceleració predeterminada."
|
||||||
@@ -14391,15 +14497,15 @@ msgstr "Velocitat màxima del ventilador a la capa"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Fan speed will be ramped up linearly from zero at layer "
|
"Fan speed will be ramped up linearly from zero at layer "
|
||||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"La velocitat del ventilador augmentarà linealment de zero a la capa "
|
"La velocitat del ventilador augmentarà linealment de zero a la capa "
|
||||||
"\"close_fan_the_first_x_layers\" al màxim a la capa "
|
"\"close_fan_the_first_x_layers\" al màxim a la capa \"full_fan_speed_layer"
|
||||||
"\"full_fan_speed_layer\". S'ignorarà \"full_fan_speed_layer\" si és inferior "
|
"\". S'ignorarà \"full_fan_speed_layer\" si és inferior a "
|
||||||
"a \"close_fan_the_first_x_layers\", en aquest cas el ventilador funcionarà 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."
|
"la velocitat màxima permesa a la capa \"close_fan_the_first_x_layers\" + 1."
|
||||||
|
|
||||||
msgid "layer"
|
msgid "layer"
|
||||||
@@ -14897,9 +15003,9 @@ msgstr "Etiquetar objectes"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this to add comments into the G-code labeling print moves with what "
|
"Enable this to add comments into the G-code labeling print moves with what "
|
||||||
"object they belong to, which is useful for the Octoprint CancelObject "
|
"object they belong to, which is useful for the Octoprint CancelObject plug-"
|
||||||
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
|
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
|
||||||
"setup and Wipe into Object / Wipe into Infill."
|
"and Wipe into Object / Wipe into Infill."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Habilita això per afegir els comentaris al Codi-G, etiquetant moviments "
|
"Habilita això per afegir els comentaris al Codi-G, etiquetant moviments "
|
||||||
"d'impressió amb l'objecte al què pertanyen, cosa que és útil per al plugin "
|
"d'impressió amb l'objecte al què pertanyen, cosa que és útil per al plugin "
|
||||||
@@ -15212,11 +15318,11 @@ msgstr "Tipus de planxat"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Ironing is using small flow to print on same height of surface again to make "
|
"Ironing is using small flow to print on same height of surface again to make "
|
||||||
"flat surface more smooth. This setting controls which layer being ironed"
|
"flat surface more smooth. This setting controls which layer being ironed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"El planxat consisteix a utilitzar un flux petit per imprimir a la mateixa "
|
"El planxat consisteix a utilitzar un flux petit per imprimir a la mateixa "
|
||||||
"alçada de superfície de nou per fer la superfície plana més llisa. Aquest "
|
"alçada de superfície de nou per fer la superfície plana més llisa. Aquest "
|
||||||
"ajustament controla quina capa s'està planxant"
|
"ajustament controla quina capa s'està planxant."
|
||||||
|
|
||||||
msgid "No ironing"
|
msgid "No ironing"
|
||||||
msgstr "Sense planxat"
|
msgstr "Sense planxat"
|
||||||
@@ -16275,8 +16381,8 @@ msgid "Role base wipe speed"
|
|||||||
msgstr "Velocitat de neteja basada en l'acció"
|
msgstr "Velocitat de neteja basada en l'acció"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
"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 "
|
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||||
"wipe action."
|
"wipe action."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -16542,7 +16648,7 @@ msgid ""
|
|||||||
"timelapse video when printing completes. If smooth mode is selected, the "
|
"timelapse video when printing completes. If smooth mode is selected, the "
|
||||||
"toolhead will move to the excess chute after each layer is printed and then "
|
"toolhead will move to the excess chute after each layer is printed and then "
|
||||||
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
||||||
"process of taking a snapshot, prime tower is required for smooth mode to "
|
"process of taking a snapshot, a prime tower is required for smooth mode to "
|
||||||
"wipe nozzle."
|
"wipe nozzle."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Si se selecciona el mode suau o tradicional, es generarà un vídeo timelapse "
|
"Si se selecciona el mode suau o tradicional, es generarà un vídeo timelapse "
|
||||||
@@ -17147,8 +17253,8 @@ msgstr "Activar el control de temperatura"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this option for automated chamber temperature control. This option "
|
"Enable this option for automated chamber temperature control. This option "
|
||||||
"activates the emitting of an M191 command before the "
|
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||||
"\"machine_start_gcode\"\n"
|
"\"\n"
|
||||||
" which sets the chamber temperature and waits until it is reached. In "
|
" 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 "
|
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||||
"chamber heater, if present.\n"
|
"chamber heater, if present.\n"
|
||||||
@@ -17453,6 +17559,12 @@ msgid ""
|
|||||||
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
|
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Rectangle"
|
||||||
|
msgstr "Rectangle"
|
||||||
|
|
||||||
|
msgid "Rib"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Extra rib length"
|
msgid "Extra rib length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -17586,9 +17698,8 @@ msgid ""
|
|||||||
"0 to disable."
|
"0 to disable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Temperatura del broquet quan l'eina no s'utilitza actualment en "
|
"Temperatura del broquet quan l'eina no s'utilitza actualment en "
|
||||||
"configuracions multieina. Només s'utilitza quan la \"Prevenció de "
|
"configuracions multieina. Només s'utilitza quan la \"Prevenció de supuració"
|
||||||
"supuració\" està activa a la configuració d'impressió. Establiu a 0 per "
|
"\" està activa a la configuració d'impressió. Establiu a 0 per desactivar."
|
||||||
"desactivar."
|
|
||||||
|
|
||||||
msgid "X-Y hole compensation"
|
msgid "X-Y hole compensation"
|
||||||
msgstr "Compensació de forat( contorn intern ) X-Y"
|
msgstr "Compensació de forat( contorn intern ) X-Y"
|
||||||
@@ -18067,8 +18178,8 @@ msgstr ""
|
|||||||
"si està activat, comproveu si la màquina actual és compatible de manera "
|
"si està activat, comproveu si la màquina actual és compatible de manera "
|
||||||
"descendent amb les màquines de la llista"
|
"descendent amb les màquines de la llista"
|
||||||
|
|
||||||
msgid "downward machines settings"
|
msgid "Downward machines settings"
|
||||||
msgstr ""
|
msgstr "Configuració descendent de les màquines"
|
||||||
|
|
||||||
msgid "The machine settings list needs to do downward checking."
|
msgid "The machine settings list needs to do downward checking."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -18103,11 +18214,11 @@ msgid "Debug level"
|
|||||||
msgstr "Nivell de depuració"
|
msgstr "Nivell de depuració"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||||
"5:trace\n"
|
"trace\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Defineix el nivell de registre de depuració. 0:fatal, 1:error, 2:warning, "
|
"Defineix el nivell de registre de depuració. 0:fatal, 1:error, 2:warning, 3:"
|
||||||
"3:info, 4:debug, 5:tracejar\n"
|
"info, 4:debug, 5:tracejar\n"
|
||||||
|
|
||||||
msgid "Enable timelapse for print"
|
msgid "Enable timelapse for print"
|
||||||
msgstr "Activa el timelapse per a la impressió"
|
msgstr "Activa el timelapse per a la impressió"
|
||||||
@@ -18638,8 +18749,8 @@ msgstr "El fitxer subministrat no s'ha pogut llegir perquè està buit"
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
|
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Format de fitxer desconegut. El fitxer d'entrada ha de tenir "
|
"Format de fitxer desconegut. El fitxer d'entrada ha de tenir extensió .stl, ."
|
||||||
"extensió .stl, .obj, .amf( .xml )."
|
"obj, .amf( .xml )."
|
||||||
|
|
||||||
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
|
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -18761,10 +18872,6 @@ msgstr "El nom és el mateix que d'un altre perfil existent"
|
|||||||
msgid "create new preset failed."
|
msgid "create new preset failed."
|
||||||
msgstr "s'ha produït un error en la creació d'un nou perfil."
|
msgstr "s'ha produït un error en la creació d'un nou perfil."
|
||||||
|
|
||||||
#, c-format, boost-format
|
|
||||||
msgid "The selected preset: %s is not found."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid "Could not find parameter: %s."
|
msgid "Could not find parameter: %s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -19448,6 +19555,23 @@ msgstr ""
|
|||||||
msgid "Input shaper type"
|
msgid "Input shaper type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Please ensure the selected type is compatible with your firmware version."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Marlin version => 2.1.2\n"
|
||||||
|
"Fixed-Time motion not yet implemented."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Klipper version => 0.9.0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"RepRap firmware version => 3.4.0\n"
|
||||||
|
"Check your firmware documentation for supported shaper types."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency (Start / End): "
|
msgid "Frequency (Start / End): "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -19482,6 +19606,9 @@ msgstr ""
|
|||||||
msgid "Input shaping Damp test"
|
msgid "Input shaping Damp test"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Check firmware compatibility."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency: "
|
msgid "Frequency: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -19819,8 +19946,8 @@ msgstr ""
|
|||||||
"Vols reescriure'l?"
|
"Vols reescriure'l?"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||||
"selected\".\n"
|
"\".\n"
|
||||||
"To add preset for more printers, please go to printer selection"
|
"To add preset for more printers, please go to printer selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Canviaríem el nom dels perfils seleccionats com a \"Proveïdor Tipus "
|
"Canviaríem el nom dels perfils seleccionats com a \"Proveïdor Tipus "
|
||||||
@@ -19869,9 +19996,6 @@ msgstr ""
|
|||||||
msgid "Can't find my nozzle diameter"
|
msgid "Can't find my nozzle diameter"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Rectangle"
|
|
||||||
msgstr "Rectangle"
|
|
||||||
|
|
||||||
msgid "Printable Space"
|
msgid "Printable Space"
|
||||||
msgstr "Espai Imprimible"
|
msgstr "Espai Imprimible"
|
||||||
|
|
||||||
@@ -21161,8 +21285,8 @@ msgid ""
|
|||||||
"Warning: The brim type is not set to \"painted\", the brim ears will not "
|
"Warning: The brim type is not set to \"painted\", the brim ears will not "
|
||||||
"take effect!"
|
"take effect!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Advertència: el tipus de Vora d'Adherència no està configurat com a "
|
"Advertència: el tipus de Vora d'Adherència no està configurat com a \"pintat"
|
||||||
"\"pintat\", les orelles de la Vora d'Adherència no tindran efecte!"
|
"\", les orelles de la Vora d'Adherència no tindran efecte!"
|
||||||
|
|
||||||
msgid "Set the brim type of this object to \"painted\""
|
msgid "Set the brim type of this object to \"painted\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -21232,6 +21356,127 @@ msgstr ""
|
|||||||
msgid "More Colors"
|
msgid "More Colors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Network Plug-in Update Available"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bambu Network Plug-in Required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
|
||||||
|
"and remote printing."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Error: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Version to install:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Download and Install"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip for Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "A new version of the Bambu Network Plug-in is available."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Current version: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update to version:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Remind Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Don't Ask Again"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The Bambu Network Plug-in has been installed successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"A restart is required to load the new plug-in. Would you like to restart now?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "NO RAMMING AT ALL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Volumetric speed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Step file import parameters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Smaller linear and angular deflections result in higher-quality "
|
||||||
|
"transformations but increase the processing time."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Linear Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Angle Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Split compound and compsolid into multiple objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Number of triangular facets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Calculating, please wait..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. "
|
||||||
|
"Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament model is unknown. Still using the previous filament preset."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. A "
|
||||||
|
"random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. A random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: resources/data/hints.ini: [hint:Precise wall]
|
#: resources/data/hints.ini: [hint:Precise wall]
|
||||||
msgid ""
|
msgid ""
|
||||||
"Precise wall\n"
|
"Precise wall\n"
|
||||||
@@ -21632,9 +21877,6 @@ msgstr ""
|
|||||||
#~ "No s'ha pogut instal·lar el connector. Comproveu si el programari "
|
#~ "No s'ha pogut instal·lar el connector. Comproveu si el programari "
|
||||||
#~ "antivirus l'ha bloquejat o suprimit."
|
#~ "antivirus l'ha bloquejat o suprimit."
|
||||||
|
|
||||||
#~ msgid "°C"
|
|
||||||
#~ msgstr "°C"
|
|
||||||
|
|
||||||
#~ msgid "travel"
|
#~ msgid "travel"
|
||||||
#~ msgstr "recorregut"
|
#~ msgstr "recorregut"
|
||||||
|
|
||||||
@@ -21672,9 +21914,6 @@ msgstr ""
|
|||||||
#~ msgid "Advance"
|
#~ msgid "Advance"
|
||||||
#~ msgstr "Avançat"
|
#~ msgstr "Avançat"
|
||||||
|
|
||||||
#~ msgid "Packing data to 3MF"
|
|
||||||
#~ msgstr "Empaquetant dades a 3mf"
|
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "Controls the density (spacing) of external bridge lines. 100% means solid "
|
#~ "Controls the density (spacing) of external bridge lines. 100% means solid "
|
||||||
#~ "bridge. Default is 100%.\n"
|
#~ "bridge. Default is 100%.\n"
|
||||||
@@ -21954,8 +22193,8 @@ msgstr ""
|
|||||||
#~ "No AMS filaments. Please select a printer in 'Device' page to load AMS "
|
#~ "No AMS filaments. Please select a printer in 'Device' page to load AMS "
|
||||||
#~ "info."
|
#~ "info."
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
#~ "Sense filaments AMS. Seleccioneu una impressora a la pàgina "
|
#~ "Sense filaments AMS. Seleccioneu una impressora a la pàgina \"Dispositiu"
|
||||||
#~ "\"Dispositiu\" per carregar informació AMS."
|
#~ "\" per carregar informació AMS."
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "Sync filaments with AMS will drop all current selected filament presets "
|
#~ "Sync filaments with AMS will drop all current selected filament presets "
|
||||||
@@ -22629,9 +22868,6 @@ msgstr ""
|
|||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
#~ "carregar la configuració del filament Uptodate quan s'utilitza UptoDate"
|
#~ "carregar la configuració del filament Uptodate quan s'utilitza UptoDate"
|
||||||
|
|
||||||
#~ msgid "Downward machines settings"
|
|
||||||
#~ msgstr "configuració descendent de les màquines"
|
|
||||||
|
|
||||||
#~ msgid "Load filament IDs for each object"
|
#~ msgid "Load filament IDs for each object"
|
||||||
#~ msgstr "Carregar els identificadors del filament per a cada objecte"
|
#~ msgstr "Carregar els identificadors del filament per a cada objecte"
|
||||||
|
|
||||||
@@ -23308,10 +23544,10 @@ msgstr ""
|
|||||||
#~ msgid "Test Storage Download:"
|
#~ msgid "Test Storage Download:"
|
||||||
#~ msgstr "Prova de Descàrrega des de l'Emmagatzematge:"
|
#~ msgstr "Prova de Descàrrega des de l'Emmagatzematge:"
|
||||||
|
|
||||||
#~ msgid "Test plugin download"
|
#~ msgid "Test plug-in download"
|
||||||
#~ msgstr "Prova de descàrrega de plugins"
|
#~ msgstr "Prova de descàrrega de plugins"
|
||||||
|
|
||||||
#~ msgid "Test Plugin Download:"
|
#~ msgid "Test Plug-in Download:"
|
||||||
#~ msgstr "Prova de Descàrrega de Plugins:"
|
#~ msgstr "Prova de Descàrrega de Plugins:"
|
||||||
|
|
||||||
#~ msgid "Test Storage Upload"
|
#~ msgid "Test Storage Upload"
|
||||||
|
|||||||
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 ""
|
msgstr ""
|
||||||
"Project-Id-Version: Orca Slicer\n"
|
"Project-Id-Version: Orca Slicer\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
|
||||||
"PO-Revision-Date: 2025-05-18 09:32-0300\n"
|
"PO-Revision-Date: 2025-05-18 09:32-0300\n"
|
||||||
"Last-Translator: Alexandre Folle de Menezes\n"
|
"Last-Translator: Alexandre Folle de Menezes\n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
@@ -14,26 +14,6 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n"
|
"Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n"
|
||||||
"X-Generator: Poedit 3.6\n"
|
"X-Generator: Poedit 3.6\n"
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. "
|
|
||||||
"Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament model is unknown. Still using the previous filament preset."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. A "
|
|
||||||
"random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. A random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "right"
|
msgid "right"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1533,6 +1513,30 @@ msgstr ""
|
|||||||
msgid "Flip by Face 2"
|
msgid "Flip by Face 2"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Assemble"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "(Moving)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Point and point assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"It is recommended to assemble the objects first,\n"
|
||||||
|
"because the objects is restriced to bed \n"
|
||||||
|
"and only parts can be lifted."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Face and face assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Notice"
|
msgid "Notice"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1571,6 +1575,54 @@ msgstr ""
|
|||||||
msgid "Based on PrusaSlicer and BambuStudio"
|
msgid "Based on PrusaSlicer and BambuStudio"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "STEP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "STL files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "OBJ files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "AMF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Gcode 3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "G-code files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Supported files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "ZIP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Project files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Known files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "INI files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "SVG files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Texture"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Masked SLA files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Draco files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
||||||
"It will be appreciated if you report the issue to our team."
|
"It will be appreciated if you report the issue to our team."
|
||||||
@@ -1594,10 +1646,10 @@ msgstr ""
|
|||||||
msgid "Untitled"
|
msgid "Untitled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reloading network plugin..."
|
msgid "Reloading network plug-in..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Network Plugin"
|
msgid "Downloading Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Bambu Network Plug-in"
|
msgid "Downloading Bambu Network Plug-in"
|
||||||
@@ -1682,6 +1734,9 @@ msgstr ""
|
|||||||
msgid "Choose one file (GCODE/3MF):"
|
msgid "Choose one file (GCODE/3MF):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Ext"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Some presets are modified."
|
msgid "Some presets are modified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1739,7 +1794,7 @@ msgid ""
|
|||||||
"access, enabling full functionality with OrcaSlicer."
|
"access, enabling full functionality with OrcaSlicer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network Plugin Restriction"
|
msgid "Network Plug-in Restriction"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Privacy Policy Update"
|
msgid "Privacy Policy Update"
|
||||||
@@ -1965,6 +2020,9 @@ msgid ""
|
|||||||
"No - Do not change these settings for me"
|
"No - Do not change these settings for me"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Suggestion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -2074,9 +2132,6 @@ msgstr "Convert from Meters"
|
|||||||
msgid "Restore to meters"
|
msgid "Restore to meters"
|
||||||
msgstr "Restore to Meter"
|
msgstr "Restore to Meter"
|
||||||
|
|
||||||
msgid "Assemble"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Assemble the selected objects to an object with multiple parts"
|
msgid "Assemble the selected objects to an object with multiple parts"
|
||||||
msgstr "Assemble the selected objects into an object with multiple parts"
|
msgstr "Assemble the selected objects into an object with multiple parts"
|
||||||
|
|
||||||
@@ -2570,6 +2625,10 @@ msgstr ""
|
|||||||
msgid "Line Type"
|
msgid "Line Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "1x1 Grid: %d mm"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "More"
|
msgid "More"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -2687,7 +2746,7 @@ msgstr ""
|
|||||||
msgid "Connecting..."
|
msgid "Connecting..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Auto-refill"
|
msgid "Auto Refill"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Load"
|
msgid "Load"
|
||||||
@@ -3066,6 +3125,38 @@ msgid ""
|
|||||||
"Storage before sending to printer."
|
"Storage before sending to printer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossCreateObjectJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text object"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossUpdateJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Created text volume is empty. Change text or font."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for CreateSurfaceVolumeJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for UseSurfaceJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRN: This is the title of the action appearing in undo/redo stack.
|
||||||
|
#. It is same for Text and SVG.
|
||||||
|
msgid "Emboss attribute change"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text Volume"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Font doesn't have any shape for given text."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "There is no valid surface for text projection."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Thermal Preconditioning for first layer optimization"
|
msgid "Thermal Preconditioning for first layer optimization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3376,9 +3467,6 @@ msgstr ""
|
|||||||
msgid "Nozzle"
|
msgid "Nozzle"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Ext"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
||||||
@@ -3443,9 +3531,6 @@ msgstr "Print with filament in AMS"
|
|||||||
msgid "Print with filaments mounted on the back of the chassis"
|
msgid "Print with filaments mounted on the back of the chassis"
|
||||||
msgstr "Print with filament on external spool"
|
msgstr "Print with filament on external spool"
|
||||||
|
|
||||||
msgid "Auto Refill"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Left"
|
msgid "Left"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3457,7 +3542,7 @@ msgid ""
|
|||||||
"following order."
|
"following order."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Identical filament: same brand, type and color"
|
msgid "Identical filament: same brand, type and color."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Group"
|
msgid "Group"
|
||||||
@@ -3583,24 +3668,25 @@ msgid "Calibration"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Failed to download the plug-in. Please check your firewall settings and vpn "
|
"Failed to download the plug-in. Please check your firewall settings and VPN "
|
||||||
"software, check and retry."
|
|
||||||
msgstr ""
|
|
||||||
"Failed to download the plug-in. Please check your firewall settings and vpn "
|
|
||||||
"software and retry."
|
"software and retry."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Failed to install the plug-in. The plug-in file may be in use. Please "
|
"Failed to install the plug-in. The plug-in file may be in use. Please "
|
||||||
"restart OrcaSlicer and try again. Also check whether it is blocked or "
|
"restart OrcaSlicer and try again. Also check whether it is blocked or "
|
||||||
"deleted by anti-virus software."
|
"deleted by anti-virus software."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Failed to install the plug-in. The plug-in file may be in use. Please "
|
||||||
|
"restart OrcaSlicer and try again. Also check whether it is blocked or has "
|
||||||
|
"been deleted by anti-virus software."
|
||||||
|
|
||||||
msgid "Click here to see more info"
|
msgid "Click here to see more info"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The network plugin was installed but could not be loaded. Please restart the "
|
"The network plug-in was installed but could not be loaded. Please restart "
|
||||||
"application."
|
"the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Restart Required"
|
msgid "Restart Required"
|
||||||
@@ -3748,9 +3834,6 @@ msgstr ""
|
|||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Texture"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3924,6 +4007,7 @@ msgid ""
|
|||||||
"Reset to 0."
|
"Reset to 0."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Lock depth should smaller than skin depth.\n"
|
"Lock depth should smaller than skin depth.\n"
|
||||||
"Reset to 50% of skin depth."
|
"Reset to 50% of skin depth."
|
||||||
@@ -4532,6 +4616,9 @@ msgstr ""
|
|||||||
msgid "Fan speed"
|
msgid "Fan speed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "°C"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Time"
|
msgid "Time"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -4688,7 +4775,7 @@ msgstr ""
|
|||||||
msgid "Fan Speed (%)"
|
msgid "Fan Speed (%)"
|
||||||
msgstr "Fan speed (%)"
|
msgstr "Fan speed (%)"
|
||||||
|
|
||||||
msgid "Temperature (℃)"
|
msgid "Temperature (°C)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Volumetric flow rate (mm³/s)"
|
msgid "Volumetric flow rate (mm³/s)"
|
||||||
@@ -5007,7 +5094,7 @@ msgstr ""
|
|||||||
msgid "Size:"
|
msgid "Size:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||||
"separate the conflicted objects farther (%s <-> %s)."
|
"separate the conflicted objects farther (%s <-> %s)."
|
||||||
@@ -5078,7 +5165,7 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
||||||
"mixing in models. Please redjust flushing settings."
|
"mixing in models. Please readjust flushing settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Click Wiki for help."
|
msgid "Click Wiki for help."
|
||||||
@@ -6333,6 +6420,9 @@ msgid ""
|
|||||||
"to give a positive rating (4 or 5 stars)."
|
"to give a positive rating (4 or 5 stars)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "click to add machine"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -6343,6 +6433,14 @@ msgstr ""
|
|||||||
msgid "Assistant(HMS)"
|
msgid "Assistant(HMS)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s (%s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Don't show again"
|
msgid "Don't show again"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -6451,7 +6549,7 @@ msgid "Undo integration was successful."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "New network plug-in available."
|
msgid "New network plug-in available."
|
||||||
msgstr "New network plug-in available"
|
msgstr ""
|
||||||
|
|
||||||
msgid "Details"
|
msgid "Details"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -6713,7 +6811,7 @@ msgstr ""
|
|||||||
msgid "Unavailable while heating maintenance function is on."
|
msgid "Unavailable while heating maintenance function is on."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Idel Heating Protection"
|
msgid "Idle Heating Protection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
||||||
@@ -7214,7 +7312,7 @@ msgid "Please select a file"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Do you want to replace it"
|
msgid "Do you want to replace it"
|
||||||
msgstr "Do you want to replace it?"
|
msgstr ""
|
||||||
|
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -7248,7 +7346,8 @@ msgid "Please resolve the slicing errors and publish again."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Network Plug-in is not detected. Network related features are unavailable."
|
"The network plug-in was not detected. Network related features are "
|
||||||
|
"unavailable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -7795,7 +7894,7 @@ msgstr ""
|
|||||||
msgid "filaments"
|
msgid "filaments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
msgid "Optimizes filament area maximum height by chosen filament count."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Features"
|
msgid "Features"
|
||||||
@@ -7980,40 +8079,40 @@ msgstr ""
|
|||||||
msgid "Color only"
|
msgid "Color only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin"
|
msgid "Network plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Enable network plugin"
|
msgid "Enable network plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin version"
|
msgid "Network plug-in version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Select the network plugin version to use"
|
msgid "Select the network plug-in version to use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "(Latest)"
|
msgid "(Latest)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin switched successfully."
|
msgid "Network plug-in switched successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to load network plugin. Please restart the application."
|
msgid "Failed to load network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You've selected network plugin version %s.\n"
|
"You've selected network plug-in version %s.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Would you like to download and install this version now?\n"
|
"Would you like to download and install this version now?\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Note: The application may need to restart after installation."
|
"Note: The application may need to restart after installation."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Download Network Plugin"
|
msgid "Download Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Associate files to OrcaSlicer"
|
msgid "Associate files to OrcaSlicer"
|
||||||
@@ -8087,19 +8186,16 @@ msgstr ""
|
|||||||
msgid "trace"
|
msgid "trace"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network Plugin"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Reload"
|
msgid "Reload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload the network plugin without restarting the application"
|
msgid "Reload the network plug-in without restarting the application"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin reloaded successfully."
|
msgid "Network plug-in reloaded successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to reload network plugin. Please restart the application."
|
msgid "Failed to reload network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload Failed"
|
msgid "Reload Failed"
|
||||||
@@ -8318,7 +8414,10 @@ msgstr ""
|
|||||||
msgid "Slicing Plate 1"
|
msgid "Slicing Plate 1"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Packing data to 3mf"
|
msgid "Packing data to 3MF"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Uploading data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Jump to webpage"
|
msgid "Jump to webpage"
|
||||||
@@ -8626,7 +8725,7 @@ msgstr ""
|
|||||||
msgid "Textured PEI Plate"
|
msgid "Textured PEI Plate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Cool Plate (Supertack)"
|
msgid "Cool Plate (SuperTack)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Click here if you can't connect to the printer"
|
msgid "Click here if you can't connect to the printer"
|
||||||
@@ -8921,7 +9020,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection. There may be flaws on the "
|
"A prime tower is required for clumping detection. There may be flaws on the "
|
||||||
"model without prime tower. Do you still want to enable clumping detection?"
|
"model without prime tower. Do you still want to enable clumping detection?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -9017,8 +9116,8 @@ msgstr ""
|
|||||||
msgid ""
|
msgid ""
|
||||||
"When recording timelapse without toolhead, it is recommended to add a "
|
"When recording timelapse without toolhead, it is recommended to add a "
|
||||||
"\"Timelapse Wipe Tower\" \n"
|
"\"Timelapse Wipe Tower\" \n"
|
||||||
"by right-click the empty position of build plate and choose \"Add "
|
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
"\"->\"Timelapse Wipe Tower\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -9222,9 +9321,6 @@ msgstr ""
|
|||||||
msgid "Nozzle temperature when printing"
|
msgid "Nozzle temperature when printing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Cool Plate (SuperTack)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
||||||
"means the filament does not support printing on the Cool Plate SuperTack."
|
"means the filament does not support printing on the Cool Plate SuperTack."
|
||||||
@@ -9655,6 +9751,12 @@ msgstr ""
|
|||||||
msgid "Select presets to compare"
|
msgid "Select presets to compare"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Left Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Right Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can only transfer to current active profile because it has been modified."
|
"You can only transfer to current active profile because it has been modified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -10054,6 +10156,12 @@ msgstr ""
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "[Action Required] "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "[Action Required]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "The configuration package is changed in previous Config Guide"
|
msgid "The configuration package is changed in previous Config Guide"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -10746,7 +10854,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection; otherwise, there may be "
|
"A prime tower is required for clumping detection; otherwise, there may be "
|
||||||
"flaws on the model."
|
"flaws on the model."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -12032,7 +12140,7 @@ msgid ""
|
|||||||
"models\n"
|
"models\n"
|
||||||
"3. No filtering - creates internal bridges on every potential internal "
|
"3. No filtering - creates internal bridges on every potential internal "
|
||||||
"overhang. This option is useful for heavily slanted top surface models; "
|
"overhang. This option is useful for heavily slanted top surface models; "
|
||||||
"however, in most cases, it creates too many unnecessary bridges"
|
"however, in most cases, it creates too many unnecessary bridges."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Limited filtering"
|
msgid "Limited filtering"
|
||||||
@@ -12410,7 +12518,7 @@ msgid ""
|
|||||||
"less acceleration you print, the larger the range of acceptable PA values. "
|
"less acceleration you print, the larger the range of acceptable PA values. "
|
||||||
"If no difference is visible, use the PA value from the faster test\n"
|
"If no difference is visible, use the PA value from the faster test\n"
|
||||||
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
||||||
"here and save your filament profile"
|
"here and save your filament profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||||
@@ -13077,8 +13185,8 @@ msgid "mm/s² or %"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
"g. 100%), it will be calculated based on the default acceleration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -13188,10 +13296,10 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Fan speed will be ramped up linearly from zero at layer "
|
"Fan speed will be ramped up linearly from zero at layer "
|
||||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "layer"
|
msgid "layer"
|
||||||
@@ -13613,9 +13721,9 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this to add comments into the G-code labeling print moves with what "
|
"Enable this to add comments into the G-code labeling print moves with what "
|
||||||
"object they belong to, which is useful for the Octoprint CancelObject "
|
"object they belong to, which is useful for the Octoprint CancelObject plug-"
|
||||||
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
|
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
|
||||||
"setup and Wipe into Object / Wipe into Infill."
|
"and Wipe into Object / Wipe into Infill."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Exclude objects"
|
msgid "Exclude objects"
|
||||||
@@ -13882,7 +13990,7 @@ msgstr "Ironing type"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Ironing is using small flow to print on same height of surface again to make "
|
"Ironing is using small flow to print on same height of surface again to make "
|
||||||
"flat surface more smooth. This setting controls which layer being ironed"
|
"flat surface more smooth. This setting controls which layer being ironed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ironing uses a small flow to print at the same height of a surface to make "
|
"Ironing uses a small flow to print at the same height of a surface to make "
|
||||||
"flat surfaces smoother. This setting controls which layers are being ironed."
|
"flat surfaces smoother. This setting controls which layers are being ironed."
|
||||||
@@ -14765,8 +14873,8 @@ msgid "Role base wipe speed"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
"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 "
|
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||||
"wipe action."
|
"wipe action."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -14974,7 +15082,7 @@ msgid ""
|
|||||||
"timelapse video when printing completes. If smooth mode is selected, the "
|
"timelapse video when printing completes. If smooth mode is selected, the "
|
||||||
"toolhead will move to the excess chute after each layer is printed and then "
|
"toolhead will move to the excess chute after each layer is printed and then "
|
||||||
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
||||||
"process of taking a snapshot, prime tower is required for smooth mode to "
|
"process of taking a snapshot, a prime tower is required for smooth mode to "
|
||||||
"wipe nozzle."
|
"wipe nozzle."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"If smooth or traditional mode is selected, a timelapse video will be "
|
"If smooth or traditional mode is selected, a timelapse video will be "
|
||||||
@@ -15494,8 +15602,8 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this option for automated chamber temperature control. This option "
|
"Enable this option for automated chamber temperature control. This option "
|
||||||
"activates the emitting of an M191 command before the "
|
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||||
"\"machine_start_gcode\"\n"
|
"\"\n"
|
||||||
" which sets the chamber temperature and waits until it is reached. In "
|
" 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 "
|
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||||
"chamber heater, if present.\n"
|
"chamber heater, if present.\n"
|
||||||
@@ -15731,6 +15839,12 @@ msgid ""
|
|||||||
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
|
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Rectangle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Rib"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Extra rib length"
|
msgid "Extra rib length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -16256,7 +16370,7 @@ msgid ""
|
|||||||
"machines in the list."
|
"machines in the list."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "downward machines settings"
|
msgid "Downward machines settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "The machine settings list needs to do downward checking."
|
msgid "The machine settings list needs to do downward checking."
|
||||||
@@ -16287,8 +16401,8 @@ msgid "Debug level"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||||
"5:trace\n"
|
"trace\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Enable timelapse for print"
|
msgid "Enable timelapse for print"
|
||||||
@@ -16876,10 +16990,6 @@ msgstr ""
|
|||||||
msgid "create new preset failed."
|
msgid "create new preset failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, c-format, boost-format
|
|
||||||
msgid "The selected preset: %s is not found."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid "Could not find parameter: %s."
|
msgid "Could not find parameter: %s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -17483,6 +17593,23 @@ msgstr ""
|
|||||||
msgid "Input shaper type"
|
msgid "Input shaper type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Please ensure the selected type is compatible with your firmware version."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Marlin version => 2.1.2\n"
|
||||||
|
"Fixed-Time motion not yet implemented."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Klipper version => 0.9.0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"RepRap firmware version => 3.4.0\n"
|
||||||
|
"Check your firmware documentation for supported shaper types."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency (Start / End): "
|
msgid "Frequency (Start / End): "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -17517,6 +17644,9 @@ msgstr ""
|
|||||||
msgid "Input shaping Damp test"
|
msgid "Input shaping Damp test"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Check firmware compatibility."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency: "
|
msgid "Frequency: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -17837,8 +17967,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||||
"selected\".\n"
|
"\".\n"
|
||||||
"To add preset for more printers, please go to printer selection"
|
"To add preset for more printers, please go to printer selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -17884,9 +18014,6 @@ msgstr ""
|
|||||||
msgid "Can't find my nozzle diameter"
|
msgid "Can't find my nozzle diameter"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Rectangle"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Printable Space"
|
msgid "Printable Space"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -19088,6 +19215,127 @@ msgstr ""
|
|||||||
msgid "More Colors"
|
msgid "More Colors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Network Plug-in Update Available"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bambu Network Plug-in Required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
|
||||||
|
"and remote printing."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Error: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Version to install:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Download and Install"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip for Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "A new version of the Bambu Network Plug-in is available."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Current version: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update to version:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Remind Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Don't Ask Again"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The Bambu Network Plug-in has been installed successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"A restart is required to load the new plug-in. Would you like to restart now?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "NO RAMMING AT ALL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Volumetric speed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Step file import parameters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Smaller linear and angular deflections result in higher-quality "
|
||||||
|
"transformations but increase the processing time."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Linear Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Angle Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Split compound and compsolid into multiple objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Number of triangular facets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Calculating, please wait..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. "
|
||||||
|
"Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament model is unknown. Still using the previous filament preset."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. A "
|
||||||
|
"random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. A random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: resources/data/hints.ini: [hint:Precise wall]
|
#: resources/data/hints.ini: [hint:Precise wall]
|
||||||
msgid ""
|
msgid ""
|
||||||
"Precise wall\n"
|
"Precise wall\n"
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -6,7 +6,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Orca Slicer\n"
|
"Project-Id-Version: Orca Slicer\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
|
||||||
"PO-Revision-Date: \n"
|
"PO-Revision-Date: \n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Guislain Cyril, Thomas Lété\n"
|
"Language-Team: Guislain Cyril, Thomas Lété\n"
|
||||||
@@ -17,26 +17,6 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n==0 || n==1) ? 0 : 1;\n"
|
"Plural-Forms: nplurals=2; plural=(n==0 || n==1) ? 0 : 1;\n"
|
||||||
"X-Generator: Poedit 3.6\n"
|
"X-Generator: Poedit 3.6\n"
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. "
|
|
||||||
"Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament model is unknown. Still using the previous filament preset."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. A "
|
|
||||||
"random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. A random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "right"
|
msgid "right"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1603,6 +1583,30 @@ msgstr "Distance parallèle :"
|
|||||||
msgid "Flip by Face 2"
|
msgid "Flip by Face 2"
|
||||||
msgstr "Retournement par la Face 2"
|
msgstr "Retournement par la Face 2"
|
||||||
|
|
||||||
|
msgid "Assemble"
|
||||||
|
msgstr "Assembler"
|
||||||
|
|
||||||
|
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "(Moving)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Point and point assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"It is recommended to assemble the objects first,\n"
|
||||||
|
"because the objects is restriced to bed \n"
|
||||||
|
"and only parts can be lifted."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Face and face assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Notice"
|
msgid "Notice"
|
||||||
msgstr "Remarque"
|
msgstr "Remarque"
|
||||||
|
|
||||||
@@ -1645,6 +1649,54 @@ msgstr ""
|
|||||||
msgid "Based on PrusaSlicer and BambuStudio"
|
msgid "Based on PrusaSlicer and BambuStudio"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "STEP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "STL files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "OBJ files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "AMF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Gcode 3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "G-code files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Supported files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "ZIP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Project files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Known files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "INI files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "SVG files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Texture"
|
||||||
|
msgstr "Texture"
|
||||||
|
|
||||||
|
msgid "Masked SLA files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Draco files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
||||||
"It will be appreciated if you report the issue to our team."
|
"It will be appreciated if you report the issue to our team."
|
||||||
@@ -1673,10 +1725,10 @@ msgstr "Orca Slicer a reçu une exception non gérée : %1%"
|
|||||||
msgid "Untitled"
|
msgid "Untitled"
|
||||||
msgstr "Sans titre"
|
msgstr "Sans titre"
|
||||||
|
|
||||||
msgid "Reloading network plugin..."
|
msgid "Reloading network plug-in..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Network Plugin"
|
msgid "Downloading Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Bambu Network Plug-in"
|
msgid "Downloading Bambu Network Plug-in"
|
||||||
@@ -1773,6 +1825,9 @@ msgstr "Choisissez un fichier ZIP"
|
|||||||
msgid "Choose one file (GCODE/3MF):"
|
msgid "Choose one file (GCODE/3MF):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Ext"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Some presets are modified."
|
msgid "Some presets are modified."
|
||||||
msgstr "Certains préréglages sont modifiés."
|
msgstr "Certains préréglages sont modifiés."
|
||||||
|
|
||||||
@@ -1834,7 +1889,7 @@ msgid ""
|
|||||||
"access, enabling full functionality with OrcaSlicer."
|
"access, enabling full functionality with OrcaSlicer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network Plugin Restriction"
|
msgid "Network Plug-in Restriction"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Privacy Policy Update"
|
msgid "Privacy Policy Update"
|
||||||
@@ -2072,6 +2127,9 @@ msgstr ""
|
|||||||
"Oui - Modifier ces paramètres automatiquement\n"
|
"Oui - Modifier ces paramètres automatiquement\n"
|
||||||
"Non - Ne pas modifier ces paramètres pour moi"
|
"Non - Ne pas modifier ces paramètres pour moi"
|
||||||
|
|
||||||
|
msgid "Suggestion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Texte"
|
msgstr "Texte"
|
||||||
|
|
||||||
@@ -2182,9 +2240,6 @@ msgstr "Convertir en mètre"
|
|||||||
msgid "Restore to meters"
|
msgid "Restore to meters"
|
||||||
msgstr "Restaurer au compteur"
|
msgstr "Restaurer au compteur"
|
||||||
|
|
||||||
msgid "Assemble"
|
|
||||||
msgstr "Assembler"
|
|
||||||
|
|
||||||
msgid "Assemble the selected objects to an object with multiple parts"
|
msgid "Assemble the selected objects to an object with multiple parts"
|
||||||
msgstr "Assembler les objets sélectionnés à un objet en plusieurs parties"
|
msgstr "Assembler les objets sélectionnés à un objet en plusieurs parties"
|
||||||
|
|
||||||
@@ -2698,6 +2753,10 @@ msgstr "Impression multicolore"
|
|||||||
msgid "Line Type"
|
msgid "Line Type"
|
||||||
msgstr "Type de ligne"
|
msgstr "Type de ligne"
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "1x1 Grid: %d mm"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "More"
|
msgid "More"
|
||||||
msgstr "Plus"
|
msgstr "Plus"
|
||||||
|
|
||||||
@@ -2815,8 +2874,8 @@ msgstr "Vérifiez la connexion réseau entre l'imprimante et Studio."
|
|||||||
msgid "Connecting..."
|
msgid "Connecting..."
|
||||||
msgstr "Connexion…"
|
msgstr "Connexion…"
|
||||||
|
|
||||||
msgid "Auto-refill"
|
msgid "Auto Refill"
|
||||||
msgstr ""
|
msgstr "Recharge Automatique"
|
||||||
|
|
||||||
msgid "Load"
|
msgid "Load"
|
||||||
msgstr "Charger"
|
msgstr "Charger"
|
||||||
@@ -3217,6 +3276,38 @@ msgid ""
|
|||||||
"Storage before sending to printer."
|
"Storage before sending to printer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossCreateObjectJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text object"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossUpdateJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Created text volume is empty. Change text or font."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for CreateSurfaceVolumeJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for UseSurfaceJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRN: This is the title of the action appearing in undo/redo stack.
|
||||||
|
#. It is same for Text and SVG.
|
||||||
|
msgid "Emboss attribute change"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text Volume"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Font doesn't have any shape for given text."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "There is no valid surface for text projection."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Thermal Preconditioning for first layer optimization"
|
msgid "Thermal Preconditioning for first layer optimization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3547,9 +3638,6 @@ msgstr ""
|
|||||||
msgid "Nozzle"
|
msgid "Nozzle"
|
||||||
msgstr "Buse"
|
msgstr "Buse"
|
||||||
|
|
||||||
msgid "Ext"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
||||||
@@ -3617,9 +3705,6 @@ msgstr "Imprimer avec du filament de l'AMS"
|
|||||||
msgid "Print with filaments mounted on the back of the chassis"
|
msgid "Print with filaments mounted on the back of the chassis"
|
||||||
msgstr "Impression avec du filament de la bobine externe"
|
msgstr "Impression avec du filament de la bobine externe"
|
||||||
|
|
||||||
msgid "Auto Refill"
|
|
||||||
msgstr "Recharge Automatique"
|
|
||||||
|
|
||||||
msgid "Left"
|
msgid "Left"
|
||||||
msgstr "Gauche"
|
msgstr "Gauche"
|
||||||
|
|
||||||
@@ -3633,7 +3718,7 @@ msgstr ""
|
|||||||
"Lorsque le filament actuel est épuisé, l'imprimante\n"
|
"Lorsque le filament actuel est épuisé, l'imprimante\n"
|
||||||
"continue d'imprimer dans l'ordre suivant."
|
"continue d'imprimer dans l'ordre suivant."
|
||||||
|
|
||||||
msgid "Identical filament: same brand, type and color"
|
msgid "Identical filament: same brand, type and color."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Group"
|
msgid "Group"
|
||||||
@@ -3775,8 +3860,8 @@ msgid "Calibration"
|
|||||||
msgstr "Calibration"
|
msgstr "Calibration"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Failed to download the plug-in. Please check your firewall settings and vpn "
|
"Failed to download the plug-in. Please check your firewall settings and VPN "
|
||||||
"software, check and retry."
|
"software and retry."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Échec du téléchargement du plug-in. Veuillez vérifier les paramètres de "
|
"Échec du téléchargement du plug-in. Veuillez vérifier les paramètres de "
|
||||||
"votre pare-feu et votre logiciel VPN puis réessayer."
|
"votre pare-feu et votre logiciel VPN puis réessayer."
|
||||||
@@ -3791,8 +3876,8 @@ msgid "Click here to see more info"
|
|||||||
msgstr "cliquez ici pour voir plus d'informations"
|
msgstr "cliquez ici pour voir plus d'informations"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The network plugin was installed but could not be loaded. Please restart the "
|
"The network plug-in was installed but could not be loaded. Please restart "
|
||||||
"application."
|
"the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Restart Required"
|
msgid "Restart Required"
|
||||||
@@ -3966,9 +4051,6 @@ msgstr "Charger une forme depuis un STL …"
|
|||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Réglages"
|
msgstr "Réglages"
|
||||||
|
|
||||||
msgid "Texture"
|
|
||||||
msgstr "Texture"
|
|
||||||
|
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Retirer"
|
msgstr "Retirer"
|
||||||
|
|
||||||
@@ -4167,6 +4249,7 @@ msgstr ""
|
|||||||
"seam_slope_start_height doit être inférieur à la hauteur de couche.\n"
|
"seam_slope_start_height doit être inférieur à la hauteur de couche.\n"
|
||||||
"Remise à 0."
|
"Remise à 0."
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Lock depth should smaller than skin depth.\n"
|
"Lock depth should smaller than skin depth.\n"
|
||||||
"Reset to 50% of skin depth."
|
"Reset to 50% of skin depth."
|
||||||
@@ -4788,6 +4871,9 @@ msgstr ""
|
|||||||
msgid "Fan speed"
|
msgid "Fan speed"
|
||||||
msgstr "Vitesse du ventilateur"
|
msgstr "Vitesse du ventilateur"
|
||||||
|
|
||||||
|
msgid "°C"
|
||||||
|
msgstr "°C"
|
||||||
|
|
||||||
msgid "Time"
|
msgid "Time"
|
||||||
msgstr "Durée"
|
msgstr "Durée"
|
||||||
|
|
||||||
@@ -4944,8 +5030,8 @@ msgstr "Vitesse réelle (mm/s)"
|
|||||||
msgid "Fan Speed (%)"
|
msgid "Fan Speed (%)"
|
||||||
msgstr "Vitesse du ventilateur (%)"
|
msgstr "Vitesse du ventilateur (%)"
|
||||||
|
|
||||||
msgid "Temperature (℃)"
|
msgid "Temperature (°C)"
|
||||||
msgstr "Température (℃)"
|
msgstr "Température (°C)"
|
||||||
|
|
||||||
msgid "Volumetric flow rate (mm³/s)"
|
msgid "Volumetric flow rate (mm³/s)"
|
||||||
msgstr "Débit volumétrique (mm³/s)"
|
msgstr "Débit volumétrique (mm³/s)"
|
||||||
@@ -5263,7 +5349,7 @@ msgstr "Le volume:"
|
|||||||
msgid "Size:"
|
msgid "Size:"
|
||||||
msgstr "Taille:"
|
msgstr "Taille:"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||||
"separate the conflicted objects farther (%s <-> %s)."
|
"separate the conflicted objects farther (%s <-> %s)."
|
||||||
@@ -5336,7 +5422,7 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
||||||
"mixing in models. Please redjust flushing settings."
|
"mixing in models. Please readjust flushing settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Click Wiki for help."
|
msgid "Click Wiki for help."
|
||||||
@@ -6663,6 +6749,9 @@ msgstr ""
|
|||||||
"Au moins un enregistrement d’impression réussi de ce profil\n"
|
"Au moins un enregistrement d’impression réussi de ce profil\n"
|
||||||
"d’impression est requis pour donner une note positive (4 ou 5 étoiles)."
|
"d’impression est requis pour donner une note positive (4 ou 5 étoiles)."
|
||||||
|
|
||||||
|
msgid "click to add machine"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr "État"
|
msgstr "État"
|
||||||
|
|
||||||
@@ -6673,6 +6762,14 @@ msgstr ""
|
|||||||
msgid "Assistant(HMS)"
|
msgid "Assistant(HMS)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s (%s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Don't show again"
|
msgid "Don't show again"
|
||||||
msgstr "Ne plus afficher"
|
msgstr "Ne plus afficher"
|
||||||
|
|
||||||
@@ -7050,7 +7147,7 @@ msgstr ""
|
|||||||
msgid "Unavailable while heating maintenance function is on."
|
msgid "Unavailable while heating maintenance function is on."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Idel Heating Protection"
|
msgid "Idle Heating Protection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
||||||
@@ -7571,7 +7668,7 @@ msgid "Please select a file"
|
|||||||
msgstr "Veuillez sélectionner un fichier"
|
msgstr "Veuillez sélectionner un fichier"
|
||||||
|
|
||||||
msgid "Do you want to replace it"
|
msgid "Do you want to replace it"
|
||||||
msgstr "Voulez-vous le remplacer ?"
|
msgstr "Voulez-vous le remplacer"
|
||||||
|
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Message"
|
msgstr "Message"
|
||||||
@@ -7605,7 +7702,8 @@ msgid "Please resolve the slicing errors and publish again."
|
|||||||
msgstr "Veuillez résoudre les erreurs de découpage et republier."
|
msgstr "Veuillez résoudre les erreurs de découpage et republier."
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Network Plug-in is not detected. Network related features are unavailable."
|
"The network plug-in was not detected. Network related features are "
|
||||||
|
"unavailable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Le plug-in réseau n'est pas détecté. Les fonctionnalités liées au réseau ne "
|
"Le plug-in réseau n'est pas détecté. Les fonctionnalités liées au réseau ne "
|
||||||
"sont pas disponibles."
|
"sont pas disponibles."
|
||||||
@@ -8203,7 +8301,7 @@ msgstr ""
|
|||||||
msgid "filaments"
|
msgid "filaments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
msgid "Optimizes filament area maximum height by chosen filament count."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Features"
|
msgid "Features"
|
||||||
@@ -8409,40 +8507,40 @@ msgstr ""
|
|||||||
msgid "Color only"
|
msgid "Color only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin"
|
msgid "Network plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Enable network plugin"
|
msgid "Enable network plug-in"
|
||||||
msgstr "Activer le plug-in réseau"
|
msgstr "Activer le plug-in réseau"
|
||||||
|
|
||||||
msgid "Network plugin version"
|
msgid "Network plug-in version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Select the network plugin version to use"
|
msgid "Select the network plug-in version to use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "(Latest)"
|
msgid "(Latest)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin switched successfully."
|
msgid "Network plug-in switched successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to load network plugin. Please restart the application."
|
msgid "Failed to load network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You've selected network plugin version %s.\n"
|
"You've selected network plug-in version %s.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Would you like to download and install this version now?\n"
|
"Would you like to download and install this version now?\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Note: The application may need to restart after installation."
|
"Note: The application may need to restart after installation."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Download Network Plugin"
|
msgid "Download Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Associate files to OrcaSlicer"
|
msgid "Associate files to OrcaSlicer"
|
||||||
@@ -8510,19 +8608,16 @@ msgstr "déboguer"
|
|||||||
msgid "trace"
|
msgid "trace"
|
||||||
msgstr "tracé"
|
msgstr "tracé"
|
||||||
|
|
||||||
msgid "Network Plugin"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Reload"
|
msgid "Reload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload the network plugin without restarting the application"
|
msgid "Reload the network plug-in without restarting the application"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin reloaded successfully."
|
msgid "Network plug-in reloaded successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to reload network plugin. Please restart the application."
|
msgid "Failed to reload network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload Failed"
|
msgid "Reload Failed"
|
||||||
@@ -8744,8 +8839,11 @@ msgstr "La publication a été annulée"
|
|||||||
msgid "Slicing Plate 1"
|
msgid "Slicing Plate 1"
|
||||||
msgstr "Découper Plaque 1"
|
msgstr "Découper Plaque 1"
|
||||||
|
|
||||||
msgid "Packing data to 3mf"
|
msgid "Packing data to 3MF"
|
||||||
msgstr "Collecte des données 3mf"
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Uploading data"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Jump to webpage"
|
msgid "Jump to webpage"
|
||||||
msgstr "Ouvrir la page internet"
|
msgstr "Ouvrir la page internet"
|
||||||
@@ -9069,8 +9167,8 @@ msgstr "Plaque lisse haute température"
|
|||||||
msgid "Textured PEI Plate"
|
msgid "Textured PEI Plate"
|
||||||
msgstr "Plaque PEI texturée"
|
msgstr "Plaque PEI texturée"
|
||||||
|
|
||||||
msgid "Cool Plate (Supertack)"
|
msgid "Cool Plate (SuperTack)"
|
||||||
msgstr ""
|
msgstr "Cool Plate (SuperTack)"
|
||||||
|
|
||||||
msgid "Click here if you can't connect to the printer"
|
msgid "Click here if you can't connect to the printer"
|
||||||
msgstr "Connexion impossible à l’imprimante"
|
msgstr "Connexion impossible à l’imprimante"
|
||||||
@@ -9409,7 +9507,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection. There may be flaws on the "
|
"A prime tower is required for clumping detection. There may be flaws on the "
|
||||||
"model without prime tower. Do you still want to enable clumping detection?"
|
"model without prime tower. Do you still want to enable clumping detection?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -9532,8 +9630,8 @@ msgstr ""
|
|||||||
msgid ""
|
msgid ""
|
||||||
"When recording timelapse without toolhead, it is recommended to add a "
|
"When recording timelapse without toolhead, it is recommended to add a "
|
||||||
"\"Timelapse Wipe Tower\" \n"
|
"\"Timelapse Wipe Tower\" \n"
|
||||||
"by right-click the empty position of build plate and choose \"Add "
|
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
"\"->\"Timelapse Wipe Tower\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Lorsque vous enregistrez un timelapse sans tête d’outil, il est recommandé "
|
"Lorsque vous enregistrez un timelapse sans tête d’outil, il est recommandé "
|
||||||
"d’ajouter une \"Tour d’essuyage timelapse\".\n"
|
"d’ajouter une \"Tour d’essuyage timelapse\".\n"
|
||||||
@@ -9755,9 +9853,6 @@ msgstr "Température d'impression"
|
|||||||
msgid "Nozzle temperature when printing"
|
msgid "Nozzle temperature when printing"
|
||||||
msgstr "Température de la buse lors de l'impression"
|
msgstr "Température de la buse lors de l'impression"
|
||||||
|
|
||||||
msgid "Cool Plate (SuperTack)"
|
|
||||||
msgstr "Cool Plate (SuperTack)"
|
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
||||||
"means the filament does not support printing on the Cool Plate SuperTack."
|
"means the filament does not support printing on the Cool Plate SuperTack."
|
||||||
@@ -10235,6 +10330,12 @@ msgstr "Afficher tous les préréglages (y compris incompatibles)"
|
|||||||
msgid "Select presets to compare"
|
msgid "Select presets to compare"
|
||||||
msgstr "Sélectionnez les préréglages à comparer"
|
msgstr "Sélectionnez les préréglages à comparer"
|
||||||
|
|
||||||
|
msgid "Left Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Right Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can only transfer to current active profile because it has been modified."
|
"You can only transfer to current active profile because it has been modified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -10674,6 +10775,12 @@ msgstr "Cliquez ici pour le télécharger."
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "Connexion"
|
msgstr "Connexion"
|
||||||
|
|
||||||
|
msgid "[Action Required] "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "[Action Required]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "The configuration package is changed in previous Config Guide"
|
msgid "The configuration package is changed in previous Config Guide"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Le package de configuration est modifié dans le guide de configuration "
|
"Le package de configuration est modifié dans le guide de configuration "
|
||||||
@@ -11411,7 +11518,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection; otherwise, there may be "
|
"A prime tower is required for clumping detection; otherwise, there may be "
|
||||||
"flaws on the model."
|
"flaws on the model."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -13033,7 +13140,7 @@ msgid ""
|
|||||||
"models\n"
|
"models\n"
|
||||||
"3. No filtering - creates internal bridges on every potential internal "
|
"3. No filtering - creates internal bridges on every potential internal "
|
||||||
"overhang. This option is useful for heavily slanted top surface models; "
|
"overhang. This option is useful for heavily slanted top surface models; "
|
||||||
"however, in most cases, it creates too many unnecessary bridges"
|
"however, in most cases, it creates too many unnecessary bridges."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Cette option peut aider à réduire le gonflement des surfaces supérieures "
|
"Cette option peut aider à réduire le gonflement des surfaces supérieures "
|
||||||
"dans les modèles fortement inclinés ou courbés.\n"
|
"dans les modèles fortement inclinés ou courbés.\n"
|
||||||
@@ -13572,7 +13679,7 @@ msgid ""
|
|||||||
"less acceleration you print, the larger the range of acceptable PA values. "
|
"less acceleration you print, the larger the range of acceptable PA values. "
|
||||||
"If no difference is visible, use the PA value from the faster test\n"
|
"If no difference is visible, use the PA value from the faster test\n"
|
||||||
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
||||||
"here and save your filament profile"
|
"here and save your filament profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ajouter des séries de valeurs d'avance de pression (PA), les vitesses de "
|
"Ajouter des séries de valeurs d'avance de pression (PA), les vitesses de "
|
||||||
"débit volumétrique et les accélérations auxquelles elles ont été mesurées, "
|
"débit volumétrique et les accélérations auxquelles elles ont été mesurées, "
|
||||||
@@ -14390,8 +14497,8 @@ msgid "mm/s² or %"
|
|||||||
msgstr "mm/s² ou %"
|
msgstr "mm/s² ou %"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
"g. 100%), it will be calculated based on the default acceleration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Accélération du remplissage interne. Si la valeur est exprimée en "
|
"Accélération du remplissage interne. Si la valeur est exprimée en "
|
||||||
"pourcentage (par exemple 100%), elle sera calculée en fonction de "
|
"pourcentage (par exemple 100%), elle sera calculée en fonction de "
|
||||||
@@ -14513,10 +14620,10 @@ msgstr "Ventilateur à pleine vitesse à la couche"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Fan speed will be ramped up linearly from zero at layer "
|
"Fan speed will be ramped up linearly from zero at layer "
|
||||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"La vitesse du ventilateur augmentera de manière linéaire à partir de zéro à "
|
"La vitesse du ventilateur augmentera de manière linéaire à partir de zéro à "
|
||||||
"la couche \"close_fan_the_first_x_layers\" jusqu’au maximum à la couche "
|
"la couche \"close_fan_the_first_x_layers\" jusqu’au maximum à la couche "
|
||||||
@@ -15021,9 +15128,9 @@ msgstr "Label Objects"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this to add comments into the G-code labeling print moves with what "
|
"Enable this to add comments into the G-code labeling print moves with what "
|
||||||
"object they belong to, which is useful for the Octoprint CancelObject "
|
"object they belong to, which is useful for the Octoprint CancelObject plug-"
|
||||||
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
|
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
|
||||||
"setup and Wipe into Object / Wipe into Infill."
|
"and Wipe into Object / Wipe into Infill."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Permet d’ajouter des commentaires dans le G-code sur les mouvements "
|
"Permet d’ajouter des commentaires dans le G-code sur les mouvements "
|
||||||
"d’impression de l’objet auquel ils appartiennent, ce qui est utile pour le "
|
"d’impression de l’objet auquel ils appartiennent, ce qui est utile pour le "
|
||||||
@@ -15341,11 +15448,11 @@ msgstr "Type de lissage"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Ironing is using small flow to print on same height of surface again to make "
|
"Ironing is using small flow to print on same height of surface again to make "
|
||||||
"flat surface more smooth. This setting controls which layer being ironed"
|
"flat surface more smooth. This setting controls which layer being ironed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Le lissage utilise un petit débit pour imprimer à nouveau sur la même "
|
"Le lissage utilise un petit débit pour imprimer à nouveau sur la même "
|
||||||
"hauteur de surface pour rendre la surface plane plus lisse. Ce paramètre "
|
"hauteur de surface pour rendre la surface plane plus lisse. Ce paramètre "
|
||||||
"contrôle quelle couche est repassée"
|
"contrôle quelle couche est repassée."
|
||||||
|
|
||||||
msgid "No ironing"
|
msgid "No ironing"
|
||||||
msgstr "Pas de lissage"
|
msgstr "Pas de lissage"
|
||||||
@@ -16413,8 +16520,8 @@ msgid "Role base wipe speed"
|
|||||||
msgstr "Vitesse d’essuyage basée sur la vitesse d’extrusion"
|
msgstr "Vitesse d’essuyage basée sur la vitesse d’extrusion"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
"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 "
|
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||||
"wipe action."
|
"wipe action."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -16689,7 +16796,7 @@ msgid ""
|
|||||||
"timelapse video when printing completes. If smooth mode is selected, the "
|
"timelapse video when printing completes. If smooth mode is selected, the "
|
||||||
"toolhead will move to the excess chute after each layer is printed and then "
|
"toolhead will move to the excess chute after each layer is printed and then "
|
||||||
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
||||||
"process of taking a snapshot, prime tower is required for smooth mode to "
|
"process of taking a snapshot, a prime tower is required for smooth mode to "
|
||||||
"wipe nozzle."
|
"wipe nozzle."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Si le mode fluide ou traditionnel est sélectionné, une vidéo en timelapse "
|
"Si le mode fluide ou traditionnel est sélectionné, une vidéo en timelapse "
|
||||||
@@ -16838,8 +16945,8 @@ msgid ""
|
|||||||
"Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to "
|
"Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to "
|
||||||
"close all holes in the model."
|
"close all holes in the model."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Utilisez « Pair-impair » pour les modèles d'avion 3DLabPrint. Utilisez "
|
"Utilisez « Pair-impair » pour les modèles d'avion 3DLabPrint. Utilisez « "
|
||||||
"« Fermer les trous » pour fermer tous les trous du modèle."
|
"Fermer les trous » pour fermer tous les trous du modèle."
|
||||||
|
|
||||||
msgid "Regular"
|
msgid "Regular"
|
||||||
msgstr "Standard"
|
msgstr "Standard"
|
||||||
@@ -17299,8 +17406,8 @@ msgstr "Activer le contrôle de la température"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this option for automated chamber temperature control. This option "
|
"Enable this option for automated chamber temperature control. This option "
|
||||||
"activates the emitting of an M191 command before the "
|
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||||
"\"machine_start_gcode\"\n"
|
"\"\n"
|
||||||
" which sets the chamber temperature and waits until it is reached. In "
|
" 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 "
|
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||||
"chamber heater, if present.\n"
|
"chamber heater, if present.\n"
|
||||||
@@ -17606,6 +17713,12 @@ msgid ""
|
|||||||
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
|
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Rectangle"
|
||||||
|
msgstr "Rectangle"
|
||||||
|
|
||||||
|
msgid "Rib"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Extra rib length"
|
msgid "Extra rib length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -17840,8 +17953,8 @@ msgid ""
|
|||||||
"Wipe tower is only compatible with relative mode. It is recommended on most "
|
"Wipe tower is only compatible with relative mode. It is recommended on most "
|
||||||
"printers. Default is checked."
|
"printers. Default is checked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"L’extrusion relative est recommandée lors de l’utilisation de l’option "
|
"L’extrusion relative est recommandée lors de l’utilisation de l’option « "
|
||||||
"« label_objects ». Certains extrudeurs fonctionnent mieux avec cette option "
|
"label_objects ». Certains extrudeurs fonctionnent mieux avec cette option "
|
||||||
"non verrouillée (mode d’extrusion absolu). La tour d’essuyage n’est "
|
"non verrouillée (mode d’extrusion absolu). La tour d’essuyage n’est "
|
||||||
"compatible qu’avec le mode relatif. Il est recommandé sur la plupart des "
|
"compatible qu’avec le mode relatif. Il est recommandé sur la plupart des "
|
||||||
"imprimantes. L’option par défaut est cochée"
|
"imprimantes. L’option par défaut est cochée"
|
||||||
@@ -18224,8 +18337,8 @@ msgstr ""
|
|||||||
"si l’option est activée, vérifier si la machine actuelle est compatible avec "
|
"si l’option est activée, vérifier si la machine actuelle est compatible avec "
|
||||||
"les machines de la liste."
|
"les machines de la liste."
|
||||||
|
|
||||||
msgid "downward machines settings"
|
msgid "Downward machines settings"
|
||||||
msgstr ""
|
msgstr "Réglages des machines descendantes"
|
||||||
|
|
||||||
msgid "The machine settings list needs to do downward checking."
|
msgid "The machine settings list needs to do downward checking."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -18262,11 +18375,11 @@ msgid "Debug level"
|
|||||||
msgstr "Niveau de débogage"
|
msgstr "Niveau de débogage"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||||
"5:trace\n"
|
"trace\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Définit le niveau de journalisation du débogage. 0 :fatal, 1 :erreur, "
|
"Définit le niveau de journalisation du débogage. 0 :fatal, 1 :erreur, 2 :"
|
||||||
"2 :avertissement, 3 :info, 4 :débogage, 5 :trace\n"
|
"avertissement, 3 :info, 4 :débogage, 5 :trace\n"
|
||||||
|
|
||||||
msgid "Enable timelapse for print"
|
msgid "Enable timelapse for print"
|
||||||
msgstr "Activer le timelapse pour l’impression"
|
msgstr "Activer le timelapse pour l’impression"
|
||||||
@@ -18807,13 +18920,13 @@ msgstr "Le fichier fourni n'a pas pu être lu car il est vide"
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
|
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Format de fichier inconnu : le fichier d'entrée doit porter "
|
"Format de fichier inconnu : le fichier d'entrée doit porter l'extension ."
|
||||||
"l'extension .stl, .obj ou .amf (.xml)."
|
"stl, .obj ou .amf (.xml)."
|
||||||
|
|
||||||
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
|
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Format de fichier inconnu : le fichier d'entrée doit porter l'extension "
|
"Format de fichier inconnu : le fichier d'entrée doit porter "
|
||||||
".3mf, .zip ou .amf."
|
"l'extension .3mf, .zip ou .amf."
|
||||||
|
|
||||||
msgid "load_obj: failed to parse"
|
msgid "load_obj: failed to parse"
|
||||||
msgstr "load_obj : échec de l'analyse"
|
msgstr "load_obj : échec de l'analyse"
|
||||||
@@ -18931,10 +19044,6 @@ msgstr "Le nom est le même qu’un autre nom de préréglage existant"
|
|||||||
msgid "create new preset failed."
|
msgid "create new preset failed."
|
||||||
msgstr "la création d’un nouveau préréglage a échoué."
|
msgstr "la création d’un nouveau préréglage a échoué."
|
||||||
|
|
||||||
#, c-format, boost-format
|
|
||||||
msgid "The selected preset: %s is not found."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid "Could not find parameter: %s."
|
msgid "Could not find parameter: %s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -19627,6 +19736,23 @@ msgstr ""
|
|||||||
msgid "Input shaper type"
|
msgid "Input shaper type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Please ensure the selected type is compatible with your firmware version."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Marlin version => 2.1.2\n"
|
||||||
|
"Fixed-Time motion not yet implemented."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Klipper version => 0.9.0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"RepRap firmware version => 3.4.0\n"
|
||||||
|
"Check your firmware documentation for supported shaper types."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency (Start / End): "
|
msgid "Frequency (Start / End): "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -19661,6 +19787,9 @@ msgstr ""
|
|||||||
msgid "Input shaping Damp test"
|
msgid "Input shaping Damp test"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Check firmware compatibility."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency: "
|
msgid "Frequency: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -20005,8 +20134,8 @@ msgstr ""
|
|||||||
"Voulez-vous le réécrire ?"
|
"Voulez-vous le réécrire ?"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||||
"selected\".\n"
|
"\".\n"
|
||||||
"To add preset for more printers, please go to printer selection"
|
"To add preset for more printers, please go to printer selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Nous renommerions les préréglages en « Vendor Type Serial @printer you "
|
"Nous renommerions les préréglages en « Vendor Type Serial @printer you "
|
||||||
@@ -20056,9 +20185,6 @@ msgstr ""
|
|||||||
msgid "Can't find my nozzle diameter"
|
msgid "Can't find my nozzle diameter"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Rectangle"
|
|
||||||
msgstr "Rectangle"
|
|
||||||
|
|
||||||
msgid "Printable Space"
|
msgid "Printable Space"
|
||||||
msgstr "Espace imprimable"
|
msgstr "Espace imprimable"
|
||||||
|
|
||||||
@@ -21434,6 +21560,127 @@ msgstr ""
|
|||||||
msgid "More Colors"
|
msgid "More Colors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Network Plug-in Update Available"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bambu Network Plug-in Required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
|
||||||
|
"and remote printing."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Error: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Version to install:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Download and Install"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip for Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "A new version of the Bambu Network Plug-in is available."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Current version: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update to version:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Remind Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Don't Ask Again"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The Bambu Network Plug-in has been installed successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"A restart is required to load the new plug-in. Would you like to restart now?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "NO RAMMING AT ALL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Volumetric speed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Step file import parameters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Smaller linear and angular deflections result in higher-quality "
|
||||||
|
"transformations but increase the processing time."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Linear Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Angle Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Split compound and compsolid into multiple objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Number of triangular facets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Calculating, please wait..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. "
|
||||||
|
"Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament model is unknown. Still using the previous filament preset."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. A "
|
||||||
|
"random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. A random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: resources/data/hints.ini: [hint:Precise wall]
|
#: resources/data/hints.ini: [hint:Precise wall]
|
||||||
msgid ""
|
msgid ""
|
||||||
"Precise wall\n"
|
"Precise wall\n"
|
||||||
@@ -21831,6 +22078,9 @@ msgstr ""
|
|||||||
"déformer, tels que l’ABS, une augmentation appropriée de la température du "
|
"déformer, tels que l’ABS, une augmentation appropriée de la température du "
|
||||||
"plateau chauffant peut réduire la probabilité de déformation?"
|
"plateau chauffant peut réduire la probabilité de déformation?"
|
||||||
|
|
||||||
|
#~ msgid "Packing data to 3mf"
|
||||||
|
#~ msgstr "Collecte des données 3mf"
|
||||||
|
|
||||||
#~ msgid "Line pattern of support."
|
#~ msgid "Line pattern of support."
|
||||||
#~ msgstr "Motif de ligne de support"
|
#~ msgstr "Motif de ligne de support"
|
||||||
|
|
||||||
@@ -21841,9 +22091,6 @@ msgstr ""
|
|||||||
#~ "Échec de l'installation du plug-in. Veuillez vérifier s'il est bloqué ou "
|
#~ "Échec de l'installation du plug-in. Veuillez vérifier s'il est bloqué ou "
|
||||||
#~ "s'il a été supprimé par un logiciel anti-virus."
|
#~ "s'il a été supprimé par un logiciel anti-virus."
|
||||||
|
|
||||||
#~ msgid "°C"
|
|
||||||
#~ msgstr "°C"
|
|
||||||
|
|
||||||
#~ msgid "travel"
|
#~ msgid "travel"
|
||||||
#~ msgstr "déplacement"
|
#~ msgstr "déplacement"
|
||||||
|
|
||||||
@@ -23002,9 +23249,6 @@ msgstr ""
|
|||||||
#~ "charger les réglages du filament actualisés lors de l’utilisation d’un "
|
#~ "charger les réglages du filament actualisés lors de l’utilisation d’un "
|
||||||
#~ "filament actualisé"
|
#~ "filament actualisé"
|
||||||
|
|
||||||
#~ msgid "Downward machines settings"
|
|
||||||
#~ msgstr "réglages des machines descendantes"
|
|
||||||
|
|
||||||
#~ msgid "Load filament IDs for each object"
|
#~ msgid "Load filament IDs for each object"
|
||||||
#~ msgstr "Chargement des identifiants de filaments pour chaque objet"
|
#~ msgstr "Chargement des identifiants de filaments pour chaque objet"
|
||||||
|
|
||||||
@@ -23546,8 +23790,8 @@ msgstr ""
|
|||||||
#~ "modèle. Réglez le « seuil d’une paroi » dans les paramètres avancés ci-"
|
#~ "modèle. Réglez le « seuil d’une paroi » dans les paramètres avancés ci-"
|
||||||
#~ "dessous pour ajuster la sensibilité de ce qui est considéré comme une "
|
#~ "dessous pour ajuster la sensibilité de ce qui est considéré comme une "
|
||||||
#~ "surface supérieure. Le « seuil d’une paroi » n’est visible que si ce "
|
#~ "surface supérieure. Le « seuil d’une paroi » n’est visible que si ce "
|
||||||
#~ "paramètre est supérieur à la valeur par défaut de 0,5 ou si l’option "
|
#~ "paramètre est supérieur à la valeur par défaut de 0,5 ou si l’option « "
|
||||||
#~ "« surfaces supérieures à une paroi » est activée."
|
#~ "surfaces supérieures à une paroi » est activée."
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
@@ -24329,10 +24573,10 @@ msgstr ""
|
|||||||
#~ msgid "Test Storage Download:"
|
#~ msgid "Test Storage Download:"
|
||||||
#~ msgstr "Test du téléchargement du stockage :"
|
#~ msgstr "Test du téléchargement du stockage :"
|
||||||
|
|
||||||
#~ msgid "Test plugin download"
|
#~ msgid "Test plug-in download"
|
||||||
#~ msgstr "Test du téléchargement du plugin"
|
#~ msgstr "Test du téléchargement du plugin"
|
||||||
|
|
||||||
#~ msgid "Test Plugin Download:"
|
#~ msgid "Test Plug-in Download:"
|
||||||
#~ msgstr "Test du téléchargement du plugin :"
|
#~ msgstr "Test du téléchargement du plugin :"
|
||||||
|
|
||||||
#~ msgid "Test Storage Upload"
|
#~ msgid "Test Storage Upload"
|
||||||
@@ -24376,8 +24620,8 @@ msgstr ""
|
|||||||
#~ "thickness (top+bottom solid layers)"
|
#~ "thickness (top+bottom solid layers)"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
#~ "Ajoutez du remplissage solide à proximité des surfaces inclinées pour "
|
#~ "Ajoutez du remplissage solide à proximité des surfaces inclinées pour "
|
||||||
#~ "garantir l'épaisseur verticale de la coque (couches solides "
|
#~ "garantir l'épaisseur verticale de la coque (couches solides supérieure"
|
||||||
#~ "supérieure+inférieure)."
|
#~ "+inférieure)."
|
||||||
|
|
||||||
#~ msgid "Further reduce solid infill on walls (beta)"
|
#~ msgid "Further reduce solid infill on walls (beta)"
|
||||||
#~ msgstr "Réduire davantage le remplissage solide des parois (expérimental)"
|
#~ msgstr "Réduire davantage le remplissage solide des parois (expérimental)"
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Orca Slicer\n"
|
"Project-Id-Version: Orca Slicer\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
|
||||||
"Language: hu\n"
|
"Language: hu\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
@@ -11,26 +11,6 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n"
|
"Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n"
|
||||||
"X-Generator: Localazy (https://localazy.com)\n"
|
"X-Generator: Localazy (https://localazy.com)\n"
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. "
|
|
||||||
"Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament model is unknown. Still using the previous filament preset."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. A "
|
|
||||||
"random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. A random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "right"
|
msgid "right"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1541,6 +1521,30 @@ msgstr ""
|
|||||||
msgid "Flip by Face 2"
|
msgid "Flip by Face 2"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Assemble"
|
||||||
|
msgstr "Összeállítás"
|
||||||
|
|
||||||
|
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "(Moving)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Point and point assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"It is recommended to assemble the objects first,\n"
|
||||||
|
"because the objects is restriced to bed \n"
|
||||||
|
"and only parts can be lifted."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Face and face assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Notice"
|
msgid "Notice"
|
||||||
msgstr "Megjegyzés"
|
msgstr "Megjegyzés"
|
||||||
|
|
||||||
@@ -1581,6 +1585,54 @@ msgstr ""
|
|||||||
msgid "Based on PrusaSlicer and BambuStudio"
|
msgid "Based on PrusaSlicer and BambuStudio"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "STEP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "STL files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "OBJ files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "AMF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Gcode 3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "G-code files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Supported files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "ZIP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Project files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Known files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "INI files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "SVG files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Texture"
|
||||||
|
msgstr "Textúra"
|
||||||
|
|
||||||
|
msgid "Masked SLA files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Draco files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
||||||
"It will be appreciated if you report the issue to our team."
|
"It will be appreciated if you report the issue to our team."
|
||||||
@@ -1604,10 +1656,10 @@ msgstr ""
|
|||||||
msgid "Untitled"
|
msgid "Untitled"
|
||||||
msgstr "Névtelen"
|
msgstr "Névtelen"
|
||||||
|
|
||||||
msgid "Reloading network plugin..."
|
msgid "Reloading network plug-in..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Network Plugin"
|
msgid "Downloading Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Bambu Network Plug-in"
|
msgid "Downloading Bambu Network Plug-in"
|
||||||
@@ -1695,6 +1747,9 @@ msgstr ""
|
|||||||
msgid "Choose one file (GCODE/3MF):"
|
msgid "Choose one file (GCODE/3MF):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Ext"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Some presets are modified."
|
msgid "Some presets are modified."
|
||||||
msgstr "Néhány beállítás megváltozott."
|
msgstr "Néhány beállítás megváltozott."
|
||||||
|
|
||||||
@@ -1755,7 +1810,7 @@ msgid ""
|
|||||||
"access, enabling full functionality with OrcaSlicer."
|
"access, enabling full functionality with OrcaSlicer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network Plugin Restriction"
|
msgid "Network Plug-in Restriction"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Privacy Policy Update"
|
msgid "Privacy Policy Update"
|
||||||
@@ -1983,6 +2038,9 @@ msgid ""
|
|||||||
"No - Do not change these settings for me"
|
"No - Do not change these settings for me"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Suggestion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -2092,9 +2150,6 @@ msgstr "Átváltás méterről"
|
|||||||
msgid "Restore to meters"
|
msgid "Restore to meters"
|
||||||
msgstr "Visszaállítás méterre"
|
msgstr "Visszaállítás méterre"
|
||||||
|
|
||||||
msgid "Assemble"
|
|
||||||
msgstr "Összeállítás"
|
|
||||||
|
|
||||||
msgid "Assemble the selected objects to an object with multiple parts"
|
msgid "Assemble the selected objects to an object with multiple parts"
|
||||||
msgstr "Összeállítja a kijelölt objektumot egy több részből álló objektummá"
|
msgstr "Összeállítja a kijelölt objektumot egy több részből álló objektummá"
|
||||||
|
|
||||||
@@ -2601,6 +2656,10 @@ msgstr "Többszínű nyomtatás"
|
|||||||
msgid "Line Type"
|
msgid "Line Type"
|
||||||
msgstr "Vonaltípus"
|
msgstr "Vonaltípus"
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "1x1 Grid: %d mm"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "More"
|
msgid "More"
|
||||||
msgstr "Több"
|
msgstr "Több"
|
||||||
|
|
||||||
@@ -2718,7 +2777,7 @@ msgstr ""
|
|||||||
msgid "Connecting..."
|
msgid "Connecting..."
|
||||||
msgstr "Csatlakozás..."
|
msgstr "Csatlakozás..."
|
||||||
|
|
||||||
msgid "Auto-refill"
|
msgid "Auto Refill"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Load"
|
msgid "Load"
|
||||||
@@ -3109,6 +3168,38 @@ msgid ""
|
|||||||
"Storage before sending to printer."
|
"Storage before sending to printer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossCreateObjectJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text object"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossUpdateJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Created text volume is empty. Change text or font."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for CreateSurfaceVolumeJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for UseSurfaceJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRN: This is the title of the action appearing in undo/redo stack.
|
||||||
|
#. It is same for Text and SVG.
|
||||||
|
msgid "Emboss attribute change"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text Volume"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Font doesn't have any shape for given text."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "There is no valid surface for text projection."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Thermal Preconditioning for first layer optimization"
|
msgid "Thermal Preconditioning for first layer optimization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3432,9 +3523,6 @@ msgstr ""
|
|||||||
msgid "Nozzle"
|
msgid "Nozzle"
|
||||||
msgstr "Fúvóka"
|
msgstr "Fúvóka"
|
||||||
|
|
||||||
msgid "Ext"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
||||||
@@ -3497,9 +3585,6 @@ msgstr "Nyomtatás az AMS-ben lévő filamentekkel"
|
|||||||
msgid "Print with filaments mounted on the back of the chassis"
|
msgid "Print with filaments mounted on the back of the chassis"
|
||||||
msgstr "Nyomtatás külső tartón lévő filamenttel"
|
msgstr "Nyomtatás külső tartón lévő filamenttel"
|
||||||
|
|
||||||
msgid "Auto Refill"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Left"
|
msgid "Left"
|
||||||
msgstr "Bal"
|
msgstr "Bal"
|
||||||
|
|
||||||
@@ -3513,7 +3598,7 @@ msgstr ""
|
|||||||
"Amikor az aktuális filament elfogy, a nyomtató a következő sorrendben "
|
"Amikor az aktuális filament elfogy, a nyomtató a következő sorrendben "
|
||||||
"folytatja a nyomtatást."
|
"folytatja a nyomtatást."
|
||||||
|
|
||||||
msgid "Identical filament: same brand, type and color"
|
msgid "Identical filament: same brand, type and color."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Group"
|
msgid "Group"
|
||||||
@@ -3647,8 +3732,8 @@ msgid "Calibration"
|
|||||||
msgstr "Kalibrálás"
|
msgstr "Kalibrálás"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Failed to download the plug-in. Please check your firewall settings and vpn "
|
"Failed to download the plug-in. Please check your firewall settings and VPN "
|
||||||
"software, check and retry."
|
"software and retry."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Nem sikerült letölteni a bővítményt. Kérjük, ellenőrizd a tűzfal "
|
"Nem sikerült letölteni a bővítményt. Kérjük, ellenőrizd a tűzfal "
|
||||||
"beállításait és a VPN-szoftvert, majd próbálja meg újra."
|
"beállításait és a VPN-szoftvert, majd próbálja meg újra."
|
||||||
@@ -3663,8 +3748,8 @@ msgid "Click here to see more info"
|
|||||||
msgstr "kattints ide további információkért"
|
msgstr "kattints ide további információkért"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The network plugin was installed but could not be loaded. Please restart the "
|
"The network plug-in was installed but could not be loaded. Please restart "
|
||||||
"application."
|
"the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Restart Required"
|
msgid "Restart Required"
|
||||||
@@ -3830,9 +3915,6 @@ msgstr "Forma betöltése STL-ből..."
|
|||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Beállítások"
|
msgstr "Beállítások"
|
||||||
|
|
||||||
msgid "Texture"
|
|
||||||
msgstr "Textúra"
|
|
||||||
|
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Eltávolítás"
|
msgstr "Eltávolítás"
|
||||||
|
|
||||||
@@ -4020,6 +4102,7 @@ msgid ""
|
|||||||
"Reset to 0."
|
"Reset to 0."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Lock depth should smaller than skin depth.\n"
|
"Lock depth should smaller than skin depth.\n"
|
||||||
"Reset to 50% of skin depth."
|
"Reset to 50% of skin depth."
|
||||||
@@ -4635,6 +4718,9 @@ msgstr ""
|
|||||||
msgid "Fan speed"
|
msgid "Fan speed"
|
||||||
msgstr "Ventilátor fordulatszám"
|
msgstr "Ventilátor fordulatszám"
|
||||||
|
|
||||||
|
msgid "°C"
|
||||||
|
msgstr "°C"
|
||||||
|
|
||||||
msgid "Time"
|
msgid "Time"
|
||||||
msgstr "Idő"
|
msgstr "Idő"
|
||||||
|
|
||||||
@@ -4791,7 +4877,7 @@ msgstr "Tényleges sebesség (mm/s)"
|
|||||||
msgid "Fan Speed (%)"
|
msgid "Fan Speed (%)"
|
||||||
msgstr "Ventilátor fordulatszám (%)"
|
msgstr "Ventilátor fordulatszám (%)"
|
||||||
|
|
||||||
msgid "Temperature (℃)"
|
msgid "Temperature (°C)"
|
||||||
msgstr "Hőmérséklet (°C)"
|
msgstr "Hőmérséklet (°C)"
|
||||||
|
|
||||||
msgid "Volumetric flow rate (mm³/s)"
|
msgid "Volumetric flow rate (mm³/s)"
|
||||||
@@ -5110,7 +5196,7 @@ msgstr "Térfogat:"
|
|||||||
msgid "Size:"
|
msgid "Size:"
|
||||||
msgstr "Méret:"
|
msgstr "Méret:"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||||
"separate the conflicted objects farther (%s <-> %s)."
|
"separate the conflicted objects farther (%s <-> %s)."
|
||||||
@@ -5181,7 +5267,7 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
||||||
"mixing in models. Please redjust flushing settings."
|
"mixing in models. Please readjust flushing settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Click Wiki for help."
|
msgid "Click Wiki for help."
|
||||||
@@ -6461,6 +6547,9 @@ msgstr ""
|
|||||||
"At least one successful print record of this print profile is required \n"
|
"At least one successful print record of this print profile is required \n"
|
||||||
"to give a positive rating (4 or 5 stars)."
|
"to give a positive rating (4 or 5 stars)."
|
||||||
|
|
||||||
|
msgid "click to add machine"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr "Állapot"
|
msgstr "Állapot"
|
||||||
|
|
||||||
@@ -6471,6 +6560,14 @@ msgstr ""
|
|||||||
msgid "Assistant(HMS)"
|
msgid "Assistant(HMS)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s (%s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Don't show again"
|
msgid "Don't show again"
|
||||||
msgstr "Ne mutasd újra"
|
msgstr "Ne mutasd újra"
|
||||||
|
|
||||||
@@ -6844,7 +6941,7 @@ msgstr ""
|
|||||||
msgid "Unavailable while heating maintenance function is on."
|
msgid "Unavailable while heating maintenance function is on."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Idel Heating Protection"
|
msgid "Idle Heating Protection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
||||||
@@ -7357,7 +7454,7 @@ msgid "Please select a file"
|
|||||||
msgstr "Kérjük, válassz egy fájlt"
|
msgstr "Kérjük, válassz egy fájlt"
|
||||||
|
|
||||||
msgid "Do you want to replace it"
|
msgid "Do you want to replace it"
|
||||||
msgstr "Do you want to replace it?"
|
msgstr "Cserélni szeretné"
|
||||||
|
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Üzenet"
|
msgstr "Üzenet"
|
||||||
@@ -7391,7 +7488,8 @@ msgid "Please resolve the slicing errors and publish again."
|
|||||||
msgstr "Kérjük, orvosold a szeletelési hibákat, és próbáld meg újra."
|
msgstr "Kérjük, orvosold a szeletelési hibákat, és próbáld meg újra."
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Network Plug-in is not detected. Network related features are unavailable."
|
"The network plug-in was not detected. Network related features are "
|
||||||
|
"unavailable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Nem található a hálózati bővítmény. A hálózattal kapcsolatos szolgáltatások "
|
"Nem található a hálózati bővítmény. A hálózattal kapcsolatos szolgáltatások "
|
||||||
"nem érhetők el."
|
"nem érhetők el."
|
||||||
@@ -7947,7 +8045,7 @@ msgstr ""
|
|||||||
msgid "filaments"
|
msgid "filaments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
msgid "Optimizes filament area maximum height by chosen filament count."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Features"
|
msgid "Features"
|
||||||
@@ -8138,40 +8236,40 @@ msgstr ""
|
|||||||
msgid "Color only"
|
msgid "Color only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin"
|
msgid "Network plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Enable network plugin"
|
msgid "Enable network plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin version"
|
msgid "Network plug-in version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Select the network plugin version to use"
|
msgid "Select the network plug-in version to use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "(Latest)"
|
msgid "(Latest)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin switched successfully."
|
msgid "Network plug-in switched successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to load network plugin. Please restart the application."
|
msgid "Failed to load network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You've selected network plugin version %s.\n"
|
"You've selected network plug-in version %s.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Would you like to download and install this version now?\n"
|
"Would you like to download and install this version now?\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Note: The application may need to restart after installation."
|
"Note: The application may need to restart after installation."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Download Network Plugin"
|
msgid "Download Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Associate files to OrcaSlicer"
|
msgid "Associate files to OrcaSlicer"
|
||||||
@@ -8250,19 +8348,16 @@ msgstr "debug"
|
|||||||
msgid "trace"
|
msgid "trace"
|
||||||
msgstr "követés"
|
msgstr "követés"
|
||||||
|
|
||||||
msgid "Network Plugin"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Reload"
|
msgid "Reload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload the network plugin without restarting the application"
|
msgid "Reload the network plug-in without restarting the application"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin reloaded successfully."
|
msgid "Network plug-in reloaded successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to reload network plugin. Please restart the application."
|
msgid "Failed to reload network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload Failed"
|
msgid "Reload Failed"
|
||||||
@@ -8481,7 +8576,10 @@ msgstr "A közzététel törlésre került"
|
|||||||
msgid "Slicing Plate 1"
|
msgid "Slicing Plate 1"
|
||||||
msgstr "1. tálca szeletelése"
|
msgstr "1. tálca szeletelése"
|
||||||
|
|
||||||
msgid "Packing data to 3mf"
|
msgid "Packing data to 3MF"
|
||||||
|
msgstr "Adatok csomagolása 3mf-be"
|
||||||
|
|
||||||
|
msgid "Uploading data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Jump to webpage"
|
msgid "Jump to webpage"
|
||||||
@@ -8794,7 +8892,7 @@ msgstr ""
|
|||||||
msgid "Textured PEI Plate"
|
msgid "Textured PEI Plate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Cool Plate (Supertack)"
|
msgid "Cool Plate (SuperTack)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Click here if you can't connect to the printer"
|
msgid "Click here if you can't connect to the printer"
|
||||||
@@ -9099,7 +9197,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection. There may be flaws on the "
|
"A prime tower is required for clumping detection. There may be flaws on the "
|
||||||
"model without prime tower. Do you still want to enable clumping detection?"
|
"model without prime tower. Do you still want to enable clumping detection?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -9199,8 +9297,8 @@ msgstr ""
|
|||||||
msgid ""
|
msgid ""
|
||||||
"When recording timelapse without toolhead, it is recommended to add a "
|
"When recording timelapse without toolhead, it is recommended to add a "
|
||||||
"\"Timelapse Wipe Tower\" \n"
|
"\"Timelapse Wipe Tower\" \n"
|
||||||
"by right-click the empty position of build plate and choose \"Add "
|
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
"\"->\"Timelapse Wipe Tower\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ha a nyomtatófej nélküli timelapse engedélyezve van, javasoljuk, hogy "
|
"Ha a nyomtatófej nélküli timelapse engedélyezve van, javasoljuk, hogy "
|
||||||
"helyezz el a tálcán egy „Timelapse törlőtornyot“. Ehhez kattints jobb "
|
"helyezz el a tálcán egy „Timelapse törlőtornyot“. Ehhez kattints jobb "
|
||||||
@@ -9418,9 +9516,6 @@ msgstr "Nyomtatási hőmérséklet"
|
|||||||
msgid "Nozzle temperature when printing"
|
msgid "Nozzle temperature when printing"
|
||||||
msgstr "Fúvóka hőmérséklete nyomtatáskor"
|
msgstr "Fúvóka hőmérséklete nyomtatáskor"
|
||||||
|
|
||||||
msgid "Cool Plate (SuperTack)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
||||||
"means the filament does not support printing on the Cool Plate SuperTack."
|
"means the filament does not support printing on the Cool Plate SuperTack."
|
||||||
@@ -9867,6 +9962,12 @@ msgstr "Minden beállítás megjelenítése (beleértve az inkompatibiliseket is
|
|||||||
msgid "Select presets to compare"
|
msgid "Select presets to compare"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Left Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Right Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can only transfer to current active profile because it has been modified."
|
"You can only transfer to current active profile because it has been modified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -10280,6 +10381,12 @@ msgstr "Kattints ide a letöltéshez."
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "Bejelentkezés"
|
msgstr "Bejelentkezés"
|
||||||
|
|
||||||
|
msgid "[Action Required] "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "[Action Required]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "The configuration package is changed in previous Config Guide"
|
msgid "The configuration package is changed in previous Config Guide"
|
||||||
msgstr "A konfigurációs csomag az előző konfigurációs útmutatóban módosult"
|
msgstr "A konfigurációs csomag az előző konfigurációs útmutatóban módosult"
|
||||||
|
|
||||||
@@ -11007,7 +11114,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection; otherwise, there may be "
|
"A prime tower is required for clumping detection; otherwise, there may be "
|
||||||
"flaws on the model."
|
"flaws on the model."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -12316,7 +12423,7 @@ msgid ""
|
|||||||
"models\n"
|
"models\n"
|
||||||
"3. No filtering - creates internal bridges on every potential internal "
|
"3. No filtering - creates internal bridges on every potential internal "
|
||||||
"overhang. This option is useful for heavily slanted top surface models; "
|
"overhang. This option is useful for heavily slanted top surface models; "
|
||||||
"however, in most cases, it creates too many unnecessary bridges"
|
"however, in most cases, it creates too many unnecessary bridges."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Limited filtering"
|
msgid "Limited filtering"
|
||||||
@@ -12702,7 +12809,7 @@ msgid ""
|
|||||||
"less acceleration you print, the larger the range of acceptable PA values. "
|
"less acceleration you print, the larger the range of acceptable PA values. "
|
||||||
"If no difference is visible, use the PA value from the faster test\n"
|
"If no difference is visible, use the PA value from the faster test\n"
|
||||||
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
||||||
"here and save your filament profile"
|
"here and save your filament profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||||
@@ -13381,8 +13488,8 @@ msgid "mm/s² or %"
|
|||||||
msgstr "mm/s² vagy %"
|
msgstr "mm/s² vagy %"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
"g. 100%), it will be calculated based on the default acceleration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Gyorsulás a ritkás kitöltéseknél. Ha az érték százalékban van megadva (pl. "
|
"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."
|
"100%), akkor az alapértelmezett gyorsulás alapján kerül kiszámításra."
|
||||||
@@ -13493,10 +13600,10 @@ msgstr "Teljes ventilátor fordulatszám ennél a rétegnél"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Fan speed will be ramped up linearly from zero at layer "
|
"Fan speed will be ramped up linearly from zero at layer "
|
||||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "layer"
|
msgid "layer"
|
||||||
@@ -13922,9 +14029,9 @@ msgstr "Objektumok címkézése"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this to add comments into the G-code labeling print moves with what "
|
"Enable this to add comments into the G-code labeling print moves with what "
|
||||||
"object they belong to, which is useful for the Octoprint CancelObject "
|
"object they belong to, which is useful for the Octoprint CancelObject plug-"
|
||||||
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
|
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
|
||||||
"setup and Wipe into Object / Wipe into Infill."
|
"and Wipe into Object / Wipe into Infill."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Exclude objects"
|
msgid "Exclude objects"
|
||||||
@@ -14192,7 +14299,7 @@ msgstr "Vasalás típusa"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Ironing is using small flow to print on same height of surface again to make "
|
"Ironing is using small flow to print on same height of surface again to make "
|
||||||
"flat surface more smooth. This setting controls which layer being ironed"
|
"flat surface more smooth. This setting controls which layer being ironed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"A vasalás kis anyagáramlás használatával kisimítja a sík felületeket. Ez a "
|
"A vasalás kis anyagáramlás használatával kisimítja a sík felületeket. Ez a "
|
||||||
"beállítás szabályozza, hogy mely rétegeknél történik meg a vasalás."
|
"beállítás szabályozza, hogy mely rétegeknél történik meg a vasalás."
|
||||||
@@ -15107,8 +15214,8 @@ msgid "Role base wipe speed"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
"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 "
|
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||||
"wipe action."
|
"wipe action."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -15328,7 +15435,7 @@ msgid ""
|
|||||||
"timelapse video when printing completes. If smooth mode is selected, the "
|
"timelapse video when printing completes. If smooth mode is selected, the "
|
||||||
"toolhead will move to the excess chute after each layer is printed and then "
|
"toolhead will move to the excess chute after each layer is printed and then "
|
||||||
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
||||||
"process of taking a snapshot, prime tower is required for smooth mode to "
|
"process of taking a snapshot, a prime tower is required for smooth mode to "
|
||||||
"wipe nozzle."
|
"wipe nozzle."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ha a sima vagy a hagyományos mód van kiválasztva, minden nyomtatásnál készül "
|
"Ha a sima vagy a hagyományos mód van kiválasztva, minden nyomtatásnál készül "
|
||||||
@@ -15884,8 +15991,8 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this option for automated chamber temperature control. This option "
|
"Enable this option for automated chamber temperature control. This option "
|
||||||
"activates the emitting of an M191 command before the "
|
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||||
"\"machine_start_gcode\"\n"
|
"\"\n"
|
||||||
" which sets the chamber temperature and waits until it is reached. In "
|
" 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 "
|
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||||
"chamber heater, if present.\n"
|
"chamber heater, if present.\n"
|
||||||
@@ -16123,6 +16230,12 @@ msgid ""
|
|||||||
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
|
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Rectangle"
|
||||||
|
msgstr "Négyzet"
|
||||||
|
|
||||||
|
msgid "Rib"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Extra rib length"
|
msgid "Extra rib length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -16679,7 +16792,7 @@ msgid ""
|
|||||||
"machines in the list."
|
"machines in the list."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "downward machines settings"
|
msgid "Downward machines settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "The machine settings list needs to do downward checking."
|
msgid "The machine settings list needs to do downward checking."
|
||||||
@@ -16713,11 +16826,11 @@ msgid "Debug level"
|
|||||||
msgstr "Hibakeresés szintje"
|
msgstr "Hibakeresés szintje"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||||
"5:trace\n"
|
"trace\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"A hibakeresési naplózási szint beállítása. 0:fatal, 1:error, 2:warning, "
|
"A hibakeresési naplózási szint beállítása. 0:fatal, 1:error, 2:warning, 3:"
|
||||||
"3:info, 4:debug, 5:trace\n"
|
"info, 4:debug, 5:trace\n"
|
||||||
|
|
||||||
msgid "Enable timelapse for print"
|
msgid "Enable timelapse for print"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -17309,10 +17422,6 @@ msgstr "A név megegyezik egy másik meglévő beállítás nevével"
|
|||||||
msgid "create new preset failed."
|
msgid "create new preset failed."
|
||||||
msgstr "Új beállítás létrehozása sikertelen."
|
msgstr "Új beállítás létrehozása sikertelen."
|
||||||
|
|
||||||
#, c-format, boost-format
|
|
||||||
msgid "The selected preset: %s is not found."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid "Could not find parameter: %s."
|
msgid "Could not find parameter: %s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -17924,6 +18033,23 @@ msgstr ""
|
|||||||
msgid "Input shaper type"
|
msgid "Input shaper type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Please ensure the selected type is compatible with your firmware version."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Marlin version => 2.1.2\n"
|
||||||
|
"Fixed-Time motion not yet implemented."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Klipper version => 0.9.0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"RepRap firmware version => 3.4.0\n"
|
||||||
|
"Check your firmware documentation for supported shaper types."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency (Start / End): "
|
msgid "Frequency (Start / End): "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -17958,6 +18084,9 @@ msgstr ""
|
|||||||
msgid "Input shaping Damp test"
|
msgid "Input shaping Damp test"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Check firmware compatibility."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency: "
|
msgid "Frequency: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -18283,8 +18412,8 @@ msgstr ""
|
|||||||
"Szeretnéd felülírni?"
|
"Szeretnéd felülírni?"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||||
"selected\".\n"
|
"\".\n"
|
||||||
"To add preset for more printers, please go to printer selection"
|
"To add preset for more printers, please go to printer selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -18330,9 +18459,6 @@ msgstr ""
|
|||||||
msgid "Can't find my nozzle diameter"
|
msgid "Can't find my nozzle diameter"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Rectangle"
|
|
||||||
msgstr "Négyzet"
|
|
||||||
|
|
||||||
msgid "Printable Space"
|
msgid "Printable Space"
|
||||||
msgstr "Nyomtatási terület"
|
msgstr "Nyomtatási terület"
|
||||||
|
|
||||||
@@ -19573,6 +19699,127 @@ msgstr ""
|
|||||||
msgid "More Colors"
|
msgid "More Colors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Network Plug-in Update Available"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bambu Network Plug-in Required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
|
||||||
|
"and remote printing."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Error: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Version to install:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Download and Install"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip for Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "A new version of the Bambu Network Plug-in is available."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Current version: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update to version:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Remind Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Don't Ask Again"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The Bambu Network Plug-in has been installed successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"A restart is required to load the new plug-in. Would you like to restart now?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "NO RAMMING AT ALL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Volumetric speed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Step file import parameters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Smaller linear and angular deflections result in higher-quality "
|
||||||
|
"transformations but increase the processing time."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Linear Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Angle Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Split compound and compsolid into multiple objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Number of triangular facets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Calculating, please wait..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. "
|
||||||
|
"Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament model is unknown. Still using the previous filament preset."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. A "
|
||||||
|
"random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. A random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: resources/data/hints.ini: [hint:Precise wall]
|
#: resources/data/hints.ini: [hint:Precise wall]
|
||||||
msgid ""
|
msgid ""
|
||||||
"Precise wall\n"
|
"Precise wall\n"
|
||||||
@@ -19925,9 +20172,6 @@ msgstr ""
|
|||||||
#~ "Nem sikerült telepíteni a bővítményt. Kérjük, ellenőrizd, hogy a "
|
#~ "Nem sikerült telepíteni a bővítményt. Kérjük, ellenőrizd, hogy a "
|
||||||
#~ "vírusirtó szoftver nem blokkolta vagy törölte-e."
|
#~ "vírusirtó szoftver nem blokkolta vagy törölte-e."
|
||||||
|
|
||||||
#~ msgid "°C"
|
|
||||||
#~ msgstr "°C"
|
|
||||||
|
|
||||||
#~ msgid "travel"
|
#~ msgid "travel"
|
||||||
#~ msgstr "mozgás"
|
#~ msgstr "mozgás"
|
||||||
|
|
||||||
@@ -19965,9 +20209,6 @@ msgstr ""
|
|||||||
#~ msgid "Advance"
|
#~ msgid "Advance"
|
||||||
#~ msgstr "Haladó"
|
#~ msgstr "Haladó"
|
||||||
|
|
||||||
#~ msgid "Packing data to 3MF"
|
|
||||||
#~ msgstr "Adatok csomagolása 3mf-be"
|
|
||||||
|
|
||||||
#~ msgid "°"
|
#~ msgid "°"
|
||||||
#~ msgstr "°"
|
#~ msgstr "°"
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Orca Slicer\n"
|
"Project-Id-Version: Orca Slicer\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
|
||||||
"PO-Revision-Date: \n"
|
"PO-Revision-Date: \n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
@@ -14,26 +14,6 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n"
|
"Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n"
|
||||||
"X-Generator: Poedit 3.5\n"
|
"X-Generator: Poedit 3.5\n"
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. "
|
|
||||||
"Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament model is unknown. Still using the previous filament preset."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. A "
|
|
||||||
"random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. A random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "right"
|
msgid "right"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1600,6 +1580,30 @@ msgstr "Distanza parallela:"
|
|||||||
msgid "Flip by Face 2"
|
msgid "Flip by Face 2"
|
||||||
msgstr "Capovolgi da Faccia 2"
|
msgstr "Capovolgi da Faccia 2"
|
||||||
|
|
||||||
|
msgid "Assemble"
|
||||||
|
msgstr "Assembla"
|
||||||
|
|
||||||
|
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "(Moving)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Point and point assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"It is recommended to assemble the objects first,\n"
|
||||||
|
"because the objects is restriced to bed \n"
|
||||||
|
"and only parts can be lifted."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Face and face assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Notice"
|
msgid "Notice"
|
||||||
msgstr "Avvertenza"
|
msgstr "Avvertenza"
|
||||||
|
|
||||||
@@ -1642,6 +1646,54 @@ msgstr ""
|
|||||||
msgid "Based on PrusaSlicer and BambuStudio"
|
msgid "Based on PrusaSlicer and BambuStudio"
|
||||||
msgstr "Basato su PrusaSlicer e BambuStudio"
|
msgstr "Basato su PrusaSlicer e BambuStudio"
|
||||||
|
|
||||||
|
msgid "STEP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "STL files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "OBJ files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "AMF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Gcode 3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "G-code files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Supported files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "ZIP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Project files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Known files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "INI files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "SVG files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Texture"
|
||||||
|
msgstr "Trama"
|
||||||
|
|
||||||
|
msgid "Masked SLA files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Draco files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
||||||
"It will be appreciated if you report the issue to our team."
|
"It will be appreciated if you report the issue to our team."
|
||||||
@@ -1669,10 +1721,10 @@ msgstr "OrcaSlicer ha ricevuto un'eccezione non gestita: %1%"
|
|||||||
msgid "Untitled"
|
msgid "Untitled"
|
||||||
msgstr "Senza titolo"
|
msgstr "Senza titolo"
|
||||||
|
|
||||||
msgid "Reloading network plugin..."
|
msgid "Reloading network plug-in..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Network Plugin"
|
msgid "Downloading Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Bambu Network Plug-in"
|
msgid "Downloading Bambu Network Plug-in"
|
||||||
@@ -1768,6 +1820,9 @@ msgstr "Seleziona il file ZIP"
|
|||||||
msgid "Choose one file (GCODE/3MF):"
|
msgid "Choose one file (GCODE/3MF):"
|
||||||
msgstr "Scegli file (GCODE/3MF):"
|
msgstr "Scegli file (GCODE/3MF):"
|
||||||
|
|
||||||
|
msgid "Ext"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Some presets are modified."
|
msgid "Some presets are modified."
|
||||||
msgstr "Alcuni preset vengono modificati."
|
msgstr "Alcuni preset vengono modificati."
|
||||||
|
|
||||||
@@ -1829,7 +1884,7 @@ msgid ""
|
|||||||
"access, enabling full functionality with OrcaSlicer."
|
"access, enabling full functionality with OrcaSlicer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network Plugin Restriction"
|
msgid "Network Plug-in Restriction"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Privacy Policy Update"
|
msgid "Privacy Policy Update"
|
||||||
@@ -2066,6 +2121,9 @@ msgstr ""
|
|||||||
"Sì - Modificare automaticamente queste impostazioni\n"
|
"Sì - Modificare automaticamente queste impostazioni\n"
|
||||||
"No - Non modificare queste impostazioni per me"
|
"No - Non modificare queste impostazioni per me"
|
||||||
|
|
||||||
|
msgid "Suggestion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Testo"
|
msgstr "Testo"
|
||||||
|
|
||||||
@@ -2175,9 +2233,6 @@ msgstr "Converti da metri"
|
|||||||
msgid "Restore to meters"
|
msgid "Restore to meters"
|
||||||
msgstr "Ripristina in metri"
|
msgstr "Ripristina in metri"
|
||||||
|
|
||||||
msgid "Assemble"
|
|
||||||
msgstr "Assembla"
|
|
||||||
|
|
||||||
msgid "Assemble the selected objects to an object with multiple parts"
|
msgid "Assemble the selected objects to an object with multiple parts"
|
||||||
msgstr "Assembla gli oggetti selezionati in un oggetto con più parti"
|
msgstr "Assembla gli oggetti selezionati in un oggetto con più parti"
|
||||||
|
|
||||||
@@ -2692,6 +2747,10 @@ msgstr "Stampa multicolore"
|
|||||||
msgid "Line Type"
|
msgid "Line Type"
|
||||||
msgstr "Tipo linea"
|
msgstr "Tipo linea"
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "1x1 Grid: %d mm"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "More"
|
msgid "More"
|
||||||
msgstr "Altro"
|
msgstr "Altro"
|
||||||
|
|
||||||
@@ -2812,8 +2871,8 @@ msgstr "Controlla la connessione di rete della stampante e di OrcaSlicer."
|
|||||||
msgid "Connecting..."
|
msgid "Connecting..."
|
||||||
msgstr "Connessione..."
|
msgstr "Connessione..."
|
||||||
|
|
||||||
msgid "Auto-refill"
|
msgid "Auto Refill"
|
||||||
msgstr ""
|
msgstr "Riempimento automatico"
|
||||||
|
|
||||||
msgid "Load"
|
msgid "Load"
|
||||||
msgstr "Carica"
|
msgstr "Carica"
|
||||||
@@ -3214,6 +3273,38 @@ msgid ""
|
|||||||
"Storage before sending to printer."
|
"Storage before sending to printer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossCreateObjectJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text object"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossUpdateJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Created text volume is empty. Change text or font."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for CreateSurfaceVolumeJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for UseSurfaceJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRN: This is the title of the action appearing in undo/redo stack.
|
||||||
|
#. It is same for Text and SVG.
|
||||||
|
msgid "Emboss attribute change"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text Volume"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Font doesn't have any shape for given text."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "There is no valid surface for text projection."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Thermal Preconditioning for first layer optimization"
|
msgid "Thermal Preconditioning for first layer optimization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3546,9 +3637,6 @@ msgstr ""
|
|||||||
msgid "Nozzle"
|
msgid "Nozzle"
|
||||||
msgstr "Ugello"
|
msgstr "Ugello"
|
||||||
|
|
||||||
msgid "Ext"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
||||||
@@ -3616,9 +3704,6 @@ msgstr "Stampa con filamento nell'AMS"
|
|||||||
msgid "Print with filaments mounted on the back of the chassis"
|
msgid "Print with filaments mounted on the back of the chassis"
|
||||||
msgstr "Stampa filamento con bobina esterna"
|
msgstr "Stampa filamento con bobina esterna"
|
||||||
|
|
||||||
msgid "Auto Refill"
|
|
||||||
msgstr "Riempimento automatico"
|
|
||||||
|
|
||||||
msgid "Left"
|
msgid "Left"
|
||||||
msgstr "Da sinistra"
|
msgstr "Da sinistra"
|
||||||
|
|
||||||
@@ -3632,7 +3717,7 @@ msgstr ""
|
|||||||
"Quando si esaurisce il materiale corrente, la stampante continuerà a "
|
"Quando si esaurisce il materiale corrente, la stampante continuerà a "
|
||||||
"stampare nel seguente ordine."
|
"stampare nel seguente ordine."
|
||||||
|
|
||||||
msgid "Identical filament: same brand, type and color"
|
msgid "Identical filament: same brand, type and color."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Group"
|
msgid "Group"
|
||||||
@@ -3771,8 +3856,8 @@ msgid "Calibration"
|
|||||||
msgstr "Calibrazione"
|
msgstr "Calibrazione"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Failed to download the plug-in. Please check your firewall settings and vpn "
|
"Failed to download the plug-in. Please check your firewall settings and VPN "
|
||||||
"software, check and retry."
|
"software and retry."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Impossibile scaricare il modulo. Controlla le impostazioni del firewall e "
|
"Impossibile scaricare il modulo. Controlla le impostazioni del firewall e "
|
||||||
"VPN poi riprova."
|
"VPN poi riprova."
|
||||||
@@ -3787,8 +3872,8 @@ msgid "Click here to see more info"
|
|||||||
msgstr "clicca per ulteriori informazioni"
|
msgstr "clicca per ulteriori informazioni"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The network plugin was installed but could not be loaded. Please restart the "
|
"The network plug-in was installed but could not be loaded. Please restart "
|
||||||
"application."
|
"the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Restart Required"
|
msgid "Restart Required"
|
||||||
@@ -3964,9 +4049,6 @@ msgstr "Carica forma da STL..."
|
|||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Impostazioni"
|
msgstr "Impostazioni"
|
||||||
|
|
||||||
msgid "Texture"
|
|
||||||
msgstr "Trama"
|
|
||||||
|
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Rimuovi"
|
msgstr "Rimuovi"
|
||||||
|
|
||||||
@@ -4171,6 +4253,7 @@ msgstr ""
|
|||||||
"seam_slope_start_height deve essere inferiore a layer_height.\n"
|
"seam_slope_start_height deve essere inferiore a layer_height.\n"
|
||||||
"È stato ripristinato a 0."
|
"È stato ripristinato a 0."
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Lock depth should smaller than skin depth.\n"
|
"Lock depth should smaller than skin depth.\n"
|
||||||
"Reset to 50% of skin depth."
|
"Reset to 50% of skin depth."
|
||||||
@@ -4791,6 +4874,9 @@ msgstr ""
|
|||||||
msgid "Fan speed"
|
msgid "Fan speed"
|
||||||
msgstr "Velocità ventola"
|
msgstr "Velocità ventola"
|
||||||
|
|
||||||
|
msgid "°C"
|
||||||
|
msgstr "°C"
|
||||||
|
|
||||||
msgid "Time"
|
msgid "Time"
|
||||||
msgstr "Tempo"
|
msgstr "Tempo"
|
||||||
|
|
||||||
@@ -4947,8 +5033,8 @@ msgstr "Velocità effettiva (mm/s)"
|
|||||||
msgid "Fan Speed (%)"
|
msgid "Fan Speed (%)"
|
||||||
msgstr "Velocità ventola (%)"
|
msgstr "Velocità ventola (%)"
|
||||||
|
|
||||||
msgid "Temperature (℃)"
|
msgid "Temperature (°C)"
|
||||||
msgstr "Temperatura (℃)"
|
msgstr "Temperatura (°C)"
|
||||||
|
|
||||||
msgid "Volumetric flow rate (mm³/s)"
|
msgid "Volumetric flow rate (mm³/s)"
|
||||||
msgstr "Portata volumetrica (mm³/s)"
|
msgstr "Portata volumetrica (mm³/s)"
|
||||||
@@ -5266,7 +5352,7 @@ msgstr "Volume:"
|
|||||||
msgid "Size:"
|
msgid "Size:"
|
||||||
msgstr "Dimensione:"
|
msgstr "Dimensione:"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||||
"separate the conflicted objects farther (%s <-> %s)."
|
"separate the conflicted objects farther (%s <-> %s)."
|
||||||
@@ -5339,7 +5425,7 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
||||||
"mixing in models. Please redjust flushing settings."
|
"mixing in models. Please readjust flushing settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Click Wiki for help."
|
msgid "Click Wiki for help."
|
||||||
@@ -6650,6 +6736,9 @@ msgstr ""
|
|||||||
"riuscito \n"
|
"riuscito \n"
|
||||||
"per dare una valutazione positiva (4 o 5 stelle)."
|
"per dare una valutazione positiva (4 o 5 stelle)."
|
||||||
|
|
||||||
|
msgid "click to add machine"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr "Stato"
|
msgstr "Stato"
|
||||||
|
|
||||||
@@ -6660,6 +6749,14 @@ msgstr ""
|
|||||||
msgid "Assistant(HMS)"
|
msgid "Assistant(HMS)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s (%s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Don't show again"
|
msgid "Don't show again"
|
||||||
msgstr "Non mostrare più"
|
msgstr "Non mostrare più"
|
||||||
|
|
||||||
@@ -7041,7 +7138,7 @@ msgstr ""
|
|||||||
msgid "Unavailable while heating maintenance function is on."
|
msgid "Unavailable while heating maintenance function is on."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Idel Heating Protection"
|
msgid "Idle Heating Protection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
||||||
@@ -7602,7 +7699,8 @@ msgid "Please resolve the slicing errors and publish again."
|
|||||||
msgstr "Risolvi gli errori di elaborazone e pubblica nuovamente."
|
msgstr "Risolvi gli errori di elaborazone e pubblica nuovamente."
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Network Plug-in is not detected. Network related features are unavailable."
|
"The network plug-in was not detected. Network related features are "
|
||||||
|
"unavailable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Il modulo di rete non è stato rilevato. Le funzioni di rete non sono "
|
"Il modulo di rete non è stato rilevato. Le funzioni di rete non sono "
|
||||||
"disponibili."
|
"disponibili."
|
||||||
@@ -8186,7 +8284,7 @@ msgstr ""
|
|||||||
msgid "filaments"
|
msgid "filaments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
msgid "Optimizes filament area maximum height by chosen filament count."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Features"
|
msgid "Features"
|
||||||
@@ -8388,40 +8486,40 @@ msgstr ""
|
|||||||
msgid "Color only"
|
msgid "Color only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin"
|
msgid "Network plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Enable network plugin"
|
msgid "Enable network plug-in"
|
||||||
msgstr "Abilita modulo di rete"
|
msgstr "Abilita modulo di rete"
|
||||||
|
|
||||||
msgid "Network plugin version"
|
msgid "Network plug-in version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Select the network plugin version to use"
|
msgid "Select the network plug-in version to use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "(Latest)"
|
msgid "(Latest)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin switched successfully."
|
msgid "Network plug-in switched successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to load network plugin. Please restart the application."
|
msgid "Failed to load network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You've selected network plugin version %s.\n"
|
"You've selected network plug-in version %s.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Would you like to download and install this version now?\n"
|
"Would you like to download and install this version now?\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Note: The application may need to restart after installation."
|
"Note: The application may need to restart after installation."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Download Network Plugin"
|
msgid "Download Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Associate files to OrcaSlicer"
|
msgid "Associate files to OrcaSlicer"
|
||||||
@@ -8495,19 +8593,16 @@ msgstr "debug"
|
|||||||
msgid "trace"
|
msgid "trace"
|
||||||
msgstr "traccia"
|
msgstr "traccia"
|
||||||
|
|
||||||
msgid "Network Plugin"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Reload"
|
msgid "Reload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload the network plugin without restarting the application"
|
msgid "Reload the network plug-in without restarting the application"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin reloaded successfully."
|
msgid "Network plug-in reloaded successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to reload network plugin. Please restart the application."
|
msgid "Failed to reload network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload Failed"
|
msgid "Reload Failed"
|
||||||
@@ -8728,7 +8823,10 @@ msgstr "La pubblicazione è stata annullata"
|
|||||||
msgid "Slicing Plate 1"
|
msgid "Slicing Plate 1"
|
||||||
msgstr "Elaborazione Piatto 1"
|
msgstr "Elaborazione Piatto 1"
|
||||||
|
|
||||||
msgid "Packing data to 3mf"
|
msgid "Packing data to 3MF"
|
||||||
|
msgstr "Archiviazione dati su 3mf"
|
||||||
|
|
||||||
|
msgid "Uploading data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Jump to webpage"
|
msgid "Jump to webpage"
|
||||||
@@ -9048,8 +9146,8 @@ msgstr "Piatto liscio ad alta temperatura"
|
|||||||
msgid "Textured PEI Plate"
|
msgid "Textured PEI Plate"
|
||||||
msgstr "Piatto PEI ruvido"
|
msgstr "Piatto PEI ruvido"
|
||||||
|
|
||||||
msgid "Cool Plate (Supertack)"
|
msgid "Cool Plate (SuperTack)"
|
||||||
msgstr ""
|
msgstr "Piatto SuperTack a bassa temperatura"
|
||||||
|
|
||||||
msgid "Click here if you can't connect to the printer"
|
msgid "Click here if you can't connect to the printer"
|
||||||
msgstr "Clicca qui se non puoi connetterti alla stampante"
|
msgstr "Clicca qui se non puoi connetterti alla stampante"
|
||||||
@@ -9378,7 +9476,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection. There may be flaws on the "
|
"A prime tower is required for clumping detection. There may be flaws on the "
|
||||||
"model without prime tower. Do you still want to enable clumping detection?"
|
"model without prime tower. Do you still want to enable clumping detection?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -9498,8 +9596,8 @@ msgstr ""
|
|||||||
msgid ""
|
msgid ""
|
||||||
"When recording timelapse without toolhead, it is recommended to add a "
|
"When recording timelapse without toolhead, it is recommended to add a "
|
||||||
"\"Timelapse Wipe Tower\" \n"
|
"\"Timelapse Wipe Tower\" \n"
|
||||||
"by right-click the empty position of build plate and choose \"Add "
|
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
"\"->\"Timelapse Wipe Tower\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Quando si registra un timelapse senza il gruppo testina, si consiglia di "
|
"Quando si registra un timelapse senza il gruppo testina, si consiglia di "
|
||||||
"aggiungere un \"Timelapse Torre di spurgo\"\n"
|
"aggiungere un \"Timelapse Torre di spurgo\"\n"
|
||||||
@@ -9721,9 +9819,6 @@ msgstr "Temperatura stampa"
|
|||||||
msgid "Nozzle temperature when printing"
|
msgid "Nozzle temperature when printing"
|
||||||
msgstr "Temperatura dell'ugello durante la stampa"
|
msgstr "Temperatura dell'ugello durante la stampa"
|
||||||
|
|
||||||
msgid "Cool Plate (SuperTack)"
|
|
||||||
msgstr "Piatto SuperTack a bassa temperatura"
|
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
||||||
"means the filament does not support printing on the Cool Plate SuperTack."
|
"means the filament does not support printing on the Cool Plate SuperTack."
|
||||||
@@ -10191,6 +10286,12 @@ msgstr "Mostra tutti i profili (compresi quelli non compatibili)"
|
|||||||
msgid "Select presets to compare"
|
msgid "Select presets to compare"
|
||||||
msgstr "Seleziona i profili da confrontare"
|
msgstr "Seleziona i profili da confrontare"
|
||||||
|
|
||||||
|
msgid "Left Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Right Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can only transfer to current active profile because it has been modified."
|
"You can only transfer to current active profile because it has been modified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -10634,6 +10735,12 @@ msgstr "Clicca qui per scaricarlo."
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "Accedi"
|
msgstr "Accedi"
|
||||||
|
|
||||||
|
msgid "[Action Required] "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "[Action Required]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "The configuration package is changed in previous Config Guide"
|
msgid "The configuration package is changed in previous Config Guide"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Il pacchetto di configurazione è stato modificato nella precedente Guida di "
|
"Il pacchetto di configurazione è stato modificato nella precedente Guida di "
|
||||||
@@ -11037,8 +11144,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"È stato rilevato un aggiornamento importante che deve essere eseguito prima "
|
"È stato rilevato un aggiornamento importante che deve essere eseguito prima "
|
||||||
"che la stampa possa continuare. Si desidera aggiornare ora? È possibile "
|
"che la stampa possa continuare. Si desidera aggiornare ora? È possibile "
|
||||||
"effettuare l'aggiornamento anche in un secondo momento da \"Aggiorna "
|
"effettuare l'aggiornamento anche in un secondo momento da \"Aggiorna firmware"
|
||||||
"firmware\"."
|
"\"."
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The firmware version is abnormal. Repairing and updating are required before "
|
"The firmware version is abnormal. Repairing and updating are required before "
|
||||||
@@ -11370,7 +11477,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection; otherwise, there may be "
|
"A prime tower is required for clumping detection; otherwise, there may be "
|
||||||
"flaws on the model."
|
"flaws on the model."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -12989,7 +13096,7 @@ msgid ""
|
|||||||
"models\n"
|
"models\n"
|
||||||
"3. No filtering - creates internal bridges on every potential internal "
|
"3. No filtering - creates internal bridges on every potential internal "
|
||||||
"overhang. This option is useful for heavily slanted top surface models; "
|
"overhang. This option is useful for heavily slanted top surface models; "
|
||||||
"however, in most cases, it creates too many unnecessary bridges"
|
"however, in most cases, it creates too many unnecessary bridges."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Questa opzione può aiutare a ridurre le lacune o fori sulle superfici "
|
"Questa opzione può aiutare a ridurre le lacune o fori sulle superfici "
|
||||||
"superiori nei modelli molto inclinati o curvi.\n"
|
"superiori nei modelli molto inclinati o curvi.\n"
|
||||||
@@ -13012,7 +13119,7 @@ msgstr ""
|
|||||||
"3. Nessun filtraggio: crea ponti interni su ogni potenziale sporgenza "
|
"3. Nessun filtraggio: crea ponti interni su ogni potenziale sporgenza "
|
||||||
"interna. Questa opzione è utile per modelli di superficie superiore "
|
"interna. Questa opzione è utile per modelli di superficie superiore "
|
||||||
"fortemente inclinati; tuttavia, nella maggior parte dei casi, crea troppi "
|
"fortemente inclinati; tuttavia, nella maggior parte dei casi, crea troppi "
|
||||||
"ponti non necessari"
|
"ponti non necessari."
|
||||||
|
|
||||||
msgid "Limited filtering"
|
msgid "Limited filtering"
|
||||||
msgstr "Filtraggio limitato"
|
msgstr "Filtraggio limitato"
|
||||||
@@ -13520,7 +13627,7 @@ msgid ""
|
|||||||
"less acceleration you print, the larger the range of acceptable PA values. "
|
"less acceleration you print, the larger the range of acceptable PA values. "
|
||||||
"If no difference is visible, use the PA value from the faster test\n"
|
"If no difference is visible, use the PA value from the faster test\n"
|
||||||
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
||||||
"here and save your filament profile"
|
"here and save your filament profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Aggiungi i valori di anticipo di pressione (AP), portata volumetrica e "
|
"Aggiungi i valori di anticipo di pressione (AP), portata volumetrica e "
|
||||||
"accelerazione secondo le prove effettuate, separati da una virgola. Digita "
|
"accelerazione secondo le prove effettuate, separati da una virgola. Digita "
|
||||||
@@ -13548,7 +13655,7 @@ msgstr ""
|
|||||||
"stampi, più ampio è l'intervallo di valori AP accettabili. Se non è visibile "
|
"stampi, più ampio è l'intervallo di valori AP accettabili. Se non è visibile "
|
||||||
"alcuna differenza, usa il valore AP dal test più veloce\n"
|
"alcuna differenza, usa il valore AP dal test più veloce\n"
|
||||||
"3. Inserisci le triplette dei valori di anticipo di pressione, portata e "
|
"3. Inserisci le triplette dei valori di anticipo di pressione, portata e "
|
||||||
"accelerazione nella casella di testo qui e salva il tuo profilo di filamento"
|
"accelerazione nella casella di testo qui e salva il tuo profilo di filamento."
|
||||||
|
|
||||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||||
msgstr "Abilita anticipo di pressione adattiva per sporgenze (beta)"
|
msgstr "Abilita anticipo di pressione adattiva per sporgenze (beta)"
|
||||||
@@ -13902,9 +14009,9 @@ msgid ""
|
|||||||
"this movement should be before the filament is retracted again."
|
"this movement should be before the filament is retracted again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Se impostato su un valore diverso da zero, il filamento viene spostato verso "
|
"Se impostato su un valore diverso da zero, il filamento viene spostato verso "
|
||||||
"l'ugello tra i singoli movimenti nei tubi di raffreddamento "
|
"l'ugello tra i singoli movimenti nei tubi di raffreddamento (\"timbratura"
|
||||||
"(\"timbratura\"). Questa opzione configura la durata di questo movimento "
|
"\"). Questa opzione configura la durata di questo movimento prima che il "
|
||||||
"prima che il filamento venga nuovamente retratto."
|
"filamento venga nuovamente retratto."
|
||||||
|
|
||||||
msgid "Speed of the first cooling move"
|
msgid "Speed of the first cooling move"
|
||||||
msgstr "Velocità del primo movimento di raffreddamento"
|
msgstr "Velocità del primo movimento di raffreddamento"
|
||||||
@@ -14334,8 +14441,8 @@ msgid "mm/s² or %"
|
|||||||
msgstr "mm/s o %"
|
msgstr "mm/s o %"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
"g. 100%), it will be calculated based on the default acceleration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Accelerazione del riempimento sparso. Se il valore è espresso in percentuale "
|
"Accelerazione del riempimento sparso. Se il valore è espresso in percentuale "
|
||||||
"(ad esempio 100%), verrà calcolato in base all'accelerazione predefinita."
|
"(ad esempio 100%), verrà calcolato in base all'accelerazione predefinita."
|
||||||
@@ -14460,17 +14567,17 @@ msgstr "Velocità massima della ventola su strato"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Fan speed will be ramped up linearly from zero at layer "
|
"Fan speed will be ramped up linearly from zero at layer "
|
||||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"La velocità della ventola aumenterà in modo lineare da zero nello strato "
|
"La velocità della ventola aumenterà in modo lineare da zero nello strato "
|
||||||
"\"close_fan_the_first_x_layers\" al massimo 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\". Se inferiore a \"close_fan_the_first_x_layers\", "
|
||||||
"\"full_fan_speed_layer\" verrà ignorato. in tal caso la ventola funzionerà "
|
"\"full_fan_speed_layer\" verrà ignorato. in tal caso la ventola funzionerà "
|
||||||
"alla massima velocità consentita nello strato "
|
"alla massima velocità consentita nello strato \"close_fan_the_first_x_layers"
|
||||||
"\"close_fan_the_first_x_layers\" + 1."
|
"\" + 1."
|
||||||
|
|
||||||
msgid "layer"
|
msgid "layer"
|
||||||
msgstr "strato"
|
msgstr "strato"
|
||||||
@@ -14967,9 +15074,9 @@ msgstr "Etichetta oggetti"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this to add comments into the G-code labeling print moves with what "
|
"Enable this to add comments into the G-code labeling print moves with what "
|
||||||
"object they belong to, which is useful for the Octoprint CancelObject "
|
"object they belong to, which is useful for the Octoprint CancelObject plug-"
|
||||||
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
|
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
|
||||||
"setup and Wipe into Object / Wipe into Infill."
|
"and Wipe into Object / Wipe into Infill."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Abilita questa opzione per aggiungere commenti nel G-Code, contrassegnando i "
|
"Abilita questa opzione per aggiungere commenti nel G-Code, contrassegnando i "
|
||||||
"movimenti di stampa con l'oggetto a cui appartengono, il che è utile per il "
|
"movimenti di stampa con l'oggetto a cui appartengono, il che è utile per il "
|
||||||
@@ -15287,11 +15394,11 @@ msgstr "Tipo di stiratura"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Ironing is using small flow to print on same height of surface again to make "
|
"Ironing is using small flow to print on same height of surface again to make "
|
||||||
"flat surface more smooth. This setting controls which layer being ironed"
|
"flat surface more smooth. This setting controls which layer being ironed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"La stiratura utilizza un flusso ridotto per stampare alla stessa altezza di "
|
"La stiratura utilizza un flusso ridotto per stampare alla stessa altezza di "
|
||||||
"una superficie, per rendere le superfici piane più lisce. Questa "
|
"una superficie, per rendere le superfici piane più lisce. Questa "
|
||||||
"impostazione controlla quali strati vengono stirati"
|
"impostazione controlla quali strati vengono stirati."
|
||||||
|
|
||||||
msgid "No ironing"
|
msgid "No ironing"
|
||||||
msgstr "Non stirare"
|
msgstr "Non stirare"
|
||||||
@@ -16361,8 +16468,8 @@ msgid "Role base wipe speed"
|
|||||||
msgstr "Velocità di spurgo basata su ruolo"
|
msgstr "Velocità di spurgo basata su ruolo"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
"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 "
|
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||||
"wipe action."
|
"wipe action."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -16636,7 +16743,7 @@ msgid ""
|
|||||||
"timelapse video when printing completes. If smooth mode is selected, the "
|
"timelapse video when printing completes. If smooth mode is selected, the "
|
||||||
"toolhead will move to the excess chute after each layer is printed and then "
|
"toolhead will move to the excess chute after each layer is printed and then "
|
||||||
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
||||||
"process of taking a snapshot, prime tower is required for smooth mode to "
|
"process of taking a snapshot, a prime tower is required for smooth mode to "
|
||||||
"wipe nozzle."
|
"wipe nozzle."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Se si seleziona la modalità fluida o tradizionale, per ogni stampa verrà "
|
"Se si seleziona la modalità fluida o tradizionale, per ogni stampa verrà "
|
||||||
@@ -17247,8 +17354,8 @@ msgstr "Attiva controllo della temperatura"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this option for automated chamber temperature control. This option "
|
"Enable this option for automated chamber temperature control. This option "
|
||||||
"activates the emitting of an M191 command before the "
|
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||||
"\"machine_start_gcode\"\n"
|
"\"\n"
|
||||||
" which sets the chamber temperature and waits until it is reached. In "
|
" 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 "
|
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||||
"chamber heater, if present.\n"
|
"chamber heater, if present.\n"
|
||||||
@@ -17553,6 +17660,12 @@ msgid ""
|
|||||||
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
|
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Rectangle"
|
||||||
|
msgstr "Rettangolo"
|
||||||
|
|
||||||
|
msgid "Rib"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Extra rib length"
|
msgid "Extra rib length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -18168,8 +18281,8 @@ msgstr ""
|
|||||||
"Se abilitato, controlla se la macchina corrente è compatibile con le "
|
"Se abilitato, controlla se la macchina corrente è compatibile con le "
|
||||||
"macchine presenti nell'elenco."
|
"macchine presenti nell'elenco."
|
||||||
|
|
||||||
msgid "downward machines settings"
|
msgid "Downward machines settings"
|
||||||
msgstr ""
|
msgstr "Impostazioni macchine"
|
||||||
|
|
||||||
msgid "The machine settings list needs to do downward checking."
|
msgid "The machine settings list needs to do downward checking."
|
||||||
msgstr "L'elenco delle impostazioni delle macchine deve essere controllato."
|
msgstr "L'elenco delle impostazioni delle macchine deve essere controllato."
|
||||||
@@ -18202,11 +18315,11 @@ msgid "Debug level"
|
|||||||
msgstr "Livello di debug"
|
msgstr "Livello di debug"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||||
"5:trace\n"
|
"trace\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Imposta livello di debug. 0:fatale, 1:errore, 2:avviso, 3:info, 4:debug, "
|
"Imposta livello di debug. 0:fatale, 1:errore, 2:avviso, 3:info, 4:debug, 5:"
|
||||||
"5:traccia\n"
|
"traccia\n"
|
||||||
|
|
||||||
msgid "Enable timelapse for print"
|
msgid "Enable timelapse for print"
|
||||||
msgstr "Abilita timelapse per la stampa"
|
msgstr "Abilita timelapse per la stampa"
|
||||||
@@ -18749,13 +18862,13 @@ msgstr "Impossibile leggere il file fornito perché è vuoto"
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
|
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Formato file sconosciuto: il file di input deve avere "
|
"Formato file sconosciuto: il file di input deve avere un'estensione .stl, ."
|
||||||
"un'estensione .stl, .obj o .amf(.xml)."
|
"obj o .amf(.xml)."
|
||||||
|
|
||||||
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
|
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Formato file sconosciuto: il file di input deve avere un'estensione .3mf "
|
"Formato file sconosciuto: il file di input deve avere un'estensione .3mf o ."
|
||||||
"o .zip.amf."
|
"zip.amf."
|
||||||
|
|
||||||
msgid "load_obj: failed to parse"
|
msgid "load_obj: failed to parse"
|
||||||
msgstr "load_obj: impossibile analizzare"
|
msgstr "load_obj: impossibile analizzare"
|
||||||
@@ -18873,10 +18986,6 @@ msgstr "Il nome è lo stesso di un altro nome profilo esistente"
|
|||||||
msgid "create new preset failed."
|
msgid "create new preset failed."
|
||||||
msgstr "creazione nuovo profilo non riuscita."
|
msgstr "creazione nuovo profilo non riuscita."
|
||||||
|
|
||||||
#, c-format, boost-format
|
|
||||||
msgid "The selected preset: %s is not found."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid "Could not find parameter: %s."
|
msgid "Could not find parameter: %s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -19571,6 +19680,23 @@ msgstr ""
|
|||||||
msgid "Input shaper type"
|
msgid "Input shaper type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Please ensure the selected type is compatible with your firmware version."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Marlin version => 2.1.2\n"
|
||||||
|
"Fixed-Time motion not yet implemented."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Klipper version => 0.9.0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"RepRap firmware version => 3.4.0\n"
|
||||||
|
"Check your firmware documentation for supported shaper types."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency (Start / End): "
|
msgid "Frequency (Start / End): "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -19605,6 +19731,9 @@ msgstr ""
|
|||||||
msgid "Input shaping Damp test"
|
msgid "Input shaping Damp test"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Check firmware compatibility."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency: "
|
msgid "Frequency: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -19944,12 +20073,12 @@ msgstr ""
|
|||||||
"Vuoi riscriverlo?"
|
"Vuoi riscriverlo?"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||||
"selected\".\n"
|
"\".\n"
|
||||||
"To add preset for more printers, please go to printer selection"
|
"To add preset for more printers, please go to printer selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Rinomineremo i profili come \"Produttore Tipo Seriale @stampante "
|
"Rinomineremo i profili come \"Produttore Tipo Seriale @stampante selezionata"
|
||||||
"selezionata\".\n"
|
"\".\n"
|
||||||
"Per aggiungere il profilo per più stampanti, vai alla selezione della "
|
"Per aggiungere il profilo per più stampanti, vai alla selezione della "
|
||||||
"stampante"
|
"stampante"
|
||||||
|
|
||||||
@@ -19997,9 +20126,6 @@ msgstr ""
|
|||||||
msgid "Can't find my nozzle diameter"
|
msgid "Can't find my nozzle diameter"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Rectangle"
|
|
||||||
msgstr "Rettangolo"
|
|
||||||
|
|
||||||
msgid "Printable Space"
|
msgid "Printable Space"
|
||||||
msgstr "Spazio di stampa"
|
msgstr "Spazio di stampa"
|
||||||
|
|
||||||
@@ -21357,6 +21483,127 @@ msgstr ""
|
|||||||
msgid "More Colors"
|
msgid "More Colors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Network Plug-in Update Available"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bambu Network Plug-in Required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
|
||||||
|
"and remote printing."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Error: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Version to install:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Download and Install"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip for Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "A new version of the Bambu Network Plug-in is available."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Current version: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update to version:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Remind Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Don't Ask Again"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The Bambu Network Plug-in has been installed successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"A restart is required to load the new plug-in. Would you like to restart now?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "NO RAMMING AT ALL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Volumetric speed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Step file import parameters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Smaller linear and angular deflections result in higher-quality "
|
||||||
|
"transformations but increase the processing time."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Linear Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Angle Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Split compound and compsolid into multiple objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Number of triangular facets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Calculating, please wait..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. "
|
||||||
|
"Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament model is unknown. Still using the previous filament preset."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. A "
|
||||||
|
"random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. A random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: resources/data/hints.ini: [hint:Precise wall]
|
#: resources/data/hints.ini: [hint:Precise wall]
|
||||||
msgid ""
|
msgid ""
|
||||||
"Precise wall\n"
|
"Precise wall\n"
|
||||||
@@ -21757,9 +22004,6 @@ msgstr ""
|
|||||||
#~ "Impossibile installare il modulo. Verificare se è bloccato o se è stato "
|
#~ "Impossibile installare il modulo. Verificare se è bloccato o se è stato "
|
||||||
#~ "eliminato dall'antivirus."
|
#~ "eliminato dall'antivirus."
|
||||||
|
|
||||||
#~ msgid "°C"
|
|
||||||
#~ msgstr "°C"
|
|
||||||
|
|
||||||
#~ msgid "travel"
|
#~ msgid "travel"
|
||||||
#~ msgstr "spostamento"
|
#~ msgstr "spostamento"
|
||||||
|
|
||||||
@@ -21800,9 +22044,6 @@ msgstr ""
|
|||||||
#~ msgid "Advance"
|
#~ msgid "Advance"
|
||||||
#~ msgstr "Avanzato"
|
#~ msgstr "Avanzato"
|
||||||
|
|
||||||
#~ msgid "Packing data to 3MF"
|
|
||||||
#~ msgstr "Archiviazione dati su 3mf"
|
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "Controls the density (spacing) of external bridge lines. 100% means solid "
|
#~ "Controls the density (spacing) of external bridge lines. 100% means solid "
|
||||||
#~ "bridge. Default is 100%.\n"
|
#~ "bridge. Default is 100%.\n"
|
||||||
@@ -22772,9 +23013,6 @@ msgstr ""
|
|||||||
#~ "Carica le impostazioni del filamento aggiornate quando si utilizza "
|
#~ "Carica le impostazioni del filamento aggiornate quando si utilizza "
|
||||||
#~ "Aggiorna."
|
#~ "Aggiorna."
|
||||||
|
|
||||||
#~ msgid "Downward machines settings"
|
|
||||||
#~ msgstr "Impostazioni macchine"
|
|
||||||
|
|
||||||
#~ msgid "Load filament IDs for each object"
|
#~ msgid "Load filament IDs for each object"
|
||||||
#~ msgstr "Carica gli ID dei filamenti per ogni oggetto"
|
#~ msgstr "Carica gli ID dei filamenti per ogni oggetto"
|
||||||
|
|
||||||
@@ -23240,10 +23478,9 @@ msgstr ""
|
|||||||
#~ "\n"
|
#~ "\n"
|
||||||
#~ "\n"
|
#~ "\n"
|
||||||
#~ "Per impostazione predefinita, i piccoli bridge interni vengono filtrati e "
|
#~ "Per impostazione predefinita, i piccoli bridge interni vengono filtrati e "
|
||||||
#~ "il riempimento solido interno viene stampato direttamente sul "
|
#~ "il riempimento solido interno viene stampato direttamente sul riempimento."
|
||||||
#~ "riempimento.Questo metodo funziona bene nella maggior parte dei casi, "
|
#~ "Questo metodo funziona bene nella maggior parte dei casi, velocizzando la "
|
||||||
#~ "velocizzando la stampa senza compromettere troppo la qualità della "
|
#~ "stampa senza compromettere troppo la qualità della superficie superiore.\n"
|
||||||
#~ "superficie superiore.\n"
|
|
||||||
#~ "\n"
|
#~ "\n"
|
||||||
#~ "Tuttavia, in modelli fortemente inclinati o curvi, soprattutto se si "
|
#~ "Tuttavia, in modelli fortemente inclinati o curvi, soprattutto se si "
|
||||||
#~ "utilizza una densità di riempimento troppo bassa, potrebbe comportare "
|
#~ "utilizza una densità di riempimento troppo bassa, potrebbe comportare "
|
||||||
@@ -23457,13 +23694,12 @@ msgstr ""
|
|||||||
#~ "nostro wiki.\n"
|
#~ "nostro wiki.\n"
|
||||||
#~ "\n"
|
#~ "\n"
|
||||||
#~ "Di solito la calibrazione non è necessaria. Quando si avvia una stampa a "
|
#~ "Di solito la calibrazione non è necessaria. Quando si avvia una stampa a "
|
||||||
#~ "singolo colore/materiale, con l'opzione \"calibrazione dinamica del "
|
#~ "singolo colore/materiale, con l'opzione \"calibrazione dinamica del flusso"
|
||||||
#~ "flusso\" selezionata nel menu di avvio della stampa, la stampante seguirà "
|
#~ "\" selezionata nel menu di avvio della stampa, la stampante seguirà il "
|
||||||
#~ "il vecchio modo, calibrando il filamento prima della stampa; Quando si "
|
#~ "vecchio modo, calibrando il filamento prima della stampa; Quando si avvia "
|
||||||
#~ "avvia una stampa multicolore/materiale, la stampante utilizzerà il "
|
#~ "una stampa multicolore/materiale, la stampante utilizzerà il parametro di "
|
||||||
#~ "parametro di compensazione predefinito per il filamento durante ogni "
|
#~ "compensazione predefinito per il filamento durante ogni cambio di "
|
||||||
#~ "cambio di filamento, che avrà un buon risultato nella maggior parte dei "
|
#~ "filamento, che avrà un buon risultato nella maggior parte dei casi.\n"
|
||||||
#~ "casi.\n"
|
|
||||||
#~ "\n"
|
#~ "\n"
|
||||||
#~ "Si prega di notare che ci sono alcuni casi che renderanno il risultato "
|
#~ "Si prega di notare che ci sono alcuni casi che renderanno il risultato "
|
||||||
#~ "della calibrazione non affidabile: utilizzo di una piastra di texture per "
|
#~ "della calibrazione non affidabile: utilizzo di una piastra di texture per "
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Orca Slicer\n"
|
"Project-Id-Version: Orca Slicer\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
|
||||||
"PO-Revision-Date: \n"
|
"PO-Revision-Date: \n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
@@ -14,26 +14,6 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Poedit 3.2.2\n"
|
"X-Generator: Poedit 3.2.2\n"
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. "
|
|
||||||
"Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament model is unknown. Still using the previous filament preset."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. A "
|
|
||||||
"random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. A random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "right"
|
msgid "right"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1561,6 +1541,30 @@ msgstr ""
|
|||||||
msgid "Flip by Face 2"
|
msgid "Flip by Face 2"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Assemble"
|
||||||
|
msgstr "組立てる"
|
||||||
|
|
||||||
|
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "(Moving)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Point and point assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"It is recommended to assemble the objects first,\n"
|
||||||
|
"because the objects is restriced to bed \n"
|
||||||
|
"and only parts can be lifted."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Face and face assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Notice"
|
msgid "Notice"
|
||||||
msgstr "通知"
|
msgstr "通知"
|
||||||
|
|
||||||
@@ -1597,6 +1601,54 @@ msgstr "構成ファイル %1% がロードされましたが、一部の値が
|
|||||||
msgid "Based on PrusaSlicer and BambuStudio"
|
msgid "Based on PrusaSlicer and BambuStudio"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "STEP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "STL files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "OBJ files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "AMF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Gcode 3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "G-code files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Supported files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "ZIP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Project files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Known files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "INI files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "SVG files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Texture"
|
||||||
|
msgstr "テクスチャ"
|
||||||
|
|
||||||
|
msgid "Masked SLA files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Draco files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
||||||
"It will be appreciated if you report the issue to our team."
|
"It will be appreciated if you report the issue to our team."
|
||||||
@@ -1620,10 +1672,10 @@ msgstr ""
|
|||||||
msgid "Untitled"
|
msgid "Untitled"
|
||||||
msgstr "名称未設定"
|
msgstr "名称未設定"
|
||||||
|
|
||||||
msgid "Reloading network plugin..."
|
msgid "Reloading network plug-in..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Network Plugin"
|
msgid "Downloading Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Bambu Network Plug-in"
|
msgid "Downloading Bambu Network Plug-in"
|
||||||
@@ -1711,6 +1763,9 @@ msgstr "ZIPファイルの選択"
|
|||||||
msgid "Choose one file (GCODE/3MF):"
|
msgid "Choose one file (GCODE/3MF):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Ext"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Some presets are modified."
|
msgid "Some presets are modified."
|
||||||
msgstr "プリセットが変更されました。"
|
msgstr "プリセットが変更されました。"
|
||||||
|
|
||||||
@@ -1768,7 +1823,7 @@ msgid ""
|
|||||||
"access, enabling full functionality with OrcaSlicer."
|
"access, enabling full functionality with OrcaSlicer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network Plugin Restriction"
|
msgid "Network Plug-in Restriction"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Privacy Policy Update"
|
msgid "Privacy Policy Update"
|
||||||
@@ -1996,6 +2051,9 @@ msgid ""
|
|||||||
"No - Do not change these settings for me"
|
"No - Do not change these settings for me"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Suggestion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "テキスト"
|
msgstr "テキスト"
|
||||||
|
|
||||||
@@ -2105,9 +2163,6 @@ msgstr "メートルから変換"
|
|||||||
msgid "Restore to meters"
|
msgid "Restore to meters"
|
||||||
msgstr "メータル単位に復元"
|
msgstr "メータル単位に復元"
|
||||||
|
|
||||||
msgid "Assemble"
|
|
||||||
msgstr "組立てる"
|
|
||||||
|
|
||||||
msgid "Assemble the selected objects to an object with multiple parts"
|
msgid "Assemble the selected objects to an object with multiple parts"
|
||||||
msgstr "選択したオブジェクトを一つオブジェクトに組み立てます(複数パーツ)"
|
msgstr "選択したオブジェクトを一つオブジェクトに組み立てます(複数パーツ)"
|
||||||
|
|
||||||
@@ -2596,6 +2651,10 @@ msgstr "マルチカラー造形"
|
|||||||
msgid "Line Type"
|
msgid "Line Type"
|
||||||
msgstr "種類"
|
msgstr "種類"
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "1x1 Grid: %d mm"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "More"
|
msgid "More"
|
||||||
msgstr "詳細"
|
msgstr "詳細"
|
||||||
|
|
||||||
@@ -2715,7 +2774,7 @@ msgstr "プリンターとOrcaのネットワーク接続を確認してくだ
|
|||||||
msgid "Connecting..."
|
msgid "Connecting..."
|
||||||
msgstr "接続中…"
|
msgstr "接続中…"
|
||||||
|
|
||||||
msgid "Auto-refill"
|
msgid "Auto Refill"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Load"
|
msgid "Load"
|
||||||
@@ -3096,6 +3155,38 @@ msgid ""
|
|||||||
"Storage before sending to printer."
|
"Storage before sending to printer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossCreateObjectJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text object"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossUpdateJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Created text volume is empty. Change text or font."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for CreateSurfaceVolumeJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for UseSurfaceJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRN: This is the title of the action appearing in undo/redo stack.
|
||||||
|
#. It is same for Text and SVG.
|
||||||
|
msgid "Emboss attribute change"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text Volume"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Font doesn't have any shape for given text."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "There is no valid surface for text projection."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Thermal Preconditioning for first layer optimization"
|
msgid "Thermal Preconditioning for first layer optimization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3409,9 +3500,6 @@ msgstr ""
|
|||||||
msgid "Nozzle"
|
msgid "Nozzle"
|
||||||
msgstr "ノズル"
|
msgstr "ノズル"
|
||||||
|
|
||||||
msgid "Ext"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
||||||
@@ -3472,9 +3560,6 @@ msgstr "AMSのフィラメントで造形します"
|
|||||||
msgid "Print with filaments mounted on the back of the chassis"
|
msgid "Print with filaments mounted on the back of the chassis"
|
||||||
msgstr "外部スプールホルダーのフィラメントで造形します"
|
msgstr "外部スプールホルダーのフィラメントで造形します"
|
||||||
|
|
||||||
msgid "Auto Refill"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Left"
|
msgid "Left"
|
||||||
msgstr "左面"
|
msgstr "左面"
|
||||||
|
|
||||||
@@ -3486,7 +3571,7 @@ msgid ""
|
|||||||
"following order."
|
"following order."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Identical filament: same brand, type and color"
|
msgid "Identical filament: same brand, type and color."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Group"
|
msgid "Group"
|
||||||
@@ -3610,8 +3695,8 @@ msgid "Calibration"
|
|||||||
msgstr "キャリブレーション"
|
msgstr "キャリブレーション"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Failed to download the plug-in. Please check your firewall settings and vpn "
|
"Failed to download the plug-in. Please check your firewall settings and VPN "
|
||||||
"software, check and retry."
|
"software and retry."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"プラグインをダウンロードできませんでした。ファイアウォールやVPN設定をご確認く"
|
"プラグインをダウンロードできませんでした。ファイアウォールやVPN設定をご確認く"
|
||||||
"ださい。"
|
"ださい。"
|
||||||
@@ -3626,8 +3711,8 @@ msgid "Click here to see more info"
|
|||||||
msgstr "詳しくはこちら"
|
msgstr "詳しくはこちら"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The network plugin was installed but could not be loaded. Please restart the "
|
"The network plug-in was installed but could not be loaded. Please restart "
|
||||||
"application."
|
"the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Restart Required"
|
msgid "Restart Required"
|
||||||
@@ -3792,9 +3877,6 @@ msgstr "STLからシェープデータを読込む"
|
|||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "設定"
|
msgstr "設定"
|
||||||
|
|
||||||
msgid "Texture"
|
|
||||||
msgstr "テクスチャ"
|
|
||||||
|
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "削除"
|
msgstr "削除"
|
||||||
|
|
||||||
@@ -3965,6 +4047,7 @@ msgid ""
|
|||||||
"Reset to 0."
|
"Reset to 0."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Lock depth should smaller than skin depth.\n"
|
"Lock depth should smaller than skin depth.\n"
|
||||||
"Reset to 50% of skin depth."
|
"Reset to 50% of skin depth."
|
||||||
@@ -4575,6 +4658,9 @@ msgstr ""
|
|||||||
msgid "Fan speed"
|
msgid "Fan speed"
|
||||||
msgstr "回転速度"
|
msgstr "回転速度"
|
||||||
|
|
||||||
|
msgid "°C"
|
||||||
|
msgstr "°C"
|
||||||
|
|
||||||
msgid "Time"
|
msgid "Time"
|
||||||
msgstr "時間"
|
msgstr "時間"
|
||||||
|
|
||||||
@@ -4731,7 +4817,7 @@ msgstr "実速度 (mm/s)"
|
|||||||
msgid "Fan Speed (%)"
|
msgid "Fan Speed (%)"
|
||||||
msgstr "ファン回転速度 (%)"
|
msgstr "ファン回転速度 (%)"
|
||||||
|
|
||||||
msgid "Temperature (℃)"
|
msgid "Temperature (°C)"
|
||||||
msgstr "温度 (℃)"
|
msgstr "温度 (℃)"
|
||||||
|
|
||||||
msgid "Volumetric flow rate (mm³/s)"
|
msgid "Volumetric flow rate (mm³/s)"
|
||||||
@@ -5050,7 +5136,7 @@ msgstr "ボリューム"
|
|||||||
msgid "Size:"
|
msgid "Size:"
|
||||||
msgstr "サイズ:"
|
msgstr "サイズ:"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||||
"separate the conflicted objects farther (%s <-> %s)."
|
"separate the conflicted objects farther (%s <-> %s)."
|
||||||
@@ -5121,7 +5207,7 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
||||||
"mixing in models. Please redjust flushing settings."
|
"mixing in models. Please readjust flushing settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Click Wiki for help."
|
msgid "Click Wiki for help."
|
||||||
@@ -6374,6 +6460,9 @@ msgid ""
|
|||||||
"to give a positive rating (4 or 5 stars)."
|
"to give a positive rating (4 or 5 stars)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "click to add machine"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr "デバイス状態"
|
msgstr "デバイス状態"
|
||||||
|
|
||||||
@@ -6384,6 +6473,14 @@ msgstr ""
|
|||||||
msgid "Assistant(HMS)"
|
msgid "Assistant(HMS)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s (%s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Don't show again"
|
msgid "Don't show again"
|
||||||
msgstr "次回から表示しない"
|
msgstr "次回から表示しない"
|
||||||
|
|
||||||
@@ -6752,7 +6849,7 @@ msgstr ""
|
|||||||
msgid "Unavailable while heating maintenance function is on."
|
msgid "Unavailable while heating maintenance function is on."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Idel Heating Protection"
|
msgid "Idle Heating Protection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
||||||
@@ -7287,7 +7384,8 @@ msgid "Please resolve the slicing errors and publish again."
|
|||||||
msgstr "スライシングエラーを解決して、もう一度公開していください"
|
msgstr "スライシングエラーを解決して、もう一度公開していください"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Network Plug-in is not detected. Network related features are unavailable."
|
"The network plug-in was not detected. Network related features are "
|
||||||
|
"unavailable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"ネットワーク プラグインが検出されません。ネットワーク関連の機能は利用できませ"
|
"ネットワーク プラグインが検出されません。ネットワーク関連の機能は利用できませ"
|
||||||
"ん。"
|
"ん。"
|
||||||
@@ -7838,7 +7936,7 @@ msgstr ""
|
|||||||
msgid "filaments"
|
msgid "filaments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
msgid "Optimizes filament area maximum height by chosen filament count."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Features"
|
msgid "Features"
|
||||||
@@ -8027,40 +8125,40 @@ msgstr ""
|
|||||||
msgid "Color only"
|
msgid "Color only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin"
|
msgid "Network plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Enable network plugin"
|
msgid "Enable network plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin version"
|
msgid "Network plug-in version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Select the network plugin version to use"
|
msgid "Select the network plug-in version to use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "(Latest)"
|
msgid "(Latest)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin switched successfully."
|
msgid "Network plug-in switched successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to load network plugin. Please restart the application."
|
msgid "Failed to load network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You've selected network plugin version %s.\n"
|
"You've selected network plug-in version %s.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Would you like to download and install this version now?\n"
|
"Would you like to download and install this version now?\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Note: The application may need to restart after installation."
|
"Note: The application may need to restart after installation."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Download Network Plugin"
|
msgid "Download Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Associate files to OrcaSlicer"
|
msgid "Associate files to OrcaSlicer"
|
||||||
@@ -8133,19 +8231,16 @@ msgstr "デバッグ"
|
|||||||
msgid "trace"
|
msgid "trace"
|
||||||
msgstr "トレース"
|
msgstr "トレース"
|
||||||
|
|
||||||
msgid "Network Plugin"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Reload"
|
msgid "Reload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload the network plugin without restarting the application"
|
msgid "Reload the network plug-in without restarting the application"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin reloaded successfully."
|
msgid "Network plug-in reloaded successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to reload network plugin. Please restart the application."
|
msgid "Failed to reload network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload Failed"
|
msgid "Reload Failed"
|
||||||
@@ -8364,7 +8459,10 @@ msgstr "公開は取り消しました"
|
|||||||
msgid "Slicing Plate 1"
|
msgid "Slicing Plate 1"
|
||||||
msgstr "プレート1をスライス"
|
msgstr "プレート1をスライス"
|
||||||
|
|
||||||
msgid "Packing data to 3mf"
|
msgid "Packing data to 3MF"
|
||||||
|
msgstr "データを構成中"
|
||||||
|
|
||||||
|
msgid "Uploading data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Jump to webpage"
|
msgid "Jump to webpage"
|
||||||
@@ -8670,7 +8768,7 @@ msgstr ""
|
|||||||
msgid "Textured PEI Plate"
|
msgid "Textured PEI Plate"
|
||||||
msgstr "PEIプレート"
|
msgstr "PEIプレート"
|
||||||
|
|
||||||
msgid "Cool Plate (Supertack)"
|
msgid "Cool Plate (SuperTack)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Click here if you can't connect to the printer"
|
msgid "Click here if you can't connect to the printer"
|
||||||
@@ -8965,7 +9063,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection. There may be flaws on the "
|
"A prime tower is required for clumping detection. There may be flaws on the "
|
||||||
"model without prime tower. Do you still want to enable clumping detection?"
|
"model without prime tower. Do you still want to enable clumping detection?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -9061,8 +9159,8 @@ msgstr ""
|
|||||||
msgid ""
|
msgid ""
|
||||||
"When recording timelapse without toolhead, it is recommended to add a "
|
"When recording timelapse without toolhead, it is recommended to add a "
|
||||||
"\"Timelapse Wipe Tower\" \n"
|
"\"Timelapse Wipe Tower\" \n"
|
||||||
"by right-click the empty position of build plate and choose \"Add "
|
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
"\"->\"Timelapse Wipe Tower\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"ヘッド無しのタイムラプスビデオを録画する時に、「タイムラプスプライムタワー」"
|
"ヘッド無しのタイムラプスビデオを録画する時に、「タイムラプスプライムタワー」"
|
||||||
"を追加してください。プレートで右クリックして、「プリミティブを追加」→「タイム"
|
"を追加してください。プレートで右クリックして、「プリミティブを追加」→「タイム"
|
||||||
@@ -9271,9 +9369,6 @@ msgstr "造形温度"
|
|||||||
msgid "Nozzle temperature when printing"
|
msgid "Nozzle temperature when printing"
|
||||||
msgstr "ノズル温度"
|
msgstr "ノズル温度"
|
||||||
|
|
||||||
msgid "Cool Plate (SuperTack)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
||||||
"means the filament does not support printing on the Cool Plate SuperTack."
|
"means the filament does not support printing on the Cool Plate SuperTack."
|
||||||
@@ -9697,6 +9792,12 @@ msgstr "全てのプリセットを表示"
|
|||||||
msgid "Select presets to compare"
|
msgid "Select presets to compare"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Left Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Right Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can only transfer to current active profile because it has been modified."
|
"You can only transfer to current active profile because it has been modified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -10109,6 +10210,12 @@ msgstr ""
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "サインイン"
|
msgstr "サインイン"
|
||||||
|
|
||||||
|
msgid "[Action Required] "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "[Action Required]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "The configuration package is changed in previous Config Guide"
|
msgid "The configuration package is changed in previous Config Guide"
|
||||||
msgstr "構成パッケージが前のコンフィグガイドに変更されました"
|
msgstr "構成パッケージが前のコンフィグガイドに変更されました"
|
||||||
|
|
||||||
@@ -10806,7 +10913,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection; otherwise, there may be "
|
"A prime tower is required for clumping detection; otherwise, there may be "
|
||||||
"flaws on the model."
|
"flaws on the model."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -12097,7 +12204,7 @@ msgid ""
|
|||||||
"models\n"
|
"models\n"
|
||||||
"3. No filtering - creates internal bridges on every potential internal "
|
"3. No filtering - creates internal bridges on every potential internal "
|
||||||
"overhang. This option is useful for heavily slanted top surface models; "
|
"overhang. This option is useful for heavily slanted top surface models; "
|
||||||
"however, in most cases, it creates too many unnecessary bridges"
|
"however, in most cases, it creates too many unnecessary bridges."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Limited filtering"
|
msgid "Limited filtering"
|
||||||
@@ -12473,7 +12580,7 @@ msgid ""
|
|||||||
"less acceleration you print, the larger the range of acceptable PA values. "
|
"less acceleration you print, the larger the range of acceptable PA values. "
|
||||||
"If no difference is visible, use the PA value from the faster test\n"
|
"If no difference is visible, use the PA value from the faster test\n"
|
||||||
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
||||||
"here and save your filament profile"
|
"here and save your filament profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||||
@@ -13150,8 +13257,8 @@ msgid "mm/s² or %"
|
|||||||
msgstr "mm/s² 或は %"
|
msgstr "mm/s² 或は %"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
"g. 100%), it will be calculated based on the default acceleration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -13256,10 +13363,10 @@ msgstr "最大回転速度の積層"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Fan speed will be ramped up linearly from zero at layer "
|
"Fan speed will be ramped up linearly from zero at layer "
|
||||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "layer"
|
msgid "layer"
|
||||||
@@ -13674,9 +13781,9 @@ msgstr "オブジェクトにラベルを付ける"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this to add comments into the G-code labeling print moves with what "
|
"Enable this to add comments into the G-code labeling print moves with what "
|
||||||
"object they belong to, which is useful for the Octoprint CancelObject "
|
"object they belong to, which is useful for the Octoprint CancelObject plug-"
|
||||||
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
|
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
|
||||||
"setup and Wipe into Object / Wipe into Infill."
|
"and Wipe into Object / Wipe into Infill."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"このオプションを有効にすると、Gコードのプリント移動コマンドに、どのオブジェク"
|
"このオプションを有効にすると、Gコードのプリント移動コマンドに、どのオブジェク"
|
||||||
"トに属するものかがわかるようにラベルコメントが追加されます。これはOctoprintの"
|
"トに属するものかがわかるようにラベルコメントが追加されます。これはOctoprintの"
|
||||||
@@ -13895,8 +14002,8 @@ msgid ""
|
|||||||
"\"mmu_segmented_region_interlocking_depth\" is bigger than "
|
"\"mmu_segmented_region_interlocking_depth\" is bigger than "
|
||||||
"\"mmu_segmented_region_max_width\". Zero disables this feature."
|
"\"mmu_segmented_region_max_width\". Zero disables this feature."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"セグメント化された領域の連動深さ。mmu_segmented_region_max_width \"が0か、"
|
"セグメント化された領域の連動深さ。mmu_segmented_region_max_width \"が0"
|
||||||
"\"mmu_segmented_region_interlocking_depth \"が "
|
"か、\"mmu_segmented_region_interlocking_depth \"が "
|
||||||
"\"mmu_segmented_region_max_width \"より大きい場合は無視される。ゼロはこの機能"
|
"\"mmu_segmented_region_max_width \"より大きい場合は無視される。ゼロはこの機能"
|
||||||
"を無効にする。"
|
"を無効にする。"
|
||||||
|
|
||||||
@@ -13959,7 +14066,7 @@ msgstr "アイロン面"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Ironing is using small flow to print on same height of surface again to make "
|
"Ironing is using small flow to print on same height of surface again to make "
|
||||||
"flat surface more smooth. This setting controls which layer being ironed"
|
"flat surface more smooth. This setting controls which layer being ironed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"アイロンでは、小さな流量で水平の表面をならします。ならす面を選択してくださ"
|
"アイロンでは、小さな流量で水平の表面をならします。ならす面を選択してくださ"
|
||||||
"い。"
|
"い。"
|
||||||
@@ -14856,8 +14963,8 @@ msgid "Role base wipe speed"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
"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 "
|
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||||
"wipe action."
|
"wipe action."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -15062,7 +15169,7 @@ msgid ""
|
|||||||
"timelapse video when printing completes. If smooth mode is selected, the "
|
"timelapse video when printing completes. If smooth mode is selected, the "
|
||||||
"toolhead will move to the excess chute after each layer is printed and then "
|
"toolhead will move to the excess chute after each layer is printed and then "
|
||||||
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
||||||
"process of taking a snapshot, prime tower is required for smooth mode to "
|
"process of taking a snapshot, a prime tower is required for smooth mode to "
|
||||||
"wipe nozzle."
|
"wipe nozzle."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"有効にした場合、タイムラプスビデオを録画します。「スムーズ」では1層を造形した"
|
"有効にした場合、タイムラプスビデオを録画します。「スムーズ」では1層を造形した"
|
||||||
@@ -15597,8 +15704,8 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this option for automated chamber temperature control. This option "
|
"Enable this option for automated chamber temperature control. This option "
|
||||||
"activates the emitting of an M191 command before the "
|
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||||
"\"machine_start_gcode\"\n"
|
"\"\n"
|
||||||
" which sets the chamber temperature and waits until it is reached. In "
|
" 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 "
|
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||||
"chamber heater, if present.\n"
|
"chamber heater, if present.\n"
|
||||||
@@ -15829,6 +15936,12 @@ msgid ""
|
|||||||
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
|
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Rectangle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Rib"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Extra rib length"
|
msgid "Extra rib length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -16363,7 +16476,7 @@ msgid ""
|
|||||||
"machines in the list."
|
"machines in the list."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "downward machines settings"
|
msgid "Downward machines settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "The machine settings list needs to do downward checking."
|
msgid "The machine settings list needs to do downward checking."
|
||||||
@@ -16396,11 +16509,11 @@ msgid "Debug level"
|
|||||||
msgstr "デバッグ レベル"
|
msgstr "デバッグ レベル"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||||
"5:trace\n"
|
"trace\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"デバッグロギングレベルを設定します。0:fatal、1:error、2:warning、3:info、"
|
"デバッグロギングレベルを設定します。0:fatal、1:error、2:warning、3:info、4:"
|
||||||
"4:debug、5:trace。\n"
|
"debug、5:trace。\n"
|
||||||
|
|
||||||
msgid "Enable timelapse for print"
|
msgid "Enable timelapse for print"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -17014,10 +17127,6 @@ msgstr ""
|
|||||||
msgid "create new preset failed."
|
msgid "create new preset failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, c-format, boost-format
|
|
||||||
msgid "The selected preset: %s is not found."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid "Could not find parameter: %s."
|
msgid "Could not find parameter: %s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -17615,6 +17724,23 @@ msgstr ""
|
|||||||
msgid "Input shaper type"
|
msgid "Input shaper type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Please ensure the selected type is compatible with your firmware version."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Marlin version => 2.1.2\n"
|
||||||
|
"Fixed-Time motion not yet implemented."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Klipper version => 0.9.0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"RepRap firmware version => 3.4.0\n"
|
||||||
|
"Check your firmware documentation for supported shaper types."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency (Start / End): "
|
msgid "Frequency (Start / End): "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -17649,6 +17775,9 @@ msgstr ""
|
|||||||
msgid "Input shaping Damp test"
|
msgid "Input shaping Damp test"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Check firmware compatibility."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency: "
|
msgid "Frequency: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -17964,8 +18093,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||||
"selected\".\n"
|
"\".\n"
|
||||||
"To add preset for more printers, please go to printer selection"
|
"To add preset for more printers, please go to printer selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -18011,9 +18140,6 @@ msgstr ""
|
|||||||
msgid "Can't find my nozzle diameter"
|
msgid "Can't find my nozzle diameter"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Rectangle"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Printable Space"
|
msgid "Printable Space"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -19194,6 +19320,127 @@ msgstr ""
|
|||||||
msgid "More Colors"
|
msgid "More Colors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Network Plug-in Update Available"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bambu Network Plug-in Required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
|
||||||
|
"and remote printing."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Error: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Version to install:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Download and Install"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip for Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "A new version of the Bambu Network Plug-in is available."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Current version: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update to version:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Remind Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Don't Ask Again"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The Bambu Network Plug-in has been installed successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"A restart is required to load the new plug-in. Would you like to restart now?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "NO RAMMING AT ALL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Volumetric speed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Step file import parameters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Smaller linear and angular deflections result in higher-quality "
|
||||||
|
"transformations but increase the processing time."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Linear Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Angle Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Split compound and compsolid into multiple objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Number of triangular facets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Calculating, please wait..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. "
|
||||||
|
"Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament model is unknown. Still using the previous filament preset."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. A "
|
||||||
|
"random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. A random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: resources/data/hints.ini: [hint:Precise wall]
|
#: resources/data/hints.ini: [hint:Precise wall]
|
||||||
msgid ""
|
msgid ""
|
||||||
"Precise wall\n"
|
"Precise wall\n"
|
||||||
@@ -19527,9 +19774,6 @@ msgstr ""
|
|||||||
#~ "deleted by anti-virus software."
|
#~ "deleted by anti-virus software."
|
||||||
#~ msgstr "プラグインをインストールできませんでした。ご確認ください。"
|
#~ msgstr "プラグインをインストールできませんでした。ご確認ください。"
|
||||||
|
|
||||||
#~ msgid "°C"
|
|
||||||
#~ msgstr "°C"
|
|
||||||
|
|
||||||
#~ msgid "travel"
|
#~ msgid "travel"
|
||||||
#~ msgstr "移動"
|
#~ msgstr "移動"
|
||||||
|
|
||||||
@@ -19565,9 +19809,6 @@ msgstr ""
|
|||||||
#~ msgid "Advance"
|
#~ msgid "Advance"
|
||||||
#~ msgstr "高度な設定"
|
#~ msgstr "高度な設定"
|
||||||
|
|
||||||
#~ msgid "Packing data to 3MF"
|
|
||||||
#~ msgstr "データを構成中"
|
|
||||||
|
|
||||||
#~ msgid "°"
|
#~ msgid "°"
|
||||||
#~ msgstr "°"
|
#~ msgstr "°"
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Orca Slicer\n"
|
"Project-Id-Version: Orca Slicer\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
|
||||||
"PO-Revision-Date: 2025-06-02 17:12+0900\n"
|
"PO-Revision-Date: 2025-06-02 17:12+0900\n"
|
||||||
"Last-Translator: crwusiz <crwusiz@gmail.com>\n"
|
"Last-Translator: crwusiz <crwusiz@gmail.com>\n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
@@ -18,26 +18,6 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Poedit 3.6\n"
|
"X-Generator: Poedit 3.6\n"
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. "
|
|
||||||
"Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament model is unknown. Still using the previous filament preset."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. A "
|
|
||||||
"random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. A random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "right"
|
msgid "right"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1570,6 +1550,30 @@ msgstr "평행 거리:"
|
|||||||
msgid "Flip by Face 2"
|
msgid "Flip by Face 2"
|
||||||
msgstr "면 2로 뒤집기"
|
msgstr "면 2로 뒤집기"
|
||||||
|
|
||||||
|
msgid "Assemble"
|
||||||
|
msgstr "병합"
|
||||||
|
|
||||||
|
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "(Moving)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Point and point assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"It is recommended to assemble the objects first,\n"
|
||||||
|
"because the objects is restriced to bed \n"
|
||||||
|
"and only parts can be lifted."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Face and face assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Notice"
|
msgid "Notice"
|
||||||
msgstr "공지사항"
|
msgstr "공지사항"
|
||||||
|
|
||||||
@@ -1606,6 +1610,54 @@ msgstr "구성 파일 \"%1%\"가 로드되었지만 일부 값이 인식되지
|
|||||||
msgid "Based on PrusaSlicer and BambuStudio"
|
msgid "Based on PrusaSlicer and BambuStudio"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "STEP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "STL files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "OBJ files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "AMF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Gcode 3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "G-code files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Supported files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "ZIP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Project files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Known files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "INI files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "SVG files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Texture"
|
||||||
|
msgstr "텍스처"
|
||||||
|
|
||||||
|
msgid "Masked SLA files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Draco files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
||||||
"It will be appreciated if you report the issue to our team."
|
"It will be appreciated if you report the issue to our team."
|
||||||
@@ -1633,10 +1685,10 @@ msgstr "Orca Slicer에 처리되지 않은 예외가 발생했습니다: %1%"
|
|||||||
msgid "Untitled"
|
msgid "Untitled"
|
||||||
msgstr "제목 없음"
|
msgstr "제목 없음"
|
||||||
|
|
||||||
msgid "Reloading network plugin..."
|
msgid "Reloading network plug-in..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Network Plugin"
|
msgid "Downloading Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Bambu Network Plug-in"
|
msgid "Downloading Bambu Network Plug-in"
|
||||||
@@ -1729,6 +1781,9 @@ msgstr "ZIP 파일 선택"
|
|||||||
msgid "Choose one file (GCODE/3MF):"
|
msgid "Choose one file (GCODE/3MF):"
|
||||||
msgstr "하나의 파일 선택 (GCODE/3MF):"
|
msgstr "하나의 파일 선택 (GCODE/3MF):"
|
||||||
|
|
||||||
|
msgid "Ext"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Some presets are modified."
|
msgid "Some presets are modified."
|
||||||
msgstr "일부 사전 설정이 수정 되었습니다."
|
msgstr "일부 사전 설정이 수정 되었습니다."
|
||||||
|
|
||||||
@@ -1788,7 +1843,7 @@ msgid ""
|
|||||||
"access, enabling full functionality with OrcaSlicer."
|
"access, enabling full functionality with OrcaSlicer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network Plugin Restriction"
|
msgid "Network Plug-in Restriction"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Privacy Policy Update"
|
msgid "Privacy Policy Update"
|
||||||
@@ -2024,6 +2079,9 @@ msgstr ""
|
|||||||
"예 - 이 설정을 자동으로 변경합니다\n"
|
"예 - 이 설정을 자동으로 변경합니다\n"
|
||||||
"아니요 - 이 설정을 변경하지 않음"
|
"아니요 - 이 설정을 변경하지 않음"
|
||||||
|
|
||||||
|
msgid "Suggestion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "텍스트"
|
msgstr "텍스트"
|
||||||
|
|
||||||
@@ -2133,9 +2191,6 @@ msgstr "미터에서 변환"
|
|||||||
msgid "Restore to meters"
|
msgid "Restore to meters"
|
||||||
msgstr "미터로 복원"
|
msgstr "미터로 복원"
|
||||||
|
|
||||||
msgid "Assemble"
|
|
||||||
msgstr "병합"
|
|
||||||
|
|
||||||
msgid "Assemble the selected objects to an object with multiple parts"
|
msgid "Assemble the selected objects to an object with multiple parts"
|
||||||
msgstr "선택한 객체를 여러 부품이 있는 객체로 조립"
|
msgstr "선택한 객체를 여러 부품이 있는 객체로 조립"
|
||||||
|
|
||||||
@@ -2629,6 +2684,10 @@ msgstr "멀티컬러 출력"
|
|||||||
msgid "Line Type"
|
msgid "Line Type"
|
||||||
msgstr "선 유형"
|
msgstr "선 유형"
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "1x1 Grid: %d mm"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "More"
|
msgid "More"
|
||||||
msgstr "더보기"
|
msgstr "더보기"
|
||||||
|
|
||||||
@@ -2746,8 +2805,8 @@ msgstr "프린터와 Orca Slicer의 네트워크 연결을 확인하세요."
|
|||||||
msgid "Connecting..."
|
msgid "Connecting..."
|
||||||
msgstr "연결 중..."
|
msgstr "연결 중..."
|
||||||
|
|
||||||
msgid "Auto-refill"
|
msgid "Auto Refill"
|
||||||
msgstr ""
|
msgstr "자동 리필"
|
||||||
|
|
||||||
msgid "Load"
|
msgid "Load"
|
||||||
msgstr "불러오기"
|
msgstr "불러오기"
|
||||||
@@ -3136,6 +3195,38 @@ msgid ""
|
|||||||
"Storage before sending to printer."
|
"Storage before sending to printer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossCreateObjectJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text object"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossUpdateJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Created text volume is empty. Change text or font."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for CreateSurfaceVolumeJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for UseSurfaceJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRN: This is the title of the action appearing in undo/redo stack.
|
||||||
|
#. It is same for Text and SVG.
|
||||||
|
msgid "Emboss attribute change"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text Volume"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Font doesn't have any shape for given text."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "There is no valid surface for text projection."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Thermal Preconditioning for first layer optimization"
|
msgid "Thermal Preconditioning for first layer optimization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3459,9 +3550,6 @@ msgstr ""
|
|||||||
msgid "Nozzle"
|
msgid "Nozzle"
|
||||||
msgstr "노즐"
|
msgstr "노즐"
|
||||||
|
|
||||||
msgid "Ext"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
||||||
@@ -3525,9 +3613,6 @@ msgstr "AMS의 필라멘트로 출력"
|
|||||||
msgid "Print with filaments mounted on the back of the chassis"
|
msgid "Print with filaments mounted on the back of the chassis"
|
||||||
msgstr "섀시 뒷면에 필라멘트를 장착하여 출력"
|
msgstr "섀시 뒷면에 필라멘트를 장착하여 출력"
|
||||||
|
|
||||||
msgid "Auto Refill"
|
|
||||||
msgstr "자동 리필"
|
|
||||||
|
|
||||||
msgid "Left"
|
msgid "Left"
|
||||||
msgstr "왼쪽"
|
msgstr "왼쪽"
|
||||||
|
|
||||||
@@ -3539,7 +3624,7 @@ msgid ""
|
|||||||
"following order."
|
"following order."
|
||||||
msgstr "현재 재료가 소진되면 프린터는 다음 순서로 계속 출력합니다."
|
msgstr "현재 재료가 소진되면 프린터는 다음 순서로 계속 출력합니다."
|
||||||
|
|
||||||
msgid "Identical filament: same brand, type and color"
|
msgid "Identical filament: same brand, type and color."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Group"
|
msgid "Group"
|
||||||
@@ -3673,8 +3758,8 @@ msgid "Calibration"
|
|||||||
msgstr "교정"
|
msgstr "교정"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Failed to download the plug-in. Please check your firewall settings and vpn "
|
"Failed to download the plug-in. Please check your firewall settings and VPN "
|
||||||
"software, check and retry."
|
"software and retry."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"플러그인을 다운로드하지 못했습니다. 방화벽 설정 및 VPN 소프트웨어를 확인하고 "
|
"플러그인을 다운로드하지 못했습니다. 방화벽 설정 및 VPN 소프트웨어를 확인하고 "
|
||||||
"확인한 후 다시 시도하세요."
|
"확인한 후 다시 시도하세요."
|
||||||
@@ -3689,8 +3774,8 @@ msgid "Click here to see more info"
|
|||||||
msgstr "자세한 내용을 보려면 여기를 클릭하세요"
|
msgstr "자세한 내용을 보려면 여기를 클릭하세요"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The network plugin was installed but could not be loaded. Please restart the "
|
"The network plug-in was installed but could not be loaded. Please restart "
|
||||||
"application."
|
"the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Restart Required"
|
msgid "Restart Required"
|
||||||
@@ -3853,9 +3938,6 @@ msgstr "STL에서 모양 불러오기..."
|
|||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "설정"
|
msgstr "설정"
|
||||||
|
|
||||||
msgid "Texture"
|
|
||||||
msgstr "텍스처"
|
|
||||||
|
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "제거"
|
msgstr "제거"
|
||||||
|
|
||||||
@@ -4045,6 +4127,7 @@ msgstr ""
|
|||||||
"심_경사_시작_높이는 레이어_높이보다 작아야 합니다.\n"
|
"심_경사_시작_높이는 레이어_높이보다 작아야 합니다.\n"
|
||||||
"0으로 재설정합니다."
|
"0으로 재설정합니다."
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Lock depth should smaller than skin depth.\n"
|
"Lock depth should smaller than skin depth.\n"
|
||||||
"Reset to 50% of skin depth."
|
"Reset to 50% of skin depth."
|
||||||
@@ -4659,6 +4742,9 @@ msgstr ""
|
|||||||
msgid "Fan speed"
|
msgid "Fan speed"
|
||||||
msgstr "팬 속도"
|
msgstr "팬 속도"
|
||||||
|
|
||||||
|
msgid "°C"
|
||||||
|
msgstr "°C"
|
||||||
|
|
||||||
msgid "Time"
|
msgid "Time"
|
||||||
msgstr "시간"
|
msgstr "시간"
|
||||||
|
|
||||||
@@ -4815,7 +4901,7 @@ msgstr "실제 속도 (mm/s)"
|
|||||||
msgid "Fan Speed (%)"
|
msgid "Fan Speed (%)"
|
||||||
msgstr "팬 속도 (%)"
|
msgstr "팬 속도 (%)"
|
||||||
|
|
||||||
msgid "Temperature (℃)"
|
msgid "Temperature (°C)"
|
||||||
msgstr "온도 (℃)"
|
msgstr "온도 (℃)"
|
||||||
|
|
||||||
msgid "Volumetric flow rate (mm³/s)"
|
msgid "Volumetric flow rate (mm³/s)"
|
||||||
@@ -5134,7 +5220,7 @@ msgstr "용량:"
|
|||||||
msgid "Size:"
|
msgid "Size:"
|
||||||
msgstr "크기:"
|
msgstr "크기:"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||||
"separate the conflicted objects farther (%s <-> %s)."
|
"separate the conflicted objects farther (%s <-> %s)."
|
||||||
@@ -5207,7 +5293,7 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
||||||
"mixing in models. Please redjust flushing settings."
|
"mixing in models. Please readjust flushing settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Click Wiki for help."
|
msgid "Click Wiki for help."
|
||||||
@@ -6016,8 +6102,8 @@ msgid ""
|
|||||||
"The .gcode.3mf file contains no G-code data. Please slice it with Orca "
|
"The .gcode.3mf file contains no G-code data. Please slice it with Orca "
|
||||||
"Slicer and export a new .gcode.3mf file."
|
"Slicer and export a new .gcode.3mf file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
".gcode.3mf 파일에는 Gcode 데이터가 없습니다. OrcaSlicer에서 슬라이스하고 "
|
".gcode.3mf 파일에는 Gcode 데이터가 없습니다. OrcaSlicer에서 슬라이스하고 새 ."
|
||||||
"새 .gcode.3mf 파일을 내보내십시오."
|
"gcode.3mf 파일을 내보내십시오."
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid "File '%s' was lost! Please download it again."
|
msgid "File '%s' was lost! Please download it again."
|
||||||
@@ -6495,6 +6581,9 @@ msgstr ""
|
|||||||
"긍정적인 평가(별4개 또는 5개)를 제공하려면\n"
|
"긍정적인 평가(별4개 또는 5개)를 제공하려면\n"
|
||||||
"이 출력 사전 설정의 성공적인 출력 기록이 하나 이상 필요합니다."
|
"이 출력 사전 설정의 성공적인 출력 기록이 하나 이상 필요합니다."
|
||||||
|
|
||||||
|
msgid "click to add machine"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr "상태"
|
msgstr "상태"
|
||||||
|
|
||||||
@@ -6505,6 +6594,14 @@ msgstr ""
|
|||||||
msgid "Assistant(HMS)"
|
msgid "Assistant(HMS)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s (%s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Don't show again"
|
msgid "Don't show again"
|
||||||
msgstr "다시 표시하지 않음"
|
msgstr "다시 표시하지 않음"
|
||||||
|
|
||||||
@@ -6882,7 +6979,7 @@ msgstr ""
|
|||||||
msgid "Unavailable while heating maintenance function is on."
|
msgid "Unavailable while heating maintenance function is on."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Idel Heating Protection"
|
msgid "Idle Heating Protection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
||||||
@@ -7429,7 +7526,8 @@ msgid "Please resolve the slicing errors and publish again."
|
|||||||
msgstr "슬라이싱 오류를 해결하고 다시 시도하세요."
|
msgstr "슬라이싱 오류를 해결하고 다시 시도하세요."
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Network Plug-in is not detected. Network related features are unavailable."
|
"The network plug-in was not detected. Network related features are "
|
||||||
|
"unavailable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"네트워크 플러그인이 감지되지 않습니다. 네트워크 관련 기능을 사용할 수 없습니"
|
"네트워크 플러그인이 감지되지 않습니다. 네트워크 관련 기능을 사용할 수 없습니"
|
||||||
"다."
|
"다."
|
||||||
@@ -7994,7 +8092,7 @@ msgstr ""
|
|||||||
msgid "filaments"
|
msgid "filaments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
msgid "Optimizes filament area maximum height by chosen filament count."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Features"
|
msgid "Features"
|
||||||
@@ -8189,40 +8287,40 @@ msgstr ""
|
|||||||
msgid "Color only"
|
msgid "Color only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin"
|
msgid "Network plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Enable network plugin"
|
msgid "Enable network plug-in"
|
||||||
msgstr "네트워크 플러그인 사용"
|
msgstr "네트워크 플러그인 사용"
|
||||||
|
|
||||||
msgid "Network plugin version"
|
msgid "Network plug-in version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Select the network plugin version to use"
|
msgid "Select the network plug-in version to use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "(Latest)"
|
msgid "(Latest)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin switched successfully."
|
msgid "Network plug-in switched successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to load network plugin. Please restart the application."
|
msgid "Failed to load network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You've selected network plugin version %s.\n"
|
"You've selected network plug-in version %s.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Would you like to download and install this version now?\n"
|
"Would you like to download and install this version now?\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Note: The application may need to restart after installation."
|
"Note: The application may need to restart after installation."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Download Network Plugin"
|
msgid "Download Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Associate files to OrcaSlicer"
|
msgid "Associate files to OrcaSlicer"
|
||||||
@@ -8299,19 +8397,16 @@ msgstr "디버그"
|
|||||||
msgid "trace"
|
msgid "trace"
|
||||||
msgstr "추적"
|
msgstr "추적"
|
||||||
|
|
||||||
msgid "Network Plugin"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Reload"
|
msgid "Reload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload the network plugin without restarting the application"
|
msgid "Reload the network plug-in without restarting the application"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin reloaded successfully."
|
msgid "Network plug-in reloaded successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to reload network plugin. Please restart the application."
|
msgid "Failed to reload network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload Failed"
|
msgid "Reload Failed"
|
||||||
@@ -8530,7 +8625,10 @@ msgstr "게시가 취소되었습니다"
|
|||||||
msgid "Slicing Plate 1"
|
msgid "Slicing Plate 1"
|
||||||
msgstr "플레이트 1 슬라이싱"
|
msgstr "플레이트 1 슬라이싱"
|
||||||
|
|
||||||
msgid "Packing data to 3mf"
|
msgid "Packing data to 3MF"
|
||||||
|
msgstr "데이터를 3mf로 압축 중"
|
||||||
|
|
||||||
|
msgid "Uploading data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Jump to webpage"
|
msgid "Jump to webpage"
|
||||||
@@ -8844,8 +8942,8 @@ msgstr "부드러운 고온 플레이트"
|
|||||||
msgid "Textured PEI Plate"
|
msgid "Textured PEI Plate"
|
||||||
msgstr "텍스처 PEI 플레이트"
|
msgstr "텍스처 PEI 플레이트"
|
||||||
|
|
||||||
msgid "Cool Plate (Supertack)"
|
msgid "Cool Plate (SuperTack)"
|
||||||
msgstr ""
|
msgstr "쿨 플레이트(슈퍼택)"
|
||||||
|
|
||||||
msgid "Click here if you can't connect to the printer"
|
msgid "Click here if you can't connect to the printer"
|
||||||
msgstr "프린터에 연결할 수 없는 경우 여기를 클릭하세요"
|
msgstr "프린터에 연결할 수 없는 경우 여기를 클릭하세요"
|
||||||
@@ -9154,7 +9252,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection. There may be flaws on the "
|
"A prime tower is required for clumping detection. There may be flaws on the "
|
||||||
"model without prime tower. Do you still want to enable clumping detection?"
|
"model without prime tower. Do you still want to enable clumping detection?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -9269,8 +9367,8 @@ msgstr ""
|
|||||||
msgid ""
|
msgid ""
|
||||||
"When recording timelapse without toolhead, it is recommended to add a "
|
"When recording timelapse without toolhead, it is recommended to add a "
|
||||||
"\"Timelapse Wipe Tower\" \n"
|
"\"Timelapse Wipe Tower\" \n"
|
||||||
"by right-click the empty position of build plate and choose \"Add "
|
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
"\"->\"Timelapse Wipe Tower\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"툴헤드 없이 시간 경과를 기록할 경우 \"타임랩스 프라임 타워\"를 추가하는 것이 "
|
"툴헤드 없이 시간 경과를 기록할 경우 \"타임랩스 프라임 타워\"를 추가하는 것이 "
|
||||||
"좋습니다\n"
|
"좋습니다\n"
|
||||||
@@ -9480,9 +9578,6 @@ msgstr "출력 온도"
|
|||||||
msgid "Nozzle temperature when printing"
|
msgid "Nozzle temperature when printing"
|
||||||
msgstr "출력 시 노즐 온도"
|
msgstr "출력 시 노즐 온도"
|
||||||
|
|
||||||
msgid "Cool Plate (SuperTack)"
|
|
||||||
msgstr "쿨 플레이트(슈퍼택)"
|
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
||||||
"means the filament does not support printing on the Cool Plate SuperTack."
|
"means the filament does not support printing on the Cool Plate SuperTack."
|
||||||
@@ -9932,6 +10027,12 @@ msgstr "모든 사전 설정 표시(호환되지 않는 설정 포함)"
|
|||||||
msgid "Select presets to compare"
|
msgid "Select presets to compare"
|
||||||
msgstr "비교할 사전 설정 선택"
|
msgstr "비교할 사전 설정 선택"
|
||||||
|
|
||||||
|
msgid "Left Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Right Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can only transfer to current active profile because it has been modified."
|
"You can only transfer to current active profile because it has been modified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -10360,6 +10461,12 @@ msgstr "다운로드하려면 여기를 클릭하세요."
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "로그인"
|
msgstr "로그인"
|
||||||
|
|
||||||
|
msgid "[Action Required] "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "[Action Required]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "The configuration package is changed in previous Config Guide"
|
msgid "The configuration package is changed in previous Config Guide"
|
||||||
msgstr "이전 구성 가이드에서 구성 패키지가 변경되었습니다"
|
msgstr "이전 구성 가이드에서 구성 패키지가 변경되었습니다"
|
||||||
|
|
||||||
@@ -11070,7 +11177,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection; otherwise, there may be "
|
"A prime tower is required for clumping detection; otherwise, there may be "
|
||||||
"flaws on the model."
|
"flaws on the model."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -11454,9 +11561,9 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Orca Slicer은 Gcode 파일을 프린터 호스트에 업로드할 수 있습니다. 이 필드에는 "
|
"Orca Slicer은 Gcode 파일을 프린터 호스트에 업로드할 수 있습니다. 이 필드에는 "
|
||||||
"프린터 호스트 인스턴스의 호스트 이름, IP 주소 또는 URL이 포함되어야 합니다. "
|
"프린터 호스트 인스턴스의 호스트 이름, IP 주소 또는 URL이 포함되어야 합니다. "
|
||||||
"기본 인증이 활성화된 HAProxy 뒤의 출력 호스트는 https://"
|
"기본 인증이 활성화된 HAProxy 뒤의 출력 호스트는 https://username:"
|
||||||
"username:password@your-octopi-address/ 형식의 URL에 사용자 이름과 암호를 입력"
|
"password@your-octopi-address/ 형식의 URL에 사용자 이름과 암호를 입력하여 액세"
|
||||||
"하여 액세스할 수 있습니다"
|
"스할 수 있습니다"
|
||||||
|
|
||||||
msgid "Device UI"
|
msgid "Device UI"
|
||||||
msgstr "장치 UI"
|
msgstr "장치 UI"
|
||||||
@@ -12549,7 +12656,7 @@ msgid ""
|
|||||||
"models\n"
|
"models\n"
|
||||||
"3. No filtering - creates internal bridges on every potential internal "
|
"3. No filtering - creates internal bridges on every potential internal "
|
||||||
"overhang. This option is useful for heavily slanted top surface models; "
|
"overhang. This option is useful for heavily slanted top surface models; "
|
||||||
"however, in most cases, it creates too many unnecessary bridges"
|
"however, in most cases, it creates too many unnecessary bridges."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"이 옵션을 사용하면 심하게 기울어지거나 구부러진 모델에서 상단 표면의 필링을 "
|
"이 옵션을 사용하면 심하게 기울어지거나 구부러진 모델에서 상단 표면의 필링을 "
|
||||||
"줄일 수 있습니다.\n"
|
"줄일 수 있습니다.\n"
|
||||||
@@ -13030,7 +13137,7 @@ msgid ""
|
|||||||
"less acceleration you print, the larger the range of acceptable PA values. "
|
"less acceleration you print, the larger the range of acceptable PA values. "
|
||||||
"If no difference is visible, use the PA value from the faster test\n"
|
"If no difference is visible, use the PA value from the faster test\n"
|
||||||
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
||||||
"here and save your filament profile"
|
"here and save your filament profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PA 값 세트, 측정된 압출 압출량 속도 및 가속도를 쉼표로 구분하여 추가합니다. "
|
"PA 값 세트, 측정된 압출 압출량 속도 및 가속도를 쉼표로 구분하여 추가합니다. "
|
||||||
"한 줄에 하나의 값 세트가 있습니다. 예를 들어\n"
|
"한 줄에 하나의 값 세트가 있습니다. 예를 들어\n"
|
||||||
@@ -13788,8 +13895,8 @@ msgid "mm/s² or %"
|
|||||||
msgstr "mm/s² 또는 %"
|
msgstr "mm/s² 또는 %"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
"g. 100%), it will be calculated based on the default acceleration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"드문 채우기 가속도. 값이 백분율 (예. 100%)로 표시되면 기본 가속도를 기준으로 "
|
"드문 채우기 가속도. 값이 백분율 (예. 100%)로 표시되면 기본 가속도를 기준으로 "
|
||||||
"계산됩니다."
|
"계산됩니다."
|
||||||
@@ -13903,10 +14010,10 @@ msgstr "팬 최대 속도 레이어"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Fan speed will be ramped up linearly from zero at layer "
|
"Fan speed will be ramped up linearly from zero at layer "
|
||||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"팬 속도는 \"close_fan_the_first_x_layers\" 의 0에서 \"full_fan_speed_layer\" "
|
"팬 속도는 \"close_fan_the_first_x_layers\" 의 0에서 \"full_fan_speed_layer\" "
|
||||||
"의 최고 속도까지 선형적으로 증가합니다. \"full_fan_speed_layer\"가 "
|
"의 최고 속도까지 선형적으로 증가합니다. \"full_fan_speed_layer\"가 "
|
||||||
@@ -14384,9 +14491,9 @@ msgstr "객체 이름표"
|
|||||||
# Wipe into this object;s infill/Wipe into this object
|
# Wipe into this object;s infill/Wipe into this object
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this to add comments into the G-code labeling print moves with what "
|
"Enable this to add comments into the G-code labeling print moves with what "
|
||||||
"object they belong to, which is useful for the Octoprint CancelObject "
|
"object they belong to, which is useful for the Octoprint CancelObject plug-"
|
||||||
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
|
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
|
||||||
"setup and Wipe into Object / Wipe into Infill."
|
"and Wipe into Object / Wipe into Infill."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"이 옵션을 선택하면 Gcode 출력시 이동에 설명을 추가할 수 있습니다. 이는 "
|
"이 옵션을 선택하면 Gcode 출력시 이동에 설명을 추가할 수 있습니다. 이는 "
|
||||||
"Octoprint CancelObject 플러그인에 유용합니다.\n"
|
"Octoprint CancelObject 플러그인에 유용합니다.\n"
|
||||||
@@ -14686,7 +14793,7 @@ msgstr "다림질 유형"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Ironing is using small flow to print on same height of surface again to make "
|
"Ironing is using small flow to print on same height of surface again to make "
|
||||||
"flat surface more smooth. This setting controls which layer being ironed"
|
"flat surface more smooth. This setting controls which layer being ironed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"다림질은 평평한 표면을 더 부드럽게 만들기 위해 같은 높이의 표면에 소량의 압출"
|
"다림질은 평평한 표면을 더 부드럽게 만들기 위해 같은 높이의 표면에 소량의 압출"
|
||||||
"로 다시 출력하는 것입니다. 이 설정은 다림질 레이어를 제어합니다"
|
"로 다시 출력하는 것입니다. 이 설정은 다림질 레이어를 제어합니다"
|
||||||
@@ -15686,8 +15793,8 @@ msgid "Role base wipe speed"
|
|||||||
msgstr "역할 기반 노즐 청소 속도"
|
msgstr "역할 기반 노즐 청소 속도"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
"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 "
|
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||||
"wipe action."
|
"wipe action."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -15936,7 +16043,7 @@ msgid ""
|
|||||||
"timelapse video when printing completes. If smooth mode is selected, the "
|
"timelapse video when printing completes. If smooth mode is selected, the "
|
||||||
"toolhead will move to the excess chute after each layer is printed and then "
|
"toolhead will move to the excess chute after each layer is printed and then "
|
||||||
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
||||||
"process of taking a snapshot, prime tower is required for smooth mode to "
|
"process of taking a snapshot, a prime tower is required for smooth mode to "
|
||||||
"wipe nozzle."
|
"wipe nozzle."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"유연 또는 기존 모드를 선택한 경우 각 출력에 대해 타임랩스 비디오가 생성됩니"
|
"유연 또는 기존 모드를 선택한 경우 각 출력에 대해 타임랩스 비디오가 생성됩니"
|
||||||
@@ -16504,8 +16611,8 @@ msgstr "온도 제어 활성화"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this option for automated chamber temperature control. This option "
|
"Enable this option for automated chamber temperature control. This option "
|
||||||
"activates the emitting of an M191 command before the "
|
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||||
"\"machine_start_gcode\"\n"
|
"\"\n"
|
||||||
" which sets the chamber temperature and waits until it is reached. In "
|
" 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 "
|
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||||
"chamber heater, if present.\n"
|
"chamber heater, if present.\n"
|
||||||
@@ -16782,6 +16889,12 @@ msgid ""
|
|||||||
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
|
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Rectangle"
|
||||||
|
msgstr "직사각형"
|
||||||
|
|
||||||
|
msgid "Rib"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Extra rib length"
|
msgid "Extra rib length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -17364,8 +17477,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"활성화된 경우 현재 컴퓨터가 목록에 있는 컴퓨터와 하위 호환되는지 확인합니다."
|
"활성화된 경우 현재 컴퓨터가 목록에 있는 컴퓨터와 하위 호환되는지 확인합니다."
|
||||||
|
|
||||||
msgid "downward machines settings"
|
msgid "Downward machines settings"
|
||||||
msgstr ""
|
msgstr "하향 머신 설정"
|
||||||
|
|
||||||
msgid "The machine settings list needs to do downward checking."
|
msgid "The machine settings list needs to do downward checking."
|
||||||
msgstr "머신 설정 목록에서 아래쪽을 확인해야 합니다"
|
msgstr "머신 설정 목록에서 아래쪽을 확인해야 합니다"
|
||||||
@@ -17397,8 +17510,8 @@ msgid "Debug level"
|
|||||||
msgstr "디버그 수준"
|
msgstr "디버그 수준"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||||
"5:trace\n"
|
"trace\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"디버그 로깅 수준을 설정합니다. 0:치명적, 1:오류, 2:경고, 3:정보, 4:디버그, 5:"
|
"디버그 로깅 수준을 설정합니다. 0:치명적, 1:오류, 2:경고, 3:정보, 4:디버그, 5:"
|
||||||
"추적\n"
|
"추적\n"
|
||||||
@@ -18029,10 +18142,6 @@ msgstr "이름이 기존의 다른 사전 설정 이름과 동일합니다"
|
|||||||
msgid "create new preset failed."
|
msgid "create new preset failed."
|
||||||
msgstr "새 사전 설정을 생성하지 못했습니다."
|
msgstr "새 사전 설정을 생성하지 못했습니다."
|
||||||
|
|
||||||
#, c-format, boost-format
|
|
||||||
msgid "The selected preset: %s is not found."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid "Could not find parameter: %s."
|
msgid "Could not find parameter: %s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -18686,6 +18795,23 @@ msgstr ""
|
|||||||
msgid "Input shaper type"
|
msgid "Input shaper type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Please ensure the selected type is compatible with your firmware version."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Marlin version => 2.1.2\n"
|
||||||
|
"Fixed-Time motion not yet implemented."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Klipper version => 0.9.0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"RepRap firmware version => 3.4.0\n"
|
||||||
|
"Check your firmware documentation for supported shaper types."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency (Start / End): "
|
msgid "Frequency (Start / End): "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -18720,6 +18846,9 @@ msgstr ""
|
|||||||
msgid "Input shaping Damp test"
|
msgid "Input shaping Damp test"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Check firmware compatibility."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency: "
|
msgid "Frequency: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -19049,8 +19178,8 @@ msgstr ""
|
|||||||
"다시 작성하시겠습니까?"
|
"다시 작성하시겠습니까?"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||||
"selected\".\n"
|
"\".\n"
|
||||||
"To add preset for more printers, please go to printer selection"
|
"To add preset for more printers, please go to printer selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -19096,9 +19225,6 @@ msgstr ""
|
|||||||
msgid "Can't find my nozzle diameter"
|
msgid "Can't find my nozzle diameter"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Rectangle"
|
|
||||||
msgstr "직사각형"
|
|
||||||
|
|
||||||
msgid "Printable Space"
|
msgid "Printable Space"
|
||||||
msgstr "출력 가능 공간"
|
msgstr "출력 가능 공간"
|
||||||
|
|
||||||
@@ -20396,6 +20522,127 @@ msgstr ""
|
|||||||
msgid "More Colors"
|
msgid "More Colors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Network Plug-in Update Available"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bambu Network Plug-in Required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
|
||||||
|
"and remote printing."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Error: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Version to install:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Download and Install"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip for Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "A new version of the Bambu Network Plug-in is available."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Current version: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update to version:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Remind Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Don't Ask Again"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The Bambu Network Plug-in has been installed successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"A restart is required to load the new plug-in. Would you like to restart now?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "NO RAMMING AT ALL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Volumetric speed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Step file import parameters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Smaller linear and angular deflections result in higher-quality "
|
||||||
|
"transformations but increase the processing time."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Linear Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Angle Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Split compound and compsolid into multiple objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Number of triangular facets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Calculating, please wait..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. "
|
||||||
|
"Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament model is unknown. Still using the previous filament preset."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. A "
|
||||||
|
"random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. A random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: resources/data/hints.ini: [hint:Precise wall]
|
#: resources/data/hints.ini: [hint:Precise wall]
|
||||||
msgid ""
|
msgid ""
|
||||||
"Precise wall\n"
|
"Precise wall\n"
|
||||||
@@ -20784,9 +21031,6 @@ msgstr ""
|
|||||||
#~ "플러그인을 설치하지 못했습니다. 안티바이러스 소프트웨어에 의해 차단 또는 "
|
#~ "플러그인을 설치하지 못했습니다. 안티바이러스 소프트웨어에 의해 차단 또는 "
|
||||||
#~ "삭제되었는지 확인하세요."
|
#~ "삭제되었는지 확인하세요."
|
||||||
|
|
||||||
#~ msgid "°C"
|
|
||||||
#~ msgstr "°C"
|
|
||||||
|
|
||||||
#~ msgid "travel"
|
#~ msgid "travel"
|
||||||
#~ msgstr "이동"
|
#~ msgstr "이동"
|
||||||
|
|
||||||
@@ -20824,9 +21068,6 @@ msgstr ""
|
|||||||
#~ msgid "Advance"
|
#~ msgid "Advance"
|
||||||
#~ msgstr "전문가 모드"
|
#~ msgstr "전문가 모드"
|
||||||
|
|
||||||
#~ msgid "Packing data to 3MF"
|
|
||||||
#~ msgstr "데이터를 3mf로 압축 중"
|
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "Filament shrinkage will not be used because filament shrinkage for the "
|
#~ "Filament shrinkage will not be used because filament shrinkage for the "
|
||||||
#~ "used filaments differs significantly."
|
#~ "used filaments differs significantly."
|
||||||
@@ -21809,9 +22050,6 @@ msgstr ""
|
|||||||
#~ msgid "Load uptodate filament settings when using uptodate."
|
#~ msgid "Load uptodate filament settings when using uptodate."
|
||||||
#~ msgstr "최신 필라멘트 설정 사용 시 최신 필라멘트 설정 로드"
|
#~ msgstr "최신 필라멘트 설정 사용 시 최신 필라멘트 설정 로드"
|
||||||
|
|
||||||
#~ msgid "Downward machines settings"
|
|
||||||
#~ msgstr "하향 머신 설정"
|
|
||||||
|
|
||||||
#~ msgid "Load filament IDs for each object"
|
#~ msgid "Load filament IDs for each object"
|
||||||
#~ msgstr "각 객체에 대한 필라멘트 ID 로드"
|
#~ msgstr "각 객체에 대한 필라멘트 ID 로드"
|
||||||
|
|
||||||
@@ -21840,8 +22078,8 @@ msgstr ""
|
|||||||
#~ msgstr "mm/mm"
|
#~ msgstr "mm/mm"
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you "
|
#~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||||
#~ "selected\".\n"
|
#~ "\".\n"
|
||||||
#~ "To add preset for more printers, Please go to printer selection"
|
#~ "To add preset for more printers, Please go to printer selection"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
#~ "사전 설정의 이름을 \"선택한 공급업체 유형 직렬 @프린터\"로 변경합니다.\n"
|
#~ "사전 설정의 이름을 \"선택한 공급업체 유형 직렬 @프린터\"로 변경합니다.\n"
|
||||||
@@ -22801,10 +23039,10 @@ msgstr ""
|
|||||||
#~ msgid "Test Storage Download:"
|
#~ msgid "Test Storage Download:"
|
||||||
#~ msgstr "테스트 저장소 다운로드:"
|
#~ msgstr "테스트 저장소 다운로드:"
|
||||||
|
|
||||||
#~ msgid "Test plugin download"
|
#~ msgid "Test plug-in download"
|
||||||
#~ msgstr "테스트 플러그인 다운로드"
|
#~ msgstr "테스트 플러그인 다운로드"
|
||||||
|
|
||||||
#~ msgid "Test Plugin Download:"
|
#~ msgid "Test Plug-in Download:"
|
||||||
#~ msgstr "테스트 플러그인 다운로드:"
|
#~ msgstr "테스트 플러그인 다운로드:"
|
||||||
|
|
||||||
#~ msgid "Test Storage Upload"
|
#~ msgid "Test Storage Upload"
|
||||||
@@ -22868,8 +23106,8 @@ msgstr ""
|
|||||||
#~ "로 지정되지 않은 경우 필라멘트의 최소 출력 속도가 활성화됩니다."
|
#~ "로 지정되지 않은 경우 필라멘트의 최소 출력 속도가 활성화됩니다."
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you "
|
#~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||||
#~ "selected\".\n"
|
#~ "\".\n"
|
||||||
#~ "To add preset for more prinetrs, Please go to printer selection"
|
#~ "To add preset for more prinetrs, Please go to printer selection"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
#~ "사전 설정의 이름을 \"선택한 공급업체 유형 직렬 @프린터\"로 변경합니다.\n"
|
#~ "사전 설정의 이름을 \"선택한 공급업체 유형 직렬 @프린터\"로 변경합니다.\n"
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
src/libslic3r/PresetBundle.cpp
|
|
||||||
src/slic3r/GUI/DeviceCore/DevBed.cpp
|
src/slic3r/GUI/DeviceCore/DevBed.cpp
|
||||||
src/slic3r/GUI/DeviceCore/DevBed.h
|
src/slic3r/GUI/DeviceCore/DevBed.h
|
||||||
src/slic3r/GUI/DeviceCore/DevConfig.h
|
src/slic3r/GUI/DeviceCore/DevConfig.h
|
||||||
@@ -68,6 +67,7 @@ src/slic3r/GUI/Gizmos/GLGizmoText.hpp
|
|||||||
src/slic3r/GUI/Gizmos/GLGizmoEmboss.cpp
|
src/slic3r/GUI/Gizmos/GLGizmoEmboss.cpp
|
||||||
src/slic3r/GUI/Gizmos/GLGizmoSVG.cpp
|
src/slic3r/GUI/Gizmos/GLGizmoSVG.cpp
|
||||||
src/slic3r/GUI/Gizmos/GLGizmoMeasure.cpp
|
src/slic3r/GUI/Gizmos/GLGizmoMeasure.cpp
|
||||||
|
src/slic3r/GUI/Gizmos/GLGizmoAssembly.cpp
|
||||||
src/slic3r/GUI/GUI.cpp
|
src/slic3r/GUI/GUI.cpp
|
||||||
src/slic3r/GUI/GUI_App.cpp
|
src/slic3r/GUI/GUI_App.cpp
|
||||||
src/slic3r/GUI/GUI_AuxiliaryList.cpp
|
src/slic3r/GUI/GUI_AuxiliaryList.cpp
|
||||||
@@ -81,6 +81,7 @@ src/slic3r/GUI/GUI_ObjectTable.hpp
|
|||||||
src/slic3r/GUI/GUI_ObjectTableSettings.cpp
|
src/slic3r/GUI/GUI_ObjectTableSettings.cpp
|
||||||
src/slic3r/GUI/GUI_ObjectTableSettings.hpp
|
src/slic3r/GUI/GUI_ObjectTableSettings.hpp
|
||||||
src/slic3r/GUI/GUI_Preview.cpp
|
src/slic3r/GUI/GUI_Preview.cpp
|
||||||
|
src/slic3r/GUI/2DBed.cpp
|
||||||
src/slic3r/GUI/HintNotification.cpp
|
src/slic3r/GUI/HintNotification.cpp
|
||||||
src/slic3r/GUI/IMSlider.cpp
|
src/slic3r/GUI/IMSlider.cpp
|
||||||
src/slic3r/GUI/Widgets/SideTools.cpp
|
src/slic3r/GUI/Widgets/SideTools.cpp
|
||||||
@@ -96,6 +97,7 @@ src/slic3r/GUI/Jobs/RotoptimizeJob.cpp
|
|||||||
src/slic3r/GUI/Jobs/BindJob.cpp
|
src/slic3r/GUI/Jobs/BindJob.cpp
|
||||||
src/slic3r/GUI/Jobs/PrintJob.cpp
|
src/slic3r/GUI/Jobs/PrintJob.cpp
|
||||||
src/slic3r/GUI/Jobs/SendJob.cpp
|
src/slic3r/GUI/Jobs/SendJob.cpp
|
||||||
|
src/slic3r/GUI/Jobs/EmbossJob.cpp
|
||||||
src/slic3r/GUI/ThermalPreconditioningDialog.cpp
|
src/slic3r/GUI/ThermalPreconditioningDialog.cpp
|
||||||
src/slic3r/GUI/ThermalPreconditioningDialog.hpp
|
src/slic3r/GUI/ThermalPreconditioningDialog.hpp
|
||||||
src/slic3r/GUI/Jobs/SLAImportJob.cpp
|
src/slic3r/GUI/Jobs/SLAImportJob.cpp
|
||||||
@@ -165,7 +167,6 @@ src/slic3r/GUI/Tab.hpp
|
|||||||
src/slic3r/GUI/UnsavedChangesDialog.cpp
|
src/slic3r/GUI/UnsavedChangesDialog.cpp
|
||||||
src/slic3r/GUI/Auxiliary.cpp
|
src/slic3r/GUI/Auxiliary.cpp
|
||||||
src/slic3r/GUI/UpdateDialogs.cpp
|
src/slic3r/GUI/UpdateDialogs.cpp
|
||||||
src/slic3r/GUI/UnsavedChangesDialog.cpp
|
|
||||||
src/slic3r/GUI/ObjColorDialog.cpp
|
src/slic3r/GUI/ObjColorDialog.cpp
|
||||||
src/slic3r/GUI/SyncAmsInfoDialog.cpp
|
src/slic3r/GUI/SyncAmsInfoDialog.cpp
|
||||||
src/slic3r/GUI/WipeTowerDialog.cpp
|
src/slic3r/GUI/WipeTowerDialog.cpp
|
||||||
@@ -178,12 +179,10 @@ src/slic3r/GUI/KBShortcutsDialog.cpp
|
|||||||
src/slic3r/GUI/ReleaseNote.cpp
|
src/slic3r/GUI/ReleaseNote.cpp
|
||||||
src/slic3r/GUI/ReleaseNote.hpp
|
src/slic3r/GUI/ReleaseNote.hpp
|
||||||
src/slic3r/GUI/UpgradePanel.cpp
|
src/slic3r/GUI/UpgradePanel.cpp
|
||||||
src/slic3r/GUI/UnsavedChangesDialog.cpp
|
|
||||||
src/slic3r/Utils/FixModelByWin10.cpp
|
src/slic3r/Utils/FixModelByWin10.cpp
|
||||||
src/slic3r/Utils/PresetUpdater.cpp
|
src/slic3r/Utils/PresetUpdater.cpp
|
||||||
src/slic3r/Utils/Http.cpp
|
src/slic3r/Utils/Http.cpp
|
||||||
src/slic3r/Utils/Process.cpp
|
src/slic3r/Utils/Process.cpp
|
||||||
src/slic3r/GUI/Jobs/PrintJob.cpp
|
|
||||||
src/libslic3r/GCode.cpp
|
src/libslic3r/GCode.cpp
|
||||||
src/libslic3r/GCode/ToolOrdering.cpp
|
src/libslic3r/GCode/ToolOrdering.cpp
|
||||||
src/libslic3r/ExtrusionEntity.cpp
|
src/libslic3r/ExtrusionEntity.cpp
|
||||||
@@ -237,7 +236,6 @@ src/slic3r/Utils/Obico.cpp
|
|||||||
src/slic3r/Utils/SimplyPrint.cpp
|
src/slic3r/Utils/SimplyPrint.cpp
|
||||||
src/slic3r/Utils/Flashforge.cpp
|
src/slic3r/Utils/Flashforge.cpp
|
||||||
src/slic3r/GUI/Jobs/OAuthJob.cpp
|
src/slic3r/GUI/Jobs/OAuthJob.cpp
|
||||||
src/slic3r/GUI/BackgroundSlicingProcess.cpp
|
|
||||||
src/slic3r/GUI/Gizmos/GLGizmoBrimEars.cpp
|
src/slic3r/GUI/Gizmos/GLGizmoBrimEars.cpp
|
||||||
src/slic3r/GUI/PartSkipDialog.cpp
|
src/slic3r/GUI/PartSkipDialog.cpp
|
||||||
src/slic3r/GUI/PartSkipDialog.hpp
|
src/slic3r/GUI/PartSkipDialog.hpp
|
||||||
@@ -246,4 +244,8 @@ src/slic3r/GUI/SkipPartCanvas.hpp
|
|||||||
src/slic3r/GUI/FilamentBitmapUtils.cpp
|
src/slic3r/GUI/FilamentBitmapUtils.cpp
|
||||||
src/slic3r/GUI/FilamentBitmapUtils.hpp
|
src/slic3r/GUI/FilamentBitmapUtils.hpp
|
||||||
src/slic3r/GUI/FilamentPickerDialog.cpp
|
src/slic3r/GUI/FilamentPickerDialog.cpp
|
||||||
|
src/slic3r/GUI/NetworkPluginDialog.cpp
|
||||||
|
src/slic3r/GUI/RammingChart.cpp
|
||||||
|
src/slic3r/GUI/StepMeshDialog.cpp
|
||||||
src/slic3r/GUI/FilamentPickerDialog.hpp
|
src/slic3r/GUI/FilamentPickerDialog.hpp
|
||||||
|
src/libslic3r/PresetBundle.cpp
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: \n"
|
"Project-Id-Version: \n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
|
||||||
"PO-Revision-Date: 2025-10-25 23:01+0300\n"
|
"PO-Revision-Date: 2025-10-25 23:01+0300\n"
|
||||||
"Last-Translator: Gintaras Kučinskas <sharanchius@gmail.com>\n"
|
"Last-Translator: Gintaras Kučinskas <sharanchius@gmail.com>\n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
@@ -16,30 +16,10 @@ msgstr ""
|
|||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && (n%100<11 || n%100>19) ? 0 : "
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && (n%100<11 || n%100>19) ? 0 : n"
|
||||||
"n%10>=2 && n%10<=9 && (n%100<11 || n%100>19) ? 1 : 2);\n"
|
"%10>=2 && n%10<=9 && (n%100<11 || n%100>19) ? 1 : 2);\n"
|
||||||
"X-Generator: Poedit 3.6\n"
|
"X-Generator: Poedit 3.6\n"
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. "
|
|
||||||
"Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament model is unknown. Still using the previous filament preset."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. A "
|
|
||||||
"random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. A random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "right"
|
msgid "right"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1582,6 +1562,30 @@ msgstr "Lygiagretus atstumas:"
|
|||||||
msgid "Flip by Face 2"
|
msgid "Flip by Face 2"
|
||||||
msgstr "Apversti pagal paviršių 2"
|
msgstr "Apversti pagal paviršių 2"
|
||||||
|
|
||||||
|
msgid "Assemble"
|
||||||
|
msgstr "Surinkti"
|
||||||
|
|
||||||
|
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "(Moving)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Point and point assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"It is recommended to assemble the objects first,\n"
|
||||||
|
"because the objects is restriced to bed \n"
|
||||||
|
"and only parts can be lifted."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Face and face assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Notice"
|
msgid "Notice"
|
||||||
msgstr "Įspėjimas"
|
msgstr "Įspėjimas"
|
||||||
|
|
||||||
@@ -1622,6 +1626,54 @@ msgstr ""
|
|||||||
msgid "Based on PrusaSlicer and BambuStudio"
|
msgid "Based on PrusaSlicer and BambuStudio"
|
||||||
msgstr "Remiantis „PrusaSlicer“ ir „BambuStudio“"
|
msgstr "Remiantis „PrusaSlicer“ ir „BambuStudio“"
|
||||||
|
|
||||||
|
msgid "STEP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "STL files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "OBJ files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "AMF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Gcode 3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "G-code files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Supported files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "ZIP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Project files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Known files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "INI files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "SVG files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Texture"
|
||||||
|
msgstr "Tekstūra"
|
||||||
|
|
||||||
|
msgid "Masked SLA files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Draco files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
||||||
"It will be appreciated if you report the issue to our team."
|
"It will be appreciated if you report the issue to our team."
|
||||||
@@ -1650,10 +1702,10 @@ msgstr "OrcaSlicer susidūrė su neapdorota klaida: %1%"
|
|||||||
msgid "Untitled"
|
msgid "Untitled"
|
||||||
msgstr "Be pavadinimo"
|
msgstr "Be pavadinimo"
|
||||||
|
|
||||||
msgid "Reloading network plugin..."
|
msgid "Reloading network plug-in..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Network Plugin"
|
msgid "Downloading Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Bambu Network Plug-in"
|
msgid "Downloading Bambu Network Plug-in"
|
||||||
@@ -1750,6 +1802,9 @@ msgstr "Pasirinkite ZIP failą"
|
|||||||
msgid "Choose one file (GCODE/3MF):"
|
msgid "Choose one file (GCODE/3MF):"
|
||||||
msgstr "Pasirinkite vieną failą (GCODE/3MF):"
|
msgstr "Pasirinkite vieną failą (GCODE/3MF):"
|
||||||
|
|
||||||
|
msgid "Ext"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Some presets are modified."
|
msgid "Some presets are modified."
|
||||||
msgstr "Kai kurie nustatymai pakeisti."
|
msgstr "Kai kurie nustatymai pakeisti."
|
||||||
|
|
||||||
@@ -1811,7 +1866,7 @@ msgid ""
|
|||||||
"access, enabling full functionality with OrcaSlicer."
|
"access, enabling full functionality with OrcaSlicer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network Plugin Restriction"
|
msgid "Network Plug-in Restriction"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Privacy Policy Update"
|
msgid "Privacy Policy Update"
|
||||||
@@ -2048,6 +2103,9 @@ msgstr ""
|
|||||||
"Taip - Pakeisti šiuos nustatymus automatiškai\n"
|
"Taip - Pakeisti šiuos nustatymus automatiškai\n"
|
||||||
"Ne - Nekeisti šių nustatymų"
|
"Ne - Nekeisti šių nustatymų"
|
||||||
|
|
||||||
|
msgid "Suggestion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Teskstas"
|
msgstr "Teskstas"
|
||||||
|
|
||||||
@@ -2157,9 +2215,6 @@ msgstr "Konvertuoti iš metrų"
|
|||||||
msgid "Restore to meters"
|
msgid "Restore to meters"
|
||||||
msgstr "Grąžinti į metrus"
|
msgstr "Grąžinti į metrus"
|
||||||
|
|
||||||
msgid "Assemble"
|
|
||||||
msgstr "Surinkti"
|
|
||||||
|
|
||||||
msgid "Assemble the selected objects to an object with multiple parts"
|
msgid "Assemble the selected objects to an object with multiple parts"
|
||||||
msgstr "Sujungti pasirinktus objektus į daugiadalį objektą"
|
msgstr "Sujungti pasirinktus objektus į daugiadalį objektą"
|
||||||
|
|
||||||
@@ -2677,6 +2732,10 @@ msgstr "Spalvotas spausdinimas"
|
|||||||
msgid "Line Type"
|
msgid "Line Type"
|
||||||
msgstr "Linijos tipas"
|
msgstr "Linijos tipas"
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "1x1 Grid: %d mm"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "More"
|
msgid "More"
|
||||||
msgstr "Daugiau"
|
msgstr "Daugiau"
|
||||||
|
|
||||||
@@ -2795,8 +2854,8 @@ msgstr "Prašome patikrinti spausdintuvo ir OrcaSlicer ryšį su tinklu."
|
|||||||
msgid "Connecting..."
|
msgid "Connecting..."
|
||||||
msgstr "Jungiamasi..."
|
msgstr "Jungiamasi..."
|
||||||
|
|
||||||
msgid "Auto-refill"
|
msgid "Auto Refill"
|
||||||
msgstr ""
|
msgstr "Automatinis papildymas"
|
||||||
|
|
||||||
msgid "Load"
|
msgid "Load"
|
||||||
msgstr "Įkelti"
|
msgstr "Įkelti"
|
||||||
@@ -3195,6 +3254,38 @@ msgid ""
|
|||||||
"Storage before sending to printer."
|
"Storage before sending to printer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossCreateObjectJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text object"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossUpdateJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Created text volume is empty. Change text or font."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for CreateSurfaceVolumeJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for UseSurfaceJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRN: This is the title of the action appearing in undo/redo stack.
|
||||||
|
#. It is same for Text and SVG.
|
||||||
|
msgid "Emboss attribute change"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text Volume"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Font doesn't have any shape for given text."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "There is no valid surface for text projection."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Thermal Preconditioning for first layer optimization"
|
msgid "Thermal Preconditioning for first layer optimization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3522,9 +3613,6 @@ msgstr ""
|
|||||||
msgid "Nozzle"
|
msgid "Nozzle"
|
||||||
msgstr "Purkštukas"
|
msgstr "Purkštukas"
|
||||||
|
|
||||||
msgid "Ext"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
||||||
@@ -3591,9 +3679,6 @@ msgstr "Spausdinti AMS gijomis"
|
|||||||
msgid "Print with filaments mounted on the back of the chassis"
|
msgid "Print with filaments mounted on the back of the chassis"
|
||||||
msgstr "Spausdinti gijomis, sumontuotomis ant dėžės"
|
msgstr "Spausdinti gijomis, sumontuotomis ant dėžės"
|
||||||
|
|
||||||
msgid "Auto Refill"
|
|
||||||
msgstr "Automatinis papildymas"
|
|
||||||
|
|
||||||
msgid "Left"
|
msgid "Left"
|
||||||
msgstr "Kairė"
|
msgstr "Kairė"
|
||||||
|
|
||||||
@@ -3606,7 +3691,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Pasibaigus esamai medžiagai, spausdintuvas toliau spausdins šia tvarka."
|
"Pasibaigus esamai medžiagai, spausdintuvas toliau spausdins šia tvarka."
|
||||||
|
|
||||||
msgid "Identical filament: same brand, type and color"
|
msgid "Identical filament: same brand, type and color."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Group"
|
msgid "Group"
|
||||||
@@ -3740,8 +3825,8 @@ msgid "Calibration"
|
|||||||
msgstr "Kalibravimas"
|
msgstr "Kalibravimas"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Failed to download the plug-in. Please check your firewall settings and vpn "
|
"Failed to download the plug-in. Please check your firewall settings and VPN "
|
||||||
"software, check and retry."
|
"software and retry."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Nepavyko atsisiųsti papildinio. Patikrinkite savo užkardos nustatymus ir VPN "
|
"Nepavyko atsisiųsti papildinio. Patikrinkite savo užkardos nustatymus ir VPN "
|
||||||
"programinę įrangą, ir bandykite dar kartą."
|
"programinę įrangą, ir bandykite dar kartą."
|
||||||
@@ -3756,8 +3841,8 @@ msgid "Click here to see more info"
|
|||||||
msgstr "spustelėkite norėdami gauti daugiau informacijos"
|
msgstr "spustelėkite norėdami gauti daugiau informacijos"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The network plugin was installed but could not be loaded. Please restart the "
|
"The network plug-in was installed but could not be loaded. Please restart "
|
||||||
"application."
|
"the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Restart Required"
|
msgid "Restart Required"
|
||||||
@@ -3927,9 +4012,6 @@ msgstr "Įkelti formą iš STL..."
|
|||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Nustatymai"
|
msgstr "Nustatymai"
|
||||||
|
|
||||||
msgid "Texture"
|
|
||||||
msgstr "Tekstūra"
|
|
||||||
|
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Pašalinti"
|
msgstr "Pašalinti"
|
||||||
|
|
||||||
@@ -4132,7 +4214,7 @@ msgstr ""
|
|||||||
"seam_slope_start_height turi būti mažesnis nei layer_height.\n"
|
"seam_slope_start_height turi būti mažesnis nei layer_height.\n"
|
||||||
"Atstatoma į 0."
|
"Atstatoma į 0."
|
||||||
|
|
||||||
#, fuzzy
|
#, fuzzy, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Lock depth should smaller than skin depth.\n"
|
"Lock depth should smaller than skin depth.\n"
|
||||||
"Reset to 50% of skin depth."
|
"Reset to 50% of skin depth."
|
||||||
@@ -4768,6 +4850,9 @@ msgstr ""
|
|||||||
msgid "Fan speed"
|
msgid "Fan speed"
|
||||||
msgstr "Ventiliatoriaus greitis"
|
msgstr "Ventiliatoriaus greitis"
|
||||||
|
|
||||||
|
msgid "°C"
|
||||||
|
msgstr "°C"
|
||||||
|
|
||||||
msgid "Time"
|
msgid "Time"
|
||||||
msgstr "Laikas"
|
msgstr "Laikas"
|
||||||
|
|
||||||
@@ -4924,8 +5009,8 @@ msgstr "Faktinis greitis (mm/s)"
|
|||||||
msgid "Fan Speed (%)"
|
msgid "Fan Speed (%)"
|
||||||
msgstr "Ventiliatoriaus greitis (%)"
|
msgstr "Ventiliatoriaus greitis (%)"
|
||||||
|
|
||||||
msgid "Temperature (℃)"
|
msgid "Temperature (°C)"
|
||||||
msgstr "Temperatūra (℃)"
|
msgstr "Temperatūra (°C)"
|
||||||
|
|
||||||
msgid "Volumetric flow rate (mm³/s)"
|
msgid "Volumetric flow rate (mm³/s)"
|
||||||
msgstr "Tūrinis srautas (mm³/s)"
|
msgstr "Tūrinis srautas (mm³/s)"
|
||||||
@@ -5246,7 +5331,7 @@ msgstr "Tūris:"
|
|||||||
msgid "Size:"
|
msgid "Size:"
|
||||||
msgstr "Dydis:"
|
msgstr "Dydis:"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||||
"separate the conflicted objects farther (%s <-> %s)."
|
"separate the conflicted objects farther (%s <-> %s)."
|
||||||
@@ -5319,7 +5404,7 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
||||||
"mixing in models. Please redjust flushing settings."
|
"mixing in models. Please readjust flushing settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Click Wiki for help."
|
msgid "Click Wiki for help."
|
||||||
@@ -6632,6 +6717,9 @@ msgstr ""
|
|||||||
"Norint palikti teigiamą įvertinimą (4 arba 5 žvaigždutės), būtinas \n"
|
"Norint palikti teigiamą įvertinimą (4 arba 5 žvaigždutės), būtinas \n"
|
||||||
"bent vienas sėkmingas spausdinimo rezultatas su šiuo spausdinimo profiliu."
|
"bent vienas sėkmingas spausdinimo rezultatas su šiuo spausdinimo profiliu."
|
||||||
|
|
||||||
|
msgid "click to add machine"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr "Būsena"
|
msgstr "Būsena"
|
||||||
|
|
||||||
@@ -6642,6 +6730,14 @@ msgstr ""
|
|||||||
msgid "Assistant(HMS)"
|
msgid "Assistant(HMS)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s (%s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Don't show again"
|
msgid "Don't show again"
|
||||||
msgstr "Daugiau nerodyti"
|
msgstr "Daugiau nerodyti"
|
||||||
|
|
||||||
@@ -7028,7 +7124,7 @@ msgstr ""
|
|||||||
msgid "Unavailable while heating maintenance function is on."
|
msgid "Unavailable while heating maintenance function is on."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Idel Heating Protection"
|
msgid "Idle Heating Protection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
||||||
@@ -7551,7 +7647,7 @@ msgid "Please select a file"
|
|||||||
msgstr "Prašome pasirinkti failą"
|
msgstr "Prašome pasirinkti failą"
|
||||||
|
|
||||||
msgid "Do you want to replace it"
|
msgid "Do you want to replace it"
|
||||||
msgstr "Ar norite jį pakeisti?"
|
msgstr "Ar norite jį pakeisti"
|
||||||
|
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Pranešimas"
|
msgstr "Pranešimas"
|
||||||
@@ -7585,7 +7681,8 @@ msgid "Please resolve the slicing errors and publish again."
|
|||||||
msgstr "Prašome sutvarkyti sluoksniavimo klaidas ir publikuoti dar kartą."
|
msgstr "Prašome sutvarkyti sluoksniavimo klaidas ir publikuoti dar kartą."
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Network Plug-in is not detected. Network related features are unavailable."
|
"The network plug-in was not detected. Network related features are "
|
||||||
|
"unavailable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Neaptiktas tinklo įskiepis. Nebus pasiekiamos su tinklu susijusios galimybės."
|
"Neaptiktas tinklo įskiepis. Nebus pasiekiamos su tinklu susijusios galimybės."
|
||||||
|
|
||||||
@@ -8163,7 +8260,7 @@ msgstr "(Reikia paleisti iš naujo)"
|
|||||||
msgid "filaments"
|
msgid "filaments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
msgid "Optimizes filament area maximum height by chosen filament count."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Features"
|
msgid "Features"
|
||||||
@@ -8366,40 +8463,40 @@ msgstr ""
|
|||||||
msgid "Color only"
|
msgid "Color only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin"
|
msgid "Network plug-in"
|
||||||
msgstr "Tinklo įskiepis"
|
msgstr "Tinklo įskiepis"
|
||||||
|
|
||||||
msgid "Enable network plugin"
|
msgid "Enable network plug-in"
|
||||||
msgstr "Įjungti tinklo papildinį"
|
msgstr "Įjungti tinklo papildinį"
|
||||||
|
|
||||||
msgid "Network plugin version"
|
msgid "Network plug-in version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Select the network plugin version to use"
|
msgid "Select the network plug-in version to use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "(Latest)"
|
msgid "(Latest)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin switched successfully."
|
msgid "Network plug-in switched successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to load network plugin. Please restart the application."
|
msgid "Failed to load network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You've selected network plugin version %s.\n"
|
"You've selected network plug-in version %s.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Would you like to download and install this version now?\n"
|
"Would you like to download and install this version now?\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Note: The application may need to restart after installation."
|
"Note: The application may need to restart after installation."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Download Network Plugin"
|
msgid "Download Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Associate files to OrcaSlicer"
|
msgid "Associate files to OrcaSlicer"
|
||||||
@@ -8479,19 +8576,16 @@ msgstr "testavimas"
|
|||||||
msgid "trace"
|
msgid "trace"
|
||||||
msgstr "sekimas"
|
msgstr "sekimas"
|
||||||
|
|
||||||
msgid "Network Plugin"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Reload"
|
msgid "Reload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload the network plugin without restarting the application"
|
msgid "Reload the network plug-in without restarting the application"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin reloaded successfully."
|
msgid "Network plug-in reloaded successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to reload network plugin. Please restart the application."
|
msgid "Failed to reload network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload Failed"
|
msgid "Reload Failed"
|
||||||
@@ -8710,7 +8804,10 @@ msgstr "Publikavimas buvo atšauktas"
|
|||||||
msgid "Slicing Plate 1"
|
msgid "Slicing Plate 1"
|
||||||
msgstr "Sluoksniuojama plokštė 1"
|
msgstr "Sluoksniuojama plokštė 1"
|
||||||
|
|
||||||
msgid "Packing data to 3mf"
|
msgid "Packing data to 3MF"
|
||||||
|
msgstr "Duomenys pakuojami į 3mf"
|
||||||
|
|
||||||
|
msgid "Uploading data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Jump to webpage"
|
msgid "Jump to webpage"
|
||||||
@@ -9032,8 +9129,8 @@ msgstr "Lygi aukštos temperatūros plokštė"
|
|||||||
msgid "Textured PEI Plate"
|
msgid "Textured PEI Plate"
|
||||||
msgstr "Tekstūruota PEI plokštė"
|
msgstr "Tekstūruota PEI plokštė"
|
||||||
|
|
||||||
msgid "Cool Plate (Supertack)"
|
msgid "Cool Plate (SuperTack)"
|
||||||
msgstr ""
|
msgstr "Šalta plokštė (SuperTack)"
|
||||||
|
|
||||||
msgid "Click here if you can't connect to the printer"
|
msgid "Click here if you can't connect to the printer"
|
||||||
msgstr "Jei negalite prijungti spausdintuvo, spauskite čia"
|
msgstr "Jei negalite prijungti spausdintuvo, spauskite čia"
|
||||||
@@ -9362,7 +9459,7 @@ msgstr ""
|
|||||||
"bokšto dydis gali padidėti. Ar vis tiek norite įjungti?"
|
"bokšto dydis gali padidėti. Ar vis tiek norite įjungti?"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection. There may be flaws on the "
|
"A prime tower is required for clumping detection. There may be flaws on the "
|
||||||
"model without prime tower. Do you still want to enable clumping detection?"
|
"model without prime tower. Do you still want to enable clumping detection?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -9486,8 +9583,8 @@ msgstr ""
|
|||||||
msgid ""
|
msgid ""
|
||||||
"When recording timelapse without toolhead, it is recommended to add a "
|
"When recording timelapse without toolhead, it is recommended to add a "
|
||||||
"\"Timelapse Wipe Tower\" \n"
|
"\"Timelapse Wipe Tower\" \n"
|
||||||
"by right-click the empty position of build plate and choose \"Add "
|
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
"\"->\"Timelapse Wipe Tower\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Įrašant pakadrinį vaizdo įrašą be spausdinimo galvutės judesių, "
|
"Įrašant pakadrinį vaizdo įrašą be spausdinimo galvutės judesių, "
|
||||||
"rekomenduojama naudoti „Pakadrinio valymo bokštą“.\n"
|
"rekomenduojama naudoti „Pakadrinio valymo bokštą“.\n"
|
||||||
@@ -9717,9 +9814,6 @@ msgstr "Spausdinimo temperatūra"
|
|||||||
msgid "Nozzle temperature when printing"
|
msgid "Nozzle temperature when printing"
|
||||||
msgstr "Purkštuko temperatūra spausdinant"
|
msgstr "Purkštuko temperatūra spausdinant"
|
||||||
|
|
||||||
msgid "Cool Plate (SuperTack)"
|
|
||||||
msgstr "Šalta plokštė (SuperTack)"
|
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
||||||
"means the filament does not support printing on the Cool Plate SuperTack."
|
"means the filament does not support printing on the Cool Plate SuperTack."
|
||||||
@@ -10187,6 +10281,12 @@ msgstr "Rodyti visus išankstinius nustatymus (įskaitant nesuderinamus)"
|
|||||||
msgid "Select presets to compare"
|
msgid "Select presets to compare"
|
||||||
msgstr "Pasirinkite išankstinius nustatymus, kuriuos norite palyginti"
|
msgstr "Pasirinkite išankstinius nustatymus, kuriuos norite palyginti"
|
||||||
|
|
||||||
|
msgid "Left Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Right Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can only transfer to current active profile because it has been modified."
|
"You can only transfer to current active profile because it has been modified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -10620,6 +10720,12 @@ msgstr "Spustelėkite čia, jei norite jį atsisiųsti."
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "Prisijungti"
|
msgstr "Prisijungti"
|
||||||
|
|
||||||
|
msgid "[Action Required] "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "[Action Required]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "The configuration package is changed in previous Config Guide"
|
msgid "The configuration package is changed in previous Config Guide"
|
||||||
msgstr "Konfigūracijos paketas pakeistas ankstesniame Config Guide"
|
msgstr "Konfigūracijos paketas pakeistas ankstesniame Config Guide"
|
||||||
|
|
||||||
@@ -11023,8 +11129,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Įterptinės programinės įrangos versija yra nenormali. Prieš spausdinant "
|
"Įterptinės programinės įrangos versija yra nenormali. Prieš spausdinant "
|
||||||
"reikia pataisyti ir atnaujinti. Ar norite atnaujinti dabar? Taip pat galite "
|
"reikia pataisyti ir atnaujinti. Ar norite atnaujinti dabar? Taip pat galite "
|
||||||
"atnaujinti vėliau spausdintuve arba atnaujinti kitą kartą paleisdami "
|
"atnaujinti vėliau spausdintuve arba atnaujinti kitą kartą paleisdami \"Orca"
|
||||||
"\"Orca\"."
|
"\"."
|
||||||
|
|
||||||
msgid "Extension Board"
|
msgid "Extension Board"
|
||||||
msgstr "Išplėtimo plokštė"
|
msgstr "Išplėtimo plokštė"
|
||||||
@@ -11338,7 +11444,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection; otherwise, there may be "
|
"A prime tower is required for clumping detection; otherwise, there may be "
|
||||||
"flaws on the model."
|
"flaws on the model."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -11413,8 +11519,8 @@ msgid ""
|
|||||||
"The prime tower is currently only supported for the Marlin, RepRap/Sprinter, "
|
"The prime tower is currently only supported for the Marlin, RepRap/Sprinter, "
|
||||||
"RepRapFirmware and Repetier G-code flavors."
|
"RepRapFirmware and Repetier G-code flavors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Pagrindinis bokštas šiuo metu palaikomas tik \"Marlin\", \"RepRap/"
|
"Pagrindinis bokštas šiuo metu palaikomas tik \"Marlin\", \"RepRap/Sprinter"
|
||||||
"Sprinter\", \"RepRapFirmware\" ir \"Repetier\" G-kodo tipuose."
|
"\", \"RepRapFirmware\" ir \"Repetier\" G-kodo tipuose."
|
||||||
|
|
||||||
msgid "The prime tower is not supported in \"By object\" print."
|
msgid "The prime tower is not supported in \"By object\" print."
|
||||||
msgstr "Pirminis bokštas nepalaikomas spausdinant \"Pagal objektą\"."
|
msgstr "Pirminis bokštas nepalaikomas spausdinant \"Pagal objektą\"."
|
||||||
@@ -12934,7 +13040,7 @@ msgid ""
|
|||||||
"models\n"
|
"models\n"
|
||||||
"3. No filtering - creates internal bridges on every potential internal "
|
"3. No filtering - creates internal bridges on every potential internal "
|
||||||
"overhang. This option is useful for heavily slanted top surface models; "
|
"overhang. This option is useful for heavily slanted top surface models; "
|
||||||
"however, in most cases, it creates too many unnecessary bridges"
|
"however, in most cases, it creates too many unnecessary bridges."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ši parinktis gali padėti sumažinti viršutinių paviršių, esančių smarkiai "
|
"Ši parinktis gali padėti sumažinti viršutinių paviršių, esančių smarkiai "
|
||||||
"nuožulniuose ar išlenktuose modeliuose, iškilimą.\n"
|
"nuožulniuose ar išlenktuose modeliuose, iškilimą.\n"
|
||||||
@@ -12957,7 +13063,7 @@ msgstr ""
|
|||||||
"3. Be filtravimo - sukuria vidinius tiltus kiekvienoje potencialioje "
|
"3. Be filtravimo - sukuria vidinius tiltus kiekvienoje potencialioje "
|
||||||
"vidinėje iškyšoje. Ši parinktis naudinga stipriai nuožulnių viršutinių "
|
"vidinėje iškyšoje. Ši parinktis naudinga stipriai nuožulnių viršutinių "
|
||||||
"paviršių modeliams, tačiau daugeliu atvejų ji sukuria per daug nereikalingų "
|
"paviršių modeliams, tačiau daugeliu atvejų ji sukuria per daug nereikalingų "
|
||||||
"tiltų"
|
"tiltų."
|
||||||
|
|
||||||
msgid "Limited filtering"
|
msgid "Limited filtering"
|
||||||
msgstr "Ribotas filtravimas"
|
msgstr "Ribotas filtravimas"
|
||||||
@@ -13444,7 +13550,7 @@ msgid ""
|
|||||||
"less acceleration you print, the larger the range of acceptable PA values. "
|
"less acceleration you print, the larger the range of acceptable PA values. "
|
||||||
"If no difference is visible, use the PA value from the faster test\n"
|
"If no difference is visible, use the PA value from the faster test\n"
|
||||||
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
||||||
"here and save your filament profile"
|
"here and save your filament profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Pridėkite išankstinio slėgio (IS) verčių rinkinius, tūrinius srauto greičius "
|
"Pridėkite išankstinio slėgio (IS) verčių rinkinius, tūrinius srauto greičius "
|
||||||
"ir pagreičius, kuriems esant jie buvo išmatuoti, atskirti kableliu. Vienoje "
|
"ir pagreičius, kuriems esant jie buvo išmatuoti, atskirti kableliu. Vienoje "
|
||||||
@@ -13472,7 +13578,7 @@ msgstr ""
|
|||||||
"Jei jokio skirtumo nematyti, naudokite IS vertę, gautą atliekant greitesnį "
|
"Jei jokio skirtumo nematyti, naudokite IS vertę, gautą atliekant greitesnį "
|
||||||
"bandymą.\n"
|
"bandymą.\n"
|
||||||
"3. Čia esančiame teksto laukelyje įveskite IS verčių, srauto ir pagreičio "
|
"3. Čia esančiame teksto laukelyje įveskite IS verčių, srauto ir pagreičio "
|
||||||
"reikšmes ir išsaugokite gijos profilį"
|
"reikšmes ir išsaugokite gijos profilį."
|
||||||
|
|
||||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||||
msgstr "Įjungti prisitaikantį išankstinį slėgį iškyšoms (beta versija)"
|
msgstr "Įjungti prisitaikantį išankstinį slėgį iškyšoms (beta versija)"
|
||||||
@@ -14251,8 +14357,8 @@ msgid "mm/s² or %"
|
|||||||
msgstr "mm/s² arba %"
|
msgstr "mm/s² arba %"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
"g. 100%), it will be calculated based on the default acceleration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Retų užpildų pagreitis. Jei reikšmė išreikšta procentais (pvz., 100 %), ji "
|
"Retų užpildų pagreitis. Jei reikšmė išreikšta procentais (pvz., 100 %), ji "
|
||||||
"bus apskaičiuota pagal numatytąjį pagreitį."
|
"bus apskaičiuota pagal numatytąjį pagreitį."
|
||||||
@@ -14372,10 +14478,10 @@ msgstr "Visas ventiliatoriaus greitis sluoksnyje"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Fan speed will be ramped up linearly from zero at layer "
|
"Fan speed will be ramped up linearly from zero at layer "
|
||||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ventiliatoriaus greitis bus didinamas tiesiškai nuo nulio sluoksnyje "
|
"Ventiliatoriaus greitis bus didinamas tiesiškai nuo nulio sluoksnyje "
|
||||||
"\"close_fan_the_first_x_layers\" iki maksimalaus sluoksnyje "
|
"\"close_fan_the_first_x_layers\" iki maksimalaus sluoksnyje "
|
||||||
@@ -14897,9 +15003,9 @@ msgstr "Objektų žymėjimas"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this to add comments into the G-code labeling print moves with what "
|
"Enable this to add comments into the G-code labeling print moves with what "
|
||||||
"object they belong to, which is useful for the Octoprint CancelObject "
|
"object they belong to, which is useful for the Octoprint CancelObject plug-"
|
||||||
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
|
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
|
||||||
"setup and Wipe into Object / Wipe into Infill."
|
"and Wipe into Object / Wipe into Infill."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Įgalinkite šią funkciją, jei norite pridėti komentarų prie G-kodo žymėjimo "
|
"Įgalinkite šią funkciją, jei norite pridėti komentarų prie G-kodo žymėjimo "
|
||||||
"spausdinimo judesių su objektu, kuriam jie priklauso. Tai naudinga "
|
"spausdinimo judesių su objektu, kuriam jie priklauso. Tai naudinga "
|
||||||
@@ -15239,11 +15345,11 @@ msgstr "Lyginimo tipas"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Ironing is using small flow to print on same height of surface again to make "
|
"Ironing is using small flow to print on same height of surface again to make "
|
||||||
"flat surface more smooth. This setting controls which layer being ironed"
|
"flat surface more smooth. This setting controls which layer being ironed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Lyginant naudojamas nedidelis srautas, kuris spausdina tame pačiame "
|
"Lyginant naudojamas nedidelis srautas, kuris spausdina tame pačiame "
|
||||||
"paviršiaus aukštyje, kad plokšti paviršiai būtų lygesni. Šis nustatymas "
|
"paviršiaus aukštyje, kad plokšti paviršiai būtų lygesni. Šis nustatymas "
|
||||||
"kontroliuoja, kurie sluoksniai lyginami"
|
"kontroliuoja, kurie sluoksniai lyginami."
|
||||||
|
|
||||||
msgid "No ironing"
|
msgid "No ironing"
|
||||||
msgstr "Nėra lyginimo"
|
msgstr "Nėra lyginimo"
|
||||||
@@ -16296,8 +16402,8 @@ msgid "Role base wipe speed"
|
|||||||
msgstr "Vaidmens pagrindo nuvalymo greitis"
|
msgstr "Vaidmens pagrindo nuvalymo greitis"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
"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 "
|
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||||
"wipe action."
|
"wipe action."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -16566,7 +16672,7 @@ msgid ""
|
|||||||
"timelapse video when printing completes. If smooth mode is selected, the "
|
"timelapse video when printing completes. If smooth mode is selected, the "
|
||||||
"toolhead will move to the excess chute after each layer is printed and then "
|
"toolhead will move to the excess chute after each layer is printed and then "
|
||||||
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
||||||
"process of taking a snapshot, prime tower is required for smooth mode to "
|
"process of taking a snapshot, a prime tower is required for smooth mode to "
|
||||||
"wipe nozzle."
|
"wipe nozzle."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Jei pasirinktas lygus arba tradicinis režimas, kiekvienam spaudiniui bus "
|
"Jei pasirinktas lygus arba tradicinis režimas, kiekvienam spaudiniui bus "
|
||||||
@@ -17170,8 +17276,8 @@ msgstr "Suaktyvinti temperatūros reguliavimą"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this option for automated chamber temperature control. This option "
|
"Enable this option for automated chamber temperature control. This option "
|
||||||
"activates the emitting of an M191 command before the "
|
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||||
"\"machine_start_gcode\"\n"
|
"\"\n"
|
||||||
" which sets the chamber temperature and waits until it is reached. In "
|
" 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 "
|
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||||
"chamber heater, if present.\n"
|
"chamber heater, if present.\n"
|
||||||
@@ -17488,6 +17594,12 @@ msgstr ""
|
|||||||
"3. Briauna: bokšto sienai pridedamos keturios briaunos, padedančios "
|
"3. Briauna: bokšto sienai pridedamos keturios briaunos, padedančios "
|
||||||
"padidinti stabilumą."
|
"padidinti stabilumą."
|
||||||
|
|
||||||
|
msgid "Rectangle"
|
||||||
|
msgstr "Stačiakampis"
|
||||||
|
|
||||||
|
msgid "Rib"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Extra rib length"
|
msgid "Extra rib length"
|
||||||
msgstr "Papildomas briaunų ilgis"
|
msgstr "Papildomas briaunų ilgis"
|
||||||
|
|
||||||
@@ -18099,8 +18211,8 @@ msgstr ""
|
|||||||
"Jei įjungta, patikrinkite, ar dabartinė mašina yra suderinama su sąraše "
|
"Jei įjungta, patikrinkite, ar dabartinė mašina yra suderinama su sąraše "
|
||||||
"esančiomis mašinomis."
|
"esančiomis mašinomis."
|
||||||
|
|
||||||
msgid "downward machines settings"
|
msgid "Downward machines settings"
|
||||||
msgstr "tolimesnių mašinų nustatymas"
|
msgstr "Tolimesnių mašinų nustatymas"
|
||||||
|
|
||||||
msgid "The machine settings list needs to do downward checking."
|
msgid "The machine settings list needs to do downward checking."
|
||||||
msgstr "Mašinos nustatymų sąraše reikia atlikti žemyn einantį tikrinimą."
|
msgstr "Mašinos nustatymų sąraše reikia atlikti žemyn einantį tikrinimą."
|
||||||
@@ -18133,8 +18245,8 @@ msgid "Debug level"
|
|||||||
msgstr "Derinimo lygis"
|
msgstr "Derinimo lygis"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||||
"5:trace\n"
|
"trace\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Nustato derinimo žurnalizavimo lygį. 0: mirtinas, 1: klaida, 2: įspėjimas, "
|
"Nustato derinimo žurnalizavimo lygį. 0: mirtinas, 1: klaida, 2: įspėjimas, "
|
||||||
"3: informacija, 4: derinimas, 5: sekimas\n"
|
"3: informacija, 4: derinimas, 5: sekimas\n"
|
||||||
@@ -18665,13 +18777,13 @@ msgstr "Pateikto failo nepavyko perskaityti, nes jis tuščias"
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
|
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Nežinomas failo formatas. Įvesties failo plėtinys turi "
|
"Nežinomas failo formatas. Įvesties failo plėtinys turi būti .stl, .obj, ."
|
||||||
"būti .stl, .obj, .amf(.xml)."
|
"amf(.xml)."
|
||||||
|
|
||||||
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
|
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Nežinomas failo formatas. Įvesties failo plėtinys turi būti .3mf "
|
"Nežinomas failo formatas. Įvesties failo plėtinys turi būti .3mf arba .zip."
|
||||||
"arba .zip.amf."
|
"amf."
|
||||||
|
|
||||||
msgid "load_obj: failed to parse"
|
msgid "load_obj: failed to parse"
|
||||||
msgstr "load_obj: nepavyko apdoroti"
|
msgstr "load_obj: nepavyko apdoroti"
|
||||||
@@ -18787,10 +18899,6 @@ msgstr "Pavadinimas sutampa su kito nustatymo pavadinimu"
|
|||||||
msgid "create new preset failed."
|
msgid "create new preset failed."
|
||||||
msgstr "sukurti naują profilį nepavyko."
|
msgstr "sukurti naują profilį nepavyko."
|
||||||
|
|
||||||
#, c-format, boost-format
|
|
||||||
msgid "The selected preset: %s is not found."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid "Could not find parameter: %s."
|
msgid "Could not find parameter: %s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -19476,6 +19584,23 @@ msgstr "Greitasis bokštas"
|
|||||||
msgid "Input shaper type"
|
msgid "Input shaper type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Please ensure the selected type is compatible with your firmware version."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Marlin version => 2.1.2\n"
|
||||||
|
"Fixed-Time motion not yet implemented."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Klipper version => 0.9.0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"RepRap firmware version => 3.4.0\n"
|
||||||
|
"Check your firmware documentation for supported shaper types."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency (Start / End): "
|
msgid "Frequency (Start / End): "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -19514,6 +19639,9 @@ msgstr ""
|
|||||||
msgid "Input shaping Damp test"
|
msgid "Input shaping Damp test"
|
||||||
msgstr "Įvesties formavimas slopinimo bandymas"
|
msgstr "Įvesties formavimas slopinimo bandymas"
|
||||||
|
|
||||||
|
msgid "Check firmware compatibility."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency: "
|
msgid "Frequency: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -19849,8 +19977,8 @@ msgstr ""
|
|||||||
"Ar norite jį perrašyti?"
|
"Ar norite jį perrašyti?"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||||
"selected\".\n"
|
"\".\n"
|
||||||
"To add preset for more printers, please go to printer selection"
|
"To add preset for more printers, please go to printer selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Būtų galima pervadinti iš anksto nustatytus nustatymus į \"Pardavėjo tipo "
|
"Būtų galima pervadinti iš anksto nustatytus nustatymus į \"Pardavėjo tipo "
|
||||||
@@ -19899,9 +20027,6 @@ msgstr ""
|
|||||||
msgid "Can't find my nozzle diameter"
|
msgid "Can't find my nozzle diameter"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Rectangle"
|
|
||||||
msgstr "Stačiakampis"
|
|
||||||
|
|
||||||
msgid "Printable Space"
|
msgid "Printable Space"
|
||||||
msgstr "Spausdintina erdvė"
|
msgstr "Spausdintina erdvė"
|
||||||
|
|
||||||
@@ -20679,9 +20804,9 @@ msgid ""
|
|||||||
"quality but much longer print time."
|
"quality but much longer print time."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jo sluoksnio aukštis "
|
"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 "
|
"mažesnis, greitis ir pagreitis mažesni, o retas užpildymo raštas yra \"Gyroid"
|
||||||
"\"Gyroid\". Taigi, dėl jo mažiau matomų sluoksnio linijų ir daug geresnė "
|
"\". Taigi, dėl jo mažiau matomų sluoksnio linijų ir daug geresnė spausdinimo "
|
||||||
"spausdinimo kokybė, tačiau daug ilgesnis spausdinimo laikas."
|
"kokybė, tačiau daug ilgesnis spausdinimo laikas."
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
|
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
|
||||||
@@ -21267,6 +21392,127 @@ msgstr ""
|
|||||||
msgid "More Colors"
|
msgid "More Colors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Network Plug-in Update Available"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bambu Network Plug-in Required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
|
||||||
|
"and remote printing."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Error: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Version to install:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Download and Install"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip for Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "A new version of the Bambu Network Plug-in is available."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Current version: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update to version:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Remind Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Don't Ask Again"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The Bambu Network Plug-in has been installed successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"A restart is required to load the new plug-in. Would you like to restart now?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "NO RAMMING AT ALL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Volumetric speed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Step file import parameters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Smaller linear and angular deflections result in higher-quality "
|
||||||
|
"transformations but increase the processing time."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Linear Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Angle Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Split compound and compsolid into multiple objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Number of triangular facets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Calculating, please wait..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. "
|
||||||
|
"Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament model is unknown. Still using the previous filament preset."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. A "
|
||||||
|
"random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. A random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: resources/data/hints.ini: [hint:Precise wall]
|
#: resources/data/hints.ini: [hint:Precise wall]
|
||||||
msgid ""
|
msgid ""
|
||||||
"Precise wall\n"
|
"Precise wall\n"
|
||||||
@@ -21665,9 +21911,6 @@ msgstr ""
|
|||||||
#~ "Nepavyko įdiegti papildinio. Patikrinkite, ar jo neblokuoja arba "
|
#~ "Nepavyko įdiegti papildinio. Patikrinkite, ar jo neblokuoja arba "
|
||||||
#~ "neištrina antivirusinė programinė įranga."
|
#~ "neištrina antivirusinė programinė įranga."
|
||||||
|
|
||||||
#~ msgid "°C"
|
|
||||||
#~ msgstr "°C"
|
|
||||||
|
|
||||||
#~ msgid "travel"
|
#~ msgid "travel"
|
||||||
#~ msgstr "judėjimas"
|
#~ msgstr "judėjimas"
|
||||||
|
|
||||||
@@ -21711,18 +21954,16 @@ msgstr ""
|
|||||||
#~ msgid "Advance"
|
#~ msgid "Advance"
|
||||||
#~ msgstr "Detaliau"
|
#~ msgstr "Detaliau"
|
||||||
|
|
||||||
#~ msgid "Use legacy network plugin"
|
#~ msgid "Use legacy network plug-in"
|
||||||
#~ msgstr "Naudoti senąjį tinklo įskiepį"
|
#~ msgstr "Naudoti senąjį tinklo įskiepį"
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "Disable to use latest network plugin that supports new BambuLab firmwares."
|
#~ "Disable to use latest network plug-in that supports new BambuLab "
|
||||||
|
#~ "firmwares."
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
#~ "Išjunkite, kad galėtumėte naudoti naujausią tinklo įskiepį, kuris palaiko "
|
#~ "Išjunkite, kad galėtumėte naudoti naujausią tinklo įskiepį, kuris palaiko "
|
||||||
#~ "naujas „BambuLab“ programinės įrangos versijas."
|
#~ "naujas „BambuLab“ programinės įrangos versijas."
|
||||||
|
|
||||||
#~ msgid "Packing data to 3MF"
|
|
||||||
#~ msgstr "Duomenys pakuojami į 3mf"
|
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "Controls the density (spacing) of external bridge lines. 100% means solid "
|
#~ "Controls the density (spacing) of external bridge lines. 100% means solid "
|
||||||
#~ "bridge. Default is 100%.\n"
|
#~ "bridge. Default is 100%.\n"
|
||||||
@@ -22916,9 +23157,6 @@ msgstr ""
|
|||||||
#~ msgid "Load uptodate filament settings when using uptodate."
|
#~ msgid "Load uptodate filament settings when using uptodate."
|
||||||
#~ msgstr "įkelti naujausius gijų nustatymus, kai naudojate \"naujausius“"
|
#~ msgstr "įkelti naujausius gijų nustatymus, kai naudojate \"naujausius“"
|
||||||
|
|
||||||
#~ msgid "Downward machines settings"
|
|
||||||
#~ msgstr "mašinų nustatymai žemyn"
|
|
||||||
|
|
||||||
#~ msgid "Load custom G-code from json"
|
#~ msgid "Load custom G-code from json"
|
||||||
#~ msgstr "Įkelti pasirinktinį G-kodą iš json"
|
#~ msgstr "Įkelti pasirinktinį G-kodą iš json"
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Orca Slicer\n"
|
"Project-Id-Version: Orca Slicer\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
|
||||||
"PO-Revision-Date: \n"
|
"PO-Revision-Date: \n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
@@ -14,26 +14,6 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n"
|
"Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n"
|
||||||
"X-Generator: Poedit 3.4.4\n"
|
"X-Generator: Poedit 3.4.4\n"
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. "
|
|
||||||
"Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament model is unknown. Still using the previous filament preset."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. A "
|
|
||||||
"random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. A random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "right"
|
msgid "right"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1557,6 +1537,30 @@ msgstr ""
|
|||||||
msgid "Flip by Face 2"
|
msgid "Flip by Face 2"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Assemble"
|
||||||
|
msgstr "Monteren"
|
||||||
|
|
||||||
|
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "(Moving)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Point and point assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"It is recommended to assemble the objects first,\n"
|
||||||
|
"because the objects is restriced to bed \n"
|
||||||
|
"and only parts can be lifted."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Face and face assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Notice"
|
msgid "Notice"
|
||||||
msgstr "Let op"
|
msgstr "Let op"
|
||||||
|
|
||||||
@@ -1597,6 +1601,54 @@ msgstr ""
|
|||||||
msgid "Based on PrusaSlicer and BambuStudio"
|
msgid "Based on PrusaSlicer and BambuStudio"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "STEP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "STL files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "OBJ files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "AMF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Gcode 3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "G-code files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Supported files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "ZIP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Project files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Known files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "INI files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "SVG files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Texture"
|
||||||
|
msgstr "Textuur"
|
||||||
|
|
||||||
|
msgid "Masked SLA files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Draco files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
||||||
"It will be appreciated if you report the issue to our team."
|
"It will be appreciated if you report the issue to our team."
|
||||||
@@ -1624,10 +1676,10 @@ msgstr "OrcaSlicer kreeg een onbehandelde uitzondering: %1%"
|
|||||||
msgid "Untitled"
|
msgid "Untitled"
|
||||||
msgstr "Naamloos"
|
msgstr "Naamloos"
|
||||||
|
|
||||||
msgid "Reloading network plugin..."
|
msgid "Reloading network plug-in..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Network Plugin"
|
msgid "Downloading Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Bambu Network Plug-in"
|
msgid "Downloading Bambu Network Plug-in"
|
||||||
@@ -1718,6 +1770,9 @@ msgstr "Kies ZIP bestand"
|
|||||||
msgid "Choose one file (GCODE/3MF):"
|
msgid "Choose one file (GCODE/3MF):"
|
||||||
msgstr "Kies één bestand (GCODE/3MF):"
|
msgstr "Kies één bestand (GCODE/3MF):"
|
||||||
|
|
||||||
|
msgid "Ext"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Some presets are modified."
|
msgid "Some presets are modified."
|
||||||
msgstr "Sommige voorinstellingen zijn aangepast."
|
msgstr "Sommige voorinstellingen zijn aangepast."
|
||||||
|
|
||||||
@@ -1777,7 +1832,7 @@ msgid ""
|
|||||||
"access, enabling full functionality with OrcaSlicer."
|
"access, enabling full functionality with OrcaSlicer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network Plugin Restriction"
|
msgid "Network Plug-in Restriction"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Privacy Policy Update"
|
msgid "Privacy Policy Update"
|
||||||
@@ -2006,6 +2061,9 @@ msgid ""
|
|||||||
"No - Do not change these settings for me"
|
"No - Do not change these settings for me"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Suggestion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -2115,9 +2173,6 @@ msgstr "Omzetten vanuit meter"
|
|||||||
msgid "Restore to meters"
|
msgid "Restore to meters"
|
||||||
msgstr "Terugzetten naar meter"
|
msgstr "Terugzetten naar meter"
|
||||||
|
|
||||||
msgid "Assemble"
|
|
||||||
msgstr "Monteren"
|
|
||||||
|
|
||||||
msgid "Assemble the selected objects to an object with multiple parts"
|
msgid "Assemble the selected objects to an object with multiple parts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Monteer de geselecteerde objecten tot een object bestaande uit meerdere delen"
|
"Monteer de geselecteerde objecten tot een object bestaande uit meerdere delen"
|
||||||
@@ -2632,6 +2687,10 @@ msgstr "Print met meerdere kleuren"
|
|||||||
msgid "Line Type"
|
msgid "Line Type"
|
||||||
msgstr "Lijn type"
|
msgstr "Lijn type"
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "1x1 Grid: %d mm"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "More"
|
msgid "More"
|
||||||
msgstr "Meer"
|
msgstr "Meer"
|
||||||
|
|
||||||
@@ -2749,7 +2808,7 @@ msgstr ""
|
|||||||
msgid "Connecting..."
|
msgid "Connecting..."
|
||||||
msgstr "Verbinden..."
|
msgstr "Verbinden..."
|
||||||
|
|
||||||
msgid "Auto-refill"
|
msgid "Auto Refill"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Load"
|
msgid "Load"
|
||||||
@@ -3138,6 +3197,38 @@ msgid ""
|
|||||||
"Storage before sending to printer."
|
"Storage before sending to printer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossCreateObjectJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text object"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossUpdateJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Created text volume is empty. Change text or font."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for CreateSurfaceVolumeJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for UseSurfaceJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRN: This is the title of the action appearing in undo/redo stack.
|
||||||
|
#. It is same for Text and SVG.
|
||||||
|
msgid "Emboss attribute change"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text Volume"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Font doesn't have any shape for given text."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "There is no valid surface for text projection."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Thermal Preconditioning for first layer optimization"
|
msgid "Thermal Preconditioning for first layer optimization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3463,9 +3554,6 @@ msgstr ""
|
|||||||
msgid "Nozzle"
|
msgid "Nozzle"
|
||||||
msgstr "Mondstuk"
|
msgstr "Mondstuk"
|
||||||
|
|
||||||
msgid "Ext"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
||||||
@@ -3528,9 +3616,6 @@ msgstr "Printen met filament in AMS"
|
|||||||
msgid "Print with filaments mounted on the back of the chassis"
|
msgid "Print with filaments mounted on the back of the chassis"
|
||||||
msgstr "Print met filament op een externe spoel"
|
msgstr "Print met filament op een externe spoel"
|
||||||
|
|
||||||
msgid "Auto Refill"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Left"
|
msgid "Left"
|
||||||
msgstr "Links"
|
msgstr "Links"
|
||||||
|
|
||||||
@@ -3544,7 +3629,7 @@ msgstr ""
|
|||||||
"Als het huidige materiaal op is, gaat de printer verder met afdrukken in de "
|
"Als het huidige materiaal op is, gaat de printer verder met afdrukken in de "
|
||||||
"volgende volgorde."
|
"volgende volgorde."
|
||||||
|
|
||||||
msgid "Identical filament: same brand, type and color"
|
msgid "Identical filament: same brand, type and color."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Group"
|
msgid "Group"
|
||||||
@@ -3678,8 +3763,8 @@ msgid "Calibration"
|
|||||||
msgstr "Kalibratie"
|
msgstr "Kalibratie"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Failed to download the plug-in. Please check your firewall settings and vpn "
|
"Failed to download the plug-in. Please check your firewall settings and VPN "
|
||||||
"software, check and retry."
|
"software and retry."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Het downloaden van de plug-in is mislukt. Controleer je firewall-"
|
"Het downloaden van de plug-in is mislukt. Controleer je firewall-"
|
||||||
"instellingen en VPN-software en probeer het opnieuw."
|
"instellingen en VPN-software en probeer het opnieuw."
|
||||||
@@ -3694,8 +3779,8 @@ msgid "Click here to see more info"
|
|||||||
msgstr "klik hier voor meer informatie"
|
msgstr "klik hier voor meer informatie"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The network plugin was installed but could not be loaded. Please restart the "
|
"The network plug-in was installed but could not be loaded. Please restart "
|
||||||
"application."
|
"the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Restart Required"
|
msgid "Restart Required"
|
||||||
@@ -3865,9 +3950,6 @@ msgstr "Vorm laden vanuit het STL. bestand..."
|
|||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Instellingen"
|
msgstr "Instellingen"
|
||||||
|
|
||||||
msgid "Texture"
|
|
||||||
msgstr "Textuur"
|
|
||||||
|
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Verwijderen"
|
msgstr "Verwijderen"
|
||||||
|
|
||||||
@@ -4063,6 +4145,7 @@ msgid ""
|
|||||||
"Reset to 0."
|
"Reset to 0."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Lock depth should smaller than skin depth.\n"
|
"Lock depth should smaller than skin depth.\n"
|
||||||
"Reset to 50% of skin depth."
|
"Reset to 50% of skin depth."
|
||||||
@@ -4676,6 +4759,9 @@ msgstr ""
|
|||||||
msgid "Fan speed"
|
msgid "Fan speed"
|
||||||
msgstr "Ventilator snelheid"
|
msgstr "Ventilator snelheid"
|
||||||
|
|
||||||
|
msgid "°C"
|
||||||
|
msgstr "°C"
|
||||||
|
|
||||||
msgid "Time"
|
msgid "Time"
|
||||||
msgstr "Tijd"
|
msgstr "Tijd"
|
||||||
|
|
||||||
@@ -4832,8 +4918,8 @@ msgstr "Werkelijke snelheid (mm/s)"
|
|||||||
msgid "Fan Speed (%)"
|
msgid "Fan Speed (%)"
|
||||||
msgstr "Ventilator snelheid (%)"
|
msgstr "Ventilator snelheid (%)"
|
||||||
|
|
||||||
msgid "Temperature (℃)"
|
msgid "Temperature (°C)"
|
||||||
msgstr "Temperatuur (℃)"
|
msgstr "Temperatuur (°C)"
|
||||||
|
|
||||||
msgid "Volumetric flow rate (mm³/s)"
|
msgid "Volumetric flow rate (mm³/s)"
|
||||||
msgstr "Volumestroom (mm³/s)"
|
msgstr "Volumestroom (mm³/s)"
|
||||||
@@ -5151,7 +5237,7 @@ msgstr "Volume:"
|
|||||||
msgid "Size:"
|
msgid "Size:"
|
||||||
msgstr "Maat:"
|
msgstr "Maat:"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||||
"separate the conflicted objects farther (%s <-> %s)."
|
"separate the conflicted objects farther (%s <-> %s)."
|
||||||
@@ -5222,7 +5308,7 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
||||||
"mixing in models. Please redjust flushing settings."
|
"mixing in models. Please readjust flushing settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Click Wiki for help."
|
msgid "Click Wiki for help."
|
||||||
@@ -6503,6 +6589,9 @@ msgstr ""
|
|||||||
"At least one successful print record of this print profile is required \n"
|
"At least one successful print record of this print profile is required \n"
|
||||||
"to give a positive rating (4 or 5 stars)."
|
"to give a positive rating (4 or 5 stars)."
|
||||||
|
|
||||||
|
msgid "click to add machine"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr "Status"
|
msgstr "Status"
|
||||||
|
|
||||||
@@ -6513,6 +6602,14 @@ msgstr ""
|
|||||||
msgid "Assistant(HMS)"
|
msgid "Assistant(HMS)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s (%s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Don't show again"
|
msgid "Don't show again"
|
||||||
msgstr "Niet nogmaals tonen"
|
msgstr "Niet nogmaals tonen"
|
||||||
|
|
||||||
@@ -6897,7 +6994,7 @@ msgstr ""
|
|||||||
msgid "Unavailable while heating maintenance function is on."
|
msgid "Unavailable while heating maintenance function is on."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Idel Heating Protection"
|
msgid "Idle Heating Protection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
||||||
@@ -7421,7 +7518,7 @@ msgid "Please select a file"
|
|||||||
msgstr "Selecteer een bestand"
|
msgstr "Selecteer een bestand"
|
||||||
|
|
||||||
msgid "Do you want to replace it"
|
msgid "Do you want to replace it"
|
||||||
msgstr "Wilt u deze vervangen?"
|
msgstr "Wilt u deze vervangen"
|
||||||
|
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Bericht"
|
msgstr "Bericht"
|
||||||
@@ -7455,7 +7552,8 @@ msgid "Please resolve the slicing errors and publish again."
|
|||||||
msgstr "Los aub de slicing fouten op en publiceer opnieuw."
|
msgstr "Los aub de slicing fouten op en publiceer opnieuw."
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Network Plug-in is not detected. Network related features are unavailable."
|
"The network plug-in was not detected. Network related features are "
|
||||||
|
"unavailable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Netwerk plug-in is niet gedetecteerd. Netwerkgerelateerde functies zijn niet "
|
"Netwerk plug-in is niet gedetecteerd. Netwerkgerelateerde functies zijn niet "
|
||||||
"beschikbaar."
|
"beschikbaar."
|
||||||
@@ -8026,7 +8124,7 @@ msgstr ""
|
|||||||
msgid "filaments"
|
msgid "filaments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
msgid "Optimizes filament area maximum height by chosen filament count."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Features"
|
msgid "Features"
|
||||||
@@ -8227,40 +8325,40 @@ msgstr ""
|
|||||||
msgid "Color only"
|
msgid "Color only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin"
|
msgid "Network plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Enable network plugin"
|
msgid "Enable network plug-in"
|
||||||
msgstr "Netwerkplug-in inschakelen"
|
msgstr "Netwerkplug-in inschakelen"
|
||||||
|
|
||||||
msgid "Network plugin version"
|
msgid "Network plug-in version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Select the network plugin version to use"
|
msgid "Select the network plug-in version to use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "(Latest)"
|
msgid "(Latest)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin switched successfully."
|
msgid "Network plug-in switched successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to load network plugin. Please restart the application."
|
msgid "Failed to load network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You've selected network plugin version %s.\n"
|
"You've selected network plug-in version %s.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Would you like to download and install this version now?\n"
|
"Would you like to download and install this version now?\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Note: The application may need to restart after installation."
|
"Note: The application may need to restart after installation."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Download Network Plugin"
|
msgid "Download Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Associate files to OrcaSlicer"
|
msgid "Associate files to OrcaSlicer"
|
||||||
@@ -8339,19 +8437,16 @@ msgstr "debug"
|
|||||||
msgid "trace"
|
msgid "trace"
|
||||||
msgstr "trace"
|
msgstr "trace"
|
||||||
|
|
||||||
msgid "Network Plugin"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Reload"
|
msgid "Reload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload the network plugin without restarting the application"
|
msgid "Reload the network plug-in without restarting the application"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin reloaded successfully."
|
msgid "Network plug-in reloaded successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to reload network plugin. Please restart the application."
|
msgid "Failed to reload network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload Failed"
|
msgid "Reload Failed"
|
||||||
@@ -8573,7 +8668,10 @@ msgstr "Het publiceren is geannuleerd"
|
|||||||
msgid "Slicing Plate 1"
|
msgid "Slicing Plate 1"
|
||||||
msgstr "Slicing printbed 1"
|
msgstr "Slicing printbed 1"
|
||||||
|
|
||||||
msgid "Packing data to 3mf"
|
msgid "Packing data to 3MF"
|
||||||
|
msgstr "De data wordt opgeslagen in een 3mf"
|
||||||
|
|
||||||
|
msgid "Uploading data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Jump to webpage"
|
msgid "Jump to webpage"
|
||||||
@@ -8889,7 +8987,7 @@ msgstr ""
|
|||||||
msgid "Textured PEI Plate"
|
msgid "Textured PEI Plate"
|
||||||
msgstr "Getextureerde PEI-plaat"
|
msgstr "Getextureerde PEI-plaat"
|
||||||
|
|
||||||
msgid "Cool Plate (Supertack)"
|
msgid "Cool Plate (SuperTack)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Click here if you can't connect to the printer"
|
msgid "Click here if you can't connect to the printer"
|
||||||
@@ -9199,7 +9297,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection. There may be flaws on the "
|
"A prime tower is required for clumping detection. There may be flaws on the "
|
||||||
"model without prime tower. Do you still want to enable clumping detection?"
|
"model without prime tower. Do you still want to enable clumping detection?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -9313,8 +9411,8 @@ msgstr ""
|
|||||||
msgid ""
|
msgid ""
|
||||||
"When recording timelapse without toolhead, it is recommended to add a "
|
"When recording timelapse without toolhead, it is recommended to add a "
|
||||||
"\"Timelapse Wipe Tower\" \n"
|
"\"Timelapse Wipe Tower\" \n"
|
||||||
"by right-click the empty position of build plate and choose \"Add "
|
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
"\"->\"Timelapse Wipe Tower\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Bij het opnemen van timelapse zonder toolhead is het aan te raden om een "
|
"Bij het opnemen van timelapse zonder toolhead is het aan te raden om een "
|
||||||
"„Timelapse Wipe Tower” toe te voegen \n"
|
"„Timelapse Wipe Tower” toe te voegen \n"
|
||||||
@@ -9534,9 +9632,6 @@ msgstr "Print temperatuur"
|
|||||||
msgid "Nozzle temperature when printing"
|
msgid "Nozzle temperature when printing"
|
||||||
msgstr "Mondstuk temperatuur tijdens printen"
|
msgstr "Mondstuk temperatuur tijdens printen"
|
||||||
|
|
||||||
msgid "Cool Plate (SuperTack)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
||||||
"means the filament does not support printing on the Cool Plate SuperTack."
|
"means the filament does not support printing on the Cool Plate SuperTack."
|
||||||
@@ -9991,6 +10086,12 @@ msgstr "Toon alle presets (inclusief incompatibele)"
|
|||||||
msgid "Select presets to compare"
|
msgid "Select presets to compare"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Left Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Right Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can only transfer to current active profile because it has been modified."
|
"You can only transfer to current active profile because it has been modified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -10407,6 +10508,12 @@ msgstr "Klik hier om het te downloaden."
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "Inloggen"
|
msgstr "Inloggen"
|
||||||
|
|
||||||
|
msgid "[Action Required] "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "[Action Required]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "The configuration package is changed in previous Config Guide"
|
msgid "The configuration package is changed in previous Config Guide"
|
||||||
msgstr "Het configuratiebestand is aangepast in de vorige Config Guide"
|
msgstr "Het configuratiebestand is aangepast in de vorige Config Guide"
|
||||||
|
|
||||||
@@ -11134,7 +11241,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection; otherwise, there may be "
|
"A prime tower is required for clumping detection; otherwise, there may be "
|
||||||
"flaws on the model."
|
"flaws on the model."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -12466,7 +12573,7 @@ msgid ""
|
|||||||
"models\n"
|
"models\n"
|
||||||
"3. No filtering - creates internal bridges on every potential internal "
|
"3. No filtering - creates internal bridges on every potential internal "
|
||||||
"overhang. This option is useful for heavily slanted top surface models; "
|
"overhang. This option is useful for heavily slanted top surface models; "
|
||||||
"however, in most cases, it creates too many unnecessary bridges"
|
"however, in most cases, it creates too many unnecessary bridges."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Limited filtering"
|
msgid "Limited filtering"
|
||||||
@@ -12855,7 +12962,7 @@ msgid ""
|
|||||||
"less acceleration you print, the larger the range of acceptable PA values. "
|
"less acceleration you print, the larger the range of acceptable PA values. "
|
||||||
"If no difference is visible, use the PA value from the faster test\n"
|
"If no difference is visible, use the PA value from the faster test\n"
|
||||||
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
||||||
"here and save your filament profile"
|
"here and save your filament profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||||
@@ -13536,8 +13643,8 @@ msgid "mm/s² or %"
|
|||||||
msgstr "mm/s² of %"
|
msgstr "mm/s² of %"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
"g. 100%), it will be calculated based on the default acceleration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Versnelling van de schaarse invulling. Als de waarde wordt uitgedrukt als "
|
"Versnelling van de schaarse invulling. Als de waarde wordt uitgedrukt als "
|
||||||
"een percentage (bijvoorbeeld 100%), wordt deze berekend op basis van de "
|
"een percentage (bijvoorbeeld 100%), wordt deze berekend op basis van de "
|
||||||
@@ -13652,10 +13759,10 @@ msgstr "Volledige snelheid op laag"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Fan speed will be ramped up linearly from zero at layer "
|
"Fan speed will be ramped up linearly from zero at layer "
|
||||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "layer"
|
msgid "layer"
|
||||||
@@ -14083,9 +14190,9 @@ msgstr "Label objecten"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this to add comments into the G-code labeling print moves with what "
|
"Enable this to add comments into the G-code labeling print moves with what "
|
||||||
"object they belong to, which is useful for the Octoprint CancelObject "
|
"object they belong to, which is useful for the Octoprint CancelObject plug-"
|
||||||
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
|
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
|
||||||
"setup and Wipe into Object / Wipe into Infill."
|
"and Wipe into Object / Wipe into Infill."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Schakel dit in om opmerkingen in de G-code toe te voegen voor bewegingen die "
|
"Schakel dit in om opmerkingen in de G-code toe te voegen voor bewegingen die "
|
||||||
"behoren tot een object. Dit is handig voor de OctoPrint CancelObject-plugin. "
|
"behoren tot een object. Dit is handig voor de OctoPrint CancelObject-plugin. "
|
||||||
@@ -14355,7 +14462,7 @@ msgstr "Strijk type"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Ironing is using small flow to print on same height of surface again to make "
|
"Ironing is using small flow to print on same height of surface again to make "
|
||||||
"flat surface more smooth. This setting controls which layer being ironed"
|
"flat surface more smooth. This setting controls which layer being ironed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Strijken gebruikt een lage flow om op dezelfde hoogte van een oppervlak te "
|
"Strijken gebruikt een lage flow om op dezelfde hoogte van een oppervlak te "
|
||||||
"printen om platte oppervlakken gladder te maken. Deze instelling bepaalt op "
|
"printen om platte oppervlakken gladder te maken. Deze instelling bepaalt op "
|
||||||
@@ -15289,8 +15396,8 @@ msgid "Role base wipe speed"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
"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 "
|
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||||
"wipe action."
|
"wipe action."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -15509,7 +15616,7 @@ msgid ""
|
|||||||
"timelapse video when printing completes. If smooth mode is selected, the "
|
"timelapse video when printing completes. If smooth mode is selected, the "
|
||||||
"toolhead will move to the excess chute after each layer is printed and then "
|
"toolhead will move to the excess chute after each layer is printed and then "
|
||||||
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
||||||
"process of taking a snapshot, prime tower is required for smooth mode to "
|
"process of taking a snapshot, a prime tower is required for smooth mode to "
|
||||||
"wipe nozzle."
|
"wipe nozzle."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Als de vloeiende of traditionele modus is geselecteerd, wordt voor elke "
|
"Als de vloeiende of traditionele modus is geselecteerd, wordt voor elke "
|
||||||
@@ -16070,8 +16177,8 @@ msgstr "Temperatuurregeling activeren"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this option for automated chamber temperature control. This option "
|
"Enable this option for automated chamber temperature control. This option "
|
||||||
"activates the emitting of an M191 command before the "
|
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||||
"\"machine_start_gcode\"\n"
|
"\"\n"
|
||||||
" which sets the chamber temperature and waits until it is reached. In "
|
" 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 "
|
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||||
"chamber heater, if present.\n"
|
"chamber heater, if present.\n"
|
||||||
@@ -16313,6 +16420,12 @@ msgid ""
|
|||||||
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
|
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Rectangle"
|
||||||
|
msgstr "Rechthoek"
|
||||||
|
|
||||||
|
msgid "Rib"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Extra rib length"
|
msgid "Extra rib length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -16530,11 +16643,10 @@ msgid ""
|
|||||||
"Wipe tower is only compatible with relative mode. It is recommended on most "
|
"Wipe tower is only compatible with relative mode. It is recommended on most "
|
||||||
"printers. Default is checked."
|
"printers. Default is checked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Relatieve extrusie wordt aanbevolen bij gebruik van de optie "
|
"Relatieve extrusie wordt aanbevolen bij gebruik van de optie \"label_objects"
|
||||||
"\"label_objects\". Sommige extruders werken beter als deze optie niet is "
|
"\". Sommige extruders werken beter als deze optie niet is aangevinkt "
|
||||||
"aangevinkt (absolute extrusiemodus). Wipe tower is alleen compatibel met "
|
"(absolute extrusiemodus). Wipe tower is alleen compatibel met relatieve "
|
||||||
"relatieve modus. Het wordt aanbevolen op de meeste printers. Standaard is "
|
"modus. Het wordt aanbevolen op de meeste printers. Standaard is aangevinkt"
|
||||||
"aangevinkt"
|
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Classic wall generator produces walls with constant extrusion width and for "
|
"Classic wall generator produces walls with constant extrusion width and for "
|
||||||
@@ -16888,7 +17000,7 @@ msgid ""
|
|||||||
"machines in the list."
|
"machines in the list."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "downward machines settings"
|
msgid "Downward machines settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "The machine settings list needs to do downward checking."
|
msgid "The machine settings list needs to do downward checking."
|
||||||
@@ -16922,8 +17034,8 @@ msgid "Debug level"
|
|||||||
msgstr "Debuggen level"
|
msgstr "Debuggen level"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||||
"5:trace\n"
|
"trace\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Enable timelapse for print"
|
msgid "Enable timelapse for print"
|
||||||
@@ -17519,10 +17631,6 @@ msgstr "De naam is hetzelfde als een andere bestaande presetnaam"
|
|||||||
msgid "create new preset failed."
|
msgid "create new preset failed."
|
||||||
msgstr "nieuwe voorinstelling maken mislukt."
|
msgstr "nieuwe voorinstelling maken mislukt."
|
||||||
|
|
||||||
#, c-format, boost-format
|
|
||||||
msgid "The selected preset: %s is not found."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid "Could not find parameter: %s."
|
msgid "Could not find parameter: %s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -18146,6 +18254,23 @@ msgstr ""
|
|||||||
msgid "Input shaper type"
|
msgid "Input shaper type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Please ensure the selected type is compatible with your firmware version."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Marlin version => 2.1.2\n"
|
||||||
|
"Fixed-Time motion not yet implemented."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Klipper version => 0.9.0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"RepRap firmware version => 3.4.0\n"
|
||||||
|
"Check your firmware documentation for supported shaper types."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency (Start / End): "
|
msgid "Frequency (Start / End): "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -18180,6 +18305,9 @@ msgstr ""
|
|||||||
msgid "Input shaping Damp test"
|
msgid "Input shaping Damp test"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Check firmware compatibility."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency: "
|
msgid "Frequency: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -18508,8 +18636,8 @@ msgstr ""
|
|||||||
"Wil je het herschrijven?"
|
"Wil je het herschrijven?"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||||
"selected\".\n"
|
"\".\n"
|
||||||
"To add preset for more printers, please go to printer selection"
|
"To add preset for more printers, please go to printer selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -18555,9 +18683,6 @@ msgstr ""
|
|||||||
msgid "Can't find my nozzle diameter"
|
msgid "Can't find my nozzle diameter"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Rectangle"
|
|
||||||
msgstr "Rechthoek"
|
|
||||||
|
|
||||||
msgid "Printable Space"
|
msgid "Printable Space"
|
||||||
msgstr "Printbare ruimte"
|
msgstr "Printbare ruimte"
|
||||||
|
|
||||||
@@ -19817,6 +19942,127 @@ msgstr ""
|
|||||||
msgid "More Colors"
|
msgid "More Colors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Network Plug-in Update Available"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bambu Network Plug-in Required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
|
||||||
|
"and remote printing."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Error: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Version to install:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Download and Install"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip for Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "A new version of the Bambu Network Plug-in is available."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Current version: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update to version:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Remind Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Don't Ask Again"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The Bambu Network Plug-in has been installed successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"A restart is required to load the new plug-in. Would you like to restart now?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "NO RAMMING AT ALL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Volumetric speed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Step file import parameters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Smaller linear and angular deflections result in higher-quality "
|
||||||
|
"transformations but increase the processing time."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Linear Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Angle Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Split compound and compsolid into multiple objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Number of triangular facets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Calculating, please wait..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. "
|
||||||
|
"Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament model is unknown. Still using the previous filament preset."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. A "
|
||||||
|
"random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. A random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: resources/data/hints.ini: [hint:Precise wall]
|
#: resources/data/hints.ini: [hint:Precise wall]
|
||||||
msgid ""
|
msgid ""
|
||||||
"Precise wall\n"
|
"Precise wall\n"
|
||||||
@@ -20214,9 +20460,6 @@ msgstr ""
|
|||||||
#~ "De installatie van de plug-in is mislukt. Controleer of deze is "
|
#~ "De installatie van de plug-in is mislukt. Controleer of deze is "
|
||||||
#~ "geblokkeerd of verwijderd door anti-virussoftware."
|
#~ "geblokkeerd of verwijderd door anti-virussoftware."
|
||||||
|
|
||||||
#~ msgid "°C"
|
|
||||||
#~ msgstr "°C"
|
|
||||||
|
|
||||||
#~ msgid "travel"
|
#~ msgid "travel"
|
||||||
#~ msgstr "verplaatsen"
|
#~ msgstr "verplaatsen"
|
||||||
|
|
||||||
@@ -20254,9 +20497,6 @@ msgstr ""
|
|||||||
#~ msgid "Advance"
|
#~ msgid "Advance"
|
||||||
#~ msgstr "Geavanceerd"
|
#~ msgstr "Geavanceerd"
|
||||||
|
|
||||||
#~ msgid "Packing data to 3MF"
|
|
||||||
#~ msgstr "De data wordt opgeslagen in een 3mf"
|
|
||||||
|
|
||||||
#~ msgid "°"
|
#~ msgid "°"
|
||||||
#~ msgstr "°"
|
#~ msgstr "°"
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: OrcaSlicer 2.3.0-rc\n"
|
"Project-Id-Version: OrcaSlicer 2.3.0-rc\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
|
||||||
"PO-Revision-Date: \n"
|
"PO-Revision-Date: \n"
|
||||||
"Last-Translator: Krzysztof Morga <<tlumaczeniebs@gmail.com>>\n"
|
"Last-Translator: Krzysztof Morga <<tlumaczeniebs@gmail.com>>\n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
@@ -16,26 +16,6 @@ msgstr ""
|
|||||||
"First-Translator: Krzysztof Morga <tlumaczeniebs@gmail.com>\n"
|
"First-Translator: Krzysztof Morga <tlumaczeniebs@gmail.com>\n"
|
||||||
"X-Generator: Poedit 3.6\n"
|
"X-Generator: Poedit 3.6\n"
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. "
|
|
||||||
"Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament model is unknown. Still using the previous filament preset."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. A "
|
|
||||||
"random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. A random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "right"
|
msgid "right"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1583,6 +1563,30 @@ msgstr "Odległość między równoległymi krawędziami:"
|
|||||||
msgid "Flip by Face 2"
|
msgid "Flip by Face 2"
|
||||||
msgstr "Obróć względem 2 powierzchni"
|
msgstr "Obróć względem 2 powierzchni"
|
||||||
|
|
||||||
|
msgid "Assemble"
|
||||||
|
msgstr "Złożenie"
|
||||||
|
|
||||||
|
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "(Moving)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Point and point assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"It is recommended to assemble the objects first,\n"
|
||||||
|
"because the objects is restriced to bed \n"
|
||||||
|
"and only parts can be lifted."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Face and face assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Notice"
|
msgid "Notice"
|
||||||
msgstr "Uwaga"
|
msgstr "Uwaga"
|
||||||
|
|
||||||
@@ -1623,6 +1627,54 @@ msgstr ""
|
|||||||
msgid "Based on PrusaSlicer and BambuStudio"
|
msgid "Based on PrusaSlicer and BambuStudio"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "STEP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "STL files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "OBJ files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "AMF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Gcode 3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "G-code files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Supported files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "ZIP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Project files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Known files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "INI files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "SVG files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Texture"
|
||||||
|
msgstr "Tekstura"
|
||||||
|
|
||||||
|
msgid "Masked SLA files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Draco files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
||||||
"It will be appreciated if you report the issue to our team."
|
"It will be appreciated if you report the issue to our team."
|
||||||
@@ -1650,10 +1702,10 @@ msgstr "OrcaSlicer napotkał nieobsługiwany wyjątek: %1%"
|
|||||||
msgid "Untitled"
|
msgid "Untitled"
|
||||||
msgstr "Bez tytułu"
|
msgstr "Bez tytułu"
|
||||||
|
|
||||||
msgid "Reloading network plugin..."
|
msgid "Reloading network plug-in..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Network Plugin"
|
msgid "Downloading Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Bambu Network Plug-in"
|
msgid "Downloading Bambu Network Plug-in"
|
||||||
@@ -1749,6 +1801,9 @@ msgstr "Wybierz plik ZIP"
|
|||||||
msgid "Choose one file (GCODE/3MF):"
|
msgid "Choose one file (GCODE/3MF):"
|
||||||
msgstr "Wybierz jeden plik (GCODE/3MF):"
|
msgstr "Wybierz jeden plik (GCODE/3MF):"
|
||||||
|
|
||||||
|
msgid "Ext"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Some presets are modified."
|
msgid "Some presets are modified."
|
||||||
msgstr "Niektóre ustawienia zostały zmodyfikowane."
|
msgstr "Niektóre ustawienia zostały zmodyfikowane."
|
||||||
|
|
||||||
@@ -1809,7 +1864,7 @@ msgid ""
|
|||||||
"access, enabling full functionality with OrcaSlicer."
|
"access, enabling full functionality with OrcaSlicer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network Plugin Restriction"
|
msgid "Network Plug-in Restriction"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Privacy Policy Update"
|
msgid "Privacy Policy Update"
|
||||||
@@ -2045,6 +2100,9 @@ msgstr ""
|
|||||||
"Tak - Zmień te ustawienia automatycznie\n"
|
"Tak - Zmień te ustawienia automatycznie\n"
|
||||||
"Nie - Nie zmieniaj tych ustawień"
|
"Nie - Nie zmieniaj tych ustawień"
|
||||||
|
|
||||||
|
msgid "Suggestion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Tekst"
|
msgstr "Tekst"
|
||||||
|
|
||||||
@@ -2154,9 +2212,6 @@ msgstr "Konwertuj z metra"
|
|||||||
msgid "Restore to meters"
|
msgid "Restore to meters"
|
||||||
msgstr "Przywróć do metra"
|
msgstr "Przywróć do metra"
|
||||||
|
|
||||||
msgid "Assemble"
|
|
||||||
msgstr "Złożenie"
|
|
||||||
|
|
||||||
msgid "Assemble the selected objects to an object with multiple parts"
|
msgid "Assemble the selected objects to an object with multiple parts"
|
||||||
msgstr "Zmontuj wybrane obiekty w obiekt wieloczęściowy"
|
msgstr "Zmontuj wybrane obiekty w obiekt wieloczęściowy"
|
||||||
|
|
||||||
@@ -2670,6 +2725,10 @@ msgstr "Druk wielobarwny"
|
|||||||
msgid "Line Type"
|
msgid "Line Type"
|
||||||
msgstr "Rodzaj linii"
|
msgstr "Rodzaj linii"
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "1x1 Grid: %d mm"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "More"
|
msgid "More"
|
||||||
msgstr "Więcej"
|
msgstr "Więcej"
|
||||||
|
|
||||||
@@ -2788,8 +2847,8 @@ msgstr "Proszę sprawdzić połączenie sieciowe drukarki i Orca."
|
|||||||
msgid "Connecting..."
|
msgid "Connecting..."
|
||||||
msgstr "Łączenie..."
|
msgstr "Łączenie..."
|
||||||
|
|
||||||
msgid "Auto-refill"
|
msgid "Auto Refill"
|
||||||
msgstr ""
|
msgstr "Auto. uzupełnienie"
|
||||||
|
|
||||||
msgid "Load"
|
msgid "Load"
|
||||||
msgstr "Ładuj"
|
msgstr "Ładuj"
|
||||||
@@ -3188,6 +3247,38 @@ msgid ""
|
|||||||
"Storage before sending to printer."
|
"Storage before sending to printer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossCreateObjectJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text object"
|
||||||
|
msgstr "Dodaj wytłoczony obiekt tekstowy"
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossUpdateJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Created text volume is empty. Change text or font."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for CreateSurfaceVolumeJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for UseSurfaceJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRN: This is the title of the action appearing in undo/redo stack.
|
||||||
|
#. It is same for Text and SVG.
|
||||||
|
msgid "Emboss attribute change"
|
||||||
|
msgstr "Zmiana atrybutów wytłoczenia"
|
||||||
|
|
||||||
|
msgid "Add Emboss text Volume"
|
||||||
|
msgstr "Dodaj wytłoczoną objętość tekstową"
|
||||||
|
|
||||||
|
msgid "Font doesn't have any shape for given text."
|
||||||
|
msgstr "Czcionka nie ma żadnego kształtu dla danego tekstu."
|
||||||
|
|
||||||
|
msgid "There is no valid surface for text projection."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Thermal Preconditioning for first layer optimization"
|
msgid "Thermal Preconditioning for first layer optimization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3517,9 +3608,6 @@ msgstr ""
|
|||||||
msgid "Nozzle"
|
msgid "Nozzle"
|
||||||
msgstr "Dysza"
|
msgstr "Dysza"
|
||||||
|
|
||||||
msgid "Ext"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
||||||
@@ -3589,9 +3677,6 @@ msgid "Print with filaments mounted on the back of the chassis"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Drukowanie przy użyciu materiałów zamontowanych na tylnej części obudowy"
|
"Drukowanie przy użyciu materiałów zamontowanych na tylnej części obudowy"
|
||||||
|
|
||||||
msgid "Auto Refill"
|
|
||||||
msgstr "Auto. uzupełnienie"
|
|
||||||
|
|
||||||
msgid "Left"
|
msgid "Left"
|
||||||
msgstr "Lewo"
|
msgstr "Lewo"
|
||||||
|
|
||||||
@@ -3605,7 +3690,7 @@ msgstr ""
|
|||||||
"Gdy obecny filament się skończy, drukarka będzie kontynuować druk w "
|
"Gdy obecny filament się skończy, drukarka będzie kontynuować druk w "
|
||||||
"następującej kolejności."
|
"następującej kolejności."
|
||||||
|
|
||||||
msgid "Identical filament: same brand, type and color"
|
msgid "Identical filament: same brand, type and color."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Group"
|
msgid "Group"
|
||||||
@@ -3744,8 +3829,8 @@ msgid "Calibration"
|
|||||||
msgstr "Kalibracja"
|
msgstr "Kalibracja"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Failed to download the plug-in. Please check your firewall settings and vpn "
|
"Failed to download the plug-in. Please check your firewall settings and VPN "
|
||||||
"software, check and retry."
|
"software and retry."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Nie udało się pobrać wtyczki. Sprawdź ustawienia zapory ogniowej i "
|
"Nie udało się pobrać wtyczki. Sprawdź ustawienia zapory ogniowej i "
|
||||||
"oprogramowania VPN, sprawdź i spróbuj ponownie."
|
"oprogramowania VPN, sprawdź i spróbuj ponownie."
|
||||||
@@ -3760,8 +3845,8 @@ msgid "Click here to see more info"
|
|||||||
msgstr "Kliknij tutaj, aby zobaczyć więcej informacji"
|
msgstr "Kliknij tutaj, aby zobaczyć więcej informacji"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The network plugin was installed but could not be loaded. Please restart the "
|
"The network plug-in was installed but could not be loaded. Please restart "
|
||||||
"application."
|
"the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Restart Required"
|
msgid "Restart Required"
|
||||||
@@ -3932,9 +4017,6 @@ msgstr "Wczytaj kształt z pliku STL..."
|
|||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Ustawienia"
|
msgstr "Ustawienia"
|
||||||
|
|
||||||
msgid "Texture"
|
|
||||||
msgstr "Tekstura"
|
|
||||||
|
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Usuń"
|
msgstr "Usuń"
|
||||||
|
|
||||||
@@ -4138,6 +4220,7 @@ msgstr ""
|
|||||||
"seam_slope_start_height musi być mniejsza niż wysokość warstwy.\n"
|
"seam_slope_start_height musi być mniejsza niż wysokość warstwy.\n"
|
||||||
"Zresetuj do wartości 0"
|
"Zresetuj do wartości 0"
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Lock depth should smaller than skin depth.\n"
|
"Lock depth should smaller than skin depth.\n"
|
||||||
"Reset to 50% of skin depth."
|
"Reset to 50% of skin depth."
|
||||||
@@ -4754,6 +4837,9 @@ msgstr ""
|
|||||||
msgid "Fan speed"
|
msgid "Fan speed"
|
||||||
msgstr "Prędkość wentylatora"
|
msgstr "Prędkość wentylatora"
|
||||||
|
|
||||||
|
msgid "°C"
|
||||||
|
msgstr "°C"
|
||||||
|
|
||||||
msgid "Time"
|
msgid "Time"
|
||||||
msgstr "Czas"
|
msgstr "Czas"
|
||||||
|
|
||||||
@@ -4910,8 +4996,8 @@ msgstr "Rzeczywista prędkość (mm/s)"
|
|||||||
msgid "Fan Speed (%)"
|
msgid "Fan Speed (%)"
|
||||||
msgstr "Prędkość wentylatora (%)"
|
msgstr "Prędkość wentylatora (%)"
|
||||||
|
|
||||||
msgid "Temperature (℃)"
|
msgid "Temperature (°C)"
|
||||||
msgstr "Temperatura (℃)"
|
msgstr "Temperatura (°C)"
|
||||||
|
|
||||||
msgid "Volumetric flow rate (mm³/s)"
|
msgid "Volumetric flow rate (mm³/s)"
|
||||||
msgstr "Natężenie przepływu (mm³/s)"
|
msgstr "Natężenie przepływu (mm³/s)"
|
||||||
@@ -5229,7 +5315,7 @@ msgstr "Objętość:"
|
|||||||
msgid "Size:"
|
msgid "Size:"
|
||||||
msgstr "Rozmiar:"
|
msgstr "Rozmiar:"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||||
"separate the conflicted objects farther (%s <-> %s)."
|
"separate the conflicted objects farther (%s <-> %s)."
|
||||||
@@ -5302,7 +5388,7 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
||||||
"mixing in models. Please redjust flushing settings."
|
"mixing in models. Please readjust flushing settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Click Wiki for help."
|
msgid "Click Wiki for help."
|
||||||
@@ -6621,6 +6707,9 @@ msgstr ""
|
|||||||
"Aby wystawić pozytywną ocenę (4 lub 5 gwiazdek), wymagana \n"
|
"Aby wystawić pozytywną ocenę (4 lub 5 gwiazdek), wymagana \n"
|
||||||
"jest co najmniej jedna udana rejestracja tego profilu druku."
|
"jest co najmniej jedna udana rejestracja tego profilu druku."
|
||||||
|
|
||||||
|
msgid "click to add machine"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr "Status"
|
msgstr "Status"
|
||||||
|
|
||||||
@@ -6631,6 +6720,14 @@ msgstr ""
|
|||||||
msgid "Assistant(HMS)"
|
msgid "Assistant(HMS)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s (%s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Don't show again"
|
msgid "Don't show again"
|
||||||
msgstr "Nie pokazuj ponownie"
|
msgstr "Nie pokazuj ponownie"
|
||||||
|
|
||||||
@@ -7017,7 +7114,7 @@ msgstr ""
|
|||||||
msgid "Unavailable while heating maintenance function is on."
|
msgid "Unavailable while heating maintenance function is on."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Idel Heating Protection"
|
msgid "Idle Heating Protection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
||||||
@@ -7574,7 +7671,8 @@ msgid "Please resolve the slicing errors and publish again."
|
|||||||
msgstr "Rozwiąż błędy w cięciu i opublikuj ponownie."
|
msgstr "Rozwiąż błędy w cięciu i opublikuj ponownie."
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Network Plug-in is not detected. Network related features are unavailable."
|
"The network plug-in was not detected. Network related features are "
|
||||||
|
"unavailable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Wtyczka sieciowa nie jest wykrywana. Funkcje związane z siecią są "
|
"Wtyczka sieciowa nie jest wykrywana. Funkcje związane z siecią są "
|
||||||
"niedostępne."
|
"niedostępne."
|
||||||
@@ -8155,7 +8253,7 @@ msgstr ""
|
|||||||
msgid "filaments"
|
msgid "filaments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
msgid "Optimizes filament area maximum height by chosen filament count."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Features"
|
msgid "Features"
|
||||||
@@ -8352,40 +8450,40 @@ msgstr ""
|
|||||||
msgid "Color only"
|
msgid "Color only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin"
|
msgid "Network plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Enable network plugin"
|
msgid "Enable network plug-in"
|
||||||
msgstr "Włączenie wtyczki sieciowej"
|
msgstr "Włączenie wtyczki sieciowej"
|
||||||
|
|
||||||
msgid "Network plugin version"
|
msgid "Network plug-in version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Select the network plugin version to use"
|
msgid "Select the network plug-in version to use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "(Latest)"
|
msgid "(Latest)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin switched successfully."
|
msgid "Network plug-in switched successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to load network plugin. Please restart the application."
|
msgid "Failed to load network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You've selected network plugin version %s.\n"
|
"You've selected network plug-in version %s.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Would you like to download and install this version now?\n"
|
"Would you like to download and install this version now?\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Note: The application may need to restart after installation."
|
"Note: The application may need to restart after installation."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Download Network Plugin"
|
msgid "Download Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Associate files to OrcaSlicer"
|
msgid "Associate files to OrcaSlicer"
|
||||||
@@ -8454,19 +8552,16 @@ msgstr "debugowanie"
|
|||||||
msgid "trace"
|
msgid "trace"
|
||||||
msgstr "śledzenie"
|
msgstr "śledzenie"
|
||||||
|
|
||||||
msgid "Network Plugin"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Reload"
|
msgid "Reload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload the network plugin without restarting the application"
|
msgid "Reload the network plug-in without restarting the application"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin reloaded successfully."
|
msgid "Network plug-in reloaded successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to reload network plugin. Please restart the application."
|
msgid "Failed to reload network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload Failed"
|
msgid "Reload Failed"
|
||||||
@@ -8685,7 +8780,10 @@ msgstr "Publikacja została anulowana"
|
|||||||
msgid "Slicing Plate 1"
|
msgid "Slicing Plate 1"
|
||||||
msgstr "Krojenie płyty 1"
|
msgstr "Krojenie płyty 1"
|
||||||
|
|
||||||
msgid "Packing data to 3mf"
|
msgid "Packing data to 3MF"
|
||||||
|
msgstr "Pakowanie danych do 3mf"
|
||||||
|
|
||||||
|
msgid "Uploading data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Jump to webpage"
|
msgid "Jump to webpage"
|
||||||
@@ -9003,8 +9101,8 @@ msgstr "Smooth High Temp Plate"
|
|||||||
msgid "Textured PEI Plate"
|
msgid "Textured PEI Plate"
|
||||||
msgstr "Textured PEI Plate"
|
msgstr "Textured PEI Plate"
|
||||||
|
|
||||||
msgid "Cool Plate (Supertack)"
|
msgid "Cool Plate (SuperTack)"
|
||||||
msgstr ""
|
msgstr "Cool Plate (SuperTack)"
|
||||||
|
|
||||||
msgid "Click here if you can't connect to the printer"
|
msgid "Click here if you can't connect to the printer"
|
||||||
msgstr "Kliknij tutaj, jeśli nie możesz połączyć się z drukarką"
|
msgstr "Kliknij tutaj, jeśli nie możesz połączyć się z drukarką"
|
||||||
@@ -9324,7 +9422,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection. There may be flaws on the "
|
"A prime tower is required for clumping detection. There may be flaws on the "
|
||||||
"model without prime tower. Do you still want to enable clumping detection?"
|
"model without prime tower. Do you still want to enable clumping detection?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -9442,8 +9540,8 @@ msgstr ""
|
|||||||
msgid ""
|
msgid ""
|
||||||
"When recording timelapse without toolhead, it is recommended to add a "
|
"When recording timelapse without toolhead, it is recommended to add a "
|
||||||
"\"Timelapse Wipe Tower\" \n"
|
"\"Timelapse Wipe Tower\" \n"
|
||||||
"by right-click the empty position of build plate and choose \"Add "
|
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
"\"->\"Timelapse Wipe Tower\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Podczas nagrywania timelapse bez głowicy drukującej zaleca się dodanie "
|
"Podczas nagrywania timelapse bez głowicy drukującej zaleca się dodanie "
|
||||||
"„Timelapse - Wieża czyszcząca” \n"
|
"„Timelapse - Wieża czyszcząca” \n"
|
||||||
@@ -9667,9 +9765,6 @@ msgstr "Temperatura druku"
|
|||||||
msgid "Nozzle temperature when printing"
|
msgid "Nozzle temperature when printing"
|
||||||
msgstr "Temperatura dyszy podczas druku"
|
msgstr "Temperatura dyszy podczas druku"
|
||||||
|
|
||||||
msgid "Cool Plate (SuperTack)"
|
|
||||||
msgstr "Cool Plate (SuperTack)"
|
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
||||||
"means the filament does not support printing on the Cool Plate SuperTack."
|
"means the filament does not support printing on the Cool Plate SuperTack."
|
||||||
@@ -10129,6 +10224,12 @@ msgstr "Pokaż wszystkie profile (łącznie z niekompatybilnymi)"
|
|||||||
msgid "Select presets to compare"
|
msgid "Select presets to compare"
|
||||||
msgstr "Wybierz profile do porównania"
|
msgstr "Wybierz profile do porównania"
|
||||||
|
|
||||||
|
msgid "Left Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Right Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can only transfer to current active profile because it has been modified."
|
"You can only transfer to current active profile because it has been modified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -10565,6 +10666,12 @@ msgstr "Kliknij tutaj, aby pobrać."
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "Logowanie"
|
msgstr "Logowanie"
|
||||||
|
|
||||||
|
msgid "[Action Required] "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "[Action Required]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "The configuration package is changed in previous Config Guide"
|
msgid "The configuration package is changed in previous Config Guide"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Pakiet konfiguracyjny został zmieniony w poprzednim Przewodniku konfiguracji"
|
"Pakiet konfiguracyjny został zmieniony w poprzednim Przewodniku konfiguracji"
|
||||||
@@ -11287,7 +11394,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection; otherwise, there may be "
|
"A prime tower is required for clumping detection; otherwise, there may be "
|
||||||
"flaws on the model."
|
"flaws on the model."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -11706,8 +11813,8 @@ msgstr ""
|
|||||||
"Orca Slicer może przesyłać pliki G-code na hosta drukarki. To pole powinno "
|
"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 "
|
"zawierać nazwę hosta, adres IP lub URL hosta drukarki. Host drukowania za "
|
||||||
"HAProxy z włączoną autoryzacją podstawową można uzyskać, wpisując nazwę "
|
"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://"
|
"użytkownika i hasło w URL w następującym formacie: https://username:"
|
||||||
"username:password@your-octopi-address/"
|
"password@your-octopi-address/"
|
||||||
|
|
||||||
msgid "Device UI"
|
msgid "Device UI"
|
||||||
msgstr "UI urządzenia"
|
msgstr "UI urządzenia"
|
||||||
@@ -12881,7 +12988,7 @@ msgid ""
|
|||||||
"models\n"
|
"models\n"
|
||||||
"3. No filtering - creates internal bridges on every potential internal "
|
"3. No filtering - creates internal bridges on every potential internal "
|
||||||
"overhang. This option is useful for heavily slanted top surface models; "
|
"overhang. This option is useful for heavily slanted top surface models; "
|
||||||
"however, in most cases, it creates too many unnecessary bridges"
|
"however, in most cases, it creates too many unnecessary bridges."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ta opcja może pomóc zmniejszyć efekt wybrzuszenia na górnych powierzchniach "
|
"Ta opcja może pomóc zmniejszyć efekt wybrzuszenia na górnych powierzchniach "
|
||||||
"w mocno nachylonych lub zakrzywionych modelach.\n"
|
"w mocno nachylonych lub zakrzywionych modelach.\n"
|
||||||
@@ -13400,7 +13507,7 @@ msgid ""
|
|||||||
"less acceleration you print, the larger the range of acceptable PA values. "
|
"less acceleration you print, the larger the range of acceptable PA values. "
|
||||||
"If no difference is visible, use the PA value from the faster test\n"
|
"If no difference is visible, use the PA value from the faster test\n"
|
||||||
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
||||||
"here and save your filament profile"
|
"here and save your filament profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"0.033.96.1000\n"
|
"0.033.96.1000\n"
|
||||||
"0.029.7.91.300\n"
|
"0.029.7.91.300\n"
|
||||||
@@ -14200,8 +14307,8 @@ msgid "mm/s² or %"
|
|||||||
msgstr "mm/s² lub %"
|
msgstr "mm/s² lub %"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
"g. 100%), it will be calculated based on the default acceleration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Przyspieszenie na rzadkim wypełnieniu. Jeśli wartość jest wyrażona w "
|
"Przyspieszenie na rzadkim wypełnieniu. Jeśli wartość jest wyrażona w "
|
||||||
"procentach (np. 100%), będzie obliczana na podstawie domyślnego "
|
"procentach (np. 100%), będzie obliczana na podstawie domyślnego "
|
||||||
@@ -14324,10 +14431,10 @@ msgstr "Pełna prędkość wentylatora na warstwie"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Fan speed will be ramped up linearly from zero at layer "
|
"Fan speed will be ramped up linearly from zero at layer "
|
||||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Prędkość wentylatora będzie stopniowo zwiększana liniowo od zera na warstwie "
|
"Prędkość wentylatora będzie stopniowo zwiększana liniowo od zera na warstwie "
|
||||||
"„close_fan_the_first_x_layers” do maksymalnej na warstwie "
|
"„close_fan_the_first_x_layers” do maksymalnej na warstwie "
|
||||||
@@ -14824,9 +14931,9 @@ msgstr "Etykietuj obiekty"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this to add comments into the G-code labeling print moves with what "
|
"Enable this to add comments into the G-code labeling print moves with what "
|
||||||
"object they belong to, which is useful for the Octoprint CancelObject "
|
"object they belong to, which is useful for the Octoprint CancelObject plug-"
|
||||||
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
|
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
|
||||||
"setup and Wipe into Object / Wipe into Infill."
|
"and Wipe into Object / Wipe into Infill."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Włącz to, aby dodać komentarze do pliku G-Code, oznaczające ruchy druku, do "
|
"Włącz to, aby dodać komentarze do pliku G-Code, oznaczające ruchy druku, do "
|
||||||
"jakiego obiektu należą. Jest to przydatne dla wtyczki Octoprint "
|
"jakiego obiektu należą. Jest to przydatne dla wtyczki Octoprint "
|
||||||
@@ -15138,11 +15245,11 @@ msgstr "Rodzaj prasowania"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Ironing is using small flow to print on same height of surface again to make "
|
"Ironing is using small flow to print on same height of surface again to make "
|
||||||
"flat surface more smooth. This setting controls which layer being ironed"
|
"flat surface more smooth. This setting controls which layer being ironed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Prasowanie polega na używaniu małego przepływu, aby ponownie wydrukować na "
|
"Prasowanie polega na używaniu małego przepływu, aby ponownie wydrukować na "
|
||||||
"tej samej wysokości powierzchnię, w celu uzyskania bardziej gładkiej "
|
"tej samej wysokości powierzchnię, w celu uzyskania bardziej gładkiej "
|
||||||
"powierzchni. Ta opcja kontroluje, który poziom jest prasowany"
|
"powierzchni. Ta opcja kontroluje, który poziom jest prasowany."
|
||||||
|
|
||||||
msgid "No ironing"
|
msgid "No ironing"
|
||||||
msgstr "Bez prasowania"
|
msgstr "Bez prasowania"
|
||||||
@@ -16196,8 +16303,8 @@ msgid "Role base wipe speed"
|
|||||||
msgstr "Prędkość wycierania dyszy w oparciu o rolę ekstruzji"
|
msgstr "Prędkość wycierania dyszy w oparciu o rolę ekstruzji"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
"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 "
|
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||||
"wipe action."
|
"wipe action."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -16468,7 +16575,7 @@ msgid ""
|
|||||||
"timelapse video when printing completes. If smooth mode is selected, the "
|
"timelapse video when printing completes. If smooth mode is selected, the "
|
||||||
"toolhead will move to the excess chute after each layer is printed and then "
|
"toolhead will move to the excess chute after each layer is printed and then "
|
||||||
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
||||||
"process of taking a snapshot, prime tower is required for smooth mode to "
|
"process of taking a snapshot, a prime tower is required for smooth mode to "
|
||||||
"wipe nozzle."
|
"wipe nozzle."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Jeśli wybrany jest tryb „Tradycyjny”, dla każdego wydruku będzie tworzony "
|
"Jeśli wybrany jest tryb „Tradycyjny”, dla każdego wydruku będzie tworzony "
|
||||||
@@ -17067,8 +17174,8 @@ msgstr "Aktywuj kontrolę temperatury"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this option for automated chamber temperature control. This option "
|
"Enable this option for automated chamber temperature control. This option "
|
||||||
"activates the emitting of an M191 command before the "
|
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||||
"\"machine_start_gcode\"\n"
|
"\"\n"
|
||||||
" which sets the chamber temperature and waits until it is reached. In "
|
" 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 "
|
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||||
"chamber heater, if present.\n"
|
"chamber heater, if present.\n"
|
||||||
@@ -17364,6 +17471,12 @@ msgid ""
|
|||||||
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
|
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Rectangle"
|
||||||
|
msgstr "Prostokąt"
|
||||||
|
|
||||||
|
msgid "Rib"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Extra rib length"
|
msgid "Extra rib length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -17976,8 +18089,8 @@ msgstr ""
|
|||||||
"Jeśli włączone, sprawdza, czy bieżąca maszyna jest wstecznie kompatybilna z "
|
"Jeśli włączone, sprawdza, czy bieżąca maszyna jest wstecznie kompatybilna z "
|
||||||
"maszynami z listy."
|
"maszynami z listy."
|
||||||
|
|
||||||
msgid "downward machines settings"
|
msgid "Downward machines settings"
|
||||||
msgstr ""
|
msgstr "Ustawienia wstecznej kompatybilności maszyn"
|
||||||
|
|
||||||
msgid "The machine settings list needs to do downward checking."
|
msgid "The machine settings list needs to do downward checking."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -18009,11 +18122,11 @@ msgid "Debug level"
|
|||||||
msgstr "Poziom debugowania"
|
msgstr "Poziom debugowania"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||||
"5:trace\n"
|
"trace\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ustawia poziom logowania debugowania. 0:fatal, 1:error, 2:warning, 3:info, "
|
"Ustawia poziom logowania debugowania. 0:fatal, 1:error, 2:warning, 3:info, 4:"
|
||||||
"4:debug, 5:trace\n"
|
"debug, 5:trace\n"
|
||||||
|
|
||||||
msgid "Enable timelapse for print"
|
msgid "Enable timelapse for print"
|
||||||
msgstr "Włącz timelapse dla druku"
|
msgstr "Włącz timelapse dla druku"
|
||||||
@@ -18546,13 +18659,13 @@ msgstr "Dostarczony plik nie mógł być odczytany, ponieważ jest pusty"
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
|
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Nieznany format pliku. Plik wejściowy musi mieć "
|
"Nieznany format pliku. Plik wejściowy musi mieć rozszerzenie .stl, .obj, ."
|
||||||
"rozszerzenie .stl, .obj, .amf(.xml)."
|
"amf(.xml)."
|
||||||
|
|
||||||
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
|
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Nieznany format pliku. Plik wejściowy musi mieć rozszerzenie .3mf "
|
"Nieznany format pliku. Plik wejściowy musi mieć rozszerzenie .3mf lub .zip."
|
||||||
"lub .zip.amf."
|
"amf."
|
||||||
|
|
||||||
msgid "load_obj: failed to parse"
|
msgid "load_obj: failed to parse"
|
||||||
msgstr "load_obj: nie udało się przetworzyć"
|
msgstr "load_obj: nie udało się przetworzyć"
|
||||||
@@ -18669,10 +18782,6 @@ msgstr "Nazwa jest taka sama jak nazwa innego istniejącego ustwienia"
|
|||||||
msgid "create new preset failed."
|
msgid "create new preset failed."
|
||||||
msgstr "utworzenie nowego profilu nie powiodło się."
|
msgstr "utworzenie nowego profilu nie powiodło się."
|
||||||
|
|
||||||
#, c-format, boost-format
|
|
||||||
msgid "The selected preset: %s is not found."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid "Could not find parameter: %s."
|
msgid "Could not find parameter: %s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -19345,6 +19454,23 @@ msgstr ""
|
|||||||
msgid "Input shaper type"
|
msgid "Input shaper type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Please ensure the selected type is compatible with your firmware version."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Marlin version => 2.1.2\n"
|
||||||
|
"Fixed-Time motion not yet implemented."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Klipper version => 0.9.0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"RepRap firmware version => 3.4.0\n"
|
||||||
|
"Check your firmware documentation for supported shaper types."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency (Start / End): "
|
msgid "Frequency (Start / End): "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -19379,6 +19505,9 @@ msgstr ""
|
|||||||
msgid "Input shaping Damp test"
|
msgid "Input shaping Damp test"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Check firmware compatibility."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency: "
|
msgid "Frequency: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -19712,8 +19841,8 @@ msgstr ""
|
|||||||
"Czy zastąpić go?"
|
"Czy zastąpić go?"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||||
"selected\".\n"
|
"\".\n"
|
||||||
"To add preset for more printers, please go to printer selection"
|
"To add preset for more printers, please go to printer selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Nazwa profilu zostanie zmieniona na „Dostawca Typ Seria @nazwa drukarki, "
|
"Nazwa profilu zostanie zmieniona na „Dostawca Typ Seria @nazwa drukarki, "
|
||||||
@@ -19762,9 +19891,6 @@ msgstr ""
|
|||||||
msgid "Can't find my nozzle diameter"
|
msgid "Can't find my nozzle diameter"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Rectangle"
|
|
||||||
msgstr "Prostokąt"
|
|
||||||
|
|
||||||
msgid "Printable Space"
|
msgid "Printable Space"
|
||||||
msgstr "Przestrzeń do druku"
|
msgstr "Przestrzeń do druku"
|
||||||
|
|
||||||
@@ -21111,6 +21237,127 @@ msgstr ""
|
|||||||
msgid "More Colors"
|
msgid "More Colors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Network Plug-in Update Available"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bambu Network Plug-in Required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
|
||||||
|
"and remote printing."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Error: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Version to install:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Download and Install"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip for Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "A new version of the Bambu Network Plug-in is available."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Current version: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update to version:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Remind Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Don't Ask Again"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The Bambu Network Plug-in has been installed successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"A restart is required to load the new plug-in. Would you like to restart now?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "NO RAMMING AT ALL"
|
||||||
|
msgstr "BRAK WYCISKANIA"
|
||||||
|
|
||||||
|
msgid "Volumetric speed"
|
||||||
|
msgstr "Prędkości Przepływu"
|
||||||
|
|
||||||
|
msgid "Step file import parameters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Smaller linear and angular deflections result in higher-quality "
|
||||||
|
"transformations but increase the processing time."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Linear Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Angle Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Split compound and compsolid into multiple objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Number of triangular facets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Calculating, please wait..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. "
|
||||||
|
"Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament model is unknown. Still using the previous filament preset."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. A "
|
||||||
|
"random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. A random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: resources/data/hints.ini: [hint:Precise wall]
|
#: resources/data/hints.ini: [hint:Precise wall]
|
||||||
msgid ""
|
msgid ""
|
||||||
"Precise wall\n"
|
"Precise wall\n"
|
||||||
@@ -21508,9 +21755,6 @@ msgstr ""
|
|||||||
#~ "Nie udało się zainstalować wtyczki. Sprawdź, czy nie jest zablokowana lub "
|
#~ "Nie udało się zainstalować wtyczki. Sprawdź, czy nie jest zablokowana lub "
|
||||||
#~ "usunięta przez oprogramowanie antywirusowe."
|
#~ "usunięta przez oprogramowanie antywirusowe."
|
||||||
|
|
||||||
#~ msgid "°C"
|
|
||||||
#~ msgstr "°C"
|
|
||||||
|
|
||||||
#~ msgid "travel"
|
#~ msgid "travel"
|
||||||
#~ msgstr "przemieszczenie"
|
#~ msgstr "przemieszczenie"
|
||||||
|
|
||||||
@@ -21548,9 +21792,6 @@ msgstr ""
|
|||||||
#~ msgid "Advance"
|
#~ msgid "Advance"
|
||||||
#~ msgstr "Zaawansowane"
|
#~ msgstr "Zaawansowane"
|
||||||
|
|
||||||
#~ msgid "Packing data to 3MF"
|
|
||||||
#~ msgstr "Pakowanie danych do 3mf"
|
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "Controls the density (spacing) of external bridge lines. 100% means solid "
|
#~ "Controls the density (spacing) of external bridge lines. 100% means solid "
|
||||||
#~ "bridge. Default is 100%.\n"
|
#~ "bridge. Default is 100%.\n"
|
||||||
@@ -22496,9 +22737,6 @@ msgstr ""
|
|||||||
#~ "Wczytaj najnowsze ustawienia filamentu podczas korzystania z aktualnej "
|
#~ "Wczytaj najnowsze ustawienia filamentu podczas korzystania z aktualnej "
|
||||||
#~ "wersji."
|
#~ "wersji."
|
||||||
|
|
||||||
#~ msgid "Downward machines settings"
|
|
||||||
#~ msgstr "ustawienia wstecznej kompatybilności maszyn"
|
|
||||||
|
|
||||||
#~ msgid "Load filament IDs for each object"
|
#~ msgid "Load filament IDs for each object"
|
||||||
#~ msgstr "Wczytaj identyfikatory filamentu dla każdego obiektu"
|
#~ msgstr "Wczytaj identyfikatory filamentu dla każdego obiektu"
|
||||||
|
|
||||||
@@ -23074,8 +23312,8 @@ msgstr ""
|
|||||||
#~ "\n"
|
#~ "\n"
|
||||||
#~ "Jednakże w mocno pochylonych lub zakrzywionych modelach, zwłaszcza przy "
|
#~ "Jednakże w mocno pochylonych lub zakrzywionych modelach, zwłaszcza przy "
|
||||||
#~ "niskiej gęstości struktury wypełnienia, może to prowadzić do wywijania "
|
#~ "niskiej gęstości struktury wypełnienia, może to prowadzić do wywijania "
|
||||||
#~ "się niewspieranej struktury wypełnienia, co powoduje efekt "
|
#~ "się niewspieranej struktury wypełnienia, co powoduje efekt \"pillowing"
|
||||||
#~ "\"pillowing\".\n"
|
#~ "\".\n"
|
||||||
#~ "\n"
|
#~ "\n"
|
||||||
#~ "Włączenie tej opcji spowoduje drukowanie wewnętrznej warstwy mostka nad "
|
#~ "Włączenie tej opcji spowoduje drukowanie wewnętrznej warstwy mostka nad "
|
||||||
#~ "nieco niewspieraną wewnętrzną strukturą wypełnienia. Poniższe opcje "
|
#~ "nieco niewspieraną wewnętrzną strukturą wypełnienia. Poniższe opcje "
|
||||||
@@ -23634,10 +23872,10 @@ msgstr ""
|
|||||||
#~ msgid "Test Storage Download:"
|
#~ msgid "Test Storage Download:"
|
||||||
#~ msgstr "Test pamięci dla pobierania:"
|
#~ msgstr "Test pamięci dla pobierania:"
|
||||||
|
|
||||||
#~ msgid "Test plugin download"
|
#~ msgid "Test plug-in download"
|
||||||
#~ msgstr "Test pobierania pluginów"
|
#~ msgstr "Test pobierania pluginów"
|
||||||
|
|
||||||
#~ msgid "Test Plugin Download:"
|
#~ msgid "Test Plug-in Download:"
|
||||||
#~ msgstr "Test pobierania Pluginów:"
|
#~ msgstr "Test pobierania Pluginów:"
|
||||||
|
|
||||||
#~ msgid "Test Storage Upload"
|
#~ msgid "Test Storage Upload"
|
||||||
@@ -24066,12 +24304,6 @@ msgstr ""
|
|||||||
#~ msgid "Click to continue (Alt + Right Arrow)"
|
#~ msgid "Click to continue (Alt + Right Arrow)"
|
||||||
#~ msgstr "Kliknij, aby kontynuować (Alt + Strzałka w prawo)"
|
#~ msgstr "Kliknij, aby kontynuować (Alt + Strzałka w prawo)"
|
||||||
|
|
||||||
#~ msgid "NO RAMMING AT ALL"
|
|
||||||
#~ msgstr "BRAK WYCISKANIA"
|
|
||||||
|
|
||||||
#~ msgid "Volumetric speed"
|
|
||||||
#~ msgstr "Prędkości Przepływu"
|
|
||||||
|
|
||||||
#~ msgid "Move over surface"
|
#~ msgid "Move over surface"
|
||||||
#~ msgstr "Ruch po powierzchni"
|
#~ msgstr "Ruch po powierzchni"
|
||||||
|
|
||||||
@@ -24135,18 +24367,6 @@ msgstr ""
|
|||||||
#~ msgid "The maximum temperature cannot exceed"
|
#~ msgid "The maximum temperature cannot exceed"
|
||||||
#~ msgstr "Maksymalna temperatura nie może przekroczyć"
|
#~ msgstr "Maksymalna temperatura nie może przekroczyć"
|
||||||
|
|
||||||
#~ msgid "Add Emboss text object"
|
|
||||||
#~ msgstr "Dodaj wytłoczony obiekt tekstowy"
|
|
||||||
|
|
||||||
#~ msgid "Emboss attribute change"
|
|
||||||
#~ msgstr "Zmiana atrybutów wytłoczenia"
|
|
||||||
|
|
||||||
#~ msgid "Add Emboss text Volume"
|
|
||||||
#~ msgstr "Dodaj wytłoczoną objętość tekstową"
|
|
||||||
|
|
||||||
#~ msgid "Font doesn't have any shape for given text."
|
|
||||||
#~ msgstr "Czcionka nie ma żadnego kształtu dla danego tekstu."
|
|
||||||
|
|
||||||
#~ msgid "An unexpected error occurred"
|
#~ msgid "An unexpected error occurred"
|
||||||
#~ msgstr "Wystąpił nieoczekiwany błąd"
|
#~ msgstr "Wystąpił nieoczekiwany błąd"
|
||||||
|
|
||||||
@@ -24383,8 +24603,8 @@ msgstr ""
|
|||||||
#~ "Elevation is too low for object. Use the \"Pad around object\" feature to "
|
#~ "Elevation is too low for object. Use the \"Pad around object\" feature to "
|
||||||
#~ "print the object without elevation."
|
#~ "print the object without elevation."
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
#~ "Podniesienie zbyt małe dla modelu. Użyj funkcji \"Podkładka wokół "
|
#~ "Podniesienie zbyt małe dla modelu. Użyj funkcji \"Podkładka wokół modelu"
|
||||||
#~ "modelu\", aby wydrukować model bez podniesienia."
|
#~ "\", aby wydrukować model bez podniesienia."
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "The endings of the support pillars will be deployed on the gap between "
|
#~ "The endings of the support pillars will be deployed on the gap between "
|
||||||
|
|||||||
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 ""
|
msgstr ""
|
||||||
"Project-Id-Version: Orca Slicer\n"
|
"Project-Id-Version: Orca Slicer\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
|
||||||
"Language: sv\n"
|
"Language: sv\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
@@ -11,26 +11,6 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n"
|
"Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n"
|
||||||
"X-Generator: Localazy (https://localazy.com)\n"
|
"X-Generator: Localazy (https://localazy.com)\n"
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. "
|
|
||||||
"Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament model is unknown. Still using the previous filament preset."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. A "
|
|
||||||
"random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. A random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "right"
|
msgid "right"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1540,6 +1520,30 @@ msgstr ""
|
|||||||
msgid "Flip by Face 2"
|
msgid "Flip by Face 2"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Assemble"
|
||||||
|
msgstr "Montera"
|
||||||
|
|
||||||
|
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "(Moving)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Point and point assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"It is recommended to assemble the objects first,\n"
|
||||||
|
"because the objects is restriced to bed \n"
|
||||||
|
"and only parts can be lifted."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Face and face assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Notice"
|
msgid "Notice"
|
||||||
msgstr "Iakttag"
|
msgstr "Iakttag"
|
||||||
|
|
||||||
@@ -1577,6 +1581,54 @@ msgstr ""
|
|||||||
msgid "Based on PrusaSlicer and BambuStudio"
|
msgid "Based on PrusaSlicer and BambuStudio"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "STEP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "STL files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "OBJ files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "AMF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Gcode 3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "G-code files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Supported files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "ZIP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Project files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Known files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "INI files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "SVG files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Texture"
|
||||||
|
msgstr "Textur"
|
||||||
|
|
||||||
|
msgid "Masked SLA files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Draco files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
||||||
"It will be appreciated if you report the issue to our team."
|
"It will be appreciated if you report the issue to our team."
|
||||||
@@ -1600,14 +1652,14 @@ msgstr ""
|
|||||||
msgid "Untitled"
|
msgid "Untitled"
|
||||||
msgstr "Ej namngiven"
|
msgstr "Ej namngiven"
|
||||||
|
|
||||||
msgid "Reloading network plugin..."
|
msgid "Reloading network plug-in..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Network Plugin"
|
msgid "Downloading Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Bambu Network Plug-in"
|
msgid "Downloading Bambu Network Plug-in"
|
||||||
msgstr "Nedladdning av Bambu Network Plug-in"
|
msgstr "Nedladdning av Bambu Network Plugin"
|
||||||
|
|
||||||
msgid "Login information expired. Please login again."
|
msgid "Login information expired. Please login again."
|
||||||
msgstr "Inloggningsinformationen har löpt ut. Logga in igen."
|
msgstr "Inloggningsinformationen har löpt ut. Logga in igen."
|
||||||
@@ -1690,6 +1742,9 @@ msgstr ""
|
|||||||
msgid "Choose one file (GCODE/3MF):"
|
msgid "Choose one file (GCODE/3MF):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Ext"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Some presets are modified."
|
msgid "Some presets are modified."
|
||||||
msgstr "Några inställningar har ändrats."
|
msgstr "Några inställningar har ändrats."
|
||||||
|
|
||||||
@@ -1750,7 +1805,7 @@ msgid ""
|
|||||||
"access, enabling full functionality with OrcaSlicer."
|
"access, enabling full functionality with OrcaSlicer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network Plugin Restriction"
|
msgid "Network Plug-in Restriction"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Privacy Policy Update"
|
msgid "Privacy Policy Update"
|
||||||
@@ -1978,6 +2033,9 @@ msgid ""
|
|||||||
"No - Do not change these settings for me"
|
"No - Do not change these settings for me"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Suggestion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -2088,9 +2146,6 @@ msgstr "Konvertera ifrån meter"
|
|||||||
msgid "Restore to meters"
|
msgid "Restore to meters"
|
||||||
msgstr "Återställ till meter"
|
msgstr "Återställ till meter"
|
||||||
|
|
||||||
msgid "Assemble"
|
|
||||||
msgstr "Montera"
|
|
||||||
|
|
||||||
msgid "Assemble the selected objects to an object with multiple parts"
|
msgid "Assemble the selected objects to an object with multiple parts"
|
||||||
msgstr "Montera de valda objekten till ett objekt med multipla delar"
|
msgstr "Montera de valda objekten till ett objekt med multipla delar"
|
||||||
|
|
||||||
@@ -2600,6 +2655,10 @@ msgstr "Multifärgs Utskrift"
|
|||||||
msgid "Line Type"
|
msgid "Line Type"
|
||||||
msgstr "Linje typ"
|
msgstr "Linje typ"
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "1x1 Grid: %d mm"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "More"
|
msgid "More"
|
||||||
msgstr "Mer"
|
msgstr "Mer"
|
||||||
|
|
||||||
@@ -2717,7 +2776,7 @@ msgstr "Kontrollera nätverksanslutningen för skrivaren och Studio."
|
|||||||
msgid "Connecting..."
|
msgid "Connecting..."
|
||||||
msgstr "Sammankopplar..."
|
msgstr "Sammankopplar..."
|
||||||
|
|
||||||
msgid "Auto-refill"
|
msgid "Auto Refill"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Load"
|
msgid "Load"
|
||||||
@@ -3115,6 +3174,38 @@ msgid ""
|
|||||||
"Storage before sending to printer."
|
"Storage before sending to printer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossCreateObjectJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text object"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossUpdateJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Created text volume is empty. Change text or font."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for CreateSurfaceVolumeJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for UseSurfaceJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRN: This is the title of the action appearing in undo/redo stack.
|
||||||
|
#. It is same for Text and SVG.
|
||||||
|
msgid "Emboss attribute change"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text Volume"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Font doesn't have any shape for given text."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "There is no valid surface for text projection."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Thermal Preconditioning for first layer optimization"
|
msgid "Thermal Preconditioning for first layer optimization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3441,9 +3532,6 @@ msgstr ""
|
|||||||
msgid "Nozzle"
|
msgid "Nozzle"
|
||||||
msgstr "Nozzel"
|
msgstr "Nozzel"
|
||||||
|
|
||||||
msgid "Ext"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
||||||
@@ -3506,9 +3594,6 @@ msgstr "Skriv ut med filament i AMS"
|
|||||||
msgid "Print with filaments mounted on the back of the chassis"
|
msgid "Print with filaments mounted on the back of the chassis"
|
||||||
msgstr "Skriv ut med filament på en extern spole"
|
msgstr "Skriv ut med filament på en extern spole"
|
||||||
|
|
||||||
msgid "Auto Refill"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Left"
|
msgid "Left"
|
||||||
msgstr "Vänster"
|
msgstr "Vänster"
|
||||||
|
|
||||||
@@ -3522,7 +3607,7 @@ msgstr ""
|
|||||||
"När det aktuella materialet tar slut, fortsätter printern att skriva ut "
|
"När det aktuella materialet tar slut, fortsätter printern att skriva ut "
|
||||||
"material i följande ordning."
|
"material i följande ordning."
|
||||||
|
|
||||||
msgid "Identical filament: same brand, type and color"
|
msgid "Identical filament: same brand, type and color."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Group"
|
msgid "Group"
|
||||||
@@ -3655,8 +3740,8 @@ msgid "Calibration"
|
|||||||
msgstr "Kalibrering"
|
msgstr "Kalibrering"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Failed to download the plug-in. Please check your firewall settings and vpn "
|
"Failed to download the plug-in. Please check your firewall settings and VPN "
|
||||||
"software, check and retry."
|
"software and retry."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Det gick inte att ladda ned plugin-programmet. Kontrollera dina "
|
"Det gick inte att ladda ned plugin-programmet. Kontrollera dina "
|
||||||
"brandväggsinställningar och vpn-programvara och försök igen."
|
"brandväggsinställningar och vpn-programvara och försök igen."
|
||||||
@@ -3671,8 +3756,8 @@ msgid "Click here to see more info"
|
|||||||
msgstr "Klicka här för att se mer information"
|
msgstr "Klicka här för att se mer information"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The network plugin was installed but could not be loaded. Please restart the "
|
"The network plug-in was installed but could not be loaded. Please restart "
|
||||||
"application."
|
"the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Restart Required"
|
msgid "Restart Required"
|
||||||
@@ -3828,9 +3913,6 @@ msgstr "Ladda form ifrån STL..."
|
|||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Inställningar"
|
msgstr "Inställningar"
|
||||||
|
|
||||||
msgid "Texture"
|
|
||||||
msgstr "Textur"
|
|
||||||
|
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Ta bort"
|
msgstr "Ta bort"
|
||||||
|
|
||||||
@@ -4017,6 +4099,7 @@ msgid ""
|
|||||||
"Reset to 0."
|
"Reset to 0."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Lock depth should smaller than skin depth.\n"
|
"Lock depth should smaller than skin depth.\n"
|
||||||
"Reset to 50% of skin depth."
|
"Reset to 50% of skin depth."
|
||||||
@@ -4629,6 +4712,9 @@ msgstr ""
|
|||||||
msgid "Fan speed"
|
msgid "Fan speed"
|
||||||
msgstr "Fläkt hastighet"
|
msgstr "Fläkt hastighet"
|
||||||
|
|
||||||
|
msgid "°C"
|
||||||
|
msgstr "° C"
|
||||||
|
|
||||||
msgid "Time"
|
msgid "Time"
|
||||||
msgstr "Tid"
|
msgstr "Tid"
|
||||||
|
|
||||||
@@ -4785,7 +4871,7 @@ msgstr "Faktisk hastighet (mm/s)"
|
|||||||
msgid "Fan Speed (%)"
|
msgid "Fan Speed (%)"
|
||||||
msgstr "Fläkt hastighet (%)"
|
msgstr "Fläkt hastighet (%)"
|
||||||
|
|
||||||
msgid "Temperature (℃)"
|
msgid "Temperature (°C)"
|
||||||
msgstr "Temperatur (°C)"
|
msgstr "Temperatur (°C)"
|
||||||
|
|
||||||
msgid "Volumetric flow rate (mm³/s)"
|
msgid "Volumetric flow rate (mm³/s)"
|
||||||
@@ -5104,7 +5190,7 @@ msgstr "Volym:"
|
|||||||
msgid "Size:"
|
msgid "Size:"
|
||||||
msgstr "Storlek:"
|
msgstr "Storlek:"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||||
"separate the conflicted objects farther (%s <-> %s)."
|
"separate the conflicted objects farther (%s <-> %s)."
|
||||||
@@ -5175,7 +5261,7 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
||||||
"mixing in models. Please redjust flushing settings."
|
"mixing in models. Please readjust flushing settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Click Wiki for help."
|
msgid "Click Wiki for help."
|
||||||
@@ -6151,10 +6237,10 @@ msgid "Name is invalid;"
|
|||||||
msgstr "Namnet är ogiltligt;"
|
msgstr "Namnet är ogiltligt;"
|
||||||
|
|
||||||
msgid "illegal characters:"
|
msgid "illegal characters:"
|
||||||
msgstr "Ogiltliga tecken:"
|
msgstr "ogiltliga tecken:"
|
||||||
|
|
||||||
msgid "illegal suffix:"
|
msgid "illegal suffix:"
|
||||||
msgstr "Ogiltlig ändelse:"
|
msgstr "ogiltlig ändelse:"
|
||||||
|
|
||||||
msgid "The name is not allowed to be empty."
|
msgid "The name is not allowed to be empty."
|
||||||
msgstr "Namn fältet får inte vara tomt."
|
msgstr "Namn fältet får inte vara tomt."
|
||||||
@@ -6452,6 +6538,9 @@ msgstr ""
|
|||||||
"At least one successful print record of this print profile is required \n"
|
"At least one successful print record of this print profile is required \n"
|
||||||
"to give a positive rating (4 or 5 stars)."
|
"to give a positive rating (4 or 5 stars)."
|
||||||
|
|
||||||
|
msgid "click to add machine"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr "Status"
|
msgstr "Status"
|
||||||
|
|
||||||
@@ -6462,6 +6551,14 @@ msgstr ""
|
|||||||
msgid "Assistant(HMS)"
|
msgid "Assistant(HMS)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s (%s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Don't show again"
|
msgid "Don't show again"
|
||||||
msgstr "Visa inte igen"
|
msgstr "Visa inte igen"
|
||||||
|
|
||||||
@@ -6835,7 +6932,7 @@ msgstr ""
|
|||||||
msgid "Unavailable while heating maintenance function is on."
|
msgid "Unavailable while heating maintenance function is on."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Idel Heating Protection"
|
msgid "Idle Heating Protection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
||||||
@@ -7351,7 +7448,7 @@ msgid "Please select a file"
|
|||||||
msgstr "Välj en fil"
|
msgstr "Välj en fil"
|
||||||
|
|
||||||
msgid "Do you want to replace it"
|
msgid "Do you want to replace it"
|
||||||
msgstr "Do you want to replace it?"
|
msgstr "Vill du byta ut den"
|
||||||
|
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Meddelande"
|
msgstr "Meddelande"
|
||||||
@@ -7385,7 +7482,8 @@ msgid "Please resolve the slicing errors and publish again."
|
|||||||
msgstr "Lös berednings felen och publicera igen."
|
msgstr "Lös berednings felen och publicera igen."
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Network Plug-in is not detected. Network related features are unavailable."
|
"The network plug-in was not detected. Network related features are "
|
||||||
|
"unavailable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Nätverks plugin programmet detekteras inte. Nätverksrelaterade funktioner är "
|
"Nätverks plugin programmet detekteras inte. Nätverksrelaterade funktioner är "
|
||||||
"inte tillgängliga."
|
"inte tillgängliga."
|
||||||
@@ -7944,7 +8042,7 @@ msgstr ""
|
|||||||
msgid "filaments"
|
msgid "filaments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
msgid "Optimizes filament area maximum height by chosen filament count."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Features"
|
msgid "Features"
|
||||||
@@ -8136,40 +8234,40 @@ msgstr ""
|
|||||||
msgid "Color only"
|
msgid "Color only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin"
|
msgid "Network plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Enable network plugin"
|
msgid "Enable network plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin version"
|
msgid "Network plug-in version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Select the network plugin version to use"
|
msgid "Select the network plug-in version to use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "(Latest)"
|
msgid "(Latest)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin switched successfully."
|
msgid "Network plug-in switched successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to load network plugin. Please restart the application."
|
msgid "Failed to load network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You've selected network plugin version %s.\n"
|
"You've selected network plug-in version %s.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Would you like to download and install this version now?\n"
|
"Would you like to download and install this version now?\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Note: The application may need to restart after installation."
|
"Note: The application may need to restart after installation."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Download Network Plugin"
|
msgid "Download Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Associate files to OrcaSlicer"
|
msgid "Associate files to OrcaSlicer"
|
||||||
@@ -8239,19 +8337,16 @@ msgstr "felsök"
|
|||||||
msgid "trace"
|
msgid "trace"
|
||||||
msgstr "spåra"
|
msgstr "spåra"
|
||||||
|
|
||||||
msgid "Network Plugin"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Reload"
|
msgid "Reload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload the network plugin without restarting the application"
|
msgid "Reload the network plug-in without restarting the application"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin reloaded successfully."
|
msgid "Network plug-in reloaded successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to reload network plugin. Please restart the application."
|
msgid "Failed to reload network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload Failed"
|
msgid "Reload Failed"
|
||||||
@@ -8470,7 +8565,10 @@ msgstr "Publiceringen avbröts"
|
|||||||
msgid "Slicing Plate 1"
|
msgid "Slicing Plate 1"
|
||||||
msgstr "Beredningsplatta 1"
|
msgstr "Beredningsplatta 1"
|
||||||
|
|
||||||
msgid "Packing data to 3mf"
|
msgid "Packing data to 3MF"
|
||||||
|
msgstr "Packar data till 3mf"
|
||||||
|
|
||||||
|
msgid "Uploading data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Jump to webpage"
|
msgid "Jump to webpage"
|
||||||
@@ -8788,7 +8886,7 @@ msgstr ""
|
|||||||
msgid "Textured PEI Plate"
|
msgid "Textured PEI Plate"
|
||||||
msgstr "Texturerad PEI-platta"
|
msgstr "Texturerad PEI-platta"
|
||||||
|
|
||||||
msgid "Cool Plate (Supertack)"
|
msgid "Cool Plate (SuperTack)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Click here if you can't connect to the printer"
|
msgid "Click here if you can't connect to the printer"
|
||||||
@@ -9109,7 +9207,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection. There may be flaws on the "
|
"A prime tower is required for clumping detection. There may be flaws on the "
|
||||||
"model without prime tower. Do you still want to enable clumping detection?"
|
"model without prime tower. Do you still want to enable clumping detection?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -9212,8 +9310,8 @@ msgstr ""
|
|||||||
msgid ""
|
msgid ""
|
||||||
"When recording timelapse without toolhead, it is recommended to add a "
|
"When recording timelapse without toolhead, it is recommended to add a "
|
||||||
"\"Timelapse Wipe Tower\" \n"
|
"\"Timelapse Wipe Tower\" \n"
|
||||||
"by right-click the empty position of build plate and choose \"Add "
|
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
"\"->\"Timelapse Wipe Tower\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"När du spelar in timelapse utan verktygshuvud rekommenderas att du lägger "
|
"När du spelar in timelapse utan verktygshuvud rekommenderas att du lägger "
|
||||||
"till ett \"Timelapse Wipe Tower\".\n"
|
"till ett \"Timelapse Wipe Tower\".\n"
|
||||||
@@ -9426,9 +9524,6 @@ msgstr "Utskrifts temperatur"
|
|||||||
msgid "Nozzle temperature when printing"
|
msgid "Nozzle temperature when printing"
|
||||||
msgstr "Nozzel temperatur vid utskrift"
|
msgstr "Nozzel temperatur vid utskrift"
|
||||||
|
|
||||||
msgid "Cool Plate (SuperTack)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
||||||
"means the filament does not support printing on the Cool Plate SuperTack."
|
"means the filament does not support printing on the Cool Plate SuperTack."
|
||||||
@@ -9875,6 +9970,12 @@ msgstr "Visa alla inställningar (inklusive inkompatibla)"
|
|||||||
msgid "Select presets to compare"
|
msgid "Select presets to compare"
|
||||||
msgstr "Välj förinställningar att jämföra"
|
msgstr "Välj förinställningar att jämföra"
|
||||||
|
|
||||||
|
msgid "Left Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Right Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can only transfer to current active profile because it has been modified."
|
"You can only transfer to current active profile because it has been modified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -10146,8 +10247,8 @@ msgstr ""
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Timelapse is not supported because Print sequence is set to \"By object\"."
|
"Timelapse is not supported because Print sequence is set to \"By object\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Timelapse stöds inte eftersom utskrifts sekvensen är inställd på \"Per "
|
"Timelapse stöds inte eftersom utskrifts sekvensen är inställd på \"Per objekt"
|
||||||
"objekt\"."
|
"\"."
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"You selected external and AMS filament at the same time in an extruder, you "
|
"You selected external and AMS filament at the same time in an extruder, you "
|
||||||
@@ -10278,6 +10379,12 @@ msgstr "Klicka här för att ladda ner den."
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "Logga in"
|
msgstr "Logga in"
|
||||||
|
|
||||||
|
msgid "[Action Required] "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "[Action Required]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "The configuration package is changed in previous Config Guide"
|
msgid "The configuration package is changed in previous Config Guide"
|
||||||
msgstr "Konfigurations paketet är ändrat i föregående Kofigurations Guide"
|
msgstr "Konfigurations paketet är ändrat i föregående Kofigurations Guide"
|
||||||
|
|
||||||
@@ -10986,7 +11093,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection; otherwise, there may be "
|
"A prime tower is required for clumping detection; otherwise, there may be "
|
||||||
"flaws on the model."
|
"flaws on the model."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -12124,9 +12231,9 @@ msgid ""
|
|||||||
"quality for needle and small details."
|
"quality for needle and small details."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Aktivera detta val för att sänka utskifts hastigheten för att göra den sista "
|
"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 "
|
"lager tiden inte kortare än lager tidströskeln \"Max fläkthastighets tröskel"
|
||||||
"tröskel\", detta så att lager kan kylas under en längre tid. Detta kan "
|
"\", detta så att lager kan kylas under en längre tid. Detta kan förbättra "
|
||||||
"förbättra kylnings kvaliteten för små detaljer"
|
"kylnings kvaliteten för små detaljer"
|
||||||
|
|
||||||
msgid "Normal printing"
|
msgid "Normal printing"
|
||||||
msgstr "Normal utskrift"
|
msgstr "Normal utskrift"
|
||||||
@@ -12281,7 +12388,7 @@ msgid ""
|
|||||||
"models\n"
|
"models\n"
|
||||||
"3. No filtering - creates internal bridges on every potential internal "
|
"3. No filtering - creates internal bridges on every potential internal "
|
||||||
"overhang. This option is useful for heavily slanted top surface models; "
|
"overhang. This option is useful for heavily slanted top surface models; "
|
||||||
"however, in most cases, it creates too many unnecessary bridges"
|
"however, in most cases, it creates too many unnecessary bridges."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Limited filtering"
|
msgid "Limited filtering"
|
||||||
@@ -12666,7 +12773,7 @@ msgid ""
|
|||||||
"less acceleration you print, the larger the range of acceptable PA values. "
|
"less acceleration you print, the larger the range of acceptable PA values. "
|
||||||
"If no difference is visible, use the PA value from the faster test\n"
|
"If no difference is visible, use the PA value from the faster test\n"
|
||||||
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
||||||
"here and save your filament profile"
|
"here and save your filament profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||||
@@ -13332,8 +13439,8 @@ msgid "mm/s² or %"
|
|||||||
msgstr "mm/s² eller %"
|
msgstr "mm/s² eller %"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
"g. 100%), it will be calculated based on the default acceleration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Acceleration av gles utfyllnad. Om värdet uttrycks som en procentsats (t.ex. "
|
"Acceleration av gles utfyllnad. Om värdet uttrycks som en procentsats (t.ex. "
|
||||||
"100%) kommer det att beräknas baserat på standard accelerationen."
|
"100%) kommer det att beräknas baserat på standard accelerationen."
|
||||||
@@ -13444,10 +13551,10 @@ msgstr "Full fläkthastighet vid lager"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Fan speed will be ramped up linearly from zero at layer "
|
"Fan speed will be ramped up linearly from zero at layer "
|
||||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "layer"
|
msgid "layer"
|
||||||
@@ -13874,9 +13981,9 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this to add comments into the G-code labeling print moves with what "
|
"Enable this to add comments into the G-code labeling print moves with what "
|
||||||
"object they belong to, which is useful for the Octoprint CancelObject "
|
"object they belong to, which is useful for the Octoprint CancelObject plug-"
|
||||||
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
|
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
|
||||||
"setup and Wipe into Object / Wipe into Infill."
|
"and Wipe into Object / Wipe into Infill."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Exclude objects"
|
msgid "Exclude objects"
|
||||||
@@ -14139,11 +14246,11 @@ msgstr "Stryknings typ"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Ironing is using small flow to print on same height of surface again to make "
|
"Ironing is using small flow to print on same height of surface again to make "
|
||||||
"flat surface more smooth. This setting controls which layer being ironed"
|
"flat surface more smooth. This setting controls which layer being ironed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Strykning använder ett litet flöde för att skriva ut på samma höjd av en yta "
|
"Strykning använder ett litet flöde för att skriva ut på samma höjd av en yta "
|
||||||
"för att göra plana ytor jämnare. Inställningen kontrollerar vilket lager som "
|
"för att göra plana ytor jämnare. Inställningen kontrollerar vilket lager som "
|
||||||
"ska strykas"
|
"ska strykas."
|
||||||
|
|
||||||
msgid "No ironing"
|
msgid "No ironing"
|
||||||
msgstr "Ingen strykning"
|
msgstr "Ingen strykning"
|
||||||
@@ -15036,8 +15143,8 @@ msgid "Role base wipe speed"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
"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 "
|
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||||
"wipe action."
|
"wipe action."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -15249,7 +15356,7 @@ msgid ""
|
|||||||
"timelapse video when printing completes. If smooth mode is selected, the "
|
"timelapse video when printing completes. If smooth mode is selected, the "
|
||||||
"toolhead will move to the excess chute after each layer is printed and then "
|
"toolhead will move to the excess chute after each layer is printed and then "
|
||||||
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
||||||
"process of taking a snapshot, prime tower is required for smooth mode to "
|
"process of taking a snapshot, a prime tower is required for smooth mode to "
|
||||||
"wipe nozzle."
|
"wipe nozzle."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Om Smooth eller Traditionellt läge väljs genereras en timelapse-video för "
|
"Om Smooth eller Traditionellt läge väljs genereras en timelapse-video för "
|
||||||
@@ -15793,8 +15900,8 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this option for automated chamber temperature control. This option "
|
"Enable this option for automated chamber temperature control. This option "
|
||||||
"activates the emitting of an M191 command before the "
|
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||||
"\"machine_start_gcode\"\n"
|
"\"\n"
|
||||||
" which sets the chamber temperature and waits until it is reached. In "
|
" 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 "
|
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||||
"chamber heater, if present.\n"
|
"chamber heater, if present.\n"
|
||||||
@@ -16031,6 +16138,12 @@ msgid ""
|
|||||||
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
|
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Rectangle"
|
||||||
|
msgstr "Rektangel"
|
||||||
|
|
||||||
|
msgid "Rib"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Extra rib length"
|
msgid "Extra rib length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -16589,7 +16702,7 @@ msgid ""
|
|||||||
"machines in the list."
|
"machines in the list."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "downward machines settings"
|
msgid "Downward machines settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "The machine settings list needs to do downward checking."
|
msgid "The machine settings list needs to do downward checking."
|
||||||
@@ -16620,11 +16733,11 @@ msgid "Debug level"
|
|||||||
msgstr "Felsökningsnivå"
|
msgstr "Felsökningsnivå"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||||
"5:trace\n"
|
"trace\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Välj felsöknings nivå. 0:allvarlig, 1:fel, 2:varning, 3:info, 4:felsök, "
|
"Välj felsöknings nivå. 0:allvarlig, 1:fel, 2:varning, 3:info, 4:felsök, 5:"
|
||||||
"5:spåra\n"
|
"spåra\n"
|
||||||
|
|
||||||
msgid "Enable timelapse for print"
|
msgid "Enable timelapse for print"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -17227,10 +17340,6 @@ msgstr "Namnet är detsamma som ett annat befintligt förinställt namn"
|
|||||||
msgid "create new preset failed."
|
msgid "create new preset failed."
|
||||||
msgstr "skapande av ny inställning misslyckades."
|
msgstr "skapande av ny inställning misslyckades."
|
||||||
|
|
||||||
#, c-format, boost-format
|
|
||||||
msgid "The selected preset: %s is not found."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid "Could not find parameter: %s."
|
msgid "Could not find parameter: %s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -17842,6 +17951,23 @@ msgstr ""
|
|||||||
msgid "Input shaper type"
|
msgid "Input shaper type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Please ensure the selected type is compatible with your firmware version."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Marlin version => 2.1.2\n"
|
||||||
|
"Fixed-Time motion not yet implemented."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Klipper version => 0.9.0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"RepRap firmware version => 3.4.0\n"
|
||||||
|
"Check your firmware documentation for supported shaper types."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency (Start / End): "
|
msgid "Frequency (Start / End): "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -17876,6 +18002,9 @@ msgstr ""
|
|||||||
msgid "Input shaping Damp test"
|
msgid "Input shaping Damp test"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Check firmware compatibility."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency: "
|
msgid "Frequency: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -18202,8 +18331,8 @@ msgstr ""
|
|||||||
"Vill du skriva om det?"
|
"Vill du skriva om det?"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||||
"selected\".\n"
|
"\".\n"
|
||||||
"To add preset for more printers, please go to printer selection"
|
"To add preset for more printers, please go to printer selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -18249,9 +18378,6 @@ msgstr ""
|
|||||||
msgid "Can't find my nozzle diameter"
|
msgid "Can't find my nozzle diameter"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Rectangle"
|
|
||||||
msgstr "Rektangel"
|
|
||||||
|
|
||||||
msgid "Printable Space"
|
msgid "Printable Space"
|
||||||
msgstr "Utskriftsbar yta"
|
msgstr "Utskriftsbar yta"
|
||||||
|
|
||||||
@@ -19492,6 +19618,127 @@ msgstr ""
|
|||||||
msgid "More Colors"
|
msgid "More Colors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Network Plug-in Update Available"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bambu Network Plug-in Required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
|
||||||
|
"and remote printing."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Error: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Version to install:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Download and Install"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip for Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "A new version of the Bambu Network Plug-in is available."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Current version: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update to version:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Remind Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Don't Ask Again"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The Bambu Network Plug-in has been installed successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"A restart is required to load the new plug-in. Would you like to restart now?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "NO RAMMING AT ALL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Volumetric speed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Step file import parameters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Smaller linear and angular deflections result in higher-quality "
|
||||||
|
"transformations but increase the processing time."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Linear Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Angle Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Split compound and compsolid into multiple objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Number of triangular facets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Calculating, please wait..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. "
|
||||||
|
"Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament model is unknown. Still using the previous filament preset."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. A "
|
||||||
|
"random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. A random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: resources/data/hints.ini: [hint:Precise wall]
|
#: resources/data/hints.ini: [hint:Precise wall]
|
||||||
msgid ""
|
msgid ""
|
||||||
"Precise wall\n"
|
"Precise wall\n"
|
||||||
@@ -19844,9 +20091,6 @@ msgstr ""
|
|||||||
#~ "Det gick inte att installera plugin-programmet. Kontrollera om den är "
|
#~ "Det gick inte att installera plugin-programmet. Kontrollera om den är "
|
||||||
#~ "blockerad eller har raderats av antivirusprogram."
|
#~ "blockerad eller har raderats av antivirusprogram."
|
||||||
|
|
||||||
#~ msgid "°C"
|
|
||||||
#~ msgstr "° C"
|
|
||||||
|
|
||||||
#~ msgid "travel"
|
#~ msgid "travel"
|
||||||
#~ msgstr "flytta"
|
#~ msgstr "flytta"
|
||||||
|
|
||||||
@@ -19883,9 +20127,6 @@ msgstr ""
|
|||||||
#~ msgid "Advance"
|
#~ msgid "Advance"
|
||||||
#~ msgstr "Avancerat"
|
#~ msgstr "Avancerat"
|
||||||
|
|
||||||
#~ msgid "Packing data to 3MF"
|
|
||||||
#~ msgstr "Packar data till 3mf"
|
|
||||||
|
|
||||||
#~ msgid "°"
|
#~ msgid "°"
|
||||||
#~ msgstr "°"
|
#~ msgstr "°"
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Orca Slicer\n"
|
"Project-Id-Version: Orca Slicer\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
|
||||||
"PO-Revision-Date: 2025-09-30 09:12+0300\n"
|
"PO-Revision-Date: 2025-09-30 09:12+0300\n"
|
||||||
"Last-Translator: GlauTech\n"
|
"Last-Translator: GlauTech\n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
@@ -14,26 +14,6 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n"
|
"Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n"
|
||||||
"X-Generator: Poedit 3.7\n"
|
"X-Generator: Poedit 3.7\n"
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. "
|
|
||||||
"Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament model is unknown. Still using the previous filament preset."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. A "
|
|
||||||
"random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. A random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "right"
|
msgid "right"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1581,6 +1561,30 @@ msgstr "Paralel mesafe:"
|
|||||||
msgid "Flip by Face 2"
|
msgid "Flip by Face 2"
|
||||||
msgstr "Yüzey 2’ye Göre Çevir"
|
msgstr "Yüzey 2’ye Göre Çevir"
|
||||||
|
|
||||||
|
msgid "Assemble"
|
||||||
|
msgstr "Birleştir"
|
||||||
|
|
||||||
|
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "(Moving)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Point and point assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"It is recommended to assemble the objects first,\n"
|
||||||
|
"because the objects is restriced to bed \n"
|
||||||
|
"and only parts can be lifted."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Face and face assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Notice"
|
msgid "Notice"
|
||||||
msgstr "Bildirim"
|
msgstr "Bildirim"
|
||||||
|
|
||||||
@@ -1618,6 +1622,54 @@ msgstr "\"%1%\" yapılandırma dosyası yüklendi ancak bazı değerler tanınam
|
|||||||
msgid "Based on PrusaSlicer and BambuStudio"
|
msgid "Based on PrusaSlicer and BambuStudio"
|
||||||
msgstr "PrusaSlicer ve BambuStudio'ya dayanmaktadır"
|
msgstr "PrusaSlicer ve BambuStudio'ya dayanmaktadır"
|
||||||
|
|
||||||
|
msgid "STEP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "STL files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "OBJ files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "AMF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Gcode 3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "G-code files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Supported files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "ZIP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Project files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Known files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "INI files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "SVG files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Texture"
|
||||||
|
msgstr "Doku"
|
||||||
|
|
||||||
|
msgid "Masked SLA files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Draco files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
||||||
"It will be appreciated if you report the issue to our team."
|
"It will be appreciated if you report the issue to our team."
|
||||||
@@ -1645,10 +1697,10 @@ msgstr "OrcaSlicer'da işlenmeyen bir istisna oluştu: %1%"
|
|||||||
msgid "Untitled"
|
msgid "Untitled"
|
||||||
msgstr "İsimsiz"
|
msgstr "İsimsiz"
|
||||||
|
|
||||||
msgid "Reloading network plugin..."
|
msgid "Reloading network plug-in..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Network Plugin"
|
msgid "Downloading Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Bambu Network Plug-in"
|
msgid "Downloading Bambu Network Plug-in"
|
||||||
@@ -1743,6 +1795,9 @@ msgstr "ZIP dosyasını seçin"
|
|||||||
msgid "Choose one file (GCODE/3MF):"
|
msgid "Choose one file (GCODE/3MF):"
|
||||||
msgstr "Bir dosya seçin (GCODE/3MF):"
|
msgstr "Bir dosya seçin (GCODE/3MF):"
|
||||||
|
|
||||||
|
msgid "Ext"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Some presets are modified."
|
msgid "Some presets are modified."
|
||||||
msgstr "Bazı ön ayarlar değiştirildi."
|
msgstr "Bazı ön ayarlar değiştirildi."
|
||||||
|
|
||||||
@@ -1803,7 +1858,7 @@ msgid ""
|
|||||||
"access, enabling full functionality with OrcaSlicer."
|
"access, enabling full functionality with OrcaSlicer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network Plugin Restriction"
|
msgid "Network Plug-in Restriction"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Privacy Policy Update"
|
msgid "Privacy Policy Update"
|
||||||
@@ -2039,6 +2094,9 @@ msgstr ""
|
|||||||
"Evet - Bu ayarları otomatik olarak değiştir\n"
|
"Evet - Bu ayarları otomatik olarak değiştir\n"
|
||||||
"Hayır - Bu ayarları benim için değiştirme"
|
"Hayır - Bu ayarları benim için değiştirme"
|
||||||
|
|
||||||
|
msgid "Suggestion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Metin"
|
msgstr "Metin"
|
||||||
|
|
||||||
@@ -2148,9 +2206,6 @@ msgstr "Metreden dönüştür"
|
|||||||
msgid "Restore to meters"
|
msgid "Restore to meters"
|
||||||
msgstr "Metreye geri çevir"
|
msgstr "Metreye geri çevir"
|
||||||
|
|
||||||
msgid "Assemble"
|
|
||||||
msgstr "Birleştir"
|
|
||||||
|
|
||||||
msgid "Assemble the selected objects to an object with multiple parts"
|
msgid "Assemble the selected objects to an object with multiple parts"
|
||||||
msgstr "Seçilen nesneleri birden çok parçalı bir nesneyle birleştirin"
|
msgstr "Seçilen nesneleri birden çok parçalı bir nesneyle birleştirin"
|
||||||
|
|
||||||
@@ -2651,6 +2706,10 @@ msgstr "Çok Renkli Baskı"
|
|||||||
msgid "Line Type"
|
msgid "Line Type"
|
||||||
msgstr "Çizgi Tipi"
|
msgstr "Çizgi Tipi"
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "1x1 Grid: %d mm"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "More"
|
msgid "More"
|
||||||
msgstr "Daha"
|
msgstr "Daha"
|
||||||
|
|
||||||
@@ -2769,8 +2828,8 @@ msgstr "Lütfen yazıcının ve Studio'nun ağ bağlantısını kontrol edin."
|
|||||||
msgid "Connecting..."
|
msgid "Connecting..."
|
||||||
msgstr "Bağlanıyor..."
|
msgstr "Bağlanıyor..."
|
||||||
|
|
||||||
msgid "Auto-refill"
|
msgid "Auto Refill"
|
||||||
msgstr ""
|
msgstr "Otomatik Doldurma"
|
||||||
|
|
||||||
msgid "Load"
|
msgid "Load"
|
||||||
msgstr "Yükle"
|
msgstr "Yükle"
|
||||||
@@ -3168,6 +3227,38 @@ msgid ""
|
|||||||
"Storage before sending to printer."
|
"Storage before sending to printer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossCreateObjectJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text object"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossUpdateJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Created text volume is empty. Change text or font."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for CreateSurfaceVolumeJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for UseSurfaceJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRN: This is the title of the action appearing in undo/redo stack.
|
||||||
|
#. It is same for Text and SVG.
|
||||||
|
msgid "Emboss attribute change"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text Volume"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Font doesn't have any shape for given text."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "There is no valid surface for text projection."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Thermal Preconditioning for first layer optimization"
|
msgid "Thermal Preconditioning for first layer optimization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3497,9 +3588,6 @@ msgstr ""
|
|||||||
msgid "Nozzle"
|
msgid "Nozzle"
|
||||||
msgstr "Nozul"
|
msgstr "Nozul"
|
||||||
|
|
||||||
msgid "Ext"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
||||||
@@ -3566,9 +3654,6 @@ msgstr "AMS içerisindeki filamentlerle yazdırma"
|
|||||||
msgid "Print with filaments mounted on the back of the chassis"
|
msgid "Print with filaments mounted on the back of the chassis"
|
||||||
msgstr "Kasanın arkasına monte edilmiş filamentler ile yazdırma"
|
msgstr "Kasanın arkasına monte edilmiş filamentler ile yazdırma"
|
||||||
|
|
||||||
msgid "Auto Refill"
|
|
||||||
msgstr "Otomatik Doldurma"
|
|
||||||
|
|
||||||
msgid "Left"
|
msgid "Left"
|
||||||
msgstr "Sol"
|
msgstr "Sol"
|
||||||
|
|
||||||
@@ -3582,7 +3667,7 @@ msgstr ""
|
|||||||
"Mevcut malzeme bittiğinde yazıcı aşağıdaki sırayla yazdırmaya devam "
|
"Mevcut malzeme bittiğinde yazıcı aşağıdaki sırayla yazdırmaya devam "
|
||||||
"edecektir."
|
"edecektir."
|
||||||
|
|
||||||
msgid "Identical filament: same brand, type and color"
|
msgid "Identical filament: same brand, type and color."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Group"
|
msgid "Group"
|
||||||
@@ -3718,8 +3803,8 @@ msgid "Calibration"
|
|||||||
msgstr "Kalibrasyon"
|
msgstr "Kalibrasyon"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Failed to download the plug-in. Please check your firewall settings and vpn "
|
"Failed to download the plug-in. Please check your firewall settings and VPN "
|
||||||
"software, check and retry."
|
"software and retry."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Eklenti indirilemedi. Lütfen güvenlik duvarı ayarlarınızı ve vpn "
|
"Eklenti indirilemedi. Lütfen güvenlik duvarı ayarlarınızı ve vpn "
|
||||||
"yazılımınızı kontrol edin, kontrol edip yeniden deneyin."
|
"yazılımınızı kontrol edin, kontrol edip yeniden deneyin."
|
||||||
@@ -3734,8 +3819,8 @@ msgid "Click here to see more info"
|
|||||||
msgstr "daha fazla bilgi görmek için burayı tıklayın"
|
msgstr "daha fazla bilgi görmek için burayı tıklayın"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The network plugin was installed but could not be loaded. Please restart the "
|
"The network plug-in was installed but could not be loaded. Please restart "
|
||||||
"application."
|
"the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Restart Required"
|
msgid "Restart Required"
|
||||||
@@ -3902,9 +3987,6 @@ msgstr "Şekli STL'den yükle..."
|
|||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Ayarlar"
|
msgstr "Ayarlar"
|
||||||
|
|
||||||
msgid "Texture"
|
|
||||||
msgstr "Doku"
|
|
||||||
|
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Kaldır"
|
msgstr "Kaldır"
|
||||||
|
|
||||||
@@ -4103,7 +4185,7 @@ msgstr ""
|
|||||||
"gerekir.\n"
|
"gerekir.\n"
|
||||||
"0 a sıfırla."
|
"0 a sıfırla."
|
||||||
|
|
||||||
#, fuzzy
|
#, fuzzy, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Lock depth should smaller than skin depth.\n"
|
"Lock depth should smaller than skin depth.\n"
|
||||||
"Reset to 50% of skin depth."
|
"Reset to 50% of skin depth."
|
||||||
@@ -4730,6 +4812,9 @@ msgstr "mm³/s"
|
|||||||
msgid "Fan speed"
|
msgid "Fan speed"
|
||||||
msgstr "Fan hızı"
|
msgstr "Fan hızı"
|
||||||
|
|
||||||
|
msgid "°C"
|
||||||
|
msgstr "°C"
|
||||||
|
|
||||||
msgid "Time"
|
msgid "Time"
|
||||||
msgstr "Zaman"
|
msgstr "Zaman"
|
||||||
|
|
||||||
@@ -4886,7 +4971,7 @@ msgstr "Gerçek Hız (mm/s)"
|
|||||||
msgid "Fan Speed (%)"
|
msgid "Fan Speed (%)"
|
||||||
msgstr "Fan hızı (%)"
|
msgstr "Fan hızı (%)"
|
||||||
|
|
||||||
msgid "Temperature (℃)"
|
msgid "Temperature (°C)"
|
||||||
msgstr "Sıcaklık (°C)"
|
msgstr "Sıcaklık (°C)"
|
||||||
|
|
||||||
msgid "Volumetric flow rate (mm³/s)"
|
msgid "Volumetric flow rate (mm³/s)"
|
||||||
@@ -5209,7 +5294,7 @@ msgstr "Hacim:"
|
|||||||
msgid "Size:"
|
msgid "Size:"
|
||||||
msgstr "Boyut:"
|
msgstr "Boyut:"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||||
"separate the conflicted objects farther (%s <-> %s)."
|
"separate the conflicted objects farther (%s <-> %s)."
|
||||||
@@ -5282,7 +5367,7 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
||||||
"mixing in models. Please redjust flushing settings."
|
"mixing in models. Please readjust flushing settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Click Wiki for help."
|
msgid "Click Wiki for help."
|
||||||
@@ -6593,6 +6678,9 @@ msgstr ""
|
|||||||
"Bu baskı profiline olumlu bir puan vermek için (4 veya 5 yıldız) en az bir "
|
"Bu baskı profiline olumlu bir puan vermek için (4 veya 5 yıldız) en az bir "
|
||||||
"başarılı baskı kaydı gereklidir."
|
"başarılı baskı kaydı gereklidir."
|
||||||
|
|
||||||
|
msgid "click to add machine"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr "Durum"
|
msgstr "Durum"
|
||||||
|
|
||||||
@@ -6603,6 +6691,14 @@ msgstr ""
|
|||||||
msgid "Assistant(HMS)"
|
msgid "Assistant(HMS)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s (%s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Don't show again"
|
msgid "Don't show again"
|
||||||
msgstr "Bir daha gösterme"
|
msgstr "Bir daha gösterme"
|
||||||
|
|
||||||
@@ -6989,7 +7085,7 @@ msgstr ""
|
|||||||
msgid "Unavailable while heating maintenance function is on."
|
msgid "Unavailable while heating maintenance function is on."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Idel Heating Protection"
|
msgid "Idle Heating Protection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
||||||
@@ -7553,7 +7649,8 @@ msgid "Please resolve the slicing errors and publish again."
|
|||||||
msgstr "Lütfen dilimleme hatalarını giderip tekrar yayınlayın."
|
msgstr "Lütfen dilimleme hatalarını giderip tekrar yayınlayın."
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Network Plug-in is not detected. Network related features are unavailable."
|
"The network plug-in was not detected. Network related features are "
|
||||||
|
"unavailable."
|
||||||
msgstr "Ağ Eklentisi algılanmadı. Ağla ilgili özellikler kullanılamıyor."
|
msgstr "Ağ Eklentisi algılanmadı. Ağla ilgili özellikler kullanılamıyor."
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -8127,7 +8224,7 @@ msgstr "(Yeniden başlatma gerektirir)"
|
|||||||
msgid "filaments"
|
msgid "filaments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
msgid "Optimizes filament area maximum height by chosen filament count."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Features"
|
msgid "Features"
|
||||||
@@ -8327,40 +8424,40 @@ msgstr ""
|
|||||||
msgid "Color only"
|
msgid "Color only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin"
|
msgid "Network plug-in"
|
||||||
msgstr "Ağ eklentisi"
|
msgstr "Ağ eklentisi"
|
||||||
|
|
||||||
msgid "Enable network plugin"
|
msgid "Enable network plug-in"
|
||||||
msgstr "Ağ eklentisini etkinleştir"
|
msgstr "Ağ eklentisini etkinleştir"
|
||||||
|
|
||||||
msgid "Network plugin version"
|
msgid "Network plug-in version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Select the network plugin version to use"
|
msgid "Select the network plug-in version to use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "(Latest)"
|
msgid "(Latest)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin switched successfully."
|
msgid "Network plug-in switched successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to load network plugin. Please restart the application."
|
msgid "Failed to load network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You've selected network plugin version %s.\n"
|
"You've selected network plug-in version %s.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Would you like to download and install this version now?\n"
|
"Would you like to download and install this version now?\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Note: The application may need to restart after installation."
|
"Note: The application may need to restart after installation."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Download Network Plugin"
|
msgid "Download Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Associate files to OrcaSlicer"
|
msgid "Associate files to OrcaSlicer"
|
||||||
@@ -8440,19 +8537,16 @@ msgstr "hata ayıklama"
|
|||||||
msgid "trace"
|
msgid "trace"
|
||||||
msgstr "iz"
|
msgstr "iz"
|
||||||
|
|
||||||
msgid "Network Plugin"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Reload"
|
msgid "Reload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload the network plugin without restarting the application"
|
msgid "Reload the network plug-in without restarting the application"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin reloaded successfully."
|
msgid "Network plug-in reloaded successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to reload network plugin. Please restart the application."
|
msgid "Failed to reload network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload Failed"
|
msgid "Reload Failed"
|
||||||
@@ -8671,7 +8765,10 @@ msgstr "Yayınlama iptal edildi"
|
|||||||
msgid "Slicing Plate 1"
|
msgid "Slicing Plate 1"
|
||||||
msgstr "Dilimleme Plakası 1"
|
msgstr "Dilimleme Plakası 1"
|
||||||
|
|
||||||
msgid "Packing data to 3mf"
|
msgid "Packing data to 3MF"
|
||||||
|
msgstr "Verileri 3mf'ye paketle"
|
||||||
|
|
||||||
|
msgid "Uploading data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Jump to webpage"
|
msgid "Jump to webpage"
|
||||||
@@ -8988,8 +9085,8 @@ msgstr "Smooth High Temp Plate"
|
|||||||
msgid "Textured PEI Plate"
|
msgid "Textured PEI Plate"
|
||||||
msgstr "Textured PEI Plate"
|
msgstr "Textured PEI Plate"
|
||||||
|
|
||||||
msgid "Cool Plate (Supertack)"
|
msgid "Cool Plate (SuperTack)"
|
||||||
msgstr ""
|
msgstr "Cool Plate (SuperTack)"
|
||||||
|
|
||||||
msgid "Click here if you can't connect to the printer"
|
msgid "Click here if you can't connect to the printer"
|
||||||
msgstr "Yazıcıya bağlanamıyorsanız burayı tıklayın"
|
msgstr "Yazıcıya bağlanamıyorsanız burayı tıklayın"
|
||||||
@@ -9312,7 +9409,7 @@ msgstr ""
|
|||||||
"etkinleştirmek istiyor musunuz?"
|
"etkinleştirmek istiyor musunuz?"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection. There may be flaws on the "
|
"A prime tower is required for clumping detection. There may be flaws on the "
|
||||||
"model without prime tower. Do you still want to enable clumping detection?"
|
"model without prime tower. Do you still want to enable clumping detection?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -9437,8 +9534,8 @@ msgstr ""
|
|||||||
msgid ""
|
msgid ""
|
||||||
"When recording timelapse without toolhead, it is recommended to add a "
|
"When recording timelapse without toolhead, it is recommended to add a "
|
||||||
"\"Timelapse Wipe Tower\" \n"
|
"\"Timelapse Wipe Tower\" \n"
|
||||||
"by right-click the empty position of build plate and choose \"Add "
|
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
"\"->\"Timelapse Wipe Tower\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Araç başlığı olmadan timelapse kaydederken, bir \"Timelapse Wipe Tower\" "
|
"Araç başlığı olmadan timelapse kaydederken, bir \"Timelapse Wipe Tower\" "
|
||||||
"eklenmesi önerilir.\n"
|
"eklenmesi önerilir.\n"
|
||||||
@@ -9656,9 +9753,6 @@ msgstr "Yazdırma Sıcaklığı"
|
|||||||
msgid "Nozzle temperature when printing"
|
msgid "Nozzle temperature when printing"
|
||||||
msgstr "Yazdırma sırasında nozul sıcaklığı"
|
msgstr "Yazdırma sırasında nozul sıcaklığı"
|
||||||
|
|
||||||
msgid "Cool Plate (SuperTack)"
|
|
||||||
msgstr "Cool Plate (SuperTack)"
|
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
||||||
"means the filament does not support printing on the Cool Plate SuperTack."
|
"means the filament does not support printing on the Cool Plate SuperTack."
|
||||||
@@ -10117,6 +10211,12 @@ msgstr "Tüm ön ayarları göster (uyumsuz olanlar dahil)"
|
|||||||
msgid "Select presets to compare"
|
msgid "Select presets to compare"
|
||||||
msgstr "Karşılaştırılacak ön ayarları seçin"
|
msgstr "Karşılaştırılacak ön ayarları seçin"
|
||||||
|
|
||||||
|
msgid "Left Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Right Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can only transfer to current active profile because it has been modified."
|
"You can only transfer to current active profile because it has been modified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -10549,6 +10649,12 @@ msgstr "İndirmek için buraya tıklayın."
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "Giriş yap"
|
msgstr "Giriş yap"
|
||||||
|
|
||||||
|
msgid "[Action Required] "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "[Action Required]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "The configuration package is changed in previous Config Guide"
|
msgid "The configuration package is changed in previous Config Guide"
|
||||||
msgstr "Yapılandırma paketi önceki Yapılandırma Kılavuzu'nda değiştirildi"
|
msgstr "Yapılandırma paketi önceki Yapılandırma Kılavuzu'nda değiştirildi"
|
||||||
|
|
||||||
@@ -11266,7 +11372,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection; otherwise, there may be "
|
"A prime tower is required for clumping detection; otherwise, there may be "
|
||||||
"flaws on the model."
|
"flaws on the model."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -11274,8 +11380,8 @@ msgid ""
|
|||||||
"Please select \"By object\" print sequence to print multiple objects in "
|
"Please select \"By object\" print sequence to print multiple objects in "
|
||||||
"spiral vase mode."
|
"spiral vase mode."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Birden fazla nesneyi spiral vazo modunda yazdırmak için lütfen \"Nesneye "
|
"Birden fazla nesneyi spiral vazo modunda yazdırmak için lütfen \"Nesneye göre"
|
||||||
"göre\" yazdırma sırasını seçin."
|
"\" yazdırma sırasını seçin."
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The spiral vase mode does not work when an object contains more than one "
|
"The spiral vase mode does not work when an object contains more than one "
|
||||||
@@ -12843,7 +12949,7 @@ msgid ""
|
|||||||
"models\n"
|
"models\n"
|
||||||
"3. No filtering - creates internal bridges on every potential internal "
|
"3. No filtering - creates internal bridges on every potential internal "
|
||||||
"overhang. This option is useful for heavily slanted top surface models; "
|
"overhang. This option is useful for heavily slanted top surface models; "
|
||||||
"however, in most cases, it creates too many unnecessary bridges"
|
"however, in most cases, it creates too many unnecessary bridges."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Bu seçenek, aşırı eğimli veya kavisli modellerde üst yüzeylerdeki "
|
"Bu seçenek, aşırı eğimli veya kavisli modellerde üst yüzeylerdeki "
|
||||||
"yastıklamayı azaltmaya yardımcı olabilir.\n"
|
"yastıklamayı azaltmaya yardımcı olabilir.\n"
|
||||||
@@ -12863,7 +12969,7 @@ msgstr ""
|
|||||||
"gereksiz köprülerden kaçınır. Bu, çoğu zor modelde işe yarar.\n"
|
"gereksiz köprülerden kaçınır. Bu, çoğu zor modelde işe yarar.\n"
|
||||||
"3. Filtreleme yok - her potansiyel dahili çıkıntıda iç köprüler oluşturur. "
|
"3. Filtreleme yok - her potansiyel dahili çıkıntıda iç köprüler oluşturur. "
|
||||||
"Bu seçenek aşırı eğimli üst yüzey modelleri için kullanışlıdır; ancak çoğu "
|
"Bu seçenek aşırı eğimli üst yüzey modelleri için kullanışlıdır; ancak çoğu "
|
||||||
"durumda çok fazla gereksiz köprü oluşturur"
|
"durumda çok fazla gereksiz köprü oluşturur."
|
||||||
|
|
||||||
msgid "Limited filtering"
|
msgid "Limited filtering"
|
||||||
msgstr "Sınırlı filtreli"
|
msgstr "Sınırlı filtreli"
|
||||||
@@ -13348,7 +13454,7 @@ msgid ""
|
|||||||
"less acceleration you print, the larger the range of acceptable PA values. "
|
"less acceleration you print, the larger the range of acceptable PA values. "
|
||||||
"If no difference is visible, use the PA value from the faster test\n"
|
"If no difference is visible, use the PA value from the faster test\n"
|
||||||
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
||||||
"here and save your filament profile"
|
"here and save your filament profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Basınç ilerlemesi (basınç) değerlerinin setlerini, hacimsel akış hızlarını "
|
"Basınç ilerlemesi (basınç) değerlerinin setlerini, hacimsel akış hızlarını "
|
||||||
"ve ölçüldükleri ivmeleri virgülle ayırarak ekleyin. Satır başına bir değer "
|
"ve ölçüldükleri ivmeleri virgülle ayırarak ekleyin. Satır başına bir değer "
|
||||||
@@ -13375,7 +13481,7 @@ msgstr ""
|
|||||||
"kabul edilebilir PA değerleri aralığı o kadar geniş olur. Hiçbir fark "
|
"kabul edilebilir PA değerleri aralığı o kadar geniş olur. Hiçbir fark "
|
||||||
"görünmüyorsa, daha hızlı olan testteki PA değerini kullanın.\n"
|
"görünmüyorsa, daha hızlı olan testteki PA değerini kullanın.\n"
|
||||||
"3. Buradaki metin kutusuna PA değerleri, Akış ve Hızlanma üçlüsünü girin ve "
|
"3. Buradaki metin kutusuna PA değerleri, Akış ve Hızlanma üçlüsünü girin ve "
|
||||||
"filament profilinizi kaydedin"
|
"filament profilinizi kaydedin."
|
||||||
|
|
||||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||||
msgstr "Çıkıntılar için uyarlanabilir basınç ilerlemesini etkinleştirin (beta)"
|
msgstr "Çıkıntılar için uyarlanabilir basınç ilerlemesini etkinleştirin (beta)"
|
||||||
@@ -14152,8 +14258,8 @@ msgid "mm/s² or %"
|
|||||||
msgstr "mm/s² veya %"
|
msgstr "mm/s² veya %"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
"g. 100%), it will be calculated based on the default acceleration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Seyrek dolgunun hızlandırılması. Değer yüzde olarak ifade edilirse (örn. "
|
"Seyrek dolgunun hızlandırılması. Değer yüzde olarak ifade edilirse (örn. "
|
||||||
"%100), varsayılan ivmeye göre hesaplanacaktır."
|
"%100), varsayılan ivmeye göre hesaplanacaktır."
|
||||||
@@ -14271,17 +14377,16 @@ msgstr "Maksimum fan hızı"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Fan speed will be ramped up linearly from zero at layer "
|
"Fan speed will be ramped up linearly from zero at layer "
|
||||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Fan hızı, \"close_fan_the_first_x_layers\" katmanında sıfırdan "
|
"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. "
|
"\"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 "
|
"\"full_fan_speed_layer\", \"close_fan_the_first_x_layers\" değerinden "
|
||||||
"düşükse göz ardı edilecektir; bu durumda fan, "
|
"düşükse göz ardı edilecektir; bu durumda fan, \"close_fan_the_first_x_layers"
|
||||||
"\"close_fan_the_first_x_layers\" + 1 katmanında izin verilen maksimum hızda "
|
"\" + 1 katmanında izin verilen maksimum hızda çalışacaktır."
|
||||||
"çalışacaktır."
|
|
||||||
|
|
||||||
msgid "layer"
|
msgid "layer"
|
||||||
msgstr "katman"
|
msgstr "katman"
|
||||||
@@ -14793,9 +14898,9 @@ msgstr "Nesneleri etiketle"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this to add comments into the G-code labeling print moves with what "
|
"Enable this to add comments into the G-code labeling print moves with what "
|
||||||
"object they belong to, which is useful for the Octoprint CancelObject "
|
"object they belong to, which is useful for the Octoprint CancelObject plug-"
|
||||||
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
|
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
|
||||||
"setup and Wipe into Object / Wipe into Infill."
|
"and Wipe into Object / Wipe into Infill."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"G-Code etiketleme yazdırma hareketlerine ait oldukları nesneyle ilgili "
|
"G-Code etiketleme yazdırma hareketlerine ait oldukları nesneyle ilgili "
|
||||||
"yorumlar eklemek için bunu etkinleştirin; bu, Octoprint CancelObject "
|
"yorumlar eklemek için bunu etkinleştirin; bu, Octoprint CancelObject "
|
||||||
@@ -15137,11 +15242,11 @@ msgstr "Ütüleme tipi"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Ironing is using small flow to print on same height of surface again to make "
|
"Ironing is using small flow to print on same height of surface again to make "
|
||||||
"flat surface more smooth. This setting controls which layer being ironed"
|
"flat surface more smooth. This setting controls which layer being ironed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ütüleme, düz yüzeyi daha pürüzsüz hale getirmek için aynı yükseklikteki "
|
"Ütüleme, düz yüzeyi daha pürüzsüz hale getirmek için aynı yükseklikteki "
|
||||||
"yüzeye tekrar baskı yapmak için küçük akış kullanmaktır. Bu ayar hangi "
|
"yüzeye tekrar baskı yapmak için küçük akış kullanmaktır. Bu ayar hangi "
|
||||||
"katmanın ütüleneceğini kontrol eder"
|
"katmanın ütüleneceğini kontrol eder."
|
||||||
|
|
||||||
msgid "No ironing"
|
msgid "No ironing"
|
||||||
msgstr "Ütüleme yok"
|
msgstr "Ütüleme yok"
|
||||||
@@ -16197,8 +16302,8 @@ msgid "Role base wipe speed"
|
|||||||
msgstr "Otomatik temizleme hızı"
|
msgstr "Otomatik temizleme hızı"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
"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 "
|
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||||
"wipe action."
|
"wipe action."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -16463,7 +16568,7 @@ msgid ""
|
|||||||
"timelapse video when printing completes. If smooth mode is selected, the "
|
"timelapse video when printing completes. If smooth mode is selected, the "
|
||||||
"toolhead will move to the excess chute after each layer is printed and then "
|
"toolhead will move to the excess chute after each layer is printed and then "
|
||||||
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
||||||
"process of taking a snapshot, prime tower is required for smooth mode to "
|
"process of taking a snapshot, a prime tower is required for smooth mode to "
|
||||||
"wipe nozzle."
|
"wipe nozzle."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Düzgün veya geleneksel mod seçilirse her baskı için bir hızlandırılmış video "
|
"Düzgün veya geleneksel mod seçilirse her baskı için bir hızlandırılmış video "
|
||||||
@@ -17065,8 +17170,8 @@ msgstr "Sıcaklık kontrolünü etkinleştirin"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this option for automated chamber temperature control. This option "
|
"Enable this option for automated chamber temperature control. This option "
|
||||||
"activates the emitting of an M191 command before the "
|
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||||
"\"machine_start_gcode\"\n"
|
"\"\n"
|
||||||
" which sets the chamber temperature and waits until it is reached. In "
|
" 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 "
|
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||||
"chamber heater, if present.\n"
|
"chamber heater, if present.\n"
|
||||||
@@ -17378,6 +17483,12 @@ msgstr ""
|
|||||||
"fileto bulunan bir koni.\n"
|
"fileto bulunan bir koni.\n"
|
||||||
"3. Kaburga: Kule duvarına gelişmiş denge için dört kaburga ekler."
|
"3. Kaburga: Kule duvarına gelişmiş denge için dört kaburga ekler."
|
||||||
|
|
||||||
|
msgid "Rectangle"
|
||||||
|
msgstr "Dikdörtgen"
|
||||||
|
|
||||||
|
msgid "Rib"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Extra rib length"
|
msgid "Extra rib length"
|
||||||
msgstr "Ekstra rib uzunluğu"
|
msgstr "Ekstra rib uzunluğu"
|
||||||
|
|
||||||
@@ -17997,7 +18108,7 @@ msgstr ""
|
|||||||
"Etkinleştirilirse mevcut makinenin listedeki makinelerle uyumlu olup "
|
"Etkinleştirilirse mevcut makinenin listedeki makinelerle uyumlu olup "
|
||||||
"olmadığını kontrol edin."
|
"olmadığını kontrol edin."
|
||||||
|
|
||||||
msgid "downward machines settings"
|
msgid "Downward machines settings"
|
||||||
msgstr "Aşağı doğru makine ayarları"
|
msgstr "Aşağı doğru makine ayarları"
|
||||||
|
|
||||||
msgid "The machine settings list needs to do downward checking."
|
msgid "The machine settings list needs to do downward checking."
|
||||||
@@ -18031,8 +18142,8 @@ msgid "Debug level"
|
|||||||
msgstr "Hata ayıklama düzeyi"
|
msgstr "Hata ayıklama düzeyi"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||||
"5:trace\n"
|
"trace\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Hata ayıklama günlüğü düzeyini ayarlar. 0:önemli, 1:hata, 2:uyarı, 3:bilgi, "
|
"Hata ayıklama günlüğü düzeyini ayarlar. 0:önemli, 1:hata, 2:uyarı, 3:bilgi, "
|
||||||
"4:hata ayıklama, 5:izleme\n"
|
"4:hata ayıklama, 5:izleme\n"
|
||||||
@@ -18701,10 +18812,6 @@ msgstr "Ad, mevcut başka bir ön ayar adıyla aynı"
|
|||||||
msgid "create new preset failed."
|
msgid "create new preset failed."
|
||||||
msgstr "yeni ön ayar oluşturma başarısız oldu."
|
msgstr "yeni ön ayar oluşturma başarısız oldu."
|
||||||
|
|
||||||
#, c-format, boost-format
|
|
||||||
msgid "The selected preset: %s is not found."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid "Could not find parameter: %s."
|
msgid "Could not find parameter: %s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -19387,6 +19494,23 @@ msgstr "Hız Kulesi"
|
|||||||
msgid "Input shaper type"
|
msgid "Input shaper type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Please ensure the selected type is compatible with your firmware version."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Marlin version => 2.1.2\n"
|
||||||
|
"Fixed-Time motion not yet implemented."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Klipper version => 0.9.0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"RepRap firmware version => 3.4.0\n"
|
||||||
|
"Check your firmware documentation for supported shaper types."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency (Start / End): "
|
msgid "Frequency (Start / End): "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -19425,6 +19549,9 @@ msgstr ""
|
|||||||
msgid "Input shaping Damp test"
|
msgid "Input shaping Damp test"
|
||||||
msgstr "Input shaping damp testi"
|
msgstr "Input shaping damp testi"
|
||||||
|
|
||||||
|
msgid "Check firmware compatibility."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency: "
|
msgid "Frequency: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -19755,8 +19882,8 @@ msgstr ""
|
|||||||
"Yeniden yazmak ister misin?"
|
"Yeniden yazmak ister misin?"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||||
"selected\".\n"
|
"\".\n"
|
||||||
"To add preset for more printers, please go to printer selection"
|
"To add preset for more printers, please go to printer selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ön ayarları şu şekilde yeniden adlandırırdık: \"Satıcı Türü Seçtiğiniz Seri "
|
"Ön ayarları şu şekilde yeniden adlandırırdık: \"Satıcı Türü Seçtiğiniz Seri "
|
||||||
@@ -19805,9 +19932,6 @@ msgstr ""
|
|||||||
msgid "Can't find my nozzle diameter"
|
msgid "Can't find my nozzle diameter"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Rectangle"
|
|
||||||
msgstr "Dikdörtgen"
|
|
||||||
|
|
||||||
msgid "Printable Space"
|
msgid "Printable Space"
|
||||||
msgstr "Yazdırılabilir Alan"
|
msgstr "Yazdırılabilir Alan"
|
||||||
|
|
||||||
@@ -21172,6 +21296,127 @@ msgstr ""
|
|||||||
msgid "More Colors"
|
msgid "More Colors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Network Plug-in Update Available"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bambu Network Plug-in Required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
|
||||||
|
"and remote printing."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Error: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Version to install:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Download and Install"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip for Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "A new version of the Bambu Network Plug-in is available."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Current version: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update to version:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Remind Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Don't Ask Again"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The Bambu Network Plug-in has been installed successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"A restart is required to load the new plug-in. Would you like to restart now?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "NO RAMMING AT ALL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Volumetric speed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Step file import parameters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Smaller linear and angular deflections result in higher-quality "
|
||||||
|
"transformations but increase the processing time."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Linear Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Angle Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Split compound and compsolid into multiple objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Number of triangular facets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Calculating, please wait..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. "
|
||||||
|
"Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament model is unknown. Still using the previous filament preset."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. A "
|
||||||
|
"random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. A random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: resources/data/hints.ini: [hint:Precise wall]
|
#: resources/data/hints.ini: [hint:Precise wall]
|
||||||
msgid ""
|
msgid ""
|
||||||
"Precise wall\n"
|
"Precise wall\n"
|
||||||
@@ -21570,9 +21815,6 @@ msgstr ""
|
|||||||
#~ "Eklenti yüklenemedi. Lütfen anti-virüs yazılımı tarafından engellenip "
|
#~ "Eklenti yüklenemedi. Lütfen anti-virüs yazılımı tarafından engellenip "
|
||||||
#~ "engellenmediğini veya silinip silinmediğini kontrol edin."
|
#~ "engellenmediğini veya silinip silinmediğini kontrol edin."
|
||||||
|
|
||||||
#~ msgid "°C"
|
|
||||||
#~ msgstr "°C"
|
|
||||||
|
|
||||||
#~ msgid "travel"
|
#~ msgid "travel"
|
||||||
#~ msgstr "seyahat"
|
#~ msgstr "seyahat"
|
||||||
|
|
||||||
@@ -21616,18 +21858,16 @@ msgstr ""
|
|||||||
#~ msgid "Advance"
|
#~ msgid "Advance"
|
||||||
#~ msgstr "Gelişmiş"
|
#~ msgstr "Gelişmiş"
|
||||||
|
|
||||||
#~ msgid "Use legacy network plugin"
|
#~ msgid "Use legacy network plug-in"
|
||||||
#~ msgstr "Eski ağ eklentisini kullan"
|
#~ msgstr "Eski ağ eklentisini kullan"
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "Disable to use latest network plugin that supports new BambuLab firmwares."
|
#~ "Disable to use latest network plug-in that supports new BambuLab "
|
||||||
|
#~ "firmwares."
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
#~ "Yeni BambuLab yazılımlarını destekleyen en son ağ eklentisini kullanmayı "
|
#~ "Yeni BambuLab yazılımlarını destekleyen en son ağ eklentisini kullanmayı "
|
||||||
#~ "devre dışı bırakın."
|
#~ "devre dışı bırakın."
|
||||||
|
|
||||||
#~ msgid "Packing data to 3MF"
|
|
||||||
#~ msgstr "Verileri 3mf'ye paketle"
|
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "Controls the density (spacing) of external bridge lines. 100% means solid "
|
#~ "Controls the density (spacing) of external bridge lines. 100% means solid "
|
||||||
#~ "bridge. Default is 100%.\n"
|
#~ "bridge. Default is 100%.\n"
|
||||||
@@ -22668,9 +22908,6 @@ msgstr ""
|
|||||||
#~ msgid "Load uptodate filament settings when using uptodate."
|
#~ msgid "Load uptodate filament settings when using uptodate."
|
||||||
#~ msgstr "güncellemeyi kullanırken güncelleme filament ayarlarını yükle"
|
#~ msgstr "güncellemeyi kullanırken güncelleme filament ayarlarını yükle"
|
||||||
|
|
||||||
#~ msgid "Downward machines settings"
|
|
||||||
#~ msgstr "Düşüşteki makinelerin ayarları"
|
|
||||||
|
|
||||||
#~ msgid "Load filament IDs for each object"
|
#~ msgid "Load filament IDs for each object"
|
||||||
#~ msgstr "Her nesne için filaman kimliklerini yükleyin"
|
#~ msgstr "Her nesne için filaman kimliklerini yükleyin"
|
||||||
|
|
||||||
@@ -23831,10 +24068,10 @@ msgstr ""
|
|||||||
#~ msgid "Test Storage Download:"
|
#~ msgid "Test Storage Download:"
|
||||||
#~ msgstr "Test Depolama İndirme:"
|
#~ msgstr "Test Depolama İndirme:"
|
||||||
|
|
||||||
#~ msgid "Test plugin download"
|
#~ msgid "Test plug-in download"
|
||||||
#~ msgstr "Test eklentisi indirme"
|
#~ msgstr "Test eklentisi indirme"
|
||||||
|
|
||||||
#~ msgid "Test Plugin Download:"
|
#~ msgid "Test Plug-in Download:"
|
||||||
#~ msgstr "Test Eklentisini İndirin:"
|
#~ msgstr "Test Eklentisini İndirin:"
|
||||||
|
|
||||||
#~ msgid "Test Storage Upload"
|
#~ msgid "Test Storage Upload"
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: orcaslicerua\n"
|
"Project-Id-Version: orcaslicerua\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
|
||||||
"PO-Revision-Date: 2025-03-07 09:30+0200\n"
|
"PO-Revision-Date: 2025-03-07 09:30+0200\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Ukrainian\n"
|
"Language-Team: Ukrainian\n"
|
||||||
@@ -20,26 +20,6 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 13\n"
|
"X-Crowdin-File-ID: 13\n"
|
||||||
"X-Generator: Poedit 3.5\n"
|
"X-Generator: Poedit 3.5\n"
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. "
|
|
||||||
"Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament model is unknown. Still using the previous filament preset."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. A "
|
|
||||||
"random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. A random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "right"
|
msgid "right"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1589,6 +1569,30 @@ msgstr "Паралельна відстань:"
|
|||||||
msgid "Flip by Face 2"
|
msgid "Flip by Face 2"
|
||||||
msgstr "Перевернути за Гранню 2"
|
msgstr "Перевернути за Гранню 2"
|
||||||
|
|
||||||
|
msgid "Assemble"
|
||||||
|
msgstr "Об'єднати у збірку"
|
||||||
|
|
||||||
|
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "(Moving)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Point and point assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"It is recommended to assemble the objects first,\n"
|
||||||
|
"because the objects is restriced to bed \n"
|
||||||
|
"and only parts can be lifted."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Face and face assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Notice"
|
msgid "Notice"
|
||||||
msgstr "Повідомлення"
|
msgstr "Повідомлення"
|
||||||
|
|
||||||
@@ -1627,6 +1631,54 @@ msgstr ""
|
|||||||
msgid "Based on PrusaSlicer and BambuStudio"
|
msgid "Based on PrusaSlicer and BambuStudio"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "STEP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "STL files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "OBJ files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "AMF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Gcode 3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "G-code files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Supported files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "ZIP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Project files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Known files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "INI files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "SVG files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Texture"
|
||||||
|
msgstr "Текстура"
|
||||||
|
|
||||||
|
msgid "Masked SLA files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Draco files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
||||||
"It will be appreciated if you report the issue to our team."
|
"It will be appreciated if you report the issue to our team."
|
||||||
@@ -1654,10 +1706,10 @@ msgstr "Невідома помилка OrcaSlicer : %1%"
|
|||||||
msgid "Untitled"
|
msgid "Untitled"
|
||||||
msgstr "Без назви"
|
msgstr "Без назви"
|
||||||
|
|
||||||
msgid "Reloading network plugin..."
|
msgid "Reloading network plug-in..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Network Plugin"
|
msgid "Downloading Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Bambu Network Plug-in"
|
msgid "Downloading Bambu Network Plug-in"
|
||||||
@@ -1751,6 +1803,9 @@ msgstr "Виберіть ZIP файл"
|
|||||||
msgid "Choose one file (GCODE/3MF):"
|
msgid "Choose one file (GCODE/3MF):"
|
||||||
msgstr "Виберіть один файл (GCODE/3MF):"
|
msgstr "Виберіть один файл (GCODE/3MF):"
|
||||||
|
|
||||||
|
msgid "Ext"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Some presets are modified."
|
msgid "Some presets are modified."
|
||||||
msgstr "Деякі налаштування змінено."
|
msgstr "Деякі налаштування змінено."
|
||||||
|
|
||||||
@@ -1810,7 +1865,7 @@ msgid ""
|
|||||||
"access, enabling full functionality with OrcaSlicer."
|
"access, enabling full functionality with OrcaSlicer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network Plugin Restriction"
|
msgid "Network Plug-in Restriction"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Privacy Policy Update"
|
msgid "Privacy Policy Update"
|
||||||
@@ -2047,6 +2102,9 @@ msgstr ""
|
|||||||
"Так - змінювати ці налаштування автоматично\n"
|
"Так - змінювати ці налаштування автоматично\n"
|
||||||
"Ні - Не змінювати ці налаштування для мене"
|
"Ні - Не змінювати ці налаштування для мене"
|
||||||
|
|
||||||
|
msgid "Suggestion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Текст"
|
msgstr "Текст"
|
||||||
|
|
||||||
@@ -2156,9 +2214,6 @@ msgstr "Перетворити з метричної"
|
|||||||
msgid "Restore to meters"
|
msgid "Restore to meters"
|
||||||
msgstr "Відновити в метричну"
|
msgstr "Відновити в метричну"
|
||||||
|
|
||||||
msgid "Assemble"
|
|
||||||
msgstr "Об'єднати у збірку"
|
|
||||||
|
|
||||||
msgid "Assemble the selected objects to an object with multiple parts"
|
msgid "Assemble the selected objects to an object with multiple parts"
|
||||||
msgstr "Зібрати вибрані об'єкти в об'єкт з кількома частинами"
|
msgstr "Зібрати вибрані об'єкти в об'єкт з кількома частинами"
|
||||||
|
|
||||||
@@ -2676,6 +2731,10 @@ msgstr "Багатоколірний друк"
|
|||||||
msgid "Line Type"
|
msgid "Line Type"
|
||||||
msgstr "Тип лінії"
|
msgstr "Тип лінії"
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "1x1 Grid: %d mm"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "More"
|
msgid "More"
|
||||||
msgstr "Більше"
|
msgstr "Більше"
|
||||||
|
|
||||||
@@ -2793,8 +2852,8 @@ msgstr "Перевірте мережеве з'єднання принтера
|
|||||||
msgid "Connecting..."
|
msgid "Connecting..."
|
||||||
msgstr "Підключення..."
|
msgstr "Підключення..."
|
||||||
|
|
||||||
msgid "Auto-refill"
|
msgid "Auto Refill"
|
||||||
msgstr ""
|
msgstr "Автоматична заміна"
|
||||||
|
|
||||||
msgid "Load"
|
msgid "Load"
|
||||||
msgstr "Завантажити"
|
msgstr "Завантажити"
|
||||||
@@ -3195,6 +3254,38 @@ msgid ""
|
|||||||
"Storage before sending to printer."
|
"Storage before sending to printer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossCreateObjectJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text object"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossUpdateJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Created text volume is empty. Change text or font."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for CreateSurfaceVolumeJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for UseSurfaceJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRN: This is the title of the action appearing in undo/redo stack.
|
||||||
|
#. It is same for Text and SVG.
|
||||||
|
msgid "Emboss attribute change"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text Volume"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Font doesn't have any shape for given text."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "There is no valid surface for text projection."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Thermal Preconditioning for first layer optimization"
|
msgid "Thermal Preconditioning for first layer optimization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3285,8 +3376,8 @@ msgid ""
|
|||||||
"This software uses open source components whose copyright and other "
|
"This software uses open source components whose copyright and other "
|
||||||
"proprietary rights belong to their respective owners"
|
"proprietary rights belong to their respective owners"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Це програмне забезпечення використовує компоненти з відкритим вихідним "
|
"Це програмне забезпечення використовує компоненти з відкритим вихідним кодом,"
|
||||||
"кодом,авторські права та інші\n"
|
"авторські права та інші\n"
|
||||||
"права власності належать їх відповідним власникам"
|
"права власності належать їх відповідним власникам"
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
@@ -3521,9 +3612,6 @@ msgstr ""
|
|||||||
msgid "Nozzle"
|
msgid "Nozzle"
|
||||||
msgstr "Сопло"
|
msgstr "Сопло"
|
||||||
|
|
||||||
msgid "Ext"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
||||||
@@ -3591,9 +3679,6 @@ msgstr "Друк філаментами в ams"
|
|||||||
msgid "Print with filaments mounted on the back of the chassis"
|
msgid "Print with filaments mounted on the back of the chassis"
|
||||||
msgstr "Друк із нитками, встановленими на задній частині корпусу"
|
msgstr "Друк із нитками, встановленими на задній частині корпусу"
|
||||||
|
|
||||||
msgid "Auto Refill"
|
|
||||||
msgstr "Автоматична заміна"
|
|
||||||
|
|
||||||
msgid "Left"
|
msgid "Left"
|
||||||
msgstr "Ліво"
|
msgstr "Ліво"
|
||||||
|
|
||||||
@@ -3607,7 +3692,7 @@ msgstr ""
|
|||||||
"Коли поточний матеріал закінчується, принтер буде продовжувати друк у "
|
"Коли поточний матеріал закінчується, принтер буде продовжувати друк у "
|
||||||
"наступному порядку."
|
"наступному порядку."
|
||||||
|
|
||||||
msgid "Identical filament: same brand, type and color"
|
msgid "Identical filament: same brand, type and color."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Group"
|
msgid "Group"
|
||||||
@@ -3745,8 +3830,8 @@ msgid "Calibration"
|
|||||||
msgstr "Калібрування"
|
msgstr "Калібрування"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Failed to download the plug-in. Please check your firewall settings and vpn "
|
"Failed to download the plug-in. Please check your firewall settings and VPN "
|
||||||
"software, check and retry."
|
"software and retry."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Не вдалося завантажити плагін. Будь ласка, перевірте налаштування "
|
"Не вдалося завантажити плагін. Будь ласка, перевірте налаштування "
|
||||||
"брандмауера та vpn\n"
|
"брандмауера та vpn\n"
|
||||||
@@ -3762,8 +3847,8 @@ msgid "Click here to see more info"
|
|||||||
msgstr "натисніть тут, щоб побачити більше інформації"
|
msgstr "натисніть тут, щоб побачити більше інформації"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The network plugin was installed but could not be loaded. Please restart the "
|
"The network plug-in was installed but could not be loaded. Please restart "
|
||||||
"application."
|
"the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Restart Required"
|
msgid "Restart Required"
|
||||||
@@ -3932,9 +4017,6 @@ msgstr "Завантажити форму з STL..."
|
|||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Налаштування"
|
msgstr "Налаштування"
|
||||||
|
|
||||||
msgid "Texture"
|
|
||||||
msgstr "Текстура"
|
|
||||||
|
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Видалити"
|
msgstr "Видалити"
|
||||||
|
|
||||||
@@ -4137,6 +4219,7 @@ msgstr ""
|
|||||||
"seam_slope_start_height має бути менше висоти шару.\n"
|
"seam_slope_start_height має бути менше висоти шару.\n"
|
||||||
"Значення скинуто на 0."
|
"Значення скинуто на 0."
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Lock depth should smaller than skin depth.\n"
|
"Lock depth should smaller than skin depth.\n"
|
||||||
"Reset to 50% of skin depth."
|
"Reset to 50% of skin depth."
|
||||||
@@ -4754,6 +4837,9 @@ msgstr "мм³/с"
|
|||||||
msgid "Fan speed"
|
msgid "Fan speed"
|
||||||
msgstr "Швидкість вентилятора"
|
msgstr "Швидкість вентилятора"
|
||||||
|
|
||||||
|
msgid "°C"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Time"
|
msgid "Time"
|
||||||
msgstr "Час"
|
msgstr "Час"
|
||||||
|
|
||||||
@@ -4910,7 +4996,7 @@ msgstr "Фактична швидкість (мм/с)"
|
|||||||
msgid "Fan Speed (%)"
|
msgid "Fan Speed (%)"
|
||||||
msgstr "Швидкість Вентилятора (%)"
|
msgstr "Швидкість Вентилятора (%)"
|
||||||
|
|
||||||
msgid "Temperature (℃)"
|
msgid "Temperature (°C)"
|
||||||
msgstr "Температура (°С)"
|
msgstr "Температура (°С)"
|
||||||
|
|
||||||
msgid "Volumetric flow rate (mm³/s)"
|
msgid "Volumetric flow rate (mm³/s)"
|
||||||
@@ -5229,7 +5315,7 @@ msgstr "Об'єм:"
|
|||||||
msgid "Size:"
|
msgid "Size:"
|
||||||
msgstr "Розмір:"
|
msgstr "Розмір:"
|
||||||
|
|
||||||
#, fuzzy, boost-format
|
#, fuzzy, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||||
"separate the conflicted objects farther (%s <-> %s)."
|
"separate the conflicted objects farther (%s <-> %s)."
|
||||||
@@ -5302,7 +5388,7 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
||||||
"mixing in models. Please redjust flushing settings."
|
"mixing in models. Please readjust flushing settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Click Wiki for help."
|
msgid "Click Wiki for help."
|
||||||
@@ -6632,6 +6718,9 @@ msgstr ""
|
|||||||
"Для того щоб поставити позитивний рейтинг (4 або 5 зірок), потрібно \n"
|
"Для того щоб поставити позитивний рейтинг (4 або 5 зірок), потрібно \n"
|
||||||
"мати принаймні один успішний запис про друк з цим профілем друку."
|
"мати принаймні один успішний запис про друк з цим профілем друку."
|
||||||
|
|
||||||
|
msgid "click to add machine"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr "Статус"
|
msgstr "Статус"
|
||||||
|
|
||||||
@@ -6642,6 +6731,14 @@ msgstr ""
|
|||||||
msgid "Assistant(HMS)"
|
msgid "Assistant(HMS)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s (%s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Don't show again"
|
msgid "Don't show again"
|
||||||
msgstr "Більше не показувати"
|
msgstr "Більше не показувати"
|
||||||
|
|
||||||
@@ -7037,7 +7134,7 @@ msgstr ""
|
|||||||
msgid "Unavailable while heating maintenance function is on."
|
msgid "Unavailable while heating maintenance function is on."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Idel Heating Protection"
|
msgid "Idle Heating Protection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
||||||
@@ -7592,7 +7689,8 @@ msgid "Please resolve the slicing errors and publish again."
|
|||||||
msgstr "Виправте помилки нарізки та опублікуйте знову."
|
msgstr "Виправте помилки нарізки та опублікуйте знову."
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Network Plug-in is not detected. Network related features are unavailable."
|
"The network plug-in was not detected. Network related features are "
|
||||||
|
"unavailable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Мережевий плагін не виявлено. Функції, пов'язані з мережею, недоступні."
|
"Мережевий плагін не виявлено. Функції, пов'язані з мережею, недоступні."
|
||||||
|
|
||||||
@@ -8168,7 +8266,7 @@ msgstr ""
|
|||||||
msgid "filaments"
|
msgid "filaments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
msgid "Optimizes filament area maximum height by chosen filament count."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Features"
|
msgid "Features"
|
||||||
@@ -8368,40 +8466,40 @@ msgstr ""
|
|||||||
msgid "Color only"
|
msgid "Color only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin"
|
msgid "Network plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Enable network plugin"
|
msgid "Enable network plug-in"
|
||||||
msgstr "Увімкнути мережевий плагін"
|
msgstr "Увімкнути мережевий плагін"
|
||||||
|
|
||||||
msgid "Network plugin version"
|
msgid "Network plug-in version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Select the network plugin version to use"
|
msgid "Select the network plug-in version to use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "(Latest)"
|
msgid "(Latest)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin switched successfully."
|
msgid "Network plug-in switched successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to load network plugin. Please restart the application."
|
msgid "Failed to load network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You've selected network plugin version %s.\n"
|
"You've selected network plug-in version %s.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Would you like to download and install this version now?\n"
|
"Would you like to download and install this version now?\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Note: The application may need to restart after installation."
|
"Note: The application may need to restart after installation."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Download Network Plugin"
|
msgid "Download Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Associate files to OrcaSlicer"
|
msgid "Associate files to OrcaSlicer"
|
||||||
@@ -8481,19 +8579,16 @@ msgstr "налагодження"
|
|||||||
msgid "trace"
|
msgid "trace"
|
||||||
msgstr "слід"
|
msgstr "слід"
|
||||||
|
|
||||||
msgid "Network Plugin"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Reload"
|
msgid "Reload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload the network plugin without restarting the application"
|
msgid "Reload the network plug-in without restarting the application"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin reloaded successfully."
|
msgid "Network plug-in reloaded successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to reload network plugin. Please restart the application."
|
msgid "Failed to reload network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload Failed"
|
msgid "Reload Failed"
|
||||||
@@ -8713,7 +8808,10 @@ msgstr "Публікація скасована"
|
|||||||
msgid "Slicing Plate 1"
|
msgid "Slicing Plate 1"
|
||||||
msgstr "Пластина для нарізки 1"
|
msgstr "Пластина для нарізки 1"
|
||||||
|
|
||||||
msgid "Packing data to 3mf"
|
msgid "Packing data to 3MF"
|
||||||
|
msgstr "Упаковка даних у 3mf"
|
||||||
|
|
||||||
|
msgid "Uploading data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Jump to webpage"
|
msgid "Jump to webpage"
|
||||||
@@ -9029,8 +9127,8 @@ msgstr "Гладка Високотемпературна Пластина"
|
|||||||
msgid "Textured PEI Plate"
|
msgid "Textured PEI Plate"
|
||||||
msgstr "Текстурована PEI пластина"
|
msgstr "Текстурована PEI пластина"
|
||||||
|
|
||||||
msgid "Cool Plate (Supertack)"
|
msgid "Cool Plate (SuperTack)"
|
||||||
msgstr ""
|
msgstr "Холодна пластина (SuperTack)"
|
||||||
|
|
||||||
msgid "Click here if you can't connect to the printer"
|
msgid "Click here if you can't connect to the printer"
|
||||||
msgstr "Клацніть тут, якщо ви не можете підключитися до принтера"
|
msgstr "Клацніть тут, якщо ви не можете підключитися до принтера"
|
||||||
@@ -9354,7 +9452,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection. There may be flaws on the "
|
"A prime tower is required for clumping detection. There may be flaws on the "
|
||||||
"model without prime tower. Do you still want to enable clumping detection?"
|
"model without prime tower. Do you still want to enable clumping detection?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -9471,8 +9569,8 @@ msgstr ""
|
|||||||
msgid ""
|
msgid ""
|
||||||
"When recording timelapse without toolhead, it is recommended to add a "
|
"When recording timelapse without toolhead, it is recommended to add a "
|
||||||
"\"Timelapse Wipe Tower\" \n"
|
"\"Timelapse Wipe Tower\" \n"
|
||||||
"by right-click the empty position of build plate and choose \"Add "
|
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
"\"->\"Timelapse Wipe Tower\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"При записі таймлапсу без інструментальної головки рекомендується додати "
|
"При записі таймлапсу без інструментальної головки рекомендується додати "
|
||||||
"“Timelapse Wipe Tower” \n"
|
"“Timelapse Wipe Tower” \n"
|
||||||
@@ -9694,9 +9792,6 @@ msgstr "Температура друку"
|
|||||||
msgid "Nozzle temperature when printing"
|
msgid "Nozzle temperature when printing"
|
||||||
msgstr "Температура сопла під час друку"
|
msgstr "Температура сопла під час друку"
|
||||||
|
|
||||||
msgid "Cool Plate (SuperTack)"
|
|
||||||
msgstr "Холодна пластина (SuperTack)"
|
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
||||||
"means the filament does not support printing on the Cool Plate SuperTack."
|
"means the filament does not support printing on the Cool Plate SuperTack."
|
||||||
@@ -10163,6 +10258,12 @@ msgstr "Показувати всі профілі (включаючи несу
|
|||||||
msgid "Select presets to compare"
|
msgid "Select presets to compare"
|
||||||
msgstr "Виберіть профілі для порівняння"
|
msgstr "Виберіть профілі для порівняння"
|
||||||
|
|
||||||
|
msgid "Left Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Right Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can only transfer to current active profile because it has been modified."
|
"You can only transfer to current active profile because it has been modified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -10595,6 +10696,12 @@ msgstr "Натисніть тут, щоб завантажити його."
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "Логін"
|
msgstr "Логін"
|
||||||
|
|
||||||
|
msgid "[Action Required] "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "[Action Required]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "The configuration package is changed in previous Config Guide"
|
msgid "The configuration package is changed in previous Config Guide"
|
||||||
msgstr "Пакет конфігурації змінено в попередньому посібнику конфігурації"
|
msgstr "Пакет конфігурації змінено в попередньому посібнику конфігурації"
|
||||||
|
|
||||||
@@ -11313,7 +11420,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection; otherwise, there may be "
|
"A prime tower is required for clumping detection; otherwise, there may be "
|
||||||
"flaws on the model."
|
"flaws on the model."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -12882,7 +12989,7 @@ msgid ""
|
|||||||
"models\n"
|
"models\n"
|
||||||
"3. No filtering - creates internal bridges on every potential internal "
|
"3. No filtering - creates internal bridges on every potential internal "
|
||||||
"overhang. This option is useful for heavily slanted top surface models; "
|
"overhang. This option is useful for heavily slanted top surface models; "
|
||||||
"however, in most cases, it creates too many unnecessary bridges"
|
"however, in most cases, it creates too many unnecessary bridges."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ця опція може допомогти зменшити утворення ефект зморщування верхнього шару "
|
"Ця опція може допомогти зменшити утворення ефект зморщування верхнього шару "
|
||||||
"на верхніх поверхнях у моделях із сильним нахилом або вигнутими формами.\n"
|
"на верхніх поверхнях у моделях із сильним нахилом або вигнутими формами.\n"
|
||||||
@@ -13402,7 +13509,7 @@ msgid ""
|
|||||||
"less acceleration you print, the larger the range of acceptable PA values. "
|
"less acceleration you print, the larger the range of acceptable PA values. "
|
||||||
"If no difference is visible, use the PA value from the faster test\n"
|
"If no difference is visible, use the PA value from the faster test\n"
|
||||||
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
||||||
"here and save your filament profile"
|
"here and save your filament profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Додайте набори значень корекції тиску (PA), об'ємних швидкостей подачі та "
|
"Додайте набори значень корекції тиску (PA), об'ємних швидкостей подачі та "
|
||||||
"прискорень, при яких вони були виміряні, розділені комами. Один набір "
|
"прискорень, при яких вони були виміряні, розділені комами. Один набір "
|
||||||
@@ -14131,8 +14238,8 @@ msgstr ""
|
|||||||
"знайдено, лінія заповнення з'єднується з сегментом периметра лише з одного "
|
"знайдено, лінія заповнення з'єднується з сегментом периметра лише з одного "
|
||||||
"боку, і довжина взятого сегменту периметра обмежена цим параметром, але не "
|
"боку, і довжина взятого сегменту периметра обмежена цим параметром, але не "
|
||||||
"більше anchor_length_max.\n"
|
"більше anchor_length_max.\n"
|
||||||
"Встановіть цей параметр рівним нулю, щоб вимкнути периметри "
|
"Встановіть цей параметр рівним нулю, щоб вимкнути периметри прив'язки."
|
||||||
"прив'язки.пов'язані з однією лінією заповнення."
|
"пов'язані з однією лінією заповнення."
|
||||||
|
|
||||||
msgid "0 (no open anchors)"
|
msgid "0 (no open anchors)"
|
||||||
msgstr "0 (немає відкритих прив'язок)"
|
msgstr "0 (немає відкритих прив'язок)"
|
||||||
@@ -14199,8 +14306,8 @@ msgid "mm/s² or %"
|
|||||||
msgstr "мм/с² або %"
|
msgstr "мм/с² або %"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
"g. 100%), it will be calculated based on the default acceleration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Прискорення заповнення. Якщо значення виражено у відсотках (наприклад, "
|
"Прискорення заповнення. Якщо значення виражено у відсотках (наприклад, "
|
||||||
"100%), воно буде розраховане на основі прискорення за умовчанням."
|
"100%), воно буде розраховане на основі прискорення за умовчанням."
|
||||||
@@ -14319,10 +14426,10 @@ msgstr "Повна швидкість вентилятора на шарі"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Fan speed will be ramped up linearly from zero at layer "
|
"Fan speed will be ramped up linearly from zero at layer "
|
||||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Швидкість вентилятора лінійно збільшується від нуля на "
|
"Швидкість вентилятора лінійно збільшується від нуля на "
|
||||||
"рівні«close_fan_the_first_x_layers» до максимуму на рівні "
|
"рівні«close_fan_the_first_x_layers» до максимуму на рівні "
|
||||||
@@ -14822,9 +14929,9 @@ msgstr "Маркувати об'єкти"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this to add comments into the G-code labeling print moves with what "
|
"Enable this to add comments into the G-code labeling print moves with what "
|
||||||
"object they belong to, which is useful for the Octoprint CancelObject "
|
"object they belong to, which is useful for the Octoprint CancelObject plug-"
|
||||||
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
|
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
|
||||||
"setup and Wipe into Object / Wipe into Infill."
|
"and Wipe into Object / Wipe into Infill."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Увімкніть цей параметр, щоб додати коментарі до друку друку мітки G-Code із "
|
"Увімкніть цей параметр, щоб додати коментарі до друку друку мітки G-Code із "
|
||||||
"зазначенням об'єкта, якому вони належать, що корисно для модуля Octoprint "
|
"зазначенням об'єкта, якому вони належать, що корисно для модуля Octoprint "
|
||||||
@@ -15139,11 +15246,11 @@ msgstr "Тип розгладжування"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Ironing is using small flow to print on same height of surface again to make "
|
"Ironing is using small flow to print on same height of surface again to make "
|
||||||
"flat surface more smooth. This setting controls which layer being ironed"
|
"flat surface more smooth. This setting controls which layer being ironed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"При розглажуванні використовується невеликий потік для повторного друку на "
|
"При розглажуванні використовується невеликий потік для повторного друку на "
|
||||||
"тій самійвисота поверхні, щоб зробити плоску поверхню більш гладкою. Цей "
|
"тій самійвисота поверхні, щоб зробити плоску поверхню більш гладкою. Цей "
|
||||||
"параметр визначає, який шар гладити"
|
"параметр визначає, який шар гладити."
|
||||||
|
|
||||||
msgid "No ironing"
|
msgid "No ironing"
|
||||||
msgstr "Немає Розгладжування"
|
msgstr "Немає Розгладжування"
|
||||||
@@ -16184,8 +16291,8 @@ msgid "Role base wipe speed"
|
|||||||
msgstr "Швидкість протирання залежно від типу"
|
msgstr "Швидкість протирання залежно від типу"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
"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 "
|
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||||
"wipe action."
|
"wipe action."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -16201,8 +16308,8 @@ msgid ""
|
|||||||
"To minimize the visibility of the seam in a closed loop extrusion, a small "
|
"To minimize the visibility of the seam in a closed loop extrusion, a small "
|
||||||
"inward movement is executed before the extruder leaves the loop."
|
"inward movement is executed before the extruder leaves the loop."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Щоб звести до мінімуму видимість шва при екструзії із замкнутим "
|
"Щоб звести до мінімуму видимість шва при екструзії із замкнутим контуром,"
|
||||||
"контуром,Невеликий рух усередину виконується до виходу екструдера з контуру."
|
"Невеликий рух усередину виконується до виходу екструдера з контуру."
|
||||||
|
|
||||||
msgid "Wipe before external loop"
|
msgid "Wipe before external loop"
|
||||||
msgstr "Протирати перед зовнішнім контуром"
|
msgstr "Протирати перед зовнішнім контуром"
|
||||||
@@ -16447,7 +16554,7 @@ msgid ""
|
|||||||
"timelapse video when printing completes. If smooth mode is selected, the "
|
"timelapse video when printing completes. If smooth mode is selected, the "
|
||||||
"toolhead will move to the excess chute after each layer is printed and then "
|
"toolhead will move to the excess chute after each layer is printed and then "
|
||||||
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
||||||
"process of taking a snapshot, prime tower is required for smooth mode to "
|
"process of taking a snapshot, a prime tower is required for smooth mode to "
|
||||||
"wipe nozzle."
|
"wipe nozzle."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Якщо вибрано плавний або традиційний режим, для кожного друку буде "
|
"Якщо вибрано плавний або традиційний режим, для кожного друку буде "
|
||||||
@@ -16680,8 +16787,8 @@ msgid ""
|
|||||||
"Only create support for critical regions including sharp tail, cantilever, "
|
"Only create support for critical regions including sharp tail, cantilever, "
|
||||||
"etc."
|
"etc."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Створювати підтримку тільки для критичних областей, включаючи гострий "
|
"Створювати підтримку тільки для критичних областей, включаючи гострий хвіст,"
|
||||||
"хвіст,консоль і т.д."
|
"консоль і т.д."
|
||||||
|
|
||||||
msgid "Ignore small overhangs"
|
msgid "Ignore small overhangs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -17040,8 +17147,8 @@ msgstr "Увімкнути контроль температури"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this option for automated chamber temperature control. This option "
|
"Enable this option for automated chamber temperature control. This option "
|
||||||
"activates the emitting of an M191 command before the "
|
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||||
"\"machine_start_gcode\"\n"
|
"\"\n"
|
||||||
" which sets the chamber temperature and waits until it is reached. In "
|
" 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 "
|
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||||
"chamber heater, if present.\n"
|
"chamber heater, if present.\n"
|
||||||
@@ -17219,9 +17326,9 @@ msgstr ""
|
|||||||
"Залежно від тривалості операції витирання, швидкості та тривалості "
|
"Залежно від тривалості операції витирання, швидкості та тривалості "
|
||||||
"втягування екструдера/нитки, може знадобитися рух накату для нитки.\n"
|
"втягування екструдера/нитки, може знадобитися рух накату для нитки.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Якщо встановити значення у параметрі \"Кількість втягування перед "
|
"Якщо встановити значення у параметрі \"Кількість втягування перед витиранням"
|
||||||
"витиранням\" нижче, надлишкове втягування буде виконано перед витиранням, "
|
"\" нижче, надлишкове втягування буде виконано перед витиранням, інакше воно "
|
||||||
"інакше воно буде виконано після нього."
|
"буде виконано після нього."
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The wiping tower can be used to clean up the residue on the nozzle and "
|
"The wiping tower can be used to clean up the residue on the nozzle and "
|
||||||
@@ -17338,6 +17445,12 @@ msgid ""
|
|||||||
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
|
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Rectangle"
|
||||||
|
msgstr "Прямокутник"
|
||||||
|
|
||||||
|
msgid "Rib"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Extra rib length"
|
msgid "Extra rib length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -17932,7 +18045,7 @@ msgid ""
|
|||||||
"machines in the list."
|
"machines in the list."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "downward machines settings"
|
msgid "Downward machines settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "The machine settings list needs to do downward checking."
|
msgid "The machine settings list needs to do downward checking."
|
||||||
@@ -17965,8 +18078,8 @@ msgid "Debug level"
|
|||||||
msgstr "Рівень налагодження"
|
msgstr "Рівень налагодження"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||||
"5:trace\n"
|
"trace\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Встановлює рівень реєстрації налагодження. 0: непереборний, 1: помилка, 2: "
|
"Встановлює рівень реєстрації налагодження. 0: непереборний, 1: помилка, 2: "
|
||||||
"попередження, 3: інформація, 4: налагодження, 5: трасування\n"
|
"попередження, 3: інформація, 4: налагодження, 5: трасування\n"
|
||||||
@@ -18496,13 +18609,13 @@ msgstr "Наданий файл не вдалося прочитати, оскі
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
|
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Невідомий формат файлу: вхідний файл повинен мати розширення .stl, .obj "
|
"Невідомий формат файлу: вхідний файл повинен мати розширення .stl, .obj або ."
|
||||||
"або .amf (.xml)."
|
"amf (.xml)."
|
||||||
|
|
||||||
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
|
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Невідомий формат файлу: вхідний файл повинен мати розширення .3mf "
|
"Невідомий формат файлу: вхідний файл повинен мати розширення .3mf або .zip."
|
||||||
"або .zip.amf."
|
"amf."
|
||||||
|
|
||||||
msgid "load_obj: failed to parse"
|
msgid "load_obj: failed to parse"
|
||||||
msgstr "помилка завантаження файлу OBJ: не вдалося розпізнати формат"
|
msgstr "помилка завантаження файлу OBJ: не вдалося розпізнати формат"
|
||||||
@@ -18620,10 +18733,6 @@ msgstr "Назва така сама, як інша існуюча назва н
|
|||||||
msgid "create new preset failed."
|
msgid "create new preset failed."
|
||||||
msgstr "не вдалося створити новий передвстановлений параметр."
|
msgstr "не вдалося створити новий передвстановлений параметр."
|
||||||
|
|
||||||
#, c-format, boost-format
|
|
||||||
msgid "The selected preset: %s is not found."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid "Could not find parameter: %s."
|
msgid "Could not find parameter: %s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -19300,6 +19409,23 @@ msgstr ""
|
|||||||
msgid "Input shaper type"
|
msgid "Input shaper type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Please ensure the selected type is compatible with your firmware version."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Marlin version => 2.1.2\n"
|
||||||
|
"Fixed-Time motion not yet implemented."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Klipper version => 0.9.0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"RepRap firmware version => 3.4.0\n"
|
||||||
|
"Check your firmware documentation for supported shaper types."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency (Start / End): "
|
msgid "Frequency (Start / End): "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -19334,6 +19460,9 @@ msgstr ""
|
|||||||
msgid "Input shaping Damp test"
|
msgid "Input shaping Damp test"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Check firmware compatibility."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency: "
|
msgid "Frequency: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -19669,8 +19798,8 @@ msgstr ""
|
|||||||
"Чи бажаєте ви їх перезаписати?"
|
"Чи бажаєте ви їх перезаписати?"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||||
"selected\".\n"
|
"\".\n"
|
||||||
"To add preset for more printers, please go to printer selection"
|
"To add preset for more printers, please go to printer selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ми б перейменували попередні налаштування на «Вибраний вами серійний "
|
"Ми б перейменували попередні налаштування на «Вибраний вами серійний "
|
||||||
@@ -19720,9 +19849,6 @@ msgstr ""
|
|||||||
msgid "Can't find my nozzle diameter"
|
msgid "Can't find my nozzle diameter"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Rectangle"
|
|
||||||
msgstr "Прямокутник"
|
|
||||||
|
|
||||||
msgid "Printable Space"
|
msgid "Printable Space"
|
||||||
msgstr "Простір для друку"
|
msgstr "Простір для друку"
|
||||||
|
|
||||||
@@ -21073,6 +21199,127 @@ msgstr ""
|
|||||||
msgid "More Colors"
|
msgid "More Colors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Network Plug-in Update Available"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bambu Network Plug-in Required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
|
||||||
|
"and remote printing."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Error: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Version to install:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Download and Install"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip for Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "A new version of the Bambu Network Plug-in is available."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Current version: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update to version:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Remind Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Don't Ask Again"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The Bambu Network Plug-in has been installed successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"A restart is required to load the new plug-in. Would you like to restart now?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "NO RAMMING AT ALL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Volumetric speed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Step file import parameters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Smaller linear and angular deflections result in higher-quality "
|
||||||
|
"transformations but increase the processing time."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Linear Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Angle Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Split compound and compsolid into multiple objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Number of triangular facets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Calculating, please wait..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. "
|
||||||
|
"Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament model is unknown. Still using the previous filament preset."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. A "
|
||||||
|
"random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. A random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: resources/data/hints.ini: [hint:Precise wall]
|
#: resources/data/hints.ini: [hint:Precise wall]
|
||||||
msgid ""
|
msgid ""
|
||||||
"Precise wall\n"
|
"Precise wall\n"
|
||||||
@@ -21508,9 +21755,6 @@ msgstr ""
|
|||||||
#~ msgid "Advance"
|
#~ msgid "Advance"
|
||||||
#~ msgstr "Профі"
|
#~ msgstr "Профі"
|
||||||
|
|
||||||
#~ msgid "Packing data to 3MF"
|
|
||||||
#~ msgstr "Упаковка даних у 3mf"
|
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "Filament shrinkage will not be used because filament shrinkage for the "
|
#~ "Filament shrinkage will not be used because filament shrinkage for the "
|
||||||
#~ "used filaments differs significantly."
|
#~ "used filaments differs significantly."
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Orca Slicer\n"
|
"Project-Id-Version: Orca Slicer\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
|
||||||
"PO-Revision-Date: 2025-10-02 17:43+0700\n"
|
"PO-Revision-Date: 2025-10-02 17:43+0700\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: hainguyen.ts13@gmail.com\n"
|
"Language-Team: hainguyen.ts13@gmail.com\n"
|
||||||
@@ -14,26 +14,6 @@ msgstr ""
|
|||||||
"X-Generator: Poedit 3.7\n"
|
"X-Generator: Poedit 3.7\n"
|
||||||
"X-Poedit-Basepath: .\n"
|
"X-Poedit-Basepath: .\n"
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. "
|
|
||||||
"Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament model is unknown. Still using the previous filament preset."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. Generic filament presets will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. A "
|
|
||||||
"random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. A random filament preset will be used."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "right"
|
msgid "right"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1564,6 +1544,30 @@ msgstr "Khoảng cách song song:"
|
|||||||
msgid "Flip by Face 2"
|
msgid "Flip by Face 2"
|
||||||
msgstr "Lật theo mặt 2"
|
msgstr "Lật theo mặt 2"
|
||||||
|
|
||||||
|
msgid "Assemble"
|
||||||
|
msgstr "Lắp ráp"
|
||||||
|
|
||||||
|
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "(Moving)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Point and point assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"It is recommended to assemble the objects first,\n"
|
||||||
|
"because the objects is restriced to bed \n"
|
||||||
|
"and only parts can be lifted."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Face and face assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Notice"
|
msgid "Notice"
|
||||||
msgstr "Thông báo"
|
msgstr "Thông báo"
|
||||||
|
|
||||||
@@ -1601,6 +1605,54 @@ msgstr ""
|
|||||||
msgid "Based on PrusaSlicer and BambuStudio"
|
msgid "Based on PrusaSlicer and BambuStudio"
|
||||||
msgstr "Dựa trên PrusaSlicer và BambuStudio"
|
msgstr "Dựa trên PrusaSlicer và BambuStudio"
|
||||||
|
|
||||||
|
msgid "STEP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "STL files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "OBJ files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "AMF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Gcode 3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "G-code files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Supported files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "ZIP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Project files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Known files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "INI files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "SVG files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Texture"
|
||||||
|
msgstr "Kết cấu"
|
||||||
|
|
||||||
|
msgid "Masked SLA files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Draco files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
||||||
"It will be appreciated if you report the issue to our team."
|
"It will be appreciated if you report the issue to our team."
|
||||||
@@ -1628,14 +1680,14 @@ msgstr "OrcaSlicer gặp ngoại lệ không xử lý được: %1%"
|
|||||||
msgid "Untitled"
|
msgid "Untitled"
|
||||||
msgstr "Không tiêu đề"
|
msgstr "Không tiêu đề"
|
||||||
|
|
||||||
msgid "Reloading network plugin..."
|
msgid "Reloading network plug-in..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Network Plugin"
|
msgid "Downloading Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Downloading Bambu Network Plug-in"
|
msgid "Downloading Bambu Network Plug-in"
|
||||||
msgstr "Đang tải Bambu Network Plug-in"
|
msgstr "Đang tải Bambu Network Plugin"
|
||||||
|
|
||||||
msgid "Login information expired. Please login again."
|
msgid "Login information expired. Please login again."
|
||||||
msgstr "Thông tin đăng nhập đã hết hạn. Vui lòng đăng nhập lại."
|
msgstr "Thông tin đăng nhập đã hết hạn. Vui lòng đăng nhập lại."
|
||||||
@@ -1724,6 +1776,9 @@ msgstr "Chọn file ZIP"
|
|||||||
msgid "Choose one file (GCODE/3MF):"
|
msgid "Choose one file (GCODE/3MF):"
|
||||||
msgstr "Chọn một file (GCODE/3MF):"
|
msgstr "Chọn một file (GCODE/3MF):"
|
||||||
|
|
||||||
|
msgid "Ext"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Some presets are modified."
|
msgid "Some presets are modified."
|
||||||
msgstr "Một số preset đã được sửa đổi."
|
msgstr "Một số preset đã được sửa đổi."
|
||||||
|
|
||||||
@@ -1783,7 +1838,7 @@ msgid ""
|
|||||||
"access, enabling full functionality with OrcaSlicer."
|
"access, enabling full functionality with OrcaSlicer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network Plugin Restriction"
|
msgid "Network Plug-in Restriction"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Privacy Policy Update"
|
msgid "Privacy Policy Update"
|
||||||
@@ -2018,6 +2073,9 @@ msgstr ""
|
|||||||
"Yes - Thay đổi các cài đặt này tự động\n"
|
"Yes - Thay đổi các cài đặt này tự động\n"
|
||||||
"No - Không thay đổi các cài đặt này cho tôi"
|
"No - Không thay đổi các cài đặt này cho tôi"
|
||||||
|
|
||||||
|
msgid "Suggestion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Chữ"
|
msgstr "Chữ"
|
||||||
|
|
||||||
@@ -2127,9 +2185,6 @@ msgstr "Chuyển đổi từ mét"
|
|||||||
msgid "Restore to meters"
|
msgid "Restore to meters"
|
||||||
msgstr "Khôi phục về mét"
|
msgstr "Khôi phục về mét"
|
||||||
|
|
||||||
msgid "Assemble"
|
|
||||||
msgstr "Lắp ráp"
|
|
||||||
|
|
||||||
msgid "Assemble the selected objects to an object with multiple parts"
|
msgid "Assemble the selected objects to an object with multiple parts"
|
||||||
msgstr "Lắp ráp các vật thể đã chọn thành vật thể có nhiều phần"
|
msgstr "Lắp ráp các vật thể đã chọn thành vật thể có nhiều phần"
|
||||||
|
|
||||||
@@ -2626,6 +2681,10 @@ msgstr "In nhiều màu"
|
|||||||
msgid "Line Type"
|
msgid "Line Type"
|
||||||
msgstr "Loại đường"
|
msgstr "Loại đường"
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "1x1 Grid: %d mm"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "More"
|
msgid "More"
|
||||||
msgstr "Thêm"
|
msgstr "Thêm"
|
||||||
|
|
||||||
@@ -2743,8 +2802,8 @@ msgstr "Vui lòng kiểm tra kết nối mạng của máy in và Orca."
|
|||||||
msgid "Connecting..."
|
msgid "Connecting..."
|
||||||
msgstr "Đang kết nối..."
|
msgstr "Đang kết nối..."
|
||||||
|
|
||||||
msgid "Auto-refill"
|
msgid "Auto Refill"
|
||||||
msgstr ""
|
msgstr "Tự động cấp lại"
|
||||||
|
|
||||||
msgid "Load"
|
msgid "Load"
|
||||||
msgstr "Nạp"
|
msgstr "Nạp"
|
||||||
@@ -3133,6 +3192,38 @@ msgid ""
|
|||||||
"Storage before sending to printer."
|
"Storage before sending to printer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossCreateObjectJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text object"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossUpdateJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Created text volume is empty. Change text or font."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for CreateSurfaceVolumeJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for UseSurfaceJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRN: This is the title of the action appearing in undo/redo stack.
|
||||||
|
#. It is same for Text and SVG.
|
||||||
|
msgid "Emboss attribute change"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text Volume"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Font doesn't have any shape for given text."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "There is no valid surface for text projection."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Thermal Preconditioning for first layer optimization"
|
msgid "Thermal Preconditioning for first layer optimization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -3457,9 +3548,6 @@ msgstr ""
|
|||||||
msgid "Nozzle"
|
msgid "Nozzle"
|
||||||
msgstr "Đầu phun"
|
msgstr "Đầu phun"
|
||||||
|
|
||||||
msgid "Ext"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
||||||
@@ -3526,9 +3614,6 @@ msgstr "In với filament trong AMS"
|
|||||||
msgid "Print with filaments mounted on the back of the chassis"
|
msgid "Print with filaments mounted on the back of the chassis"
|
||||||
msgstr "In với filament gắn ở mặt sau khung"
|
msgstr "In với filament gắn ở mặt sau khung"
|
||||||
|
|
||||||
msgid "Auto Refill"
|
|
||||||
msgstr "Tự động cấp lại"
|
|
||||||
|
|
||||||
msgid "Left"
|
msgid "Left"
|
||||||
msgstr "Trái"
|
msgstr "Trái"
|
||||||
|
|
||||||
@@ -3540,7 +3625,7 @@ msgid ""
|
|||||||
"following order."
|
"following order."
|
||||||
msgstr "Khi vật liệu hiện tại hết, máy in sẽ tiếp tục in theo thứ tự sau."
|
msgstr "Khi vật liệu hiện tại hết, máy in sẽ tiếp tục in theo thứ tự sau."
|
||||||
|
|
||||||
msgid "Identical filament: same brand, type and color"
|
msgid "Identical filament: same brand, type and color."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Group"
|
msgid "Group"
|
||||||
@@ -3674,8 +3759,8 @@ msgid "Calibration"
|
|||||||
msgstr "Hiệu chỉnh"
|
msgstr "Hiệu chỉnh"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Failed to download the plug-in. Please check your firewall settings and vpn "
|
"Failed to download the plug-in. Please check your firewall settings and VPN "
|
||||||
"software, check and retry."
|
"software and retry."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Tải plug-in thất bại. Vui lòng kiểm tra cài đặt firewall và phần mềm vpn , "
|
"Tải plug-in thất bại. Vui lòng kiểm tra cài đặt firewall và phần mềm vpn , "
|
||||||
"kiểm tra và thử lại."
|
"kiểm tra và thử lại."
|
||||||
@@ -3690,8 +3775,8 @@ msgid "Click here to see more info"
|
|||||||
msgstr "nhấn vào đây để xem thêm thông tin"
|
msgstr "nhấn vào đây để xem thêm thông tin"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The network plugin was installed but could not be loaded. Please restart the "
|
"The network plug-in was installed but could not be loaded. Please restart "
|
||||||
"application."
|
"the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Restart Required"
|
msgid "Restart Required"
|
||||||
@@ -3857,9 +3942,6 @@ msgstr "Tải hình dạng từ STL..."
|
|||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Cài đặt"
|
msgstr "Cài đặt"
|
||||||
|
|
||||||
msgid "Texture"
|
|
||||||
msgstr "Kết cấu"
|
|
||||||
|
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Xóa"
|
msgstr "Xóa"
|
||||||
|
|
||||||
@@ -4056,7 +4138,7 @@ msgstr ""
|
|||||||
"seam_slope_start_height cần nhỏ hơn layer_height.\n"
|
"seam_slope_start_height cần nhỏ hơn layer_height.\n"
|
||||||
"Đặt lại về 0."
|
"Đặt lại về 0."
|
||||||
|
|
||||||
#, fuzzy
|
#, fuzzy, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Lock depth should smaller than skin depth.\n"
|
"Lock depth should smaller than skin depth.\n"
|
||||||
"Reset to 50% of skin depth."
|
"Reset to 50% of skin depth."
|
||||||
@@ -4681,6 +4763,9 @@ msgstr ""
|
|||||||
msgid "Fan speed"
|
msgid "Fan speed"
|
||||||
msgstr "Tốc độ quạt"
|
msgstr "Tốc độ quạt"
|
||||||
|
|
||||||
|
msgid "°C"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Time"
|
msgid "Time"
|
||||||
msgstr "Thời gian"
|
msgstr "Thời gian"
|
||||||
|
|
||||||
@@ -4837,7 +4922,7 @@ msgstr "Tốc độ thực tế (mm/s)"
|
|||||||
msgid "Fan Speed (%)"
|
msgid "Fan Speed (%)"
|
||||||
msgstr "Tốc độ quạt (%)"
|
msgstr "Tốc độ quạt (%)"
|
||||||
|
|
||||||
msgid "Temperature (℃)"
|
msgid "Temperature (°C)"
|
||||||
msgstr "Nhiệt độ (°C)"
|
msgstr "Nhiệt độ (°C)"
|
||||||
|
|
||||||
msgid "Volumetric flow rate (mm³/s)"
|
msgid "Volumetric flow rate (mm³/s)"
|
||||||
@@ -5159,7 +5244,7 @@ msgstr "Thể tích:"
|
|||||||
msgid "Size:"
|
msgid "Size:"
|
||||||
msgstr "Kích thước:"
|
msgstr "Kích thước:"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||||
"separate the conflicted objects farther (%s <-> %s)."
|
"separate the conflicted objects farther (%s <-> %s)."
|
||||||
@@ -5232,7 +5317,7 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
||||||
"mixing in models. Please redjust flushing settings."
|
"mixing in models. Please readjust flushing settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Click Wiki for help."
|
msgid "Click Wiki for help."
|
||||||
@@ -6523,6 +6608,9 @@ msgstr ""
|
|||||||
"Cần ít nhất một bản ghi in thành công của cấu hình in này \n"
|
"Cần ít nhất một bản ghi in thành công của cấu hình in này \n"
|
||||||
"để đưa ra đánh giá tích cực (4 hoặc 5 sao)."
|
"để đưa ra đánh giá tích cực (4 hoặc 5 sao)."
|
||||||
|
|
||||||
|
msgid "click to add machine"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr "Trạng thái"
|
msgstr "Trạng thái"
|
||||||
|
|
||||||
@@ -6533,6 +6621,14 @@ msgstr ""
|
|||||||
msgid "Assistant(HMS)"
|
msgid "Assistant(HMS)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s (%s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Don't show again"
|
msgid "Don't show again"
|
||||||
msgstr "Không hiển thị lại"
|
msgstr "Không hiển thị lại"
|
||||||
|
|
||||||
@@ -6913,7 +7009,7 @@ msgstr ""
|
|||||||
msgid "Unavailable while heating maintenance function is on."
|
msgid "Unavailable while heating maintenance function is on."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Idel Heating Protection"
|
msgid "Idle Heating Protection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
||||||
@@ -7467,7 +7563,8 @@ msgid "Please resolve the slicing errors and publish again."
|
|||||||
msgstr "Vui lòng giải quyết các lỗi slice và xuất bản lại."
|
msgstr "Vui lòng giải quyết các lỗi slice và xuất bản lại."
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Network Plug-in is not detected. Network related features are unavailable."
|
"The network plug-in was not detected. Network related features are "
|
||||||
|
"unavailable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Không phát hiện plug-in mạng. Các tính năng liên quan đến mạng không khả "
|
"Không phát hiện plug-in mạng. Các tính năng liên quan đến mạng không khả "
|
||||||
"dụng."
|
"dụng."
|
||||||
@@ -8038,7 +8135,7 @@ msgstr ""
|
|||||||
msgid "filaments"
|
msgid "filaments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
msgid "Optimizes filament area maximum height by chosen filament count."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Features"
|
msgid "Features"
|
||||||
@@ -8236,40 +8333,40 @@ msgstr "Sợi và Màu sắc"
|
|||||||
msgid "Color only"
|
msgid "Color only"
|
||||||
msgstr "Chỉ màu"
|
msgstr "Chỉ màu"
|
||||||
|
|
||||||
msgid "Network plugin"
|
msgid "Network plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Enable network plugin"
|
msgid "Enable network plug-in"
|
||||||
msgstr "Bật plugin mạng"
|
msgstr "Bật plugin mạng"
|
||||||
|
|
||||||
msgid "Network plugin version"
|
msgid "Network plug-in version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Select the network plugin version to use"
|
msgid "Select the network plug-in version to use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "(Latest)"
|
msgid "(Latest)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin switched successfully."
|
msgid "Network plug-in switched successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to load network plugin. Please restart the application."
|
msgid "Failed to load network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You've selected network plugin version %s.\n"
|
"You've selected network plug-in version %s.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Would you like to download and install this version now?\n"
|
"Would you like to download and install this version now?\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Note: The application may need to restart after installation."
|
"Note: The application may need to restart after installation."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Download Network Plugin"
|
msgid "Download Network Plug-in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Associate files to OrcaSlicer"
|
msgid "Associate files to OrcaSlicer"
|
||||||
@@ -8338,19 +8435,16 @@ msgstr "gỡ lỗi"
|
|||||||
msgid "trace"
|
msgid "trace"
|
||||||
msgstr "theo dõi"
|
msgstr "theo dõi"
|
||||||
|
|
||||||
msgid "Network Plugin"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Reload"
|
msgid "Reload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload the network plugin without restarting the application"
|
msgid "Reload the network plug-in without restarting the application"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network plugin reloaded successfully."
|
msgid "Network plug-in reloaded successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Failed to reload network plugin. Please restart the application."
|
msgid "Failed to reload network plug-in. Please restart the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Reload Failed"
|
msgid "Reload Failed"
|
||||||
@@ -8569,7 +8663,10 @@ msgstr "Xuất bản đã bị hủy"
|
|||||||
msgid "Slicing Plate 1"
|
msgid "Slicing Plate 1"
|
||||||
msgstr "Đang slice bản 1"
|
msgstr "Đang slice bản 1"
|
||||||
|
|
||||||
msgid "Packing data to 3mf"
|
msgid "Packing data to 3MF"
|
||||||
|
msgstr "Đang đóng gói dữ liệu vào 3mf"
|
||||||
|
|
||||||
|
msgid "Uploading data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Jump to webpage"
|
msgid "Jump to webpage"
|
||||||
@@ -8882,8 +8979,8 @@ msgstr "Bản Smooth nhiệt độ cao"
|
|||||||
msgid "Textured PEI Plate"
|
msgid "Textured PEI Plate"
|
||||||
msgstr "Bản Textured PEI"
|
msgstr "Bản Textured PEI"
|
||||||
|
|
||||||
msgid "Cool Plate (Supertack)"
|
msgid "Cool Plate (SuperTack)"
|
||||||
msgstr ""
|
msgstr "Bản Cool (SuperTack)"
|
||||||
|
|
||||||
msgid "Click here if you can't connect to the printer"
|
msgid "Click here if you can't connect to the printer"
|
||||||
msgstr "Nhấp vào đây nếu bạn không thể kết nối với máy in"
|
msgstr "Nhấp vào đây nếu bạn không thể kết nối với máy in"
|
||||||
@@ -9197,7 +9294,7 @@ msgstr ""
|
|||||||
"tower tăng lên. Bạn vẫn muốn bật?"
|
"tower tăng lên. Bạn vẫn muốn bật?"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection. There may be flaws on the "
|
"A prime tower is required for clumping detection. There may be flaws on the "
|
||||||
"model without prime tower. Do you still want to enable clumping detection?"
|
"model without prime tower. Do you still want to enable clumping detection?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -9317,8 +9414,8 @@ msgstr ""
|
|||||||
msgid ""
|
msgid ""
|
||||||
"When recording timelapse without toolhead, it is recommended to add a "
|
"When recording timelapse without toolhead, it is recommended to add a "
|
||||||
"\"Timelapse Wipe Tower\" \n"
|
"\"Timelapse Wipe Tower\" \n"
|
||||||
"by right-click the empty position of build plate and choose \"Add "
|
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
"\"->\"Timelapse Wipe Tower\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Khi ghi timelapse không có đầu công cụ, khuyến nghị thêm \"Timelapse Wipe "
|
"Khi ghi timelapse không có đầu công cụ, khuyến nghị thêm \"Timelapse Wipe "
|
||||||
"Tower\" \n"
|
"Tower\" \n"
|
||||||
@@ -9532,9 +9629,6 @@ msgstr "Nhiệt độ in"
|
|||||||
msgid "Nozzle temperature when printing"
|
msgid "Nozzle temperature when printing"
|
||||||
msgstr "Nhiệt độ đầu phun khi in"
|
msgstr "Nhiệt độ đầu phun khi in"
|
||||||
|
|
||||||
msgid "Cool Plate (SuperTack)"
|
|
||||||
msgstr "Bản Cool (SuperTack)"
|
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
||||||
"means the filament does not support printing on the Cool Plate SuperTack."
|
"means the filament does not support printing on the Cool Plate SuperTack."
|
||||||
@@ -9989,6 +10083,12 @@ msgstr "Hiển thị tất cả preset (bao gồm cả không tương thích)"
|
|||||||
msgid "Select presets to compare"
|
msgid "Select presets to compare"
|
||||||
msgstr "Chọn preset để so sánh"
|
msgstr "Chọn preset để so sánh"
|
||||||
|
|
||||||
|
msgid "Left Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Right Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can only transfer to current active profile because it has been modified."
|
"You can only transfer to current active profile because it has been modified."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -10419,6 +10519,12 @@ msgstr "Nhấp vào đây để tải xuống."
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "Đăng nhập"
|
msgstr "Đăng nhập"
|
||||||
|
|
||||||
|
msgid "[Action Required] "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "[Action Required]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "The configuration package is changed in previous Config Guide"
|
msgid "The configuration package is changed in previous Config Guide"
|
||||||
msgstr "Gói cấu hình đã được thay đổi trong hướng dẫn cấu hình trước"
|
msgstr "Gói cấu hình đã được thay đổi trong hướng dẫn cấu hình trước"
|
||||||
|
|
||||||
@@ -11127,7 +11233,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection; otherwise, there may be "
|
"A prime tower is required for clumping detection; otherwise, there may be "
|
||||||
"flaws on the model."
|
"flaws on the model."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -11534,8 +11640,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 "
|
"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 "
|
"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 "
|
"đằ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://"
|
"đặt tên người dùng và mật khẩu vào URL theo định dạng sau: https://username:"
|
||||||
"username:password@your-octopi-address/"
|
"password@your-octopi-address/"
|
||||||
|
|
||||||
msgid "Device UI"
|
msgid "Device UI"
|
||||||
msgstr "Giao diện thiết bị"
|
msgstr "Giao diện thiết bị"
|
||||||
@@ -12666,7 +12772,7 @@ msgid ""
|
|||||||
"models\n"
|
"models\n"
|
||||||
"3. No filtering - creates internal bridges on every potential internal "
|
"3. No filtering - creates internal bridges on every potential internal "
|
||||||
"overhang. This option is useful for heavily slanted top surface models; "
|
"overhang. This option is useful for heavily slanted top surface models; "
|
||||||
"however, in most cases, it creates too many unnecessary bridges"
|
"however, in most cases, it creates too many unnecessary bridges."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Tùy chọn này có thể giúp giảm hiện tượng gối trên bề mặt trên trong model "
|
"Tùy chọn này có thể giúp giảm hiện tượng gối trên bề mặt trên trong model "
|
||||||
"nghiêng mạnh hoặc cong.\n"
|
"nghiêng mạnh hoặc cong.\n"
|
||||||
@@ -12685,7 +12791,7 @@ msgstr ""
|
|||||||
"cầu không cần thiết. Điều này hoạt động tốt cho hầu hết model khó\n"
|
"cầu không cần thiết. Điều này hoạt động tốt cho hầu hết model khó\n"
|
||||||
"3. Không lọc - tạo cầu bên trong trên mọi phần nhô bên trong tiềm năng. Tùy "
|
"3. Không lọc - tạo cầu bên trong trên mọi phần nhô bên trong tiềm năng. Tùy "
|
||||||
"chọn này hữu ích cho model bề mặt trên nghiêng mạnh; tuy nhiên, trong hầu "
|
"chọn này hữu ích cho model bề mặt trên nghiêng mạnh; tuy nhiên, trong hầu "
|
||||||
"hết trường hợp, nó tạo quá nhiều cầu không cần thiết"
|
"hết trường hợp, nó tạo quá nhiều cầu không cần thiết."
|
||||||
|
|
||||||
msgid "Limited filtering"
|
msgid "Limited filtering"
|
||||||
msgstr "Lọc giới hạn"
|
msgstr "Lọc giới hạn"
|
||||||
@@ -13161,7 +13267,7 @@ msgid ""
|
|||||||
"less acceleration you print, the larger the range of acceptable PA values. "
|
"less acceleration you print, the larger the range of acceptable PA values. "
|
||||||
"If no difference is visible, use the PA value from the faster test\n"
|
"If no difference is visible, use the PA value from the faster test\n"
|
||||||
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
||||||
"here and save your filament profile"
|
"here and save your filament profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Thêm bộ giá trị áp suất nâng cao (PA), tốc độ lưu lượng thể tích và gia tốc "
|
"Thêm bộ giá trị áp suất nâng cao (PA), tốc độ lưu lượng thể tích và gia tốc "
|
||||||
"chúng được đo, ngăn cách bằng dấu phẩy. Một bộ giá trị trên mỗi dòng. Ví dụ\n"
|
"chúng được đo, ngăn cách bằng dấu phẩy. Một bộ giá trị trên mỗi dòng. Ví dụ\n"
|
||||||
@@ -13186,7 +13292,7 @@ msgstr ""
|
|||||||
"càng lớn. Nếu không thấy sự khác biệt, hãy sử dụng giá trị PA từ kiểm tra "
|
"càng lớn. Nếu không thấy sự khác biệt, hãy sử dụng giá trị PA từ kiểm tra "
|
||||||
"nhanh hơn\n"
|
"nhanh hơn\n"
|
||||||
"3. Nhập bộ ba giá trị PA, Lưu lượng và Gia tốc vào hộp văn bản ở đây và lưu "
|
"3. Nhập bộ ba giá trị PA, Lưu lượng và Gia tốc vào hộp văn bản ở đây và lưu "
|
||||||
"hồ sơ filament của bạn"
|
"hồ sơ filament của bạn."
|
||||||
|
|
||||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||||
msgstr "Bật áp suất nâng cao thích ứng cho phần nhô (beta)"
|
msgstr "Bật áp suất nâng cao thích ứng cho phần nhô (beta)"
|
||||||
@@ -13945,8 +14051,8 @@ msgid "mm/s² or %"
|
|||||||
msgstr "mm/s² hoặc %"
|
msgstr "mm/s² hoặc %"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
"g. 100%), it will be calculated based on the default acceleration."
|
||||||
msgstr ""
|
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í "
|
"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."
|
"dụ 100%), nó sẽ được tính dựa trên gia tốc mặc định."
|
||||||
@@ -14064,14 +14170,14 @@ msgstr "Tốc độ quạt đầy tại lớp"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Fan speed will be ramped up linearly from zero at layer "
|
"Fan speed will be ramped up linearly from zero at layer "
|
||||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Tốc độ quạt sẽ được tăng tuyến tính từ không tại lớp "
|
"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 "
|
"\"close_fan_the_first_x_layers\" đến tối đa tại lớp \"full_fan_speed_layer"
|
||||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" sẽ bị bỏ qua nếu thấp hơn "
|
"\". \"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 độ "
|
"\"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."
|
"tối đa được phép tại lớp \"close_fan_the_first_x_layers\" + 1."
|
||||||
|
|
||||||
@@ -14574,9 +14680,9 @@ msgstr "Gắn nhãn đối tượng"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this to add comments into the G-code labeling print moves with what "
|
"Enable this to add comments into the G-code labeling print moves with what "
|
||||||
"object they belong to, which is useful for the Octoprint CancelObject "
|
"object they belong to, which is useful for the Octoprint CancelObject plug-"
|
||||||
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
|
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
|
||||||
"setup and Wipe into Object / Wipe into Infill."
|
"and Wipe into Object / Wipe into Infill."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Bật điều này để thêm chú thích vào G-code gắn nhãn chuyển động in với đối "
|
"Bật điều này để thêm chú thích vào G-code gắn nhãn chuyển động in với đối "
|
||||||
"tượng nào chúng thuộc về, hữu ích cho plugin CancelObject Octoprint. Cài đặt "
|
"tượng nào chúng thuộc về, hữu ích cho plugin CancelObject Octoprint. Cài đặt "
|
||||||
@@ -14904,10 +15010,10 @@ msgstr "Loại ủi"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Ironing is using small flow to print on same height of surface again to make "
|
"Ironing is using small flow to print on same height of surface again to make "
|
||||||
"flat surface more smooth. This setting controls which layer being ironed"
|
"flat surface more smooth. This setting controls which layer being ironed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ủi là sử dụng lưu lượng nhỏ để in lại trên cùng chiều cao của bề mặt để làm "
|
"Ủi là sử dụng lưu lượng nhỏ để in lại trên cùng chiều cao của bề mặt để làm "
|
||||||
"cho bề mặt phẳng mịn hơn. Cài đặt này điều khiển lớp nào được ủi"
|
"cho bề mặt phẳng mịn hơn. Cài đặt này điều khiển lớp nào được ủi."
|
||||||
|
|
||||||
msgid "No ironing"
|
msgid "No ironing"
|
||||||
msgstr "Không ủi"
|
msgstr "Không ủi"
|
||||||
@@ -15930,8 +16036,8 @@ msgid "Role base wipe speed"
|
|||||||
msgstr "Tốc độ lau dựa trên vai trò"
|
msgstr "Tốc độ lau dựa trên vai trò"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
"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 "
|
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||||
"wipe action."
|
"wipe action."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -16193,7 +16299,7 @@ msgid ""
|
|||||||
"timelapse video when printing completes. If smooth mode is selected, the "
|
"timelapse video when printing completes. If smooth mode is selected, the "
|
||||||
"toolhead will move to the excess chute after each layer is printed and then "
|
"toolhead will move to the excess chute after each layer is printed and then "
|
||||||
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
||||||
"process of taking a snapshot, prime tower is required for smooth mode to "
|
"process of taking a snapshot, a prime tower is required for smooth mode to "
|
||||||
"wipe nozzle."
|
"wipe nozzle."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Nếu chế độ mịn hoặc truyền thống được chọn, video timelapse sẽ được tạo cho "
|
"Nếu chế độ mịn hoặc truyền thống được chọn, video timelapse sẽ được tạo cho "
|
||||||
@@ -16781,8 +16887,8 @@ msgstr "Kích hoạt điều khiển nhiệt độ"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this option for automated chamber temperature control. This option "
|
"Enable this option for automated chamber temperature control. This option "
|
||||||
"activates the emitting of an M191 command before the "
|
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||||
"\"machine_start_gcode\"\n"
|
"\"\n"
|
||||||
" which sets the chamber temperature and waits until it is reached. In "
|
" 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 "
|
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||||
"chamber heater, if present.\n"
|
"chamber heater, if present.\n"
|
||||||
@@ -17080,6 +17186,12 @@ msgstr ""
|
|||||||
"2. Nón: Một nón có bo tròn ở dưới để giúp ổn định wipe tower.\n"
|
"2. Nón: Một nón có bo tròn ở dưới để giúp ổn định wipe tower.\n"
|
||||||
"3. Gân: Thêm bốn gân vào thành tower để tăng cường độ ổn định."
|
"3. Gân: Thêm bốn gân vào thành tower để tăng cường độ ổn định."
|
||||||
|
|
||||||
|
msgid "Rectangle"
|
||||||
|
msgstr "Hình chữ nhật"
|
||||||
|
|
||||||
|
msgid "Rib"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Extra rib length"
|
msgid "Extra rib length"
|
||||||
msgstr "Độ dài gân bổ sung"
|
msgstr "Độ dài gân bổ sung"
|
||||||
|
|
||||||
@@ -17681,8 +17793,8 @@ msgstr ""
|
|||||||
"Nếu được bật, kiểm tra máy hiện tại có tương thích ngược với các máy trong "
|
"Nếu được bật, kiểm tra máy hiện tại có tương thích ngược với các máy trong "
|
||||||
"danh sách hay không."
|
"danh sách hay không."
|
||||||
|
|
||||||
msgid "downward machines settings"
|
msgid "Downward machines settings"
|
||||||
msgstr "cài đặt máy tương thích ngược"
|
msgstr "Cài đặt máy tương thích ngược"
|
||||||
|
|
||||||
msgid "The machine settings list needs to do downward checking."
|
msgid "The machine settings list needs to do downward checking."
|
||||||
msgstr "Danh sách cài đặt máy cần thực hiện kiểm tra tương thích ngược."
|
msgstr "Danh sách cài đặt máy cần thực hiện kiểm tra tương thích ngược."
|
||||||
@@ -17714,11 +17826,11 @@ msgid "Debug level"
|
|||||||
msgstr "Mức gỡ lỗi"
|
msgstr "Mức gỡ lỗi"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||||
"5:trace\n"
|
"trace\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Đặt mức ghi log gỡ lỗi. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
"Đặt mức ghi log gỡ lỗi. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||||
"5:trace\n"
|
"trace\n"
|
||||||
|
|
||||||
msgid "Enable timelapse for print"
|
msgid "Enable timelapse for print"
|
||||||
msgstr "Bật timelapse cho in"
|
msgstr "Bật timelapse cho in"
|
||||||
@@ -18247,13 +18359,13 @@ msgstr "File được cung cấp không thể đọc được vì nó trống"
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
|
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Định dạng file không xác định. File đầu vào phải có phần mở "
|
"Định dạng file không xác định. File đầu vào phải có phần mở rộng .stl, ."
|
||||||
"rộng .stl, .obj, .amf(.xml)."
|
"obj, .amf(.xml)."
|
||||||
|
|
||||||
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
|
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Định dạng file không xác định. File đầu vào phải có phần mở rộng .3mf "
|
"Định dạng file không xác định. File đầu vào phải có phần mở rộng .3mf hoặc ."
|
||||||
"hoặc .zip.amf."
|
"zip.amf."
|
||||||
|
|
||||||
msgid "load_obj: failed to parse"
|
msgid "load_obj: failed to parse"
|
||||||
msgstr "load_obj: phân tích thất bại"
|
msgstr "load_obj: phân tích thất bại"
|
||||||
@@ -18370,10 +18482,6 @@ msgstr "Tên giống với tên cài đặt sẵn khác hiện có"
|
|||||||
msgid "create new preset failed."
|
msgid "create new preset failed."
|
||||||
msgstr "tạo cài đặt sẵn mới thất bại."
|
msgstr "tạo cài đặt sẵn mới thất bại."
|
||||||
|
|
||||||
#, c-format, boost-format
|
|
||||||
msgid "The selected preset: %s is not found."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid "Could not find parameter: %s."
|
msgid "Could not find parameter: %s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -19047,6 +19155,23 @@ msgstr "Tháp nhanh"
|
|||||||
msgid "Input shaper type"
|
msgid "Input shaper type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Please ensure the selected type is compatible with your firmware version."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Marlin version => 2.1.2\n"
|
||||||
|
"Fixed-Time motion not yet implemented."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Klipper version => 0.9.0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"RepRap firmware version => 3.4.0\n"
|
||||||
|
"Check your firmware documentation for supported shaper types."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency (Start / End): "
|
msgid "Frequency (Start / End): "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -19083,6 +19208,9 @@ msgstr "Vui lòng nhập hệ số giảm chấn hợp lệ (0 < Hệ số giả
|
|||||||
msgid "Input shaping Damp test"
|
msgid "Input shaping Damp test"
|
||||||
msgstr "Kiểm tra giảm chấn input shaping"
|
msgstr "Kiểm tra giảm chấn input shaping"
|
||||||
|
|
||||||
|
msgid "Check firmware compatibility."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency: "
|
msgid "Frequency: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -19416,8 +19544,8 @@ msgstr ""
|
|||||||
"Bạn có muốn viết lại nó không?"
|
"Bạn có muốn viết lại nó không?"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||||
"selected\".\n"
|
"\".\n"
|
||||||
"To add preset for more printers, please go to printer selection"
|
"To add preset for more printers, please go to printer selection"
|
||||||
msgstr ""
|
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 "
|
"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 "
|
||||||
@@ -19466,9 +19594,6 @@ msgstr ""
|
|||||||
msgid "Can't find my nozzle diameter"
|
msgid "Can't find my nozzle diameter"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Rectangle"
|
|
||||||
msgstr "Hình chữ nhật"
|
|
||||||
|
|
||||||
msgid "Printable Space"
|
msgid "Printable Space"
|
||||||
msgstr "Không gian có thể in"
|
msgstr "Không gian có thể in"
|
||||||
|
|
||||||
@@ -20805,6 +20930,127 @@ msgstr ""
|
|||||||
msgid "More Colors"
|
msgid "More Colors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Network Plug-in Update Available"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bambu Network Plug-in Required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
|
||||||
|
"and remote printing."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Error: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Version to install:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Download and Install"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip for Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "A new version of the Bambu Network Plug-in is available."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Current version: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update to version:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Remind Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Don't Ask Again"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The Bambu Network Plug-in has been installed successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"A restart is required to load the new plug-in. Would you like to restart now?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "NO RAMMING AT ALL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Volumetric speed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Step file import parameters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Smaller linear and angular deflections result in higher-quality "
|
||||||
|
"transformations but increase the processing time."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Linear Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Angle Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Split compound and compsolid into multiple objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Number of triangular facets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Calculating, please wait..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. "
|
||||||
|
"Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament model is unknown. Still using the previous filament preset."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. Generic filament presets will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. A "
|
||||||
|
"random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. A random filament preset will be used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: resources/data/hints.ini: [hint:Precise wall]
|
#: resources/data/hints.ini: [hint:Precise wall]
|
||||||
msgid ""
|
msgid ""
|
||||||
"Precise wall\n"
|
"Precise wall\n"
|
||||||
@@ -21243,12 +21489,10 @@ msgstr ""
|
|||||||
#~ msgstr "Nâng cao"
|
#~ msgstr "Nâng cao"
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "Disable to use latest network plugin that supports new BambuLab firmwares."
|
#~ "Disable to use latest network plug-in that supports new BambuLab "
|
||||||
|
#~ "firmwares."
|
||||||
#~ msgstr "Tắt để sử dụng plugin mạng mới nhất hỗ trợ firmware BambuLab mới."
|
#~ msgstr "Tắt để sử dụng plugin mạng mới nhất hỗ trợ firmware BambuLab mới."
|
||||||
|
|
||||||
#~ msgid "Packing data to 3MF"
|
|
||||||
#~ msgstr "Đang đóng gói dữ liệu vào 3mf"
|
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "Controls the density (spacing) of external bridge lines. 100% means solid "
|
#~ "Controls the density (spacing) of external bridge lines. 100% means solid "
|
||||||
#~ "bridge. Default is 100%.\n"
|
#~ "bridge. Default is 100%.\n"
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Slic3rPE\n"
|
"Project-Id-Version: Slic3rPE\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
"POT-Creation-Date: 2026-03-06 04:49+0800\n"
|
||||||
"PO-Revision-Date: 2026-02-28 00:59\n"
|
"PO-Revision-Date: 2026-02-28 00:59\n"
|
||||||
"Last-Translator: Handle <mail@bysb.net>\n"
|
"Last-Translator: Handle <mail@bysb.net>\n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
@@ -17,26 +17,6 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: OrcaSlicer Translation Helper\n"
|
"X-Generator: OrcaSlicer Translation Helper\n"
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. "
|
|
||||||
"Generic filament presets will be used."
|
|
||||||
msgstr "此耗材可能于当前设备设置不兼容,将使用通用耗材预设。"
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament model is unknown. Still using the previous filament preset."
|
|
||||||
msgstr "此耗材型号未知,将使用先前的耗材预设。"
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. Generic filament presets will be used."
|
|
||||||
msgstr "此耗材型号未知,将使用通用耗材预设。"
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. A "
|
|
||||||
"random filament preset will be used."
|
|
||||||
msgstr "此耗材可能与当前设备设置不兼容,将使用随机耗材预设。"
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. A random filament preset will be used."
|
|
||||||
msgstr "此耗材可能于当前设备设置不兼容,将使用随机耗材预设。"
|
|
||||||
|
|
||||||
msgid "right"
|
msgid "right"
|
||||||
msgstr "右"
|
msgstr "右"
|
||||||
|
|
||||||
@@ -79,7 +59,7 @@ msgstr "泛光PLA的粗糙表面可能会加速AMS的磨损,尤其是AMS Lite
|
|||||||
msgid ""
|
msgid ""
|
||||||
"CF/GF filaments are hard and brittle, it's easy to break or get stuck in "
|
"CF/GF filaments are hard and brittle, it's easy to break or get stuck in "
|
||||||
"AMS, please use with caution."
|
"AMS, please use with caution."
|
||||||
msgstr "CF/GF耗材丝丝又硬又脆,在AMS中很容易断裂或卡住,请谨慎使用。"
|
msgstr "CF/GF耗材丝又硬又脆,在AMS中很容易断裂或卡住,请谨慎使用。"
|
||||||
|
|
||||||
msgid "PPS-CF is brittle and could break in bended PTFE tube above Toolhead."
|
msgid "PPS-CF is brittle and could break in bended PTFE tube above Toolhead."
|
||||||
msgstr "PPS-CF材质较脆,用在工具头上方的弯曲PTFE管中可能会断裂。"
|
msgstr "PPS-CF材质较脆,用在工具头上方的弯曲PTFE管中可能会断裂。"
|
||||||
@@ -514,7 +494,7 @@ msgid "Cut position"
|
|||||||
msgstr "切割位置"
|
msgstr "切割位置"
|
||||||
|
|
||||||
msgid "Build Volume"
|
msgid "Build Volume"
|
||||||
msgstr "零件体积"
|
msgstr "打印体积"
|
||||||
|
|
||||||
msgid "Part"
|
msgid "Part"
|
||||||
msgstr "零件"
|
msgstr "零件"
|
||||||
@@ -700,7 +680,7 @@ msgid "Delete connector"
|
|||||||
msgstr "删除连接器"
|
msgstr "删除连接器"
|
||||||
|
|
||||||
msgid "Mesh name"
|
msgid "Mesh name"
|
||||||
msgstr "Mesh名"
|
msgstr "网格名称"
|
||||||
|
|
||||||
msgid "Detail level"
|
msgid "Detail level"
|
||||||
msgstr "细节等级"
|
msgstr "细节等级"
|
||||||
@@ -1552,6 +1532,30 @@ msgstr "平行距离:"
|
|||||||
msgid "Flip by Face 2"
|
msgid "Flip by Face 2"
|
||||||
msgstr "通过面2翻转"
|
msgstr "通过面2翻转"
|
||||||
|
|
||||||
|
msgid "Assemble"
|
||||||
|
msgstr "组合"
|
||||||
|
|
||||||
|
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "(Moving)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Point and point assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"It is recommended to assemble the objects first,\n"
|
||||||
|
"because the objects is restriced to bed \n"
|
||||||
|
"and only parts can be lifted."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Face and face assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Notice"
|
msgid "Notice"
|
||||||
msgstr "通知"
|
msgstr "通知"
|
||||||
|
|
||||||
@@ -1563,7 +1567,7 @@ msgid "%1% was replaced with %2%"
|
|||||||
msgstr "%1%已被%2%替换"
|
msgstr "%1%已被%2%替换"
|
||||||
|
|
||||||
msgid "The configuration may be generated by a newer version of OrcaSlicer."
|
msgid "The configuration may be generated by a newer version of OrcaSlicer."
|
||||||
msgstr "此配置可能由新版本的逆戟鲸生成"
|
msgstr "此配置可能由新版本的逆戟鲸切片器生成"
|
||||||
|
|
||||||
msgid "Some values have been replaced. Please check them:"
|
msgid "Some values have been replaced. Please check them:"
|
||||||
msgstr "部分数值已被替换,请检查:"
|
msgstr "部分数值已被替换,请检查:"
|
||||||
@@ -1588,6 +1592,54 @@ msgstr "配置文件“%1%”已被加载,但部分数值未被识别。"
|
|||||||
msgid "Based on PrusaSlicer and BambuStudio"
|
msgid "Based on PrusaSlicer and BambuStudio"
|
||||||
msgstr "基于PrusaSlicer和BambuStudio"
|
msgstr "基于PrusaSlicer和BambuStudio"
|
||||||
|
|
||||||
|
msgid "STEP files"
|
||||||
|
msgstr "STEP 文件"
|
||||||
|
|
||||||
|
msgid "STL files"
|
||||||
|
msgstr "STL 文件"
|
||||||
|
|
||||||
|
msgid "OBJ files"
|
||||||
|
msgstr "OBJ 文件"
|
||||||
|
|
||||||
|
msgid "AMF files"
|
||||||
|
msgstr "AMF 文件"
|
||||||
|
|
||||||
|
msgid "3MF files"
|
||||||
|
msgstr "3MF 文件"
|
||||||
|
|
||||||
|
msgid "Gcode 3MF files"
|
||||||
|
msgstr "Gcode 3MF 文件"
|
||||||
|
|
||||||
|
msgid "G-code files"
|
||||||
|
msgstr "G-code 文件"
|
||||||
|
|
||||||
|
msgid "Supported files"
|
||||||
|
msgstr "支持的文件"
|
||||||
|
|
||||||
|
msgid "ZIP files"
|
||||||
|
msgstr "ZIP 文件"
|
||||||
|
|
||||||
|
msgid "Project files"
|
||||||
|
msgstr "项目文件"
|
||||||
|
|
||||||
|
msgid "Known files"
|
||||||
|
msgstr "已知文件"
|
||||||
|
|
||||||
|
msgid "INI files"
|
||||||
|
msgstr "INI 文件"
|
||||||
|
|
||||||
|
msgid "SVG files"
|
||||||
|
msgstr "SVG 文件"
|
||||||
|
|
||||||
|
msgid "Texture"
|
||||||
|
msgstr "纹理"
|
||||||
|
|
||||||
|
msgid "Masked SLA files"
|
||||||
|
msgstr "Masked SLA 文件"
|
||||||
|
|
||||||
|
msgid "Draco files"
|
||||||
|
msgstr "Draco 文件"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
||||||
"It will be appreciated if you report the issue to our team."
|
"It will be appreciated if you report the issue to our team."
|
||||||
@@ -1615,10 +1667,10 @@ msgstr "OrcaSlicer 捕捉到一个未处理的异常:%1%"
|
|||||||
msgid "Untitled"
|
msgid "Untitled"
|
||||||
msgstr "未命名"
|
msgstr "未命名"
|
||||||
|
|
||||||
msgid "Reloading network plugin..."
|
msgid "Reloading network plug-in..."
|
||||||
msgstr "正在重新加载网络插件..."
|
msgstr "正在重新加载网络插件..."
|
||||||
|
|
||||||
msgid "Downloading Network Plugin"
|
msgid "Downloading Network Plug-in"
|
||||||
msgstr "正在下载网络插件"
|
msgstr "正在下载网络插件"
|
||||||
|
|
||||||
msgid "Downloading Bambu Network Plug-in"
|
msgid "Downloading Bambu Network Plug-in"
|
||||||
@@ -1666,7 +1718,7 @@ msgid "Click to download new version in default browser: %s"
|
|||||||
msgstr "在默认浏览器中点击下载最新版本: %s"
|
msgstr "在默认浏览器中点击下载最新版本: %s"
|
||||||
|
|
||||||
msgid "The Orca Slicer needs an upgrade"
|
msgid "The Orca Slicer needs an upgrade"
|
||||||
msgstr "逆戟鲸需要进行升级"
|
msgstr "逆戟鲸切片器需要进行升级"
|
||||||
|
|
||||||
msgid "This is the newest version."
|
msgid "This is the newest version."
|
||||||
msgstr "已经是最新版本。"
|
msgstr "已经是最新版本。"
|
||||||
@@ -1708,6 +1760,9 @@ msgstr "选择ZIP文件"
|
|||||||
msgid "Choose one file (GCODE/3MF):"
|
msgid "Choose one file (GCODE/3MF):"
|
||||||
msgstr "选择一个文件(GCODE/3MF):"
|
msgstr "选择一个文件(GCODE/3MF):"
|
||||||
|
|
||||||
|
msgid "Ext"
|
||||||
|
msgstr "分机"
|
||||||
|
|
||||||
msgid "Some presets are modified."
|
msgid "Some presets are modified."
|
||||||
msgstr "预设已被修改。"
|
msgstr "预设已被修改。"
|
||||||
|
|
||||||
@@ -1773,7 +1828,7 @@ msgstr ""
|
|||||||
"\n"
|
"\n"
|
||||||
"开发者模式允许打印机仅通过局域网访问工作,从而实现与 OrcaSlicer 的完整功能。"
|
"开发者模式允许打印机仅通过局域网访问工作,从而实现与 OrcaSlicer 的完整功能。"
|
||||||
|
|
||||||
msgid "Network Plugin Restriction"
|
msgid "Network Plug-in Restriction"
|
||||||
msgstr "网络插件限制"
|
msgstr "网络插件限制"
|
||||||
|
|
||||||
msgid "Privacy Policy Update"
|
msgid "Privacy Policy Update"
|
||||||
@@ -2006,6 +2061,9 @@ msgstr ""
|
|||||||
"是 - 自动调整这些设置\n"
|
"是 - 自动调整这些设置\n"
|
||||||
"否 - 不用为我调整这些设置"
|
"否 - 不用为我调整这些设置"
|
||||||
|
|
||||||
|
msgid "Suggestion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "文字浮雕"
|
msgstr "文字浮雕"
|
||||||
|
|
||||||
@@ -2115,9 +2173,6 @@ msgstr "从米转换"
|
|||||||
msgid "Restore to meters"
|
msgid "Restore to meters"
|
||||||
msgstr "恢复到米"
|
msgstr "恢复到米"
|
||||||
|
|
||||||
msgid "Assemble"
|
|
||||||
msgstr "组合"
|
|
||||||
|
|
||||||
msgid "Assemble the selected objects to an object with multiple parts"
|
msgid "Assemble the selected objects to an object with multiple parts"
|
||||||
msgstr "组合所选对象为一个多零件对象"
|
msgstr "组合所选对象为一个多零件对象"
|
||||||
|
|
||||||
@@ -2604,6 +2659,10 @@ msgstr "多色打印"
|
|||||||
msgid "Line Type"
|
msgid "Line Type"
|
||||||
msgstr "走线类型"
|
msgstr "走线类型"
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "1x1 Grid: %d mm"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "More"
|
msgid "More"
|
||||||
msgstr "详情"
|
msgstr "详情"
|
||||||
|
|
||||||
@@ -2721,8 +2780,8 @@ msgstr "请检查打印机和工作室的网络连接"
|
|||||||
msgid "Connecting..."
|
msgid "Connecting..."
|
||||||
msgstr "连接中..."
|
msgstr "连接中..."
|
||||||
|
|
||||||
msgid "Auto-refill"
|
msgid "Auto Refill"
|
||||||
msgstr "自动补充"
|
msgstr "自动补给"
|
||||||
|
|
||||||
msgid "Load"
|
msgid "Load"
|
||||||
msgstr "进料"
|
msgstr "进料"
|
||||||
@@ -3102,6 +3161,38 @@ msgid ""
|
|||||||
"Storage before sending to printer."
|
"Storage before sending to printer."
|
||||||
msgstr "打印机存储器为只读模式,请将其替换为正常的存储器后再向打印机发送内容。"
|
msgstr "打印机存储器为只读模式,请将其替换为正常的存储器后再向打印机发送内容。"
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossCreateObjectJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text object"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossUpdateJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Created text volume is empty. Change text or font."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for CreateSurfaceVolumeJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for UseSurfaceJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRN: This is the title of the action appearing in undo/redo stack.
|
||||||
|
#. It is same for Text and SVG.
|
||||||
|
msgid "Emboss attribute change"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text Volume"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Font doesn't have any shape for given text."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "There is no valid surface for text projection."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Thermal Preconditioning for first layer optimization"
|
msgid "Thermal Preconditioning for first layer optimization"
|
||||||
msgstr "用于第一层优化的热预处理"
|
msgstr "用于第一层优化的热预处理"
|
||||||
|
|
||||||
@@ -3424,9 +3515,6 @@ msgstr "右喷嘴"
|
|||||||
msgid "Nozzle"
|
msgid "Nozzle"
|
||||||
msgstr "喷嘴"
|
msgstr "喷嘴"
|
||||||
|
|
||||||
msgid "Ext"
|
|
||||||
msgstr "分机"
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
||||||
@@ -3493,9 +3581,6 @@ msgstr "采用AMS里的材料打印"
|
|||||||
msgid "Print with filaments mounted on the back of the chassis"
|
msgid "Print with filaments mounted on the back of the chassis"
|
||||||
msgstr "采用挂载在机箱背部的材料打印"
|
msgstr "采用挂载在机箱背部的材料打印"
|
||||||
|
|
||||||
msgid "Auto Refill"
|
|
||||||
msgstr "自动补给"
|
|
||||||
|
|
||||||
msgid "Left"
|
msgid "Left"
|
||||||
msgstr "左"
|
msgstr "左"
|
||||||
|
|
||||||
@@ -3507,7 +3592,7 @@ msgid ""
|
|||||||
"following order."
|
"following order."
|
||||||
msgstr "当前材料耗尽时,打印机将按照以下顺序继续打印。"
|
msgstr "当前材料耗尽时,打印机将按照以下顺序继续打印。"
|
||||||
|
|
||||||
msgid "Identical filament: same brand, type and color"
|
msgid "Identical filament: same brand, type and color."
|
||||||
msgstr "相同耗材:同品牌、同型号、同色。"
|
msgstr "相同耗材:同品牌、同型号、同色。"
|
||||||
|
|
||||||
msgid "Group"
|
msgid "Group"
|
||||||
@@ -3639,8 +3724,8 @@ msgid "Calibration"
|
|||||||
msgstr "校准"
|
msgstr "校准"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Failed to download the plug-in. Please check your firewall settings and vpn "
|
"Failed to download the plug-in. Please check your firewall settings and VPN "
|
||||||
"software, check and retry."
|
"software and retry."
|
||||||
msgstr "插件下载失败。请检查您的防火墙设置和vpn软件,检查后重试。"
|
msgstr "插件下载失败。请检查您的防火墙设置和vpn软件,检查后重试。"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -3655,8 +3740,8 @@ msgid "Click here to see more info"
|
|||||||
msgstr "点击这里查看更多信息"
|
msgstr "点击这里查看更多信息"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The network plugin was installed but could not be loaded. Please restart the "
|
"The network plug-in was installed but could not be loaded. Please restart "
|
||||||
"application."
|
"the application."
|
||||||
msgstr "网络插件已安装但无法加载。请重新启动应用程序。"
|
msgstr "网络插件已安装但无法加载。请重新启动应用程序。"
|
||||||
|
|
||||||
msgid "Restart Required"
|
msgid "Restart Required"
|
||||||
@@ -3815,9 +3900,6 @@ msgstr "从STL文件加载形状..."
|
|||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "设置"
|
msgstr "设置"
|
||||||
|
|
||||||
msgid "Texture"
|
|
||||||
msgstr "纹理"
|
|
||||||
|
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "移除"
|
msgstr "移除"
|
||||||
|
|
||||||
@@ -4000,6 +4082,7 @@ msgstr ""
|
|||||||
"seam_slope_start_height需要小于layer_height。\n"
|
"seam_slope_start_height需要小于layer_height。\n"
|
||||||
"重置为0。"
|
"重置为0。"
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"Lock depth should smaller than skin depth.\n"
|
"Lock depth should smaller than skin depth.\n"
|
||||||
"Reset to 50% of skin depth."
|
"Reset to 50% of skin depth."
|
||||||
@@ -4627,6 +4710,9 @@ msgstr "毫米立方/秒"
|
|||||||
msgid "Fan speed"
|
msgid "Fan speed"
|
||||||
msgstr "风扇速度"
|
msgstr "风扇速度"
|
||||||
|
|
||||||
|
msgid "°C"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Time"
|
msgid "Time"
|
||||||
msgstr "时间"
|
msgstr "时间"
|
||||||
|
|
||||||
@@ -4783,7 +4869,7 @@ msgstr "实际速度(毫米/秒)"
|
|||||||
msgid "Fan Speed (%)"
|
msgid "Fan Speed (%)"
|
||||||
msgstr "风扇速度(%)"
|
msgstr "风扇速度(%)"
|
||||||
|
|
||||||
msgid "Temperature (℃)"
|
msgid "Temperature (°C)"
|
||||||
msgstr "温度(℃)"
|
msgstr "温度(℃)"
|
||||||
|
|
||||||
msgid "Volumetric flow rate (mm³/s)"
|
msgid "Volumetric flow rate (mm³/s)"
|
||||||
@@ -5180,7 +5266,7 @@ msgstr "Prime 塔位置超出了打印板边界,并重新定位到最近的有
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
||||||
"mixing in models. Please redjust flushing settings."
|
"mixing in models. Please readjust flushing settings."
|
||||||
msgstr "部分冲洗量设置为 0。多色打印可能会导致模型混色。请重新调整冲水设置。"
|
msgstr "部分冲洗量设置为 0。多色打印可能会导致模型混色。请重新调整冲水设置。"
|
||||||
|
|
||||||
msgid "Click Wiki for help."
|
msgid "Click Wiki for help."
|
||||||
@@ -6453,6 +6539,9 @@ msgstr ""
|
|||||||
"此打印配置文件至少需要一个成功的打印记录 \n"
|
"此打印配置文件至少需要一个成功的打印记录 \n"
|
||||||
"才能给出好评(4星或5星)。"
|
"才能给出好评(4星或5星)。"
|
||||||
|
|
||||||
|
msgid "click to add machine"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr "设备状态"
|
msgstr "设备状态"
|
||||||
|
|
||||||
@@ -6463,6 +6552,14 @@ msgstr "更新"
|
|||||||
msgid "Assistant(HMS)"
|
msgid "Assistant(HMS)"
|
||||||
msgstr "助理(HMS)"
|
msgstr "助理(HMS)"
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s (%s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Don't show again"
|
msgid "Don't show again"
|
||||||
msgstr "不再显示"
|
msgstr "不再显示"
|
||||||
|
|
||||||
@@ -6828,7 +6925,7 @@ msgstr "清爽"
|
|||||||
msgid "Unavailable while heating maintenance function is on."
|
msgid "Unavailable while heating maintenance function is on."
|
||||||
msgstr "加热维护功能开启时不可用。"
|
msgstr "加热维护功能开启时不可用。"
|
||||||
|
|
||||||
msgid "Idel Heating Protection"
|
msgid "Idle Heating Protection"
|
||||||
msgstr "怠速加热保护"
|
msgstr "怠速加热保护"
|
||||||
|
|
||||||
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
||||||
@@ -7201,7 +7298,7 @@ msgid ""
|
|||||||
" Do you want to scale to millimeters?"
|
" Do you want to scale to millimeters?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"文件 %s 中对象的尺寸似乎是以米或者英寸为单位定义的。\n"
|
"文件 %s 中对象的尺寸似乎是以米或者英寸为单位定义的。\n"
|
||||||
"逆戟鲸的内部单位为毫米。是否要转换成毫米?"
|
"逆戟鲸切片器的内部单位为毫米。是否要转换成毫米?"
|
||||||
|
|
||||||
msgid "Object too small"
|
msgid "Object too small"
|
||||||
msgstr "对象尺寸过小"
|
msgstr "对象尺寸过小"
|
||||||
@@ -7368,7 +7465,8 @@ msgid "Please resolve the slicing errors and publish again."
|
|||||||
msgstr "请解决切片错误后再重新发布。"
|
msgstr "请解决切片错误后再重新发布。"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Network Plug-in is not detected. Network related features are unavailable."
|
"The network plug-in was not detected. Network related features are "
|
||||||
|
"unavailable."
|
||||||
msgstr "未检测到网络插件。网络相关功能不可用。"
|
msgstr "未检测到网络插件。网络相关功能不可用。"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -7669,7 +7767,8 @@ msgid ""
|
|||||||
"\"Fix Model\" feature is currently only on Windows. Please repair the model "
|
"\"Fix Model\" feature is currently only on Windows. Please repair the model "
|
||||||
"on Orca Slicer(windows) or CAD softwares."
|
"on Orca Slicer(windows) or CAD softwares."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"\"修复模型\"功能目前仅适用于Windows。请在逆戟鲸(windows)或CAD软件上修复模型。"
|
"\"修复模型\"功能目前仅适用于Windows。请在逆戟鲸切片器(windows)或CAD软件上修复"
|
||||||
|
"模型。"
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -7923,7 +8022,7 @@ msgstr "(需要重启)"
|
|||||||
msgid "filaments"
|
msgid "filaments"
|
||||||
msgstr "耗材丝"
|
msgstr "耗材丝"
|
||||||
|
|
||||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
msgid "Optimizes filament area maximum height by chosen filament count."
|
||||||
msgstr "根据选定的耗材丝数量优化耗材区域最大高度"
|
msgstr "根据选定的耗材丝数量优化耗材区域最大高度"
|
||||||
|
|
||||||
msgid "Features"
|
msgid "Features"
|
||||||
@@ -7941,7 +8040,7 @@ msgid "Pop up to select filament grouping mode"
|
|||||||
msgstr "弹出选择耗材丝分组模式"
|
msgstr "弹出选择耗材丝分组模式"
|
||||||
|
|
||||||
msgid "Quality level for Draco export"
|
msgid "Quality level for Draco export"
|
||||||
msgstr "Draco 出口的质量水平"
|
msgstr "Draco 导出的模型质量"
|
||||||
|
|
||||||
msgid "bits"
|
msgid "bits"
|
||||||
msgstr "位"
|
msgstr "位"
|
||||||
@@ -8117,33 +8216,33 @@ msgstr "耗材丝及颜色"
|
|||||||
msgid "Color only"
|
msgid "Color only"
|
||||||
msgstr "仅颜色"
|
msgstr "仅颜色"
|
||||||
|
|
||||||
msgid "Network plugin"
|
msgid "Network plug-in"
|
||||||
msgstr "网络插件"
|
msgstr "网络插件"
|
||||||
|
|
||||||
msgid "Enable network plugin"
|
msgid "Enable network plug-in"
|
||||||
msgstr "启用网络插件"
|
msgstr "启用网络插件"
|
||||||
|
|
||||||
msgid "Network plugin version"
|
msgid "Network plug-in version"
|
||||||
msgstr "网络插件版本"
|
msgstr "网络插件版本"
|
||||||
|
|
||||||
msgid "Select the network plugin version to use"
|
msgid "Select the network plug-in version to use"
|
||||||
msgstr "选择要使用的网络插件版本"
|
msgstr "选择要使用的网络插件版本"
|
||||||
|
|
||||||
msgid "(Latest)"
|
msgid "(Latest)"
|
||||||
msgstr "(最新的)"
|
msgstr "(最新的)"
|
||||||
|
|
||||||
msgid "Network plugin switched successfully."
|
msgid "Network plug-in switched successfully."
|
||||||
msgstr "网络插件切换成功。"
|
msgstr "网络插件切换成功。"
|
||||||
|
|
||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "成功"
|
msgstr "成功"
|
||||||
|
|
||||||
msgid "Failed to load network plugin. Please restart the application."
|
msgid "Failed to load network plug-in. Please restart the application."
|
||||||
msgstr "无法加载网络插件。请重新启动应用程序。"
|
msgstr "无法加载网络插件。请重新启动应用程序。"
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You've selected network plugin version %s.\n"
|
"You've selected network plug-in version %s.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Would you like to download and install this version now?\n"
|
"Would you like to download and install this version now?\n"
|
||||||
"\n"
|
"\n"
|
||||||
@@ -8152,11 +8251,11 @@ msgstr ""
|
|||||||
"您已选择网络插件版本 %s。 您想立即下载并安装此版本吗? 注意:安装后应用程序可"
|
"您已选择网络插件版本 %s。 您想立即下载并安装此版本吗? 注意:安装后应用程序可"
|
||||||
"能需要重新启动。"
|
"能需要重新启动。"
|
||||||
|
|
||||||
msgid "Download Network Plugin"
|
msgid "Download Network Plug-in"
|
||||||
msgstr "下载网络插件"
|
msgstr "下载网络插件"
|
||||||
|
|
||||||
msgid "Associate files to OrcaSlicer"
|
msgid "Associate files to OrcaSlicer"
|
||||||
msgstr "逆戟鲸文件关联"
|
msgstr "逆戟鲸切片器文件关联"
|
||||||
|
|
||||||
msgid "Associate 3MF files to OrcaSlicer"
|
msgid "Associate 3MF files to OrcaSlicer"
|
||||||
msgstr "将 3MF 文件关联到 OrcaSlicer"
|
msgstr "将 3MF 文件关联到 OrcaSlicer"
|
||||||
@@ -8222,19 +8321,16 @@ msgstr "调试"
|
|||||||
msgid "trace"
|
msgid "trace"
|
||||||
msgstr "跟踪"
|
msgstr "跟踪"
|
||||||
|
|
||||||
msgid "Network Plugin"
|
|
||||||
msgstr "网络插件"
|
|
||||||
|
|
||||||
msgid "Reload"
|
msgid "Reload"
|
||||||
msgstr "重新加载"
|
msgstr "重新加载"
|
||||||
|
|
||||||
msgid "Reload the network plugin without restarting the application"
|
msgid "Reload the network plug-in without restarting the application"
|
||||||
msgstr "重新加载网络插件而不重新启动应用程序"
|
msgstr "重新加载网络插件而不重新启动应用程序"
|
||||||
|
|
||||||
msgid "Network plugin reloaded successfully."
|
msgid "Network plug-in reloaded successfully."
|
||||||
msgstr "网络插件已成功重新加载。"
|
msgstr "网络插件已成功重新加载。"
|
||||||
|
|
||||||
msgid "Failed to reload network plugin. Please restart the application."
|
msgid "Failed to reload network plug-in. Please restart the application."
|
||||||
msgstr "无法重新加载网络插件。请重新启动应用程序。"
|
msgstr "无法重新加载网络插件。请重新启动应用程序。"
|
||||||
|
|
||||||
msgid "Reload Failed"
|
msgid "Reload Failed"
|
||||||
@@ -8453,8 +8549,11 @@ msgstr "发布已取消"
|
|||||||
msgid "Slicing Plate 1"
|
msgid "Slicing Plate 1"
|
||||||
msgstr "正在切片盘 1"
|
msgstr "正在切片盘 1"
|
||||||
|
|
||||||
msgid "Packing data to 3mf"
|
msgid "Packing data to 3MF"
|
||||||
msgstr "将数据打包至 3MF"
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Uploading data"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Jump to webpage"
|
msgid "Jump to webpage"
|
||||||
msgstr "跳转到网页"
|
msgstr "跳转到网页"
|
||||||
@@ -8780,8 +8879,8 @@ msgstr "光滑高温打印热床"
|
|||||||
msgid "Textured PEI Plate"
|
msgid "Textured PEI Plate"
|
||||||
msgstr "纹理PEI热床"
|
msgstr "纹理PEI热床"
|
||||||
|
|
||||||
msgid "Cool Plate (Supertack)"
|
msgid "Cool Plate (SuperTack)"
|
||||||
msgstr "冷却板(Supertack)"
|
msgstr "低温打印板(超强粘附)"
|
||||||
|
|
||||||
msgid "Click here if you can't connect to the printer"
|
msgid "Click here if you can't connect to the printer"
|
||||||
msgstr "如果无法连接到打印机,请单击此处"
|
msgstr "如果无法连接到打印机,请单击此处"
|
||||||
@@ -9087,7 +9186,7 @@ msgid ""
|
|||||||
msgstr "同时启用精确Z高度和擦拭塔可能会导致擦拭塔尺寸增大。您仍然要启用吗?"
|
msgstr "同时启用精确Z高度和擦拭塔可能会导致擦拭塔尺寸增大。您仍然要启用吗?"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection. There may be flaws on the "
|
"A prime tower is required for clumping detection. There may be flaws on the "
|
||||||
"model without prime tower. Do you still want to enable clumping detection?"
|
"model without prime tower. Do you still want to enable clumping detection?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"结块检测需要 Prime 塔。没有主塔的模型可能存在缺陷。您仍要启用结块检测吗?"
|
"结块检测需要 Prime 塔。没有主塔的模型可能存在缺陷。您仍要启用结块检测吗?"
|
||||||
@@ -9411,9 +9510,6 @@ msgstr "打印温度"
|
|||||||
msgid "Nozzle temperature when printing"
|
msgid "Nozzle temperature when printing"
|
||||||
msgstr "打印时的喷嘴温度"
|
msgstr "打印时的喷嘴温度"
|
||||||
|
|
||||||
msgid "Cool Plate (SuperTack)"
|
|
||||||
msgstr "低温打印板(超强粘附)"
|
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
||||||
"means the filament does not support printing on the Cool Plate SuperTack."
|
"means the filament does not support printing on the Cool Plate SuperTack."
|
||||||
@@ -9849,6 +9945,12 @@ msgstr "显示所有预设(包括不兼容的)"
|
|||||||
msgid "Select presets to compare"
|
msgid "Select presets to compare"
|
||||||
msgstr "选择要比较的预设"
|
msgstr "选择要比较的预设"
|
||||||
|
|
||||||
|
msgid "Left Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Right Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can only transfer to current active profile because it has been modified."
|
"You can only transfer to current active profile because it has been modified."
|
||||||
msgstr "只能传输到当前活动的配置文件,因为它已被修改。"
|
msgstr "只能传输到当前活动的配置文件,因为它已被修改。"
|
||||||
@@ -10276,6 +10378,12 @@ msgstr "点此下载"
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "登录"
|
msgstr "登录"
|
||||||
|
|
||||||
|
msgid "[Action Required] "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "[Action Required]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "The configuration package is changed in previous Config Guide"
|
msgid "The configuration package is changed in previous Config Guide"
|
||||||
msgstr "参数配置包在之前的配置向导中发生了变更"
|
msgstr "参数配置包在之前的配置向导中发生了变更"
|
||||||
|
|
||||||
@@ -10971,7 +11079,7 @@ msgid ""
|
|||||||
msgstr "启用“按对象”序列时,不支持结块检测。"
|
msgstr "启用“按对象”序列时,不支持结块检测。"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection; otherwise, there may be "
|
"A prime tower is required for clumping detection; otherwise, there may be "
|
||||||
"flaws on the model."
|
"flaws on the model."
|
||||||
msgstr "结块检测需要 Prime 塔;否则,模型可能存在缺陷。"
|
msgstr "结块检测需要 Prime 塔;否则,模型可能存在缺陷。"
|
||||||
|
|
||||||
@@ -12372,7 +12480,7 @@ msgid ""
|
|||||||
"models\n"
|
"models\n"
|
||||||
"3. No filtering - creates internal bridges on every potential internal "
|
"3. No filtering - creates internal bridges on every potential internal "
|
||||||
"overhang. This option is useful for heavily slanted top surface models; "
|
"overhang. This option is useful for heavily slanted top surface models; "
|
||||||
"however, in most cases, it creates too many unnecessary bridges"
|
"however, in most cases, it creates too many unnecessary bridges."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"此选项可以帮助减少严重倾斜或弯曲模型顶面的枕化效应。\n"
|
"此选项可以帮助减少严重倾斜或弯曲模型顶面的枕化效应。\n"
|
||||||
"默认情况下,小的内部桥接被过滤掉,内部实心填充直接打印在稀疏填充上。这在大多"
|
"默认情况下,小的内部桥接被过滤掉,内部实心填充直接打印在稀疏填充上。这在大多"
|
||||||
@@ -12815,7 +12923,7 @@ msgid ""
|
|||||||
"less acceleration you print, the larger the range of acceptable PA values. "
|
"less acceleration you print, the larger the range of acceptable PA values. "
|
||||||
"If no difference is visible, use the PA value from the faster test\n"
|
"If no difference is visible, use the PA value from the faster test\n"
|
||||||
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
||||||
"here and save your filament profile"
|
"here and save your filament profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"添加压力提前 (PA) 值组、测量时的体积流速和加速度,并用逗号分隔。每行一组值。"
|
"添加压力提前 (PA) 值组、测量时的体积流速和加速度,并用逗号分隔。每行一组值。"
|
||||||
"例如\n"
|
"例如\n"
|
||||||
@@ -14140,9 +14248,9 @@ msgstr "标注模型"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this to add comments into the G-code labeling print moves with what "
|
"Enable this to add comments into the G-code labeling print moves with what "
|
||||||
"object they belong to, which is useful for the Octoprint CancelObject "
|
"object they belong to, which is useful for the Octoprint CancelObject plug-"
|
||||||
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
|
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
|
||||||
"setup and Wipe into Object / Wipe into Infill."
|
"and Wipe into Object / Wipe into Infill."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"启用此选项,将在G-code中添加注释,标记打印移动属于哪个对象,这对Octoprint "
|
"启用此选项,将在G-code中添加注释,标记打印移动属于哪个对象,这对Octoprint "
|
||||||
"CancelObject插件非常有用。此设置与单挤出机多材料设置和擦拭到对象/擦拭到填充不"
|
"CancelObject插件非常有用。此设置与单挤出机多材料设置和擦拭到对象/擦拭到填充不"
|
||||||
@@ -14446,7 +14554,7 @@ msgstr "熨烫类型"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Ironing is using small flow to print on same height of surface again to make "
|
"Ironing is using small flow to print on same height of surface again to make "
|
||||||
"flat surface more smooth. This setting controls which layer being ironed"
|
"flat surface more smooth. This setting controls which layer being ironed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"熨烫指的是使用小流量在表面的同高度打印,进而是的平面更加光滑。这个设置用于设"
|
"熨烫指的是使用小流量在表面的同高度打印,进而是的平面更加光滑。这个设置用于设"
|
||||||
"置哪些层进行熨烫。"
|
"置哪些层进行熨烫。"
|
||||||
@@ -15624,7 +15732,7 @@ msgid ""
|
|||||||
"timelapse video when printing completes. If smooth mode is selected, the "
|
"timelapse video when printing completes. If smooth mode is selected, the "
|
||||||
"toolhead will move to the excess chute after each layer is printed and then "
|
"toolhead will move to the excess chute after each layer is printed and then "
|
||||||
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
||||||
"process of taking a snapshot, prime tower is required for smooth mode to "
|
"process of taking a snapshot, a prime tower is required for smooth mode to "
|
||||||
"wipe nozzle."
|
"wipe nozzle."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"如果启用平滑模式或者传统模式,将在每次打印时生成延时摄影视频。打印完每层后,"
|
"如果启用平滑模式或者传统模式,将在每次打印时生成延时摄影视频。打印完每层后,"
|
||||||
@@ -16455,6 +16563,12 @@ msgstr ""
|
|||||||
"2. 圆锥:底部有圆角的圆锥,有助于稳定擦拭塔。\n"
|
"2. 圆锥:底部有圆角的圆锥,有助于稳定擦拭塔。\n"
|
||||||
"3. 加强筋:在塔壁上增加四个加强筋以提高稳定性。"
|
"3. 加强筋:在塔壁上增加四个加强筋以提高稳定性。"
|
||||||
|
|
||||||
|
msgid "Rectangle"
|
||||||
|
msgstr "矩形"
|
||||||
|
|
||||||
|
msgid "Rib"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Extra rib length"
|
msgid "Extra rib length"
|
||||||
msgstr "额外加强筋长度"
|
msgstr "额外加强筋长度"
|
||||||
|
|
||||||
@@ -17018,7 +17132,7 @@ msgid ""
|
|||||||
"machines in the list."
|
"machines in the list."
|
||||||
msgstr "如果启用,检查当前的机器是否向下兼容列表中的机器。"
|
msgstr "如果启用,检查当前的机器是否向下兼容列表中的机器。"
|
||||||
|
|
||||||
msgid "downward machines settings"
|
msgid "Downward machines settings"
|
||||||
msgstr "向下兼容机器设置"
|
msgstr "向下兼容机器设置"
|
||||||
|
|
||||||
msgid "The machine settings list needs to do downward checking."
|
msgid "The machine settings list needs to do downward checking."
|
||||||
@@ -17662,10 +17776,6 @@ msgstr "该名称与另一个现有预设名称相同。"
|
|||||||
msgid "create new preset failed."
|
msgid "create new preset failed."
|
||||||
msgstr "创建新预设失败"
|
msgstr "创建新预设失败"
|
||||||
|
|
||||||
#, c-format, boost-format
|
|
||||||
msgid "The selected preset: %s is not found."
|
|
||||||
msgstr "未找到所选预设:%s。"
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid "Could not find parameter: %s."
|
msgid "Could not find parameter: %s."
|
||||||
msgstr "找不到参数:%s。"
|
msgstr "找不到参数:%s。"
|
||||||
@@ -18316,6 +18426,23 @@ msgstr "快速塔"
|
|||||||
msgid "Input shaper type"
|
msgid "Input shaper type"
|
||||||
msgstr "输入整形器类型"
|
msgstr "输入整形器类型"
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Please ensure the selected type is compatible with your firmware version."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Marlin version => 2.1.2\n"
|
||||||
|
"Fixed-Time motion not yet implemented."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Klipper version => 0.9.0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"RepRap firmware version => 3.4.0\n"
|
||||||
|
"Check your firmware documentation for supported shaper types."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency (Start / End): "
|
msgid "Frequency (Start / End): "
|
||||||
msgstr "频率(开始/结束):"
|
msgstr "频率(开始/结束):"
|
||||||
|
|
||||||
@@ -18354,6 +18481,9 @@ msgstr "请输入有效的阻尼因子(0 < 阻尼/ζ因子 <= 1)"
|
|||||||
msgid "Input shaping Damp test"
|
msgid "Input shaping Damp test"
|
||||||
msgstr "输入整形的阻尼测试"
|
msgstr "输入整形的阻尼测试"
|
||||||
|
|
||||||
|
msgid "Check firmware compatibility."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency: "
|
msgid "Frequency: "
|
||||||
msgstr "频率:"
|
msgstr "频率:"
|
||||||
|
|
||||||
@@ -18561,7 +18691,7 @@ msgid "Export Log"
|
|||||||
msgstr "输出日志"
|
msgstr "输出日志"
|
||||||
|
|
||||||
msgid "OrcaSlicer Version:"
|
msgid "OrcaSlicer Version:"
|
||||||
msgstr "OrcaSlicer(逆戟鲸)版本:"
|
msgstr "逆戟鲸切片器版本:"
|
||||||
|
|
||||||
msgid "System Version:"
|
msgid "System Version:"
|
||||||
msgstr "系统版本:"
|
msgstr "系统版本:"
|
||||||
@@ -18733,9 +18863,6 @@ msgstr "输入自定义喷嘴直径"
|
|||||||
msgid "Can't find my nozzle diameter"
|
msgid "Can't find my nozzle diameter"
|
||||||
msgstr "未找到我的喷嘴直径"
|
msgstr "未找到我的喷嘴直径"
|
||||||
|
|
||||||
msgid "Rectangle"
|
|
||||||
msgstr "矩形"
|
|
||||||
|
|
||||||
msgid "Printable Space"
|
msgid "Printable Space"
|
||||||
msgstr "可打印形状"
|
msgstr "可打印形状"
|
||||||
|
|
||||||
@@ -20038,6 +20165,127 @@ msgstr "官方耗材"
|
|||||||
msgid "More Colors"
|
msgid "More Colors"
|
||||||
msgstr "更多颜色"
|
msgstr "更多颜色"
|
||||||
|
|
||||||
|
msgid "Network Plug-in Update Available"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bambu Network Plug-in Required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
|
||||||
|
"and remote printing."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Error: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Version to install:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Download and Install"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip for Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "A new version of the Bambu Network Plug-in is available."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Current version: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update to version:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Remind Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Don't Ask Again"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The Bambu Network Plug-in has been installed successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"A restart is required to load the new plug-in. Would you like to restart now?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "NO RAMMING AT ALL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Volumetric speed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Step file import parameters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Smaller linear and angular deflections result in higher-quality "
|
||||||
|
"transformations but increase the processing time."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Linear Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Angle Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Split compound and compsolid into multiple objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Number of triangular facets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Calculating, please wait..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. "
|
||||||
|
"Generic filament presets will be used."
|
||||||
|
msgstr "此耗材可能于当前设备设置不兼容,将使用通用耗材预设。"
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament model is unknown. Still using the previous filament preset."
|
||||||
|
msgstr "此耗材型号未知,将使用先前的耗材预设。"
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. Generic filament presets will be used."
|
||||||
|
msgstr "此耗材型号未知,将使用通用耗材预设。"
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. A "
|
||||||
|
"random filament preset will be used."
|
||||||
|
msgstr "此耗材可能与当前设备设置不兼容,将使用随机耗材预设。"
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. A random filament preset will be used."
|
||||||
|
msgstr "此耗材可能于当前设备设置不兼容,将使用随机耗材预设。"
|
||||||
|
|
||||||
#: resources/data/hints.ini: [hint:Precise wall]
|
#: resources/data/hints.ini: [hint:Precise wall]
|
||||||
msgid ""
|
msgid ""
|
||||||
"Precise wall\n"
|
"Precise wall\n"
|
||||||
@@ -20392,3 +20640,19 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"避免翘曲\n"
|
"避免翘曲\n"
|
||||||
"您知道吗?打印ABS这类易翘曲材料时,适当提高热床温度可以降低翘曲的概率。"
|
"您知道吗?打印ABS这类易翘曲材料时,适当提高热床温度可以降低翘曲的概率。"
|
||||||
|
|
||||||
|
#~ msgid "Auto-refill"
|
||||||
|
#~ msgstr "自动补充"
|
||||||
|
|
||||||
|
#~ msgid "Network Plug-in"
|
||||||
|
#~ msgstr "网络插件"
|
||||||
|
|
||||||
|
#~ msgid "Packing data to 3mf"
|
||||||
|
#~ msgstr "将数据打包至 3MF"
|
||||||
|
|
||||||
|
#~ msgid "Cool Plate (Supertack)"
|
||||||
|
#~ msgstr "冷却板(Supertack)"
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
#~ msgid "The selected preset: %s is not found."
|
||||||
|
#~ msgstr "未找到所选预设:%s。"
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Orca Slicer\n"
|
"Project-Id-Version: Orca Slicer\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
|
||||||
"PO-Revision-Date: 2025-11-28 13:48-0600\n"
|
"PO-Revision-Date: 2025-11-28 13:48-0600\n"
|
||||||
"Last-Translator: tntchn <15895303+tntchn@users.noreply.github.com>\n"
|
"Last-Translator: tntchn <15895303+tntchn@users.noreply.github.com>\n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
@@ -20,26 +20,6 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Poedit 3.8\n"
|
"X-Generator: Poedit 3.8\n"
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. "
|
|
||||||
"Generic filament presets will be used."
|
|
||||||
msgstr "線材可能與目前的列印設備設定不相容,將使用一般線材預設。"
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament model is unknown. Still using the previous filament preset."
|
|
||||||
msgstr "線材型號未知,將繼續使用先前的線材預設。"
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. Generic filament presets will be used."
|
|
||||||
msgstr "線材型號未知,將使用一般線材預設。"
|
|
||||||
|
|
||||||
msgid ""
|
|
||||||
"The filament may not be compatible with the current machine settings. A "
|
|
||||||
"random filament preset will be used."
|
|
||||||
msgstr "線材可能與目前的列印設備設定不相容,將使用隨機線材預設。"
|
|
||||||
|
|
||||||
msgid "The filament model is unknown. A random filament preset will be used."
|
|
||||||
msgstr "線材型號未知,將使用隨機線材預設。"
|
|
||||||
|
|
||||||
msgid "right"
|
msgid "right"
|
||||||
msgstr "右"
|
msgstr "右"
|
||||||
|
|
||||||
@@ -1555,6 +1535,30 @@ msgstr "平行距離:"
|
|||||||
msgid "Flip by Face 2"
|
msgid "Flip by Face 2"
|
||||||
msgstr "通過面 2 翻轉"
|
msgstr "通過面 2 翻轉"
|
||||||
|
|
||||||
|
msgid "Assemble"
|
||||||
|
msgstr "組合"
|
||||||
|
|
||||||
|
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please select at least two volumes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "(Moving)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Point and point assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"It is recommended to assemble the objects first,\n"
|
||||||
|
"because the objects is restriced to bed \n"
|
||||||
|
"and only parts can be lifted."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Face and face assembly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Notice"
|
msgid "Notice"
|
||||||
msgstr "通知"
|
msgstr "通知"
|
||||||
|
|
||||||
@@ -1591,6 +1595,54 @@ msgstr "設定檔「%1%」 已被載入,但部分數值無法識別。"
|
|||||||
msgid "Based on PrusaSlicer and BambuStudio"
|
msgid "Based on PrusaSlicer and BambuStudio"
|
||||||
msgstr "基於 PrusaSlicer 與 BambuStudio 開發"
|
msgstr "基於 PrusaSlicer 與 BambuStudio 開發"
|
||||||
|
|
||||||
|
msgid "STEP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "STL files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "OBJ files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "AMF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Gcode 3MF files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "G-code files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Supported files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "ZIP files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Project files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Known files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "INI files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "SVG files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Texture"
|
||||||
|
msgstr "紋理"
|
||||||
|
|
||||||
|
msgid "Masked SLA files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Draco files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
|
||||||
"It will be appreciated if you report the issue to our team."
|
"It will be appreciated if you report the issue to our team."
|
||||||
@@ -1618,10 +1670,10 @@ msgstr "Orca Slicer 遭遇到一個未處理的例外:%1%"
|
|||||||
msgid "Untitled"
|
msgid "Untitled"
|
||||||
msgstr "未命名"
|
msgstr "未命名"
|
||||||
|
|
||||||
msgid "Reloading network plugin..."
|
msgid "Reloading network plug-in..."
|
||||||
msgstr "正在重新載入網路外掛程式..."
|
msgstr "正在重新載入網路外掛程式..."
|
||||||
|
|
||||||
msgid "Downloading Network Plugin"
|
msgid "Downloading Network Plug-in"
|
||||||
msgstr "正在下載網路外掛程式"
|
msgstr "正在下載網路外掛程式"
|
||||||
|
|
||||||
msgid "Downloading Bambu Network Plug-in"
|
msgid "Downloading Bambu Network Plug-in"
|
||||||
@@ -1713,6 +1765,9 @@ msgstr "選擇 ZIP 檔"
|
|||||||
msgid "Choose one file (GCODE/3MF):"
|
msgid "Choose one file (GCODE/3MF):"
|
||||||
msgstr "選擇一個檔案(GCODE/3MF):"
|
msgstr "選擇一個檔案(GCODE/3MF):"
|
||||||
|
|
||||||
|
msgid "Ext"
|
||||||
|
msgstr "擠出機"
|
||||||
|
|
||||||
msgid "Some presets are modified."
|
msgid "Some presets are modified."
|
||||||
msgstr "部分預設已被修改。"
|
msgstr "部分預設已被修改。"
|
||||||
|
|
||||||
@@ -1778,7 +1833,7 @@ msgstr ""
|
|||||||
"\n"
|
"\n"
|
||||||
"開發者模式允許列印設備僅透過區域網路存取運作,以實現 OrcaSlicer 的完整功能。"
|
"開發者模式允許列印設備僅透過區域網路存取運作,以實現 OrcaSlicer 的完整功能。"
|
||||||
|
|
||||||
msgid "Network Plugin Restriction"
|
msgid "Network Plug-in Restriction"
|
||||||
msgstr "網路外掛程式限制"
|
msgstr "網路外掛程式限制"
|
||||||
|
|
||||||
msgid "Privacy Policy Update"
|
msgid "Privacy Policy Update"
|
||||||
@@ -2013,6 +2068,9 @@ msgstr ""
|
|||||||
"是 - 自動更改這些設定\n"
|
"是 - 自動更改這些設定\n"
|
||||||
"否 - 不為我更改這些設定"
|
"否 - 不為我更改這些設定"
|
||||||
|
|
||||||
|
msgid "Suggestion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "文字"
|
msgstr "文字"
|
||||||
|
|
||||||
@@ -2122,9 +2180,6 @@ msgstr "從公尺轉換"
|
|||||||
msgid "Restore to meters"
|
msgid "Restore to meters"
|
||||||
msgstr "恢復到公尺"
|
msgstr "恢復到公尺"
|
||||||
|
|
||||||
msgid "Assemble"
|
|
||||||
msgstr "組合"
|
|
||||||
|
|
||||||
msgid "Assemble the selected objects to an object with multiple parts"
|
msgid "Assemble the selected objects to an object with multiple parts"
|
||||||
msgstr "組合所選物件為一個多零件物件"
|
msgstr "組合所選物件為一個多零件物件"
|
||||||
|
|
||||||
@@ -2617,6 +2672,10 @@ msgstr "多色列印"
|
|||||||
msgid "Line Type"
|
msgid "Line Type"
|
||||||
msgstr "走線類型"
|
msgstr "走線類型"
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "1x1 Grid: %d mm"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "More"
|
msgid "More"
|
||||||
msgstr "詳情"
|
msgstr "詳情"
|
||||||
|
|
||||||
@@ -2734,8 +2793,8 @@ msgstr "請檢查列印設備與 Orca Slicer 的網路連接。"
|
|||||||
msgid "Connecting..."
|
msgid "Connecting..."
|
||||||
msgstr "連接中..."
|
msgstr "連接中..."
|
||||||
|
|
||||||
msgid "Auto-refill"
|
msgid "Auto Refill"
|
||||||
msgstr "自動補料"
|
msgstr "自動補充"
|
||||||
|
|
||||||
msgid "Load"
|
msgid "Load"
|
||||||
msgstr "匯入"
|
msgstr "匯入"
|
||||||
@@ -3120,6 +3179,38 @@ msgid ""
|
|||||||
"Storage before sending to printer."
|
"Storage before sending to printer."
|
||||||
msgstr "列印設備中的儲存空間為唯讀。請在傳送到列印設備前更換為正常的儲存空間。"
|
msgstr "列印設備中的儲存空間為唯讀。請在傳送到列印設備前更換為正常的儲存空間。"
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossCreateObjectJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text object"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for EmbossUpdateJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Created text volume is empty. Change text or font."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for CreateSurfaceVolumeJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bad input data for UseSurfaceJob."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRN: This is the title of the action appearing in undo/redo stack.
|
||||||
|
#. It is same for Text and SVG.
|
||||||
|
msgid "Emboss attribute change"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Add Emboss text Volume"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Font doesn't have any shape for given text."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "There is no valid surface for text projection."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Thermal Preconditioning for first layer optimization"
|
msgid "Thermal Preconditioning for first layer optimization"
|
||||||
msgstr "首層優化的熱預調節"
|
msgstr "首層優化的熱預調節"
|
||||||
|
|
||||||
@@ -3451,9 +3542,6 @@ msgstr "右噴嘴"
|
|||||||
msgid "Nozzle"
|
msgid "Nozzle"
|
||||||
msgstr "噴嘴"
|
msgstr "噴嘴"
|
||||||
|
|
||||||
msgid "Ext"
|
|
||||||
msgstr "擠出機"
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
"Note: the filament type(%s) does not match with the filament type(%s) in the "
|
||||||
@@ -3522,9 +3610,6 @@ msgstr "使用 AMS 裡的線材列印"
|
|||||||
msgid "Print with filaments mounted on the back of the chassis"
|
msgid "Print with filaments mounted on the back of the chassis"
|
||||||
msgstr "使用掛在機箱背部的線材列印"
|
msgstr "使用掛在機箱背部的線材列印"
|
||||||
|
|
||||||
msgid "Auto Refill"
|
|
||||||
msgstr "自動補充"
|
|
||||||
|
|
||||||
msgid "Left"
|
msgid "Left"
|
||||||
msgstr "左面"
|
msgstr "左面"
|
||||||
|
|
||||||
@@ -3536,8 +3621,8 @@ msgid ""
|
|||||||
"following order."
|
"following order."
|
||||||
msgstr "當目前線材用完時,列印設備將按照以下順序繼續列印。"
|
msgstr "當目前線材用完時,列印設備將按照以下順序繼續列印。"
|
||||||
|
|
||||||
msgid "Identical filament: same brand, type and color"
|
msgid "Identical filament: same brand, type and color."
|
||||||
msgstr "相同線材:相同品牌、類型和顏色"
|
msgstr "相同線材:相同品牌、類型和顏色。"
|
||||||
|
|
||||||
msgid "Group"
|
msgid "Group"
|
||||||
msgstr "組"
|
msgstr "組"
|
||||||
@@ -3669,8 +3754,8 @@ msgid "Calibration"
|
|||||||
msgstr "校正"
|
msgstr "校正"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Failed to download the plug-in. Please check your firewall settings and vpn "
|
"Failed to download the plug-in. Please check your firewall settings and VPN "
|
||||||
"software, check and retry."
|
"software and retry."
|
||||||
msgstr "外掛程式下載失敗。請檢查您的防火牆設定和 VPN 軟體,檢查後重試。"
|
msgstr "外掛程式下載失敗。請檢查您的防火牆設定和 VPN 軟體,檢查後重試。"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -3685,8 +3770,8 @@ msgid "Click here to see more info"
|
|||||||
msgstr "點擊這裡查看更多資訊"
|
msgstr "點擊這裡查看更多資訊"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The network plugin was installed but could not be loaded. Please restart the "
|
"The network plug-in was installed but could not be loaded. Please restart "
|
||||||
"application."
|
"the application."
|
||||||
msgstr "網路外掛程式已安裝但無法載入。請重新啟動應用程式。"
|
msgstr "網路外掛程式已安裝但無法載入。請重新啟動應用程式。"
|
||||||
|
|
||||||
msgid "Restart Required"
|
msgid "Restart Required"
|
||||||
@@ -3854,9 +3939,6 @@ msgstr "從 STL 檔案載入形狀..."
|
|||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "設定"
|
msgstr "設定"
|
||||||
|
|
||||||
msgid "Texture"
|
|
||||||
msgstr "紋理"
|
|
||||||
|
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "移除"
|
msgstr "移除"
|
||||||
|
|
||||||
@@ -4068,6 +4150,7 @@ msgstr ""
|
|||||||
"重設為 0。seam_slope_start_height 必須小於 layer_height。\n"
|
"重設為 0。seam_slope_start_height 必須小於 layer_height。\n"
|
||||||
"重設為 0。"
|
"重設為 0。"
|
||||||
|
|
||||||
|
#, fuzzy, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Lock depth should smaller than skin depth.\n"
|
"Lock depth should smaller than skin depth.\n"
|
||||||
"Reset to 50% of skin depth."
|
"Reset to 50% of skin depth."
|
||||||
@@ -4696,6 +4779,9 @@ msgstr "mm³/s"
|
|||||||
msgid "Fan speed"
|
msgid "Fan speed"
|
||||||
msgstr "風扇速度"
|
msgstr "風扇速度"
|
||||||
|
|
||||||
|
msgid "°C"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Time"
|
msgid "Time"
|
||||||
msgstr "時間"
|
msgstr "時間"
|
||||||
|
|
||||||
@@ -4852,7 +4938,7 @@ msgstr "實際速度(mm/s)"
|
|||||||
msgid "Fan Speed (%)"
|
msgid "Fan Speed (%)"
|
||||||
msgstr "風扇速度(%)"
|
msgstr "風扇速度(%)"
|
||||||
|
|
||||||
msgid "Temperature (℃)"
|
msgid "Temperature (°C)"
|
||||||
msgstr "溫度(℃)"
|
msgstr "溫度(℃)"
|
||||||
|
|
||||||
msgid "Volumetric flow rate (mm³/s)"
|
msgid "Volumetric flow rate (mm³/s)"
|
||||||
@@ -5176,7 +5262,7 @@ msgstr "體積:"
|
|||||||
msgid "Size:"
|
msgid "Size:"
|
||||||
msgstr "尺寸:"
|
msgstr "尺寸:"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||||
"separate the conflicted objects farther (%s <-> %s)."
|
"separate the conflicted objects farther (%s <-> %s)."
|
||||||
@@ -5249,7 +5335,7 @@ msgstr "換料塔位置超出列印板邊界,已重新定位到最近的有效
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
||||||
"mixing in models. Please redjust flushing settings."
|
"mixing in models. Please readjust flushing settings."
|
||||||
msgstr "部分沖洗體積設為 0。多色列印可能導致模型出現混色。請重新調整沖洗設定。"
|
msgstr "部分沖洗體積設為 0。多色列印可能導致模型出現混色。請重新調整沖洗設定。"
|
||||||
|
|
||||||
msgid "Click Wiki for help."
|
msgid "Click Wiki for help."
|
||||||
@@ -6064,9 +6150,9 @@ msgid ""
|
|||||||
"The .gcode.3mf file contains no G-code data. Please slice it with Orca "
|
"The .gcode.3mf file contains no G-code data. Please slice it with Orca "
|
||||||
"Slicer and export a new .gcode.3mf file."
|
"Slicer and export a new .gcode.3mf file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
".gcode.3mf 檔案不包含 G-code 資料。請使用 OrcaSlicer 切片並匯出新"
|
".gcode.3mf 檔案不包含 G-code 資料。請使用 OrcaSlicer 切片並匯出新的 ."
|
||||||
"的 .gcode.3mf 檔案。.gcode.3mf 檔案中不包含 G-code 資料。請使用 Orca Slicer "
|
"gcode.3mf 檔案。.gcode.3mf 檔案中不包含 G-code 資料。請使用 Orca Slicer 進行"
|
||||||
"進行切片並匯出新的 .gcode.3mf 檔案。"
|
"切片並匯出新的 .gcode.3mf 檔案。"
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid "File '%s' was lost! Please download it again."
|
msgid "File '%s' was lost! Please download it again."
|
||||||
@@ -6536,6 +6622,9 @@ msgstr ""
|
|||||||
"若要給予正面評價(4 或 5 星),\n"
|
"若要給予正面評價(4 或 5 星),\n"
|
||||||
"必須至少有一個此列印設定檔的成功列印記錄。"
|
"必須至少有一個此列印設定檔的成功列印記錄。"
|
||||||
|
|
||||||
|
msgid "click to add machine"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr "設備狀態"
|
msgstr "設備狀態"
|
||||||
|
|
||||||
@@ -6546,6 +6635,14 @@ msgstr "更新"
|
|||||||
msgid "Assistant(HMS)"
|
msgid "Assistant(HMS)"
|
||||||
msgstr "助手(HMS)"
|
msgstr "助手(HMS)"
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Network plug-in v%s (%s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Don't show again"
|
msgid "Don't show again"
|
||||||
msgstr "不再顯示"
|
msgstr "不再顯示"
|
||||||
|
|
||||||
@@ -6913,7 +7010,7 @@ msgstr "重新整理中"
|
|||||||
msgid "Unavailable while heating maintenance function is on."
|
msgid "Unavailable while heating maintenance function is on."
|
||||||
msgstr "加熱維護功能啟用時無法使用。"
|
msgstr "加熱維護功能啟用時無法使用。"
|
||||||
|
|
||||||
msgid "Idel Heating Protection"
|
msgid "Idle Heating Protection"
|
||||||
msgstr "閒置加熱保護"
|
msgstr "閒置加熱保護"
|
||||||
|
|
||||||
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
|
||||||
@@ -7454,7 +7551,8 @@ msgid "Please resolve the slicing errors and publish again."
|
|||||||
msgstr "請解決切片錯誤後再重新發布。"
|
msgstr "請解決切片錯誤後再重新發布。"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Network Plug-in is not detected. Network related features are unavailable."
|
"The network plug-in was not detected. Network related features are "
|
||||||
|
"unavailable."
|
||||||
msgstr "未偵測到網路外掛程式。網路相關功能不可用。"
|
msgstr "未偵測到網路外掛程式。網路相關功能不可用。"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -8014,7 +8112,7 @@ msgstr "(需要重啟程式)"
|
|||||||
msgid "filaments"
|
msgid "filaments"
|
||||||
msgstr "線材"
|
msgstr "線材"
|
||||||
|
|
||||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
msgid "Optimizes filament area maximum height by chosen filament count."
|
||||||
msgstr "根據選擇的線材數量優化線材區域最大高度"
|
msgstr "根據選擇的線材數量優化線材區域最大高度"
|
||||||
|
|
||||||
msgid "Features"
|
msgid "Features"
|
||||||
@@ -8208,33 +8306,33 @@ msgstr "線材與顏色"
|
|||||||
msgid "Color only"
|
msgid "Color only"
|
||||||
msgstr "僅顏色"
|
msgstr "僅顏色"
|
||||||
|
|
||||||
msgid "Network plugin"
|
msgid "Network plug-in"
|
||||||
msgstr "網路外掛程式"
|
msgstr "網路外掛程式"
|
||||||
|
|
||||||
msgid "Enable network plugin"
|
msgid "Enable network plug-in"
|
||||||
msgstr "啟用網路外掛程式"
|
msgstr "啟用網路外掛程式"
|
||||||
|
|
||||||
msgid "Network plugin version"
|
msgid "Network plug-in version"
|
||||||
msgstr "網路外掛程式版本"
|
msgstr "網路外掛程式版本"
|
||||||
|
|
||||||
msgid "Select the network plugin version to use"
|
msgid "Select the network plug-in version to use"
|
||||||
msgstr "選擇要使用的網路外掛程式版本"
|
msgstr "選擇要使用的網路外掛程式版本"
|
||||||
|
|
||||||
msgid "(Latest)"
|
msgid "(Latest)"
|
||||||
msgstr "(最新版)"
|
msgstr "(最新版)"
|
||||||
|
|
||||||
msgid "Network plugin switched successfully."
|
msgid "Network plug-in switched successfully."
|
||||||
msgstr "網路外掛程式切換成功。"
|
msgstr "網路外掛程式切換成功。"
|
||||||
|
|
||||||
msgid "Success"
|
msgid "Success"
|
||||||
msgstr "成功"
|
msgstr "成功"
|
||||||
|
|
||||||
msgid "Failed to load network plugin. Please restart the application."
|
msgid "Failed to load network plug-in. Please restart the application."
|
||||||
msgstr "無法載入網路外掛程式。請重新啟動應用程式。"
|
msgstr "無法載入網路外掛程式。請重新啟動應用程式。"
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You've selected network plugin version %s.\n"
|
"You've selected network plug-in version %s.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Would you like to download and install this version now?\n"
|
"Would you like to download and install this version now?\n"
|
||||||
"\n"
|
"\n"
|
||||||
@@ -8246,7 +8344,7 @@ msgstr ""
|
|||||||
"\n"
|
"\n"
|
||||||
"注意:安裝後應用程式可能需要重新啟動。"
|
"注意:安裝後應用程式可能需要重新啟動。"
|
||||||
|
|
||||||
msgid "Download Network Plugin"
|
msgid "Download Network Plug-in"
|
||||||
msgstr "下載網路外掛程式"
|
msgstr "下載網路外掛程式"
|
||||||
|
|
||||||
msgid "Associate files to OrcaSlicer"
|
msgid "Associate files to OrcaSlicer"
|
||||||
@@ -8316,19 +8414,16 @@ msgstr "除錯"
|
|||||||
msgid "trace"
|
msgid "trace"
|
||||||
msgstr "跟蹤"
|
msgstr "跟蹤"
|
||||||
|
|
||||||
msgid "Network Plugin"
|
|
||||||
msgstr "網路外掛程式"
|
|
||||||
|
|
||||||
msgid "Reload"
|
msgid "Reload"
|
||||||
msgstr "重新載入"
|
msgstr "重新載入"
|
||||||
|
|
||||||
msgid "Reload the network plugin without restarting the application"
|
msgid "Reload the network plug-in without restarting the application"
|
||||||
msgstr "重新載入網路外掛程式而無需重新啟動應用程式"
|
msgstr "重新載入網路外掛程式而無需重新啟動應用程式"
|
||||||
|
|
||||||
msgid "Network plugin reloaded successfully."
|
msgid "Network plug-in reloaded successfully."
|
||||||
msgstr "網路外掛程式重新載入成功。"
|
msgstr "網路外掛程式重新載入成功。"
|
||||||
|
|
||||||
msgid "Failed to reload network plugin. Please restart the application."
|
msgid "Failed to reload network plug-in. Please restart the application."
|
||||||
msgstr "無法重新載入網路外掛程式。請重新啟動應用程式。"
|
msgstr "無法重新載入網路外掛程式。請重新啟動應用程式。"
|
||||||
|
|
||||||
msgid "Reload Failed"
|
msgid "Reload Failed"
|
||||||
@@ -8547,8 +8642,11 @@ msgstr "發布已取消"
|
|||||||
msgid "Slicing Plate 1"
|
msgid "Slicing Plate 1"
|
||||||
msgstr "正在切片列印板 1"
|
msgstr "正在切片列印板 1"
|
||||||
|
|
||||||
msgid "Packing data to 3mf"
|
msgid "Packing data to 3MF"
|
||||||
msgstr "正在將資料打包至 3mf"
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Uploading data"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Jump to webpage"
|
msgid "Jump to webpage"
|
||||||
msgstr "跳至網頁"
|
msgstr "跳至網頁"
|
||||||
@@ -8876,8 +8974,8 @@ msgstr "高溫平滑列印板"
|
|||||||
msgid "Textured PEI Plate"
|
msgid "Textured PEI Plate"
|
||||||
msgstr "紋理 PEI 列印板"
|
msgstr "紋理 PEI 列印板"
|
||||||
|
|
||||||
msgid "Cool Plate (Supertack)"
|
msgid "Cool Plate (SuperTack)"
|
||||||
msgstr "低溫列印板(超強黏性版)"
|
msgstr "低溫增穩列印板"
|
||||||
|
|
||||||
msgid "Click here if you can't connect to the printer"
|
msgid "Click here if you can't connect to the printer"
|
||||||
msgstr "如果無法連接到列印設備,請按一下此處"
|
msgstr "如果無法連接到列印設備,請按一下此處"
|
||||||
@@ -9188,7 +9286,7 @@ msgid ""
|
|||||||
msgstr "同時啟用精確 Z 軸高度與換料塔功能,可能會讓換料塔變大。是否仍要啟用?"
|
msgstr "同時啟用精確 Z 軸高度與換料塔功能,可能會讓換料塔變大。是否仍要啟用?"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection. There may be flaws on the "
|
"A prime tower is required for clumping detection. There may be flaws on the "
|
||||||
"model without prime tower. Do you still want to enable clumping detection?"
|
"model without prime tower. Do you still want to enable clumping detection?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"堵塞偵測需要換料塔。若沒有換料塔,列印物件上可能會有瑕疵。您是否仍要啟用堵塞"
|
"堵塞偵測需要換料塔。若沒有換料塔,列印物件上可能會有瑕疵。您是否仍要啟用堵塞"
|
||||||
@@ -9306,8 +9404,8 @@ msgstr ""
|
|||||||
msgid ""
|
msgid ""
|
||||||
"When recording timelapse without toolhead, it is recommended to add a "
|
"When recording timelapse without toolhead, it is recommended to add a "
|
||||||
"\"Timelapse Wipe Tower\" \n"
|
"\"Timelapse Wipe Tower\" \n"
|
||||||
"by right-click the empty position of build plate and choose \"Add "
|
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
"\"->\"Timelapse Wipe Tower\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"在錄製無工具頭縮時錄影影片時,建議新增一個「縮時錄影換料塔」\n"
|
"在錄製無工具頭縮時錄影影片時,建議新增一個「縮時錄影換料塔」\n"
|
||||||
"可以通過右鍵點擊構建板的空白位置,選擇『新增標準模型』->『縮時錄影換料塔』來"
|
"可以通過右鍵點擊構建板的空白位置,選擇『新增標準模型』->『縮時錄影換料塔』來"
|
||||||
@@ -9513,9 +9611,6 @@ msgstr "列印溫度"
|
|||||||
msgid "Nozzle temperature when printing"
|
msgid "Nozzle temperature when printing"
|
||||||
msgstr "列印時的噴嘴溫度"
|
msgstr "列印時的噴嘴溫度"
|
||||||
|
|
||||||
msgid "Cool Plate (SuperTack)"
|
|
||||||
msgstr "低溫增穩列印板"
|
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
|
||||||
"means the filament does not support printing on the Cool Plate SuperTack."
|
"means the filament does not support printing on the Cool Plate SuperTack."
|
||||||
@@ -9954,6 +10049,12 @@ msgstr "顯示所有預設(包括不相容的)"
|
|||||||
msgid "Select presets to compare"
|
msgid "Select presets to compare"
|
||||||
msgstr "選擇要比較的預設"
|
msgstr "選擇要比較的預設"
|
||||||
|
|
||||||
|
msgid "Left Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Right Preset Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can only transfer to current active profile because it has been modified."
|
"You can only transfer to current active profile because it has been modified."
|
||||||
msgstr "因為目前的設定檔已被修改,您只能轉移到目前啟用的設定檔。"
|
msgstr "因為目前的設定檔已被修改,您只能轉移到目前啟用的設定檔。"
|
||||||
@@ -10383,6 +10484,12 @@ msgstr "點擊下載。"
|
|||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "登入"
|
msgstr "登入"
|
||||||
|
|
||||||
|
msgid "[Action Required] "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "[Action Required]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "The configuration package is changed in previous Config Guide"
|
msgid "The configuration package is changed in previous Config Guide"
|
||||||
msgstr "設定檔在之前的設定引導過程中已改變"
|
msgstr "設定檔在之前的設定引導過程中已改變"
|
||||||
|
|
||||||
@@ -11077,7 +11184,7 @@ msgid ""
|
|||||||
msgstr "啟用“按物件”序列時,不支援結塊檢測。"
|
msgstr "啟用“按物件”序列時,不支援結塊檢測。"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Prime tower is required for clumping detection; otherwise, there may be "
|
"A prime tower is required for clumping detection; otherwise, there may be "
|
||||||
"flaws on the model."
|
"flaws on the model."
|
||||||
msgstr "結塊檢測需要 Prime 塔;否則,模型可能存在缺陷。"
|
msgstr "結塊檢測需要 Prime 塔;否則,模型可能存在缺陷。"
|
||||||
|
|
||||||
@@ -12495,7 +12602,7 @@ msgid ""
|
|||||||
"models\n"
|
"models\n"
|
||||||
"3. No filtering - creates internal bridges on every potential internal "
|
"3. No filtering - creates internal bridges on every potential internal "
|
||||||
"overhang. This option is useful for heavily slanted top surface models; "
|
"overhang. This option is useful for heavily slanted top surface models; "
|
||||||
"however, in most cases, it creates too many unnecessary bridges"
|
"however, in most cases, it creates too many unnecessary bridges."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"此選項可幫助降低在高度傾斜或曲面模型上的頂部表面起皺問題。\n"
|
"此選項可幫助降低在高度傾斜或曲面模型上的頂部表面起皺問題。\n"
|
||||||
"預設情況下,小型內部橋接會被過濾掉,內部實心填充會直接列印在稀疏填充上。這種"
|
"預設情況下,小型內部橋接會被過濾掉,內部實心填充會直接列印在稀疏填充上。這種"
|
||||||
@@ -12938,7 +13045,7 @@ msgid ""
|
|||||||
"less acceleration you print, the larger the range of acceptable PA values. "
|
"less acceleration you print, the larger the range of acceptable PA values. "
|
||||||
"If no difference is visible, use the PA value from the faster test\n"
|
"If no difference is visible, use the PA value from the faster test\n"
|
||||||
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
|
||||||
"here and save your filament profile"
|
"here and save your filament profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"新增壓力補償 (PA) 值、體積流速和加速度的資料集,使用逗號分隔。每行一組資料。"
|
"新增壓力補償 (PA) 值、體積流速和加速度的資料集,使用逗號分隔。每行一組資料。"
|
||||||
"例如:\n"
|
"例如:\n"
|
||||||
@@ -13669,8 +13776,8 @@ msgid "mm/s² or %"
|
|||||||
msgstr "mm/s² 或 %"
|
msgstr "mm/s² 或 %"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
"g. 100%), it will be calculated based on the default acceleration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"稀疏填充的加速度。如果該值表示為百分比(例如 100%),則將根據預設加速度進行計"
|
"稀疏填充的加速度。如果該值表示為百分比(例如 100%),則將根據預設加速度進行計"
|
||||||
"算。"
|
"算。"
|
||||||
@@ -13778,10 +13885,10 @@ msgstr "滿速風扇在"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Fan speed will be ramped up linearly from zero at layer "
|
"Fan speed will be ramped up linearly from zero at layer "
|
||||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"風扇速度會從第「close_fan_the_first_x_layers」層開始,從零速以線性方式逐漸增"
|
"風扇速度會從第「close_fan_the_first_x_layers」層開始,從零速以線性方式逐漸增"
|
||||||
"加,直到第「full_fan_speed_layer」層達到最大速度。如果"
|
"加,直到第「full_fan_speed_layer」層達到最大速度。如果"
|
||||||
@@ -14258,9 +14365,9 @@ msgstr "標註物件"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this to add comments into the G-code labeling print moves with what "
|
"Enable this to add comments into the G-code labeling print moves with what "
|
||||||
"object they belong to, which is useful for the Octoprint CancelObject "
|
"object they belong to, which is useful for the Octoprint CancelObject plug-"
|
||||||
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
|
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
|
||||||
"setup and Wipe into Object / Wipe into Infill."
|
"and Wipe into Object / Wipe into Infill."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"啟用此選項可將註解新增至 G-code 中,標記列印移動及其所屬物件,這對於 "
|
"啟用此選項可將註解新增至 G-code 中,標記列印移動及其所屬物件,這對於 "
|
||||||
"Octoprint CancelObject 外掛程式非常有用。此設定與單擠出機多色設定和擦除到物"
|
"Octoprint CancelObject 外掛程式非常有用。此設定與單擠出機多色設定和擦除到物"
|
||||||
@@ -14571,7 +14678,7 @@ msgstr "熨燙類型"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Ironing is using small flow to print on same height of surface again to make "
|
"Ironing is using small flow to print on same height of surface again to make "
|
||||||
"flat surface more smooth. This setting controls which layer being ironed"
|
"flat surface more smooth. This setting controls which layer being ironed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"熨燙是指使用小流量在表面相同高度再次列印,以使平面更加光滑。此設定控制哪些層"
|
"熨燙是指使用小流量在表面相同高度再次列印,以使平面更加光滑。此設定控制哪些層"
|
||||||
"進行熨燙"
|
"進行熨燙"
|
||||||
@@ -15521,8 +15628,8 @@ msgid "Role base wipe speed"
|
|||||||
msgstr "自動擦拭速度"
|
msgstr "自動擦拭速度"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
"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 "
|
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||||
"wipe action."
|
"wipe action."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -15758,7 +15865,7 @@ msgid ""
|
|||||||
"timelapse video when printing completes. If smooth mode is selected, the "
|
"timelapse video when printing completes. If smooth mode is selected, the "
|
||||||
"toolhead will move to the excess chute after each layer is printed and then "
|
"toolhead will move to the excess chute after each layer is printed and then "
|
||||||
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
"take a snapshot. Since the melt filament may leak from the nozzle during the "
|
||||||
"process of taking a snapshot, prime tower is required for smooth mode to "
|
"process of taking a snapshot, a prime tower is required for smooth mode to "
|
||||||
"wipe nozzle."
|
"wipe nozzle."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"選擇平滑模式或傳統模式時,列印過程將產生縮時影片。每列印一層,相機會拍攝一張"
|
"選擇平滑模式或傳統模式時,列印過程將產生縮時影片。每列印一層,相機會拍攝一張"
|
||||||
@@ -16323,8 +16430,8 @@ msgstr "啟動溫度控制"
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this option for automated chamber temperature control. This option "
|
"Enable this option for automated chamber temperature control. This option "
|
||||||
"activates the emitting of an M191 command before the "
|
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||||
"\"machine_start_gcode\"\n"
|
"\"\n"
|
||||||
" which sets the chamber temperature and waits until it is reached. In "
|
" 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 "
|
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||||
"chamber heater, if present.\n"
|
"chamber heater, if present.\n"
|
||||||
@@ -16593,6 +16700,12 @@ msgstr ""
|
|||||||
"2. 圓錐:底部帶圓角的圓錐形,有助於穩定換料塔。\n"
|
"2. 圓錐:底部帶圓角的圓錐形,有助於穩定換料塔。\n"
|
||||||
"3. 肋條:為換料塔牆體添加四條肋條以增強穩定性"
|
"3. 肋條:為換料塔牆體添加四條肋條以增強穩定性"
|
||||||
|
|
||||||
|
msgid "Rectangle"
|
||||||
|
msgstr "矩形"
|
||||||
|
|
||||||
|
msgid "Rib"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Extra rib length"
|
msgid "Extra rib length"
|
||||||
msgstr "額外肋條長度"
|
msgstr "額外肋條長度"
|
||||||
|
|
||||||
@@ -17155,7 +17268,7 @@ msgid ""
|
|||||||
"machines in the list."
|
"machines in the list."
|
||||||
msgstr "若啟用,則檢查目前列印設備是否與列表中的列印設備向下相容"
|
msgstr "若啟用,則檢查目前列印設備是否與列表中的列印設備向下相容"
|
||||||
|
|
||||||
msgid "downward machines settings"
|
msgid "Downward machines settings"
|
||||||
msgstr "向下相容列印設備設定"
|
msgstr "向下相容列印設備設定"
|
||||||
|
|
||||||
msgid "The machine settings list needs to do downward checking."
|
msgid "The machine settings list needs to do downward checking."
|
||||||
@@ -17188,8 +17301,8 @@ msgid "Debug level"
|
|||||||
msgstr "除錯模式等級"
|
msgstr "除錯模式等級"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||||
"5:trace\n"
|
"trace\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"設定除錯日誌級別。0:致命錯誤,1:錯誤,2:警告,3:資訊,4:除錯,5:追蹤\n"
|
"設定除錯日誌級別。0:致命錯誤,1:錯誤,2:警告,3:資訊,4:除錯,5:追蹤\n"
|
||||||
|
|
||||||
@@ -17801,10 +17914,6 @@ msgstr "該名稱與另一個現有預設值名稱相同"
|
|||||||
msgid "create new preset failed."
|
msgid "create new preset failed."
|
||||||
msgstr "新增預設失敗。"
|
msgstr "新增預設失敗。"
|
||||||
|
|
||||||
#, c-format, boost-format
|
|
||||||
msgid "The selected preset: %s is not found."
|
|
||||||
msgstr "找不到所選的預設:%s"
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid "Could not find parameter: %s."
|
msgid "Could not find parameter: %s."
|
||||||
msgstr "找不到參數:%s"
|
msgstr "找不到參數:%s"
|
||||||
@@ -18457,6 +18566,23 @@ msgstr "快速塔"
|
|||||||
msgid "Input shaper type"
|
msgid "Input shaper type"
|
||||||
msgstr "輸入整形器類型"
|
msgstr "輸入整形器類型"
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Please ensure the selected type is compatible with your firmware version."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Marlin version => 2.1.2\n"
|
||||||
|
"Fixed-Time motion not yet implemented."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Klipper version => 0.9.0"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"RepRap firmware version => 3.4.0\n"
|
||||||
|
"Check your firmware documentation for supported shaper types."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency (Start / End): "
|
msgid "Frequency (Start / End): "
|
||||||
msgstr "頻率(開始/結束):"
|
msgstr "頻率(開始/結束):"
|
||||||
|
|
||||||
@@ -18495,6 +18621,9 @@ msgstr "請輸入有效的阻尼因子(0 < 阻尼/ζ因子 <= 1)"
|
|||||||
msgid "Input shaping Damp test"
|
msgid "Input shaping Damp test"
|
||||||
msgstr "輸入整形阻尼測試"
|
msgstr "輸入整形阻尼測試"
|
||||||
|
|
||||||
|
msgid "Check firmware compatibility."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Frequency: "
|
msgid "Frequency: "
|
||||||
msgstr "頻率:"
|
msgstr "頻率:"
|
||||||
|
|
||||||
@@ -18824,8 +18953,8 @@ msgstr ""
|
|||||||
"確定要覆寫嗎?"
|
"確定要覆寫嗎?"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||||
"selected\".\n"
|
"\".\n"
|
||||||
"To add preset for more printers, please go to printer selection"
|
"To add preset for more printers, please go to printer selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"將會將預設名稱重新命名為「廠牌 型號 序號 @選擇的列印設備」。\n"
|
"將會將預設名稱重新命名為「廠牌 型號 序號 @選擇的列印設備」。\n"
|
||||||
@@ -18873,9 +19002,6 @@ msgstr "輸入自訂噴嘴直徑"
|
|||||||
msgid "Can't find my nozzle diameter"
|
msgid "Can't find my nozzle diameter"
|
||||||
msgstr "找不到我的噴嘴直徑"
|
msgstr "找不到我的噴嘴直徑"
|
||||||
|
|
||||||
msgid "Rectangle"
|
|
||||||
msgstr "矩形"
|
|
||||||
|
|
||||||
msgid "Printable Space"
|
msgid "Printable Space"
|
||||||
msgstr "可列印空間"
|
msgstr "可列印空間"
|
||||||
|
|
||||||
@@ -20180,6 +20306,127 @@ msgstr "官方線材"
|
|||||||
msgid "More Colors"
|
msgid "More Colors"
|
||||||
msgstr "更多顏色"
|
msgstr "更多顏色"
|
||||||
|
|
||||||
|
msgid "Network Plug-in Update Available"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bambu Network Plug-in Required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
|
||||||
|
"and remote printing."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Error: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Version to install:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Download and Install"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip for Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "A new version of the Bambu Network Plug-in is available."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Current version: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update to version:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Update Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Remind Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Skip Version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Don't Ask Again"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "The Bambu Network Plug-in has been installed successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"A restart is required to load the new plug-in. Would you like to restart now?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Restart Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "NO RAMMING AT ALL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Volumetric speed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Step file import parameters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Smaller linear and angular deflections result in higher-quality "
|
||||||
|
"transformations but increase the processing time."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Linear Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Angle Deflection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Split compound and compsolid into multiple objects"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Number of triangular facets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Calculating, please wait..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. "
|
||||||
|
"Generic filament presets will be used."
|
||||||
|
msgstr "線材可能與目前的列印設備設定不相容,將使用一般線材預設。"
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament model is unknown. Still using the previous filament preset."
|
||||||
|
msgstr "線材型號未知,將繼續使用先前的線材預設。"
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. Generic filament presets will be used."
|
||||||
|
msgstr "線材型號未知,將使用一般線材預設。"
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"The filament may not be compatible with the current machine settings. A "
|
||||||
|
"random filament preset will be used."
|
||||||
|
msgstr "線材可能與目前的列印設備設定不相容,將使用隨機線材預設。"
|
||||||
|
|
||||||
|
msgid "The filament model is unknown. A random filament preset will be used."
|
||||||
|
msgstr "線材型號未知,將使用隨機線材預設。"
|
||||||
|
|
||||||
#: resources/data/hints.ini: [hint:Precise wall]
|
#: resources/data/hints.ini: [hint:Precise wall]
|
||||||
msgid ""
|
msgid ""
|
||||||
"Precise wall\n"
|
"Precise wall\n"
|
||||||
@@ -20543,3 +20790,19 @@ msgstr ""
|
|||||||
"避免翹曲\n"
|
"避免翹曲\n"
|
||||||
"您知道嗎?當列印容易翹曲的材料(如 ABS)時,適當提高熱床溫度\n"
|
"您知道嗎?當列印容易翹曲的材料(如 ABS)時,適當提高熱床溫度\n"
|
||||||
"可以降低翹曲的機率。"
|
"可以降低翹曲的機率。"
|
||||||
|
|
||||||
|
#~ msgid "Auto-refill"
|
||||||
|
#~ msgstr "自動補料"
|
||||||
|
|
||||||
|
#~ msgid "Network Plug-in"
|
||||||
|
#~ msgstr "網路外掛程式"
|
||||||
|
|
||||||
|
#~ msgid "Packing data to 3mf"
|
||||||
|
#~ msgstr "正在將資料打包至 3mf"
|
||||||
|
|
||||||
|
#~ msgid "Cool Plate (Supertack)"
|
||||||
|
#~ msgstr "低溫列印板(超強黏性版)"
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
#~ msgid "The selected preset: %s is not found."
|
||||||
|
#~ msgstr "找不到所選的預設:%s"
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 21 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 25 KiB |
File diff suppressed because it is too large
Load Diff
BIN
resources/profiles/Qidi/Qidi Q2C_cover.png
Normal file
BIN
resources/profiles/Qidi/Qidi Q2C_cover.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 34 KiB |
32
resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2C.json
Normal file
32
resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2C.json
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"filament_id": "GFB99",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"name": "Bambu ABS@Q2C-Series",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "false",
|
||||||
|
"inherits": "fdm_filament_q_common",
|
||||||
|
"box_temperature_range_high": ["45"],
|
||||||
|
"chamber_temperature": ["0"],
|
||||||
|
"close_fan_the_first_x_layers": ["3"],
|
||||||
|
"during_print_exhaust_fan_speed": ["0"],
|
||||||
|
"fan_max_speed": ["80"],
|
||||||
|
"fan_min_speed": ["20"],
|
||||||
|
"filament_adhesiveness_category": ["200"],
|
||||||
|
"filament_density": ["1.05"],
|
||||||
|
"filament_flow_ratio": ["0.95"],
|
||||||
|
"filament_type": ["ABS"],
|
||||||
|
"filament_vendor": ["Bambu Lab"],
|
||||||
|
"nozzle_temperature_initial_layer": ["250"],
|
||||||
|
"nozzle_temperature_range_high": ["280"],
|
||||||
|
"nozzle_temperature_range_low": ["240"],
|
||||||
|
"nozzle_temperature": ["260"],
|
||||||
|
"overhang_fan_speed": ["80"],
|
||||||
|
"overhang_fan_threshold": ["25%"],
|
||||||
|
"pressure_advance": ["0.035"],
|
||||||
|
"slow_down_layer_time": ["4"],
|
||||||
|
"temperature_vitrification": ["100"],
|
||||||
|
"hot_plate_temp_initial_layer" : ["90"],
|
||||||
|
"hot_plate_temp" : ["90"],
|
||||||
|
"compatible_printers": []
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"name": "Bambu ABS @Qidi Q2C 0.2 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Bambu ABS@Q2C-Series",
|
||||||
|
"chamber_temperature": ["0"],
|
||||||
|
"filament_max_volumetric_speed": ["2"],
|
||||||
|
"pressure_advance": ["0.03"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.2 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"name": "Bambu ABS @Qidi Q2C 0.4 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Bambu ABS@Q2C-Series",
|
||||||
|
"pressure_advance": ["0.03"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.4 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"name": "Bambu ABS @Qidi Q2C 0.6 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Bambu ABS@Q2C-Series",
|
||||||
|
"nozzle_temperature": ["250"],
|
||||||
|
"pressure_advance": ["0.014"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.6 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"name": "Bambu ABS @Qidi Q2C 0.8 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Bambu ABS@Q2C-Series",
|
||||||
|
"nozzle_temperature": ["250"],
|
||||||
|
"pressure_advance": ["0.011"],
|
||||||
|
"slow_down_min_speed": ["10"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.8 nozzle"]
|
||||||
|
}
|
||||||
33
resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2C.json
Normal file
33
resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2C.json
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"filament_id": "GFG99",
|
||||||
|
"setting_id": "GFSG99",
|
||||||
|
"name": "Bambu PETG@Q2C-Series",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "false",
|
||||||
|
"inherits": "fdm_filament_q_common",
|
||||||
|
"box_temperature_range_high": ["45"],
|
||||||
|
"close_fan_the_first_x_layers": ["3"],
|
||||||
|
"fan_cooling_layer_time": ["30"],
|
||||||
|
"fan_max_speed": ["40"],
|
||||||
|
"fan_min_speed": ["10"],
|
||||||
|
"filament_adhesiveness_category": ["300"],
|
||||||
|
"filament_flow_ratio": ["0.95"],
|
||||||
|
"filament_max_volumetric_speed": ["13"],
|
||||||
|
"filament_type": ["PETG"],
|
||||||
|
"filament_vendor": ["Bambu Lab"],
|
||||||
|
"nozzle_temperature_initial_layer": ["240"],
|
||||||
|
"nozzle_temperature_range_high": ["270"],
|
||||||
|
"nozzle_temperature_range_low": ["220"],
|
||||||
|
"nozzle_temperature": ["250"],
|
||||||
|
"overhang_fan_speed": ["90"],
|
||||||
|
"overhang_fan_threshold": ["10%"],
|
||||||
|
"pressure_advance": ["0.056"],
|
||||||
|
"slow_down_layer_time": ["8"],
|
||||||
|
"supertack_plate_temp_initial_layer": ["70"],
|
||||||
|
"supertack_plate_temp": ["70"],
|
||||||
|
"temperature_vitrification": ["70"],
|
||||||
|
"hot_plate_temp_initial_layer" : ["80"],
|
||||||
|
"hot_plate_temp" : ["80"],
|
||||||
|
"compatible_printers": []
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSG99",
|
||||||
|
"name": "Bambu PETG @Qidi Q2C 0.2 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Bambu PETG@Q2C-Series",
|
||||||
|
"filament_max_volumetric_speed": ["1"],
|
||||||
|
"pressure_advance": ["0.056"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.2 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSG99",
|
||||||
|
"name": "Bambu PETG @Qidi Q2C 0.4 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Bambu PETG@Q2C-Series",
|
||||||
|
"pressure_advance": ["0.056"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.4 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSG99",
|
||||||
|
"name": "Bambu PETG @Qidi Q2C 0.6 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Bambu PETG@Q2C-Series",
|
||||||
|
"pressure_advance": ["0.04"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.6 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSG99",
|
||||||
|
"name": "Bambu PETG @Qidi Q2C 0.8 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Bambu PETG@Q2C-Series",
|
||||||
|
"pressure_advance": ["0.04"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.8 nozzle"]
|
||||||
|
}
|
||||||
22
resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2C.json
Normal file
22
resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2C.json
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"filament_id": "GFL99",
|
||||||
|
"setting_id": "GFSL99",
|
||||||
|
"name": "Bambu PLA@Q2C-Series",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "false",
|
||||||
|
"inherits": "fdm_filament_q_common",
|
||||||
|
"filament_adhesiveness_category": ["100"],
|
||||||
|
"filament_type": ["PLA"],
|
||||||
|
"filament_vendor": ["Bambu Lab"],
|
||||||
|
"additional_cooling_fan_speed": ["100"],
|
||||||
|
"nozzle_temperature_range_high": ["240"],
|
||||||
|
"nozzle_temperature_range_low": ["190"],
|
||||||
|
"nozzle_temperature_initial_layer": ["210"],
|
||||||
|
"nozzle_temperature": ["210"],
|
||||||
|
"overhang_fan_threshold": ["50%"],
|
||||||
|
"supertack_plate_temp_initial_layer": ["45"],
|
||||||
|
"supertack_plate_temp": ["45"],
|
||||||
|
"temperature_vitrification": ["45"],
|
||||||
|
"compatible_printers": []
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSL99",
|
||||||
|
"name": "Bambu PLA @Qidi Q2C 0.2 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Bambu PLA@Q2C-Series",
|
||||||
|
"filament_max_volumetric_speed": ["2"],
|
||||||
|
"pressure_advance": ["0.034"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.2 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSL99",
|
||||||
|
"name": "Bambu PLA @Qidi Q2C 0.4 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Bambu PLA@Q2C-Series",
|
||||||
|
"pressure_advance": ["0.034"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.4 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSL99",
|
||||||
|
"name": "Bambu PLA @Qidi Q2C 0.6 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Bambu PLA@Q2C-Series",
|
||||||
|
"pressure_advance": ["0.016"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.6 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSL99",
|
||||||
|
"name": "Bambu PLA @Qidi Q2C 0.8 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Bambu PLA@Q2C-Series",
|
||||||
|
"pressure_advance": ["0.008"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.8 nozzle"]
|
||||||
|
}
|
||||||
33
resources/profiles/Qidi/filament/Q2/Generic ABS @Q2C.json
Normal file
33
resources/profiles/Qidi/filament/Q2/Generic ABS @Q2C.json
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"filament_id": "QD_2_0_11",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"name": "Generic ABS@Q2C-Series",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "false",
|
||||||
|
"inherits": "fdm_filament_q_common",
|
||||||
|
"box_temperature_range_high": ["45"],
|
||||||
|
"close_fan_the_first_x_layers": ["3"],
|
||||||
|
"during_print_exhaust_fan_speed": ["0"],
|
||||||
|
"fan_cooling_layer_time": ["30"],
|
||||||
|
"fan_max_speed": ["80"],
|
||||||
|
"fan_min_speed": ["10"],
|
||||||
|
"filament_adhesiveness_category": ["200"],
|
||||||
|
"filament_density": ["1.04"],
|
||||||
|
"filament_flow_ratio": ["0.95"],
|
||||||
|
"filament_max_volumetric_speed": ["17"],
|
||||||
|
"filament_type": ["ABS"],
|
||||||
|
"filament_vendor": ["Generic"],
|
||||||
|
"nozzle_temperature_initial_layer": ["250"],
|
||||||
|
"nozzle_temperature_range_high": ["280"],
|
||||||
|
"nozzle_temperature_range_low": ["240"],
|
||||||
|
"nozzle_temperature": ["250"],
|
||||||
|
"overhang_fan_speed": ["80"],
|
||||||
|
"overhang_fan_threshold": ["25%"],
|
||||||
|
"pressure_advance": ["0.021"],
|
||||||
|
"slow_down_layer_time": ["4"],
|
||||||
|
"temperature_vitrification": ["100"],
|
||||||
|
"hot_plate_temp_initial_layer" : ["90"],
|
||||||
|
"hot_plate_temp" : ["90"],
|
||||||
|
"compatible_printers": []
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"name": "Generic ABS @Qidi Q2C 0.2 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Generic ABS@Q2C-Series",
|
||||||
|
"filament_max_volumetric_speed": ["2"],
|
||||||
|
"pressure_advance": ["0.03"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.2 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"name": "Generic ABS @Qidi Q2C 0.4 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Generic ABS@Q2C-Series",
|
||||||
|
"pressure_advance": ["0.03"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.4 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"name": "Generic ABS @Qidi Q2C 0.6 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Generic ABS@Q2C-Series",
|
||||||
|
"filament_max_volumetric_speed": ["24.5"],
|
||||||
|
"pressure_advance": ["0.014"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.6 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"name": "Generic ABS @Qidi Q2C 0.8 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Generic ABS@Q2C-Series",
|
||||||
|
"filament_max_volumetric_speed": ["24.5"],
|
||||||
|
"pressure_advance": ["0.011"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.8 nozzle"]
|
||||||
|
}
|
||||||
32
resources/profiles/Qidi/filament/Q2/Generic PC @Q2C.json
Normal file
32
resources/profiles/Qidi/filament/Q2/Generic PC @Q2C.json
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"filament_id": "GFB99",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"name": "Generic PC@Q2C-Series",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "false",
|
||||||
|
"inherits": "fdm_filament_q_common",
|
||||||
|
"box_temperature_range_high": ["65"],
|
||||||
|
"close_fan_the_first_x_layers": ["3"],
|
||||||
|
"during_print_exhaust_fan_speed": ["0"],
|
||||||
|
"fan_cooling_layer_time": ["30"],
|
||||||
|
"fan_max_speed": ["60"],
|
||||||
|
"fan_min_speed": ["10"],
|
||||||
|
"filament_adhesiveness_category": ["500"],
|
||||||
|
"filament_density": ["1.04"],
|
||||||
|
"filament_max_volumetric_speed": ["10"],
|
||||||
|
"filament_type": ["PC"],
|
||||||
|
"filament_vendor": ["Generic"],
|
||||||
|
"nozzle_temperature_initial_layer": ["270"],
|
||||||
|
"nozzle_temperature_range_high": ["290"],
|
||||||
|
"nozzle_temperature_range_low": ["260"],
|
||||||
|
"nozzle_temperature": ["280"],
|
||||||
|
"overhang_fan_speed": ["60"],
|
||||||
|
"overhang_fan_threshold": ["25%"],
|
||||||
|
"pressure_advance": ["0.021"],
|
||||||
|
"slow_down_layer_time": ["2"],
|
||||||
|
"temperature_vitrification": ["100"],
|
||||||
|
"hot_plate_temp_initial_layer" : ["110"],
|
||||||
|
"hot_plate_temp" : ["110"],
|
||||||
|
"compatible_printers": []
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"name": "Generic PC @Qidi Q2C 0.2 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Generic PC@Q2C-Series",
|
||||||
|
"filament_flow_ratio": ["0.94"],
|
||||||
|
"filament_max_volumetric_speed": ["1"],
|
||||||
|
"pressure_advance": ["0.04"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.2 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"name": "Generic PC @Qidi Q2C 0.4 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Generic PC@Q2C-Series",
|
||||||
|
"filament_flow_ratio": ["0.95"],
|
||||||
|
"filament_max_volumetric_speed": ["10"],
|
||||||
|
"pressure_advance": ["0.04"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.4 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"name": "Generic PC @Qidi Q2C 0.6 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Generic PC@Q2C-Series",
|
||||||
|
"filament_flow_ratio": ["0.95"],
|
||||||
|
"filament_max_volumetric_speed": ["10"],
|
||||||
|
"pressure_advance": ["0.03"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.6 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"name": "Generic PC @Qidi Q2C 0.8 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Generic PC@Q2C-Series",
|
||||||
|
"filament_flow_ratio": ["0.95"],
|
||||||
|
"filament_max_volumetric_speed": ["10"],
|
||||||
|
"pressure_advance": ["0.008"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.8 nozzle"]
|
||||||
|
}
|
||||||
34
resources/profiles/Qidi/filament/Q2/Generic PETG @Q2C.json
Normal file
34
resources/profiles/Qidi/filament/Q2/Generic PETG @Q2C.json
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"filament_id": "QD_2_0_41",
|
||||||
|
"setting_id": "GFSG99",
|
||||||
|
"name": "Generic PETG@Q2C-Series",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "false",
|
||||||
|
"inherits": "fdm_filament_q_common",
|
||||||
|
"box_temperature_range_high": ["45"],
|
||||||
|
"close_fan_the_first_x_layers": ["3"],
|
||||||
|
"fan_cooling_layer_time": ["30"],
|
||||||
|
"fan_max_speed": ["90"],
|
||||||
|
"fan_min_speed": ["40"],
|
||||||
|
"filament_adhesiveness_category": ["300"],
|
||||||
|
"filament_density": ["1.27"],
|
||||||
|
"filament_flow_ratio": ["0.95"],
|
||||||
|
"filament_max_volumetric_speed": ["12"],
|
||||||
|
"filament_type": ["PETG"],
|
||||||
|
"filament_vendor": ["Generic"],
|
||||||
|
"nozzle_temperature_initial_layer": ["245"],
|
||||||
|
"nozzle_temperature_range_high": ["270"],
|
||||||
|
"nozzle_temperature_range_low": ["220"],
|
||||||
|
"nozzle_temperature": ["250"],
|
||||||
|
"overhang_fan_speed": ["90"],
|
||||||
|
"overhang_fan_threshold": ["10%"],
|
||||||
|
"pressure_advance": ["0.056"],
|
||||||
|
"slow_down_layer_time": ["12"],
|
||||||
|
"supertack_plate_temp_initial_layer": ["70"],
|
||||||
|
"supertack_plate_temp": ["70"],
|
||||||
|
"temperature_vitrification": ["70"],
|
||||||
|
"hot_plate_temp_initial_layer" : ["80"],
|
||||||
|
"hot_plate_temp" : ["80"],
|
||||||
|
"compatible_printers": []
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSG99",
|
||||||
|
"name": "Generic PETG @Qidi Q2C 0.2 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Generic PETG@Q2C-Series",
|
||||||
|
"filament_max_volumetric_speed": ["1"],
|
||||||
|
"pressure_advance": ["0.056"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.2 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSG99",
|
||||||
|
"name": "Generic PETG @Qidi Q2C 0.4 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Generic PETG@Q2C-Series",
|
||||||
|
"pressure_advance": ["0.056"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.4 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSG99",
|
||||||
|
"name": "Generic PETG @Qidi Q2C 0.6 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Generic PETG@Q2C-Series",
|
||||||
|
"pressure_advance": ["0.04"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.6 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSG99",
|
||||||
|
"name": "Generic PETG @Qidi Q2C 0.8 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Generic PETG@Q2C-Series",
|
||||||
|
"pressure_advance": ["0.04"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.8 nozzle"]
|
||||||
|
}
|
||||||
26
resources/profiles/Qidi/filament/Q2/Generic PLA @Q2C.json
Normal file
26
resources/profiles/Qidi/filament/Q2/Generic PLA @Q2C.json
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"filament_id": "QD_2_0_1",
|
||||||
|
"setting_id": "GFSL99",
|
||||||
|
"name": "Generic PLA@Q2C-Series",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "false",
|
||||||
|
"inherits": "fdm_filament_q_common",
|
||||||
|
"additional_cooling_fan_speed": ["100"],
|
||||||
|
"cool_plate_temp_initial_layer": ["45"],
|
||||||
|
"cool_plate_temp": ["45"],
|
||||||
|
"filament_adhesiveness_category": ["100"],
|
||||||
|
"filament_density": ["1.2"],
|
||||||
|
"filament_max_volumetric_speed": ["14"],
|
||||||
|
"filament_type": ["PLA"],
|
||||||
|
"filament_vendor": ["Generic"],
|
||||||
|
"nozzle_temperature_initial_layer": ["220"],
|
||||||
|
"nozzle_temperature_range_high": ["240"],
|
||||||
|
"nozzle_temperature_range_low": ["190"],
|
||||||
|
"nozzle_temperature": ["220"],
|
||||||
|
"overhang_fan_threshold": ["50%"],
|
||||||
|
"supertack_plate_temp_initial_layer": ["45"],
|
||||||
|
"supertack_plate_temp": ["45"],
|
||||||
|
"temperature_vitrification": ["45"],
|
||||||
|
"compatible_printers": []
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSL99",
|
||||||
|
"name": "Generic PLA @Qidi Q2C 0.2 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Generic PLA@Q2C-Series",
|
||||||
|
"filament_max_volumetric_speed": ["2"],
|
||||||
|
"pressure_advance": ["0.034"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.2 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSL99",
|
||||||
|
"name": "Generic PLA @Qidi Q2C 0.4 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Generic PLA@Q2C-Series",
|
||||||
|
"pressure_advance": ["0.034"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.4 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSL99",
|
||||||
|
"name": "Generic PLA @Qidi Q2C 0.6 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Generic PLA@Q2C-Series",
|
||||||
|
"pressure_advance": ["0.016"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.6 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSL99",
|
||||||
|
"name": "Generic PLA @Qidi Q2C 0.8 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Generic PLA@Q2C-Series",
|
||||||
|
"pressure_advance": ["0.008"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.8 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"filament_id": "QD_2_0_4",
|
||||||
|
"setting_id": "GFSL99_01",
|
||||||
|
"name": "Generic PLA Silk@Q2C-Series",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "false",
|
||||||
|
"inherits": "fdm_filament_q_common",
|
||||||
|
"additional_cooling_fan_speed": ["100"],
|
||||||
|
"filament_adhesiveness_category": ["100"],
|
||||||
|
"filament_density": ["1.2"],
|
||||||
|
"filament_max_volumetric_speed": ["7.5"],
|
||||||
|
"filament_retraction_length": ["0.5"],
|
||||||
|
"filament_type": ["PLA"],
|
||||||
|
"filament_vendor": ["Generic"],
|
||||||
|
"nozzle_temperature_initial_layer": ["220"],
|
||||||
|
"nozzle_temperature_range_high": ["240"],
|
||||||
|
"nozzle_temperature_range_low": ["190"],
|
||||||
|
"nozzle_temperature": ["220"],
|
||||||
|
"overhang_fan_threshold": ["50%"],
|
||||||
|
"pressure_advance": ["0.032"],
|
||||||
|
"supertack_plate_temp_initial_layer": ["35"],
|
||||||
|
"supertack_plate_temp": ["35"],
|
||||||
|
"temperature_vitrification": ["45"],
|
||||||
|
"hot_plate_temp_initial_layer" : ["55"],
|
||||||
|
"hot_plate_temp" : ["55"],
|
||||||
|
"compatible_printers": []
|
||||||
|
}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSL99_01",
|
||||||
|
"name": "Generic PLA Silk @Qidi Q2C 0.4 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Generic PLA Silk@Q2C-Series",
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.4 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSL99_01",
|
||||||
|
"name": "Generic PLA Silk @Qidi Q2C 0.6 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Generic PLA Silk@Q2C-Series",
|
||||||
|
"pressure_advance": ["0.014"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.6 nozzle"]
|
||||||
|
}
|
||||||
24
resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2C.json
Normal file
24
resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2C.json
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"filament_id": "GFL99",
|
||||||
|
"setting_id": "GFSL99",
|
||||||
|
"name": "Generic PLA+@Q2C-Series",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "false",
|
||||||
|
"inherits": "fdm_filament_q_common",
|
||||||
|
"additional_cooling_fan_speed": ["100"],
|
||||||
|
"filament_adhesiveness_category": ["100"],
|
||||||
|
"filament_density": ["1.2"],
|
||||||
|
"filament_max_volumetric_speed": ["12"],
|
||||||
|
"filament_type": ["PLA"],
|
||||||
|
"filament_vendor": ["Generic"],
|
||||||
|
"nozzle_temperature_initial_layer": ["230"],
|
||||||
|
"nozzle_temperature_range_high": ["240"],
|
||||||
|
"nozzle_temperature_range_low": ["190"],
|
||||||
|
"nozzle_temperature": ["230"],
|
||||||
|
"overhang_fan_threshold": ["50%"],
|
||||||
|
"supertack_plate_temp_initial_layer": ["45"],
|
||||||
|
"supertack_plate_temp": ["45"],
|
||||||
|
"temperature_vitrification": ["45"],
|
||||||
|
"compatible_printers": []
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSL99",
|
||||||
|
"name": "Generic PLA+ @Qidi Q2C 0.2 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Generic PLA+@Q2C-Series",
|
||||||
|
"filament_max_volumetric_speed": ["2"],
|
||||||
|
"pressure_advance": ["0.034"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.2 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSL99",
|
||||||
|
"name": "Generic PLA+ @Qidi Q2C 0.4 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Generic PLA+@Q2C-Series",
|
||||||
|
"pressure_advance": ["0.034"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.4 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSL99",
|
||||||
|
"name": "Generic PLA+ @Qidi Q2C 0.6 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Generic PLA+@Q2C-Series",
|
||||||
|
"pressure_advance": ["0.016"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.6 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSL99",
|
||||||
|
"name": "Generic PLA+ @Qidi Q2C 0.8 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Generic PLA+@Q2C-Series",
|
||||||
|
"pressure_advance": ["0.008"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.8 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"filament_id": "QD_2_0_50",
|
||||||
|
"setting_id": "GFSR99",
|
||||||
|
"name": "Generic TPU 95A@Q2C-Series",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "false",
|
||||||
|
"inherits": "fdm_filament_q_common",
|
||||||
|
"filament_adhesiveness_category": ["600"],
|
||||||
|
"filament_density": ["1.21"],
|
||||||
|
"filament_flow_ratio": ["1"],
|
||||||
|
"filament_max_volumetric_speed": ["4"],
|
||||||
|
"filament_type": ["TPU"],
|
||||||
|
"filament_vendor": ["Generic"],
|
||||||
|
"nozzle_temperature_initial_layer": ["230"],
|
||||||
|
"nozzle_temperature_range_high": ["250"],
|
||||||
|
"nozzle_temperature_range_low": ["200"],
|
||||||
|
"nozzle_temperature": ["230"],
|
||||||
|
"pressure_advance": ["0.1"],
|
||||||
|
"temperature_vitrification": ["30"],
|
||||||
|
"hot_plate_temp_initial_layer" : ["35"],
|
||||||
|
"hot_plate_temp" : ["35"],
|
||||||
|
"compatible_printers": []
|
||||||
|
}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSR99",
|
||||||
|
"name": "Generic TPU 95A @Qidi Q2C 0.4 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Generic TPU 95A@Q2C-Series",
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.4 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSR99",
|
||||||
|
"name": "Generic TPU 95A @Qidi Q2C 0.6 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Generic TPU 95A@Q2C-Series",
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.6 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSR99",
|
||||||
|
"name": "Generic TPU 95A @Qidi Q2C 0.8 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "Generic TPU 95A@Q2C-Series",
|
||||||
|
"nozzle_temperature": ["220"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.8 nozzle"]
|
||||||
|
}
|
||||||
31
resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2C.json
Normal file
31
resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2C.json
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"filament_id": "GFB99",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"name": "HATCHBOX ABS@Q2C-Series",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "false",
|
||||||
|
"inherits": "fdm_filament_q_common",
|
||||||
|
"box_temperature_range_high": ["45"],
|
||||||
|
"close_fan_the_first_x_layers": ["3"],
|
||||||
|
"during_print_exhaust_fan_speed": ["0"],
|
||||||
|
"fan_max_speed": ["80"],
|
||||||
|
"fan_min_speed": ["20"],
|
||||||
|
"filament_adhesiveness_category": ["200"],
|
||||||
|
"filament_density": ["1.05"],
|
||||||
|
"filament_flow_ratio": ["0.95"],
|
||||||
|
"filament_type": ["ABS"],
|
||||||
|
"filament_vendor": ["HATCHBOX"],
|
||||||
|
"nozzle_temperature_initial_layer": ["250"],
|
||||||
|
"nozzle_temperature_range_high": ["280"],
|
||||||
|
"nozzle_temperature_range_low": ["240"],
|
||||||
|
"nozzle_temperature": ["260"],
|
||||||
|
"overhang_fan_speed": ["80"],
|
||||||
|
"overhang_fan_threshold": ["25%"],
|
||||||
|
"pressure_advance": ["0.035"],
|
||||||
|
"slow_down_layer_time": ["4"],
|
||||||
|
"temperature_vitrification": ["100"],
|
||||||
|
"hot_plate_temp_initial_layer" : ["90"],
|
||||||
|
"hot_plate_temp" : ["90"],
|
||||||
|
"compatible_printers": []
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"name": "HATCHBOX ABS @Qidi Q2C 0.2 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "HATCHBOX ABS@Q2C-Series",
|
||||||
|
"filament_max_volumetric_speed": ["2"],
|
||||||
|
"pressure_advance": ["0.03"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.2 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"name": "HATCHBOX ABS @Qidi Q2C 0.4 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "HATCHBOX ABS@Q2C-Series",
|
||||||
|
"pressure_advance": ["0.03"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.4 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"name": "HATCHBOX ABS @Qidi Q2C 0.6 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "HATCHBOX ABS@Q2C-Series",
|
||||||
|
"nozzle_temperature": ["250"],
|
||||||
|
"pressure_advance": ["0.014"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.6 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"name": "HATCHBOX ABS @Qidi Q2C 0.8 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "HATCHBOX ABS@Q2C-Series",
|
||||||
|
"nozzle_temperature": ["250"],
|
||||||
|
"pressure_advance": ["0.011"],
|
||||||
|
"slow_down_min_speed": ["10"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.8 nozzle"]
|
||||||
|
}
|
||||||
33
resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2C.json
Normal file
33
resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2C.json
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"filament_id": "GFG99",
|
||||||
|
"setting_id": "GFSG99",
|
||||||
|
"name": "HATCHBOX PETG@Q2C-Series",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "false",
|
||||||
|
"inherits": "fdm_filament_q_common",
|
||||||
|
"box_temperature_range_high": ["45"],
|
||||||
|
"close_fan_the_first_x_layers": ["3"],
|
||||||
|
"fan_cooling_layer_time": ["30"],
|
||||||
|
"fan_max_speed": ["40"],
|
||||||
|
"fan_min_speed": ["10"],
|
||||||
|
"filament_adhesiveness_category": ["300"],
|
||||||
|
"filament_flow_ratio": ["0.95"],
|
||||||
|
"filament_max_volumetric_speed": ["13"],
|
||||||
|
"filament_type": ["PETG"],
|
||||||
|
"filament_vendor": ["HATCHBOX"],
|
||||||
|
"nozzle_temperature_initial_layer": ["240"],
|
||||||
|
"nozzle_temperature_range_high": ["270"],
|
||||||
|
"nozzle_temperature_range_low": ["220"],
|
||||||
|
"nozzle_temperature": ["250"],
|
||||||
|
"overhang_fan_speed": ["90"],
|
||||||
|
"overhang_fan_threshold": ["10%"],
|
||||||
|
"pressure_advance": ["0.056"],
|
||||||
|
"slow_down_layer_time": ["8"],
|
||||||
|
"supertack_plate_temp_initial_layer": ["70"],
|
||||||
|
"supertack_plate_temp": ["70"],
|
||||||
|
"temperature_vitrification": ["70"],
|
||||||
|
"hot_plate_temp_initial_layer" : ["80"],
|
||||||
|
"hot_plate_temp" : ["80"],
|
||||||
|
"compatible_printers": []
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSG99",
|
||||||
|
"name": "HATCHBOX PETG @Qidi Q2C 0.2 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "HATCHBOX PETG@Q2C-Series",
|
||||||
|
"filament_max_volumetric_speed": ["1"],
|
||||||
|
"pressure_advance": ["0.056"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.2 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSG99",
|
||||||
|
"name": "HATCHBOX PETG @Qidi Q2C 0.4 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "HATCHBOX PETG@Q2C-Series",
|
||||||
|
"pressure_advance": ["0.056"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.4 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSG99",
|
||||||
|
"name": "HATCHBOX PETG @Qidi Q2C 0.6 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "HATCHBOX PETG@Q2C-Series",
|
||||||
|
"pressure_advance": ["0.04"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.6 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSG99",
|
||||||
|
"name": "HATCHBOX PETG @Qidi Q2C 0.8 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "HATCHBOX PETG@Q2C-Series",
|
||||||
|
"pressure_advance": ["0.04"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.8 nozzle"]
|
||||||
|
}
|
||||||
22
resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2C.json
Normal file
22
resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2C.json
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"filament_id": "GFL99",
|
||||||
|
"setting_id": "GFSL99",
|
||||||
|
"name": "HATCHBOX PLA@Q2C-Series",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "false",
|
||||||
|
"inherits": "fdm_filament_q_common",
|
||||||
|
"filament_adhesiveness_category": ["100"],
|
||||||
|
"filament_type": ["PLA"],
|
||||||
|
"filament_vendor": ["HATCHBOX"],
|
||||||
|
"additional_cooling_fan_speed": ["100"],
|
||||||
|
"nozzle_temperature_range_high": ["240"],
|
||||||
|
"nozzle_temperature_range_low": ["190"],
|
||||||
|
"nozzle_temperature_initial_layer": ["210"],
|
||||||
|
"nozzle_temperature": ["210"],
|
||||||
|
"overhang_fan_threshold": ["50%"],
|
||||||
|
"supertack_plate_temp_initial_layer": ["45"],
|
||||||
|
"supertack_plate_temp": ["45"],
|
||||||
|
"temperature_vitrification": ["45"],
|
||||||
|
"compatible_printers": []
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSL99",
|
||||||
|
"name": "HATCHBOX PLA @Qidi Q2C 0.2 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "HATCHBOX PLA@Q2C-Series",
|
||||||
|
"filament_max_volumetric_speed": ["2"],
|
||||||
|
"pressure_advance": ["0.034"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.2 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSL99",
|
||||||
|
"name": "HATCHBOX PLA @Qidi Q2C 0.4 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "HATCHBOX PLA@Q2C-Series",
|
||||||
|
"pressure_advance": ["0.034"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.4 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSL99",
|
||||||
|
"name": "HATCHBOX PLA @Qidi Q2C 0.6 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "HATCHBOX PLA@Q2C-Series",
|
||||||
|
"pressure_advance": ["0.016"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.6 nozzle"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"setting_id": "GFSL99",
|
||||||
|
"name": "HATCHBOX PLA @Qidi Q2C 0.8 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "true",
|
||||||
|
"inherits": "HATCHBOX PLA@Q2C-Series",
|
||||||
|
"pressure_advance": ["0.008"],
|
||||||
|
"compatible_printers": ["Qidi Q2C 0.8 nozzle"]
|
||||||
|
}
|
||||||
32
resources/profiles/Qidi/filament/Q2/Overture ABS @Q2C.json
Normal file
32
resources/profiles/Qidi/filament/Q2/Overture ABS @Q2C.json
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"filament_id": "GFB99",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"name": "Overture ABS@Q2C-Series",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "false",
|
||||||
|
"inherits": "fdm_filament_q_common",
|
||||||
|
"box_temperature_range_high": ["45"],
|
||||||
|
"close_fan_the_first_x_layers": ["3"],
|
||||||
|
"during_print_exhaust_fan_speed": ["0"],
|
||||||
|
"fan_max_speed": ["80"],
|
||||||
|
"fan_min_speed": ["20"],
|
||||||
|
"filament_adhesiveness_category": ["200"],
|
||||||
|
"filament_density": ["1.12"],
|
||||||
|
"filament_flow_ratio": ["0.96"],
|
||||||
|
"filament_max_volumetric_speed": ["17"],
|
||||||
|
"filament_type": ["ABS"],
|
||||||
|
"filament_vendor": ["Overture"],
|
||||||
|
"nozzle_temperature_initial_layer": ["250"],
|
||||||
|
"nozzle_temperature_range_high": ["280"],
|
||||||
|
"nozzle_temperature_range_low": ["240"],
|
||||||
|
"nozzle_temperature": ["255"],
|
||||||
|
"overhang_fan_speed": ["80"],
|
||||||
|
"overhang_fan_threshold": ["25%"],
|
||||||
|
"pressure_advance": ["0.033"],
|
||||||
|
"slow_down_layer_time": ["6"],
|
||||||
|
"temperature_vitrification": ["100"],
|
||||||
|
"hot_plate_temp_initial_layer" : ["90"],
|
||||||
|
"hot_plate_temp" : ["90"],
|
||||||
|
"compatible_printers": []
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user