mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-04-06 00:32:05 +02:00
Compare commits
66 Commits
nightly-bu
...
v2.3.2-rc
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ca1f360b83 | ||
|
|
4c73ac2fea | ||
|
|
36b764f735 | ||
|
|
ce1d91024b | ||
|
|
2f3bfd03d5 | ||
|
|
f03c34024d | ||
|
|
6b3f554732 | ||
|
|
325ced958e | ||
|
|
bbbc044e92 | ||
|
|
0c666da430 | ||
|
|
c924b8ed25 | ||
|
|
c8dde0f8ca | ||
|
|
401fb935bc | ||
|
|
7747a6e7a1 | ||
|
|
545cdc74ca | ||
|
|
b0e19d5577 | ||
|
|
df216c5105 | ||
|
|
e5d037c044 | ||
|
|
6e01d38a5c | ||
|
|
37790f2a3d | ||
|
|
6437fb57e8 | ||
|
|
a46c8970bf | ||
|
|
03bc0af038 | ||
|
|
c03fdb4ca0 | ||
|
|
1162b101b8 | ||
|
|
f91971baf9 | ||
|
|
937b356725 | ||
|
|
721ee0ab00 | ||
|
|
f054e3ad9b | ||
|
|
1a57ec13a5 | ||
|
|
c7b65ef498 | ||
|
|
31cb77116c | ||
|
|
74f75bb90d | ||
|
|
a3c067cd3b | ||
|
|
90cd00382a | ||
|
|
deef8b107d | ||
|
|
478f1fa117 | ||
|
|
3f82902ebe | ||
|
|
1c42f67000 | ||
|
|
b45c7a8112 | ||
|
|
da8be684dc | ||
|
|
dc27345b05 | ||
|
|
10cfab0501 | ||
|
|
4146066f76 | ||
|
|
8aa43d1ef7 | ||
|
|
04bf8b6bb9 | ||
|
|
84b5906ffa | ||
|
|
318b7742cc | ||
|
|
b68fd2dc21 | ||
|
|
f2cc134a8f | ||
|
|
31d9c9d087 | ||
|
|
c9ffc5a699 | ||
|
|
d37be2f4f5 | ||
|
|
4cc4da8868 | ||
|
|
9f5214d14d | ||
|
|
7e63fce706 | ||
|
|
380f4b4a18 | ||
|
|
240cf9ab5d | ||
|
|
05cb8b4d89 | ||
|
|
897a3e915f | ||
|
|
586e96479a | ||
|
|
0879b2079b | ||
|
|
c4801250ea | ||
|
|
f0386d981f | ||
|
|
cd5c8f2ad0 | ||
|
|
2d0a0568e7 |
21
.github/workflows/build_all.yml
vendored
21
.github/workflows/build_all.yml
vendored
@@ -49,7 +49,6 @@ concurrency:
|
||||
|
||||
jobs:
|
||||
build_linux:
|
||||
name: Build Linux
|
||||
strategy:
|
||||
fail-fast: false
|
||||
# Don't run scheduled builds on forks:
|
||||
@@ -60,13 +59,12 @@ jobs:
|
||||
build-deps-only: ${{ inputs.build-deps-only || false }}
|
||||
secrets: inherit
|
||||
build_all:
|
||||
name: Build Non-Linux
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- os: windows-latest
|
||||
- os: orca-macos-arm64
|
||||
- os: ${{ vars.SELF_HOSTED && 'orca-macos-arm64' || 'macos-14' }}
|
||||
arch: arm64
|
||||
# Don't run scheduled builds on forks:
|
||||
if: ${{ !cancelled() && (github.event_name != 'schedule' || github.repository == 'OrcaSlicer/OrcaSlicer') }}
|
||||
@@ -161,11 +159,26 @@ jobs:
|
||||
echo "date=$(date +'%Y%m%d')" >> $GITHUB_ENV
|
||||
echo "git_commit_hash=$git_commit_hash" >> $GITHUB_ENV
|
||||
shell: bash
|
||||
# Manage flatpak-builder cache externally so PRs restore but never upload
|
||||
- name: Restore flatpak-builder cache
|
||||
if: github.event_name == 'pull_request'
|
||||
uses: actions/cache/restore@v4
|
||||
with:
|
||||
path: .flatpak-builder
|
||||
key: flatpak-builder-${{ matrix.variant.arch }}-${{ github.event.pull_request.base.sha }}
|
||||
restore-keys: flatpak-builder-${{ matrix.variant.arch }}-
|
||||
- name: Save/restore flatpak-builder cache
|
||||
if: github.event_name != 'pull_request'
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: .flatpak-builder
|
||||
key: flatpak-builder-${{ matrix.variant.arch }}-${{ github.sha }}
|
||||
restore-keys: flatpak-builder-${{ matrix.variant.arch }}-
|
||||
- uses: flatpak/flatpak-github-actions/flatpak-builder@master
|
||||
with:
|
||||
bundle: OrcaSlicer-Linux-flatpak_${{ env.ver }}_${{ matrix.variant.arch }}.flatpak
|
||||
manifest-path: scripts/flatpak/io.github.softfever.OrcaSlicer.yml
|
||||
cache: true
|
||||
cache: false
|
||||
arch: ${{ matrix.variant.arch }}
|
||||
upload-artifact: false
|
||||
- name: Upload artifacts Flatpak
|
||||
|
||||
6
.github/workflows/build_check_cache.yml
vendored
6
.github/workflows/build_check_cache.yml
vendored
@@ -33,10 +33,12 @@ jobs:
|
||||
- name: set outputs
|
||||
id: set_outputs
|
||||
env:
|
||||
dep-folder-name: ${{ inputs.os != 'orca-macos-arm64' && '/OrcaSlicer_dep' || '' }}
|
||||
# Normalize macOS runner names so self-hosted and GitHub-hosted produce the same cache key
|
||||
cache-os: ${{ contains(inputs.os, 'macos') && 'macos-arm64' || inputs.os }}
|
||||
dep-folder-name: ${{ !contains(inputs.os, 'macos') && '/OrcaSlicer_dep' || '' }}
|
||||
output-cmd: ${{ inputs.os == 'windows-latest' && '$env:GITHUB_OUTPUT' || '"$GITHUB_OUTPUT"'}}
|
||||
run: |
|
||||
echo cache-key=${{ inputs.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 }}
|
||||
echo cache-path=${{ github.workspace }}/deps/build${{ env.dep-folder-name }} >> ${{ env.output-cmd }}
|
||||
|
||||
- name: load cache
|
||||
|
||||
13
.github/workflows/build_deps.yml
vendored
13
.github/workflows/build_deps.yml
vendored
@@ -74,18 +74,17 @@ jobs:
|
||||
cd ${{ github.workspace }}/deps/build
|
||||
|
||||
- name: Build on Mac ${{ inputs.arch }}
|
||||
if: inputs.os == 'orca-macos-arm64'
|
||||
if: contains(inputs.os, 'macos')
|
||||
working-directory: ${{ github.workspace }}
|
||||
run: |
|
||||
# brew install automake texinfo libtool
|
||||
# brew list
|
||||
# brew uninstall --ignore-dependencies zstd
|
||||
./build_release_macos.sh -dx -a universal -t 10.15
|
||||
if [ -z "${{ vars.SELF_HOSTED }}" ]; then
|
||||
brew install automake texinfo libtool
|
||||
fi
|
||||
./build_release_macos.sh -dx ${{ !vars.SELF_HOSTED && '-1' || '' }} -a universal -t 10.15
|
||||
for arch in arm64 x86_64; do
|
||||
(cd "${{ github.workspace }}/deps/build/${arch}" && \
|
||||
find . -mindepth 1 -maxdepth 1 ! -name 'OrcaSlicer_dep' -exec rm -rf {} +)
|
||||
done
|
||||
# brew install zstd
|
||||
|
||||
|
||||
- name: Apt-Install Dependencies
|
||||
@@ -104,7 +103,7 @@ jobs:
|
||||
|
||||
# Upload Artifacts
|
||||
# - name: Upload Mac ${{ inputs.arch }} artifacts
|
||||
# if: inputs.os == 'orca-macos-arm64'
|
||||
# if: contains(inputs.os, 'macos')
|
||||
# uses: actions/upload-artifact@v6
|
||||
# with:
|
||||
# name: OrcaSlicer_dep_mac_${{ env.date }}
|
||||
|
||||
38
.github/workflows/build_orca.yml
vendored
38
.github/workflows/build_orca.yml
vendored
@@ -86,29 +86,31 @@ jobs:
|
||||
|
||||
# Mac
|
||||
- name: Install tools mac
|
||||
if: inputs.os == 'orca-macos-arm64'
|
||||
if: contains(inputs.os, 'macos')
|
||||
run: |
|
||||
# brew install libtool
|
||||
# brew list
|
||||
if [ -z "${{ vars.SELF_HOSTED }}" ]; then
|
||||
brew install libtool
|
||||
brew list
|
||||
fi
|
||||
mkdir -p ${{ github.workspace }}/deps/build
|
||||
|
||||
# - name: Free disk space
|
||||
# if: inputs.os == 'orca-macos-arm64'
|
||||
# run: |
|
||||
# df -hI /dev/disk3s1s1
|
||||
# sudo find /Applications -maxdepth 1 -type d -name "Xcode_*.app" ! -name "Xcode_15.4.app" -exec rm -rf {} +
|
||||
# sudo rm -rf ~/Library/Developer/CoreSimulator/Caches/*
|
||||
# df -hI /dev/disk3s1s1
|
||||
- name: Free disk space
|
||||
if: contains(inputs.os, 'macos') && !vars.SELF_HOSTED
|
||||
run: |
|
||||
df -hI /dev/disk3s1s1
|
||||
sudo find /Applications -maxdepth 1 -type d -name "Xcode_*.app" ! -name "Xcode_15.4.app" -exec rm -rf {} +
|
||||
sudo rm -rf ~/Library/Developer/CoreSimulator/Caches/*
|
||||
df -hI /dev/disk3s1s1
|
||||
|
||||
- name: Build slicer mac
|
||||
if: inputs.os == 'orca-macos-arm64'
|
||||
if: contains(inputs.os, 'macos')
|
||||
working-directory: ${{ github.workspace }}
|
||||
run: |
|
||||
./build_release_macos.sh -s -n -x -a universal -t 10.15
|
||||
./build_release_macos.sh -s -n -x ${{ !vars.SELF_HOSTED && '-1' || '' }} -a universal -t 10.15
|
||||
|
||||
# Thanks to RaySajuuk, it's working now
|
||||
- name: Sign app and notary
|
||||
if: github.repository == 'OrcaSlicer/OrcaSlicer' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/')) && inputs.os == 'orca-macos-arm64'
|
||||
if: github.repository == 'OrcaSlicer/OrcaSlicer' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/')) && contains(inputs.os, 'macos')
|
||||
working-directory: ${{ github.workspace }}
|
||||
env:
|
||||
BUILD_CERTIFICATE_BASE64: ${{ secrets.BUILD_CERTIFICATE_BASE64 }}
|
||||
@@ -162,7 +164,7 @@ jobs:
|
||||
fi
|
||||
|
||||
- name: Create DMG without notary
|
||||
if: github.ref != 'refs/heads/main' && inputs.os == 'orca-macos-arm64'
|
||||
if: github.ref != 'refs/heads/main' && contains(inputs.os, 'macos')
|
||||
working-directory: ${{ github.workspace }}
|
||||
run: |
|
||||
mkdir -p ${{ github.workspace }}/build/universal/OrcaSlicer_dmg
|
||||
@@ -181,14 +183,14 @@ jobs:
|
||||
fi
|
||||
|
||||
- name: Upload artifacts mac
|
||||
if: inputs.os == 'orca-macos-arm64'
|
||||
if: contains(inputs.os, 'macos')
|
||||
uses: actions/upload-artifact@v6
|
||||
with:
|
||||
name: OrcaSlicer_Mac_universal_${{ env.ver }}
|
||||
path: ${{ github.workspace }}/OrcaSlicer_Mac_universal_${{ env.ver }}.dmg
|
||||
|
||||
- name: Upload OrcaSlicer_profile_validator DMG mac
|
||||
if: inputs.os == 'orca-macos-arm64'
|
||||
if: contains(inputs.os, 'macos')
|
||||
uses: actions/upload-artifact@v6
|
||||
with:
|
||||
name: OrcaSlicer_profile_validator_Mac_universal_DMG_${{ env.ver }}
|
||||
@@ -196,7 +198,7 @@ jobs:
|
||||
if-no-files-found: ignore
|
||||
|
||||
- name: Deploy Mac release
|
||||
if: github.repository == 'OrcaSlicer/OrcaSlicer' && github.ref == 'refs/heads/main' && inputs.os == 'orca-macos-arm64'
|
||||
if: github.repository == 'OrcaSlicer/OrcaSlicer' && github.ref == 'refs/heads/main' && contains(inputs.os, 'macos')
|
||||
uses: WebFreak001/deploy-nightly@v3.2.0
|
||||
with:
|
||||
upload_url: https://uploads.github.com/repos/OrcaSlicer/OrcaSlicer/releases/137995723/assets{?name,label}
|
||||
@@ -207,7 +209,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
|
||||
|
||||
- name: Deploy Mac OrcaSlicer_profile_validator DMG release
|
||||
if: github.repository == 'OrcaSlicer/OrcaSlicer' && github.ref == 'refs/heads/main' && inputs.os == 'orca-macos-arm64'
|
||||
if: github.repository == 'OrcaSlicer/OrcaSlicer' && github.ref == 'refs/heads/main' && contains(inputs.os, 'macos')
|
||||
uses: WebFreak001/deploy-nightly@v3.2.0
|
||||
with:
|
||||
upload_url: https://uploads.github.com/repos/OrcaSlicer/OrcaSlicer/releases/137995723/assets{?name,label}
|
||||
|
||||
1
deps/Boost/Boost.cmake
vendored
1
deps/Boost/Boost.cmake
vendored
@@ -18,6 +18,7 @@ orcaslicer_add_cmake_project(Boost
|
||||
-DBOOST_EXCLUDE_LIBRARIES:STRING=contract|fiber|numpy|stacktrace|wave|test
|
||||
-DBOOST_LOCALE_ENABLE_ICU:BOOL=OFF # do not link to libicu, breaks compatibility between distros
|
||||
-DBUILD_TESTING:BOOL=OFF
|
||||
-DBOOST_IOSTREAMS_ENABLE_ZSTD:BOOL=OFF
|
||||
"${_context_abi_line}"
|
||||
"${_context_arch_line}"
|
||||
)
|
||||
|
||||
2
deps/GLEW/GLEW.cmake
vendored
2
deps/GLEW/GLEW.cmake
vendored
@@ -5,6 +5,8 @@ find_package(OpenGL QUIET REQUIRED)
|
||||
orcaslicer_add_cmake_project(
|
||||
GLEW
|
||||
SOURCE_DIR ${CMAKE_CURRENT_LIST_DIR}/glew
|
||||
CMAKE_ARGS
|
||||
-DGLEW_USE_EGL=OFF
|
||||
)
|
||||
|
||||
if (MSVC)
|
||||
|
||||
12
deps/GLEW/glew/CMakeLists.txt
vendored
12
deps/GLEW/glew/CMakeLists.txt
vendored
@@ -3,9 +3,17 @@ project(GLEW)
|
||||
|
||||
find_package(OpenGL REQUIRED)
|
||||
|
||||
if(OpenGL_EGL_FOUND)
|
||||
message(STATUS "building GLEW for EGL (hope that wxWidgets agrees, otherwise you won't have any output!)")
|
||||
# Allow parent project to control EGL usage.
|
||||
# Default to OFF since OrcaSlicer forces GDK_BACKEND=x11 (using GLX contexts).
|
||||
# GLEW must use glXGetProcAddressARB (GLX) to match wxWidgets GL canvas.
|
||||
# Using EGL function loading with GLX contexts causes rendering failures.
|
||||
option(GLEW_USE_EGL "Use EGL instead of GLX for OpenGL function loading" OFF)
|
||||
|
||||
if(GLEW_USE_EGL)
|
||||
message(STATUS "Building GLEW with EGL support")
|
||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DGLEW_EGL")
|
||||
else()
|
||||
message(STATUS "Building GLEW with GLX support")
|
||||
endif()
|
||||
|
||||
add_library(GLEW src/glew.c)
|
||||
|
||||
1
deps/wxWidgets/wxWidgets.cmake
vendored
1
deps/wxWidgets/wxWidgets.cmake
vendored
@@ -51,6 +51,7 @@ orcaslicer_add_cmake_project(
|
||||
-DwxUSE_UNICODE=ON
|
||||
-DwxUSE_PRIVATE_FONTS=ON
|
||||
-DwxUSE_OPENGL=ON
|
||||
-DwxUSE_GLCANVAS_EGL=OFF
|
||||
-DwxUSE_WEBREQUEST=ON
|
||||
-DwxUSE_WEBVIEW=ON
|
||||
${_wx_edge}
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-02-12 08:42+0800\n"
|
||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@@ -429,7 +429,7 @@ msgstr ""
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
msgid "uniform scale"
|
||||
msgid "Uniform scale"
|
||||
msgstr ""
|
||||
|
||||
msgid "Planar"
|
||||
@@ -684,7 +684,7 @@ msgstr ""
|
||||
msgid "Cut by Plane"
|
||||
msgstr ""
|
||||
|
||||
msgid "non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgid "Non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Repairing model object"
|
||||
@@ -2173,31 +2173,37 @@ msgstr ""
|
||||
msgid "Select All"
|
||||
msgstr ""
|
||||
|
||||
msgid "select all objects on current plate"
|
||||
msgid "Select all objects on the current plate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select All Plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select all objects on all plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete All"
|
||||
msgstr ""
|
||||
|
||||
msgid "delete all objects on current plate"
|
||||
msgid "Delete all objects on the current plate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Arrange"
|
||||
msgstr ""
|
||||
|
||||
msgid "arrange current plate"
|
||||
msgid "Arrange current plate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reload All"
|
||||
msgstr ""
|
||||
|
||||
msgid "reload all from disk"
|
||||
msgid "Reload all from disk"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto Rotate"
|
||||
msgstr ""
|
||||
|
||||
msgid "auto rotate current plate"
|
||||
msgid "Auto rotate current plate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete Plate"
|
||||
@@ -2499,7 +2505,7 @@ msgstr ""
|
||||
msgid "Invalid numeric."
|
||||
msgstr ""
|
||||
|
||||
msgid "one cell can only be copied to one or multiple cells in the same column"
|
||||
msgid "One cell can only be copied to one or more cells in the same column."
|
||||
msgstr ""
|
||||
|
||||
msgid "Copying multiple cells is not supported."
|
||||
@@ -2750,9 +2756,9 @@ msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The fan controls the temperature during printing to improve print "
|
||||
"quality.The system automatically adjusts the fan's switch and speed "
|
||||
"according to different printing materials."
|
||||
"The fan controls the temperature during printing to improve print quality. "
|
||||
"The system automatically adjusts the fan's switch and speed according to "
|
||||
"different printing materials."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -3534,8 +3540,7 @@ msgstr ""
|
||||
msgid "Please unload all filament before switching."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"AMS type switching needs firmware update, taking about 30s. Switch now ?"
|
||||
msgid "AMS type switching needs firmware update, taking about 30s. Switch now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Arrange AMS Order"
|
||||
@@ -3558,11 +3563,12 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Failed to install the plug-in. Please check whether it is blocked or deleted "
|
||||
"by anti-virus software."
|
||||
"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 "
|
||||
"deleted by anti-virus software."
|
||||
msgstr ""
|
||||
|
||||
msgid "click here to see more info"
|
||||
msgid "Click here to see more info"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -4014,7 +4020,7 @@ msgstr ""
|
||||
msgid "Nozzle offset calibration"
|
||||
msgstr ""
|
||||
|
||||
msgid "high temperature auto bed leveling"
|
||||
msgid "High temperature auto bed leveling"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto Check: Quick Release Lever"
|
||||
@@ -4289,6 +4295,12 @@ msgstr ""
|
||||
msgid "parameter name"
|
||||
msgstr ""
|
||||
|
||||
msgid "Range"
|
||||
msgstr ""
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid "%s can't be a percentage"
|
||||
msgstr ""
|
||||
@@ -4304,9 +4316,6 @@ msgstr ""
|
||||
msgid "Value %s is out of range. The valid range is from %d to %d."
|
||||
msgstr ""
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid ""
|
||||
"Is it %s%% or %s %s?\n"
|
||||
@@ -4374,6 +4383,9 @@ msgstr ""
|
||||
msgid "Layer Time (log)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pressure Advance"
|
||||
msgstr ""
|
||||
|
||||
msgid "Noop"
|
||||
msgstr ""
|
||||
|
||||
@@ -4461,9 +4473,6 @@ msgstr ""
|
||||
msgid "Fan speed"
|
||||
msgstr ""
|
||||
|
||||
msgid "°C"
|
||||
msgstr ""
|
||||
|
||||
msgid "Time"
|
||||
msgstr ""
|
||||
|
||||
@@ -4500,6 +4509,9 @@ msgstr ""
|
||||
msgid "Actual Speed: "
|
||||
msgstr ""
|
||||
|
||||
msgid "PA: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Statistics of All Plates"
|
||||
msgstr ""
|
||||
|
||||
@@ -4617,7 +4629,7 @@ msgstr ""
|
||||
msgid "Fan Speed (%)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Temperature (°C)"
|
||||
msgid "Temperature (℃)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Volumetric flow rate (mm³/s)"
|
||||
@@ -4635,9 +4647,6 @@ msgstr ""
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
msgid "travel"
|
||||
msgstr ""
|
||||
|
||||
msgid "Extruder"
|
||||
msgstr ""
|
||||
|
||||
@@ -4732,16 +4741,13 @@ msgstr ""
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "part selection"
|
||||
msgid "Object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys can quickly change the color of objects"
|
||||
msgid "Number keys can quickly change the color of objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -4891,6 +4897,30 @@ msgstr ""
|
||||
msgid "Fit camera to scene or selected object."
|
||||
msgstr ""
|
||||
|
||||
msgid "3D Navigator"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom button"
|
||||
msgstr ""
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr ""
|
||||
|
||||
msgid "Outline"
|
||||
msgstr ""
|
||||
|
||||
msgid "Perspective"
|
||||
msgstr ""
|
||||
|
||||
msgid "Axes"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Labels"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint Toolbar"
|
||||
msgstr ""
|
||||
|
||||
@@ -4971,7 +5001,7 @@ msgid "Only the object being edited is visible."
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid "filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgid "Filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -5387,6 +5417,12 @@ msgstr ""
|
||||
msgid "Show 3D navigator in Prepare and Preview scene."
|
||||
msgstr ""
|
||||
|
||||
msgid "Show Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Show Gridlines on plate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset Window Layout"
|
||||
msgstr ""
|
||||
|
||||
@@ -6093,7 +6129,7 @@ msgid "Layer: %d/%d"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Please heat the nozzle to above 170°C before loading or unloading filament."
|
||||
"Please heat the nozzle to above 170℃ before loading or unloading filament."
|
||||
msgstr ""
|
||||
|
||||
msgid "Chamber temperature cannot be changed in cooling mode while printing."
|
||||
@@ -6198,7 +6234,7 @@ msgstr ""
|
||||
msgid "Upload failed\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "obtaining instance_id failed\n"
|
||||
msgid "Obtaining instance_id failed\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -6457,9 +6493,6 @@ msgstr ""
|
||||
msgid "Layers"
|
||||
msgstr ""
|
||||
|
||||
msgid "Range"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The application cannot run normally because OpenGL version is lower than "
|
||||
"3.2.\n"
|
||||
@@ -7141,7 +7174,7 @@ msgid ""
|
||||
"connected printer.\n"
|
||||
"After syncing, software can optimize printing time and filament usage when "
|
||||
"slicing.\n"
|
||||
"Would you like to sync now ?"
|
||||
"Would you like to sync now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync now"
|
||||
@@ -7168,13 +7201,13 @@ msgstr ""
|
||||
msgid "Importing Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "prepare 3MF file..."
|
||||
msgid "Preparing 3MF file..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Download failed, unknown file format."
|
||||
msgstr ""
|
||||
|
||||
msgid "downloading project..."
|
||||
msgid "Downloading project..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Download failed, File size exception."
|
||||
@@ -7654,6 +7687,18 @@ msgstr ""
|
||||
msgid "By vendor"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimize filaments area height for..."
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid "filaments"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
||||
msgstr ""
|
||||
|
||||
msgid "Features"
|
||||
msgstr ""
|
||||
|
||||
@@ -7665,9 +7710,6 @@ msgid ""
|
||||
"same time and manage multiple devices."
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pop up to select filament grouping mode"
|
||||
msgstr ""
|
||||
|
||||
@@ -8015,10 +8057,10 @@ msgstr ""
|
||||
msgid "Product host"
|
||||
msgstr ""
|
||||
|
||||
msgid "debug save button"
|
||||
msgid "Debug save button"
|
||||
msgstr ""
|
||||
|
||||
msgid "save debug settings"
|
||||
msgid "Save debug settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "DEBUG settings have been saved successfully!"
|
||||
@@ -8307,7 +8349,7 @@ msgid ""
|
||||
"*Automatic mode: Check for calibration before printing. Skip if unnecessary."
|
||||
msgstr ""
|
||||
|
||||
msgid "send completed"
|
||||
msgid "Send complete"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error code"
|
||||
@@ -8438,7 +8480,7 @@ msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid ""
|
||||
"[ %s ] requires printing in a high-temperature environment.Please close the "
|
||||
"[ %s ] requires printing in a high-temperature environment. Please close the "
|
||||
"door."
|
||||
msgstr ""
|
||||
|
||||
@@ -8818,7 +8860,7 @@ msgid ""
|
||||
"ensure proper printing and achieve their intended effects (e.g., Gyroid, "
|
||||
"Cubic). Rotating the current sparse infill pattern may lead to insufficient "
|
||||
"support. Please proceed with caution and thoroughly check for any potential "
|
||||
"printing issues.Are you sure you want to enable this option?"
|
||||
"printing issues. Are you sure you want to enable this option?"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -8945,9 +8987,6 @@ msgstr ""
|
||||
msgid "Bridging"
|
||||
msgstr ""
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr ""
|
||||
|
||||
msgid "Walls"
|
||||
msgstr ""
|
||||
|
||||
@@ -9962,7 +10001,7 @@ msgstr ""
|
||||
msgid "Movement step set to 1 mm"
|
||||
msgstr ""
|
||||
|
||||
msgid "keyboard 1-9: set filament for object/part"
|
||||
msgid "Keyboard 1-9: set filament for object/part"
|
||||
msgstr ""
|
||||
|
||||
msgid "Camera view - Default"
|
||||
@@ -10666,6 +10705,16 @@ msgid ""
|
||||
"The prime tower requires that support has the same layer height with object."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"For Organic supports, two walls are supported only with the Hollow/Default "
|
||||
"base pattern."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The Lightning base pattern is not supported by this support type; "
|
||||
"Rectilinear will be used instead."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Organic support tree tip diameter must not be smaller than support material "
|
||||
"extrusion width."
|
||||
@@ -12404,6 +12453,49 @@ msgid ""
|
||||
"tower to produce successive infill or sacrificial object extrusions reliably."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer pre-extrusion distance"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion distance for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer pre-extrusion length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion length for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Tower ironing area"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Ironing area for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "mm²"
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer purge length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Purge length for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer print temperature"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Print temperature for prime tower interface layer (where different materials "
|
||||
"meet). If set to -1, use max recommended nozzle temperature."
|
||||
msgstr ""
|
||||
|
||||
msgid "Speed of the last cooling move"
|
||||
msgstr ""
|
||||
|
||||
@@ -12894,7 +12986,7 @@ msgid ""
|
||||
"look. This setting controls the fuzzy position."
|
||||
msgstr ""
|
||||
|
||||
msgid "None (allow paint)"
|
||||
msgid "Painted only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Contour"
|
||||
@@ -13925,9 +14017,6 @@ msgid ""
|
||||
"conical material. A value of 0 will fill all the holes in the model base."
|
||||
msgstr ""
|
||||
|
||||
msgid "mm²"
|
||||
msgstr ""
|
||||
|
||||
msgid "Detect overhang wall"
|
||||
msgstr ""
|
||||
|
||||
@@ -14825,7 +14914,16 @@ msgstr ""
|
||||
msgid "Base pattern"
|
||||
msgstr ""
|
||||
|
||||
msgid "Line pattern of support."
|
||||
msgid ""
|
||||
"Line pattern of support.\n"
|
||||
"\n"
|
||||
"The Default option for Tree supports is Hollow, which means no base pattern. "
|
||||
"For other support types, the Default option is the Rectilinear pattern.\n"
|
||||
"\n"
|
||||
"NOTE: For Organic supports, the two walls are supported only with the Hollow/"
|
||||
"Default base pattern. The Lightning base pattern is supported only by Tree "
|
||||
"Slim/Strong/Hybrid supports. For the other support types, the Rectilinear "
|
||||
"will be used instead of Lightning."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rectilinear grid"
|
||||
@@ -15297,6 +15395,23 @@ msgstr ""
|
||||
msgid "The wall of prime tower will skip the start points of wipe path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable tower interface features"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable optimized prime tower interface behavior when different materials "
|
||||
"meet."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cool down from interface boost during prime tower"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"When interface-layer temperature boost is active, set the nozzle back to "
|
||||
"print temperature at the start of the prime tower so it cools down during "
|
||||
"the tower."
|
||||
msgstr ""
|
||||
|
||||
msgid "Infill gap"
|
||||
msgstr ""
|
||||
|
||||
@@ -16657,7 +16772,7 @@ msgstr ""
|
||||
msgid "Plate Type"
|
||||
msgstr ""
|
||||
|
||||
msgid "filament position"
|
||||
msgid "Filament position"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filament For Calibration"
|
||||
@@ -17533,7 +17648,8 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Printer and all the filament&&process presets that belongs to the printer.\n"
|
||||
"Printer and all the filament and process presets that belongs to the "
|
||||
"printer.\n"
|
||||
"Can be shared with others."
|
||||
msgstr ""
|
||||
|
||||
@@ -18291,7 +18407,7 @@ msgstr ""
|
||||
msgid "Upgrading"
|
||||
msgstr ""
|
||||
|
||||
msgid "syncing"
|
||||
msgid "Syncing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printing Finish"
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-02-12 08:42+0800\n"
|
||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
||||
"PO-Revision-Date: 2025-03-15 10:55+0100\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -436,7 +436,7 @@ msgstr ""
|
||||
msgid "Size"
|
||||
msgstr "Mida"
|
||||
|
||||
msgid "uniform scale"
|
||||
msgid "Uniform scale"
|
||||
msgstr "escala uniforme"
|
||||
|
||||
msgid "Planar"
|
||||
@@ -696,7 +696,7 @@ msgstr "Connector"
|
||||
msgid "Cut by Plane"
|
||||
msgstr "Tallar pel pla"
|
||||
|
||||
msgid "non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgid "Non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgstr ""
|
||||
"les vores amb plecs poden ser causades per l'eina de tall, voleu solucionar-"
|
||||
"ho ara?"
|
||||
@@ -2266,31 +2266,37 @@ msgstr ""
|
||||
msgid "Select All"
|
||||
msgstr "Seleccionar-ho tot"
|
||||
|
||||
msgid "select all objects on current plate"
|
||||
msgid "Select all objects on the current plate"
|
||||
msgstr "seleccionar tots els objectes de la placa actual"
|
||||
|
||||
msgid "Select All Plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select all objects on all plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete All"
|
||||
msgstr "Suprimir-les totes"
|
||||
|
||||
msgid "delete all objects on current plate"
|
||||
msgid "Delete all objects on the current plate"
|
||||
msgstr "eliminar tots els objectes de la placa actual"
|
||||
|
||||
msgid "Arrange"
|
||||
msgstr "Ordenar"
|
||||
|
||||
msgid "arrange current plate"
|
||||
msgid "Arrange current plate"
|
||||
msgstr "organitza la placa actual"
|
||||
|
||||
msgid "Reload All"
|
||||
msgstr "Torna-ho a carregar Tot"
|
||||
|
||||
msgid "reload all from disk"
|
||||
msgid "Reload all from disk"
|
||||
msgstr "torna a carregar-ho tot des del disc"
|
||||
|
||||
msgid "Auto Rotate"
|
||||
msgstr "Rota automàticament"
|
||||
|
||||
msgid "auto rotate current plate"
|
||||
msgid "Auto rotate current plate"
|
||||
msgstr "rotar automàticament la placa actual"
|
||||
|
||||
msgid "Delete Plate"
|
||||
@@ -2609,7 +2615,8 @@ msgstr "Afegir un interval d'alçada"
|
||||
msgid "Invalid numeric."
|
||||
msgstr "Entrada numèrica no vàlida."
|
||||
|
||||
msgid "one cell can only be copied to one or multiple cells in the same column"
|
||||
#, fuzzy
|
||||
msgid "One cell can only be copied to one or more cells in the same column."
|
||||
msgstr ""
|
||||
"una cel·la només es pot copiar a una o diverses cel·les de la mateixa columna"
|
||||
|
||||
@@ -2865,9 +2872,9 @@ msgid "Top"
|
||||
msgstr "Superior"
|
||||
|
||||
msgid ""
|
||||
"The fan controls the temperature during printing to improve print "
|
||||
"quality.The system automatically adjusts the fan's switch and speed "
|
||||
"according to different printing materials."
|
||||
"The fan controls the temperature during printing to improve print quality. "
|
||||
"The system automatically adjusts the fan's switch and speed according to "
|
||||
"different printing materials."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -3723,8 +3730,7 @@ msgstr ""
|
||||
msgid "Please unload all filament before switching."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"AMS type switching needs firmware update, taking about 30s. Switch now ?"
|
||||
msgid "AMS type switching needs firmware update, taking about 30s. Switch now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Arrange AMS Order"
|
||||
@@ -3749,13 +3755,12 @@ msgstr ""
|
||||
"tallafoc i el programari VPN, comproveu-ho i torneu-ho a provar."
|
||||
|
||||
msgid ""
|
||||
"Failed to install the plug-in. Please check whether it is blocked or deleted "
|
||||
"by anti-virus software."
|
||||
"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 "
|
||||
"deleted by anti-virus software."
|
||||
msgstr ""
|
||||
"No s'ha pogut instal·lar el connector. Comproveu si el programari antivirus "
|
||||
"l'ha bloquejat o suprimit."
|
||||
|
||||
msgid "click here to see more info"
|
||||
msgid "Click here to see more info"
|
||||
msgstr "feu clic aquí per veure més informació"
|
||||
|
||||
msgid ""
|
||||
@@ -4297,7 +4302,7 @@ msgstr ""
|
||||
msgid "Nozzle offset calibration"
|
||||
msgstr ""
|
||||
|
||||
msgid "high temperature auto bed leveling"
|
||||
msgid "High temperature auto bed leveling"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto Check: Quick Release Lever"
|
||||
@@ -4577,6 +4582,12 @@ msgstr "Configuració de la Impressora"
|
||||
msgid "parameter name"
|
||||
msgstr "nom del paràmetre"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "Rang"
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "El valor introduït és fora de rang."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s can't be a percentage"
|
||||
msgstr "%s no pot ser un percentatge"
|
||||
@@ -4592,9 +4603,6 @@ msgstr "Validació de paràmetres"
|
||||
msgid "Value %s is out of range. The valid range is from %d to %d."
|
||||
msgstr "El valor %s està fora de rang. El rang vàlid és de %d a %d."
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "El valor introduït és fora de rang."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Is it %s%% or %s %s?\n"
|
||||
@@ -4647,7 +4655,7 @@ msgid "Line Width"
|
||||
msgstr "Amplada de la línia"
|
||||
|
||||
msgid "Actual Speed"
|
||||
msgstr ""
|
||||
msgstr "Velocitat Real"
|
||||
|
||||
msgid "Fan Speed"
|
||||
msgstr "Velocitat del ventilador"
|
||||
@@ -4656,7 +4664,7 @@ msgid "Flow"
|
||||
msgstr "Fluxe"
|
||||
|
||||
msgid "Actual Flow"
|
||||
msgstr ""
|
||||
msgstr "Flux real"
|
||||
|
||||
msgid "Tool"
|
||||
msgstr "Eina"
|
||||
@@ -4667,6 +4675,9 @@ msgstr "Temps de capa"
|
||||
msgid "Layer Time (log)"
|
||||
msgstr "Temps de capa ( log )"
|
||||
|
||||
msgid "Pressure Advance"
|
||||
msgstr ""
|
||||
|
||||
msgid "Noop"
|
||||
msgstr ""
|
||||
|
||||
@@ -4754,9 +4765,6 @@ msgstr ""
|
||||
msgid "Fan speed"
|
||||
msgstr "Velocitat del ventilador"
|
||||
|
||||
msgid "°C"
|
||||
msgstr "°C"
|
||||
|
||||
msgid "Time"
|
||||
msgstr "Temps"
|
||||
|
||||
@@ -4791,6 +4799,9 @@ msgid "Color: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Actual Speed: "
|
||||
msgstr "Velocitat Real: "
|
||||
|
||||
msgid "PA: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Statistics of All Plates"
|
||||
@@ -4905,12 +4916,12 @@ msgid "Speed (mm/s)"
|
||||
msgstr "Velocitat ( mm/s )"
|
||||
|
||||
msgid "Actual Speed (mm/s)"
|
||||
msgstr ""
|
||||
msgstr "Velocitat Real (mm/s)"
|
||||
|
||||
msgid "Fan Speed (%)"
|
||||
msgstr "Velocitat Ventilador ( % )"
|
||||
|
||||
msgid "Temperature (°C)"
|
||||
msgid "Temperature (℃)"
|
||||
msgstr "Temperatura ( °C )"
|
||||
|
||||
msgid "Volumetric flow rate (mm³/s)"
|
||||
@@ -4928,9 +4939,6 @@ msgstr "Canvis de filament"
|
||||
msgid "Options"
|
||||
msgstr "Opcions"
|
||||
|
||||
msgid "travel"
|
||||
msgstr "recorregut"
|
||||
|
||||
msgid "Extruder"
|
||||
msgstr "Extrusor"
|
||||
|
||||
@@ -5025,16 +5033,13 @@ msgstr "Incrementar/reduir àrea edició"
|
||||
msgid "Sequence"
|
||||
msgstr "Seqüència"
|
||||
|
||||
msgid "object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "part selection"
|
||||
msgid "Object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys can quickly change the color of objects"
|
||||
msgid "Number keys can quickly change the color of objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -5184,6 +5189,30 @@ msgstr ""
|
||||
msgid "Fit camera to scene or selected object."
|
||||
msgstr ""
|
||||
|
||||
msgid "3D Navigator"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom button"
|
||||
msgstr ""
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr "Voladissos"
|
||||
|
||||
msgid "Outline"
|
||||
msgstr ""
|
||||
|
||||
msgid "Perspective"
|
||||
msgstr ""
|
||||
|
||||
msgid "Axes"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Labels"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "Barra d'eines de pintura"
|
||||
|
||||
@@ -5266,7 +5295,7 @@ msgid "Only the object being edited is visible."
|
||||
msgstr "Només és visible l'objecte que s'està editant."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgid "Filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -5687,6 +5716,12 @@ msgstr "Mostrar el navegador 3D"
|
||||
msgid "Show 3D navigator in Prepare and Preview scene."
|
||||
msgstr "Mostrar el navegador 3D en Preparació i Previsualització"
|
||||
|
||||
msgid "Show Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Show Gridlines on plate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset Window Layout"
|
||||
msgstr "Restableix el disseny de la finestra"
|
||||
|
||||
@@ -5727,7 +5762,7 @@ msgid "Max flowrate"
|
||||
msgstr "Cabal màxim"
|
||||
|
||||
msgid "Pressure advance"
|
||||
msgstr "Avanç de Pressió Lineal( Pressure advance )"
|
||||
msgstr "Avanç de Pressió Lineal (Pressure advance)"
|
||||
|
||||
msgid "Pass 1"
|
||||
msgstr "Pas 1"
|
||||
@@ -6443,7 +6478,7 @@ msgid "Layer: %d/%d"
|
||||
msgstr "Capa: %d/%d"
|
||||
|
||||
msgid ""
|
||||
"Please heat the nozzle to above 170°C before loading or unloading filament."
|
||||
"Please heat the nozzle to above 170℃ before loading or unloading filament."
|
||||
msgstr ""
|
||||
"Escalfeu el broquet per sobre dels 170 °C abans de carregar o descarregar el "
|
||||
"filament."
|
||||
@@ -6556,7 +6591,7 @@ msgstr ""
|
||||
msgid "Upload failed\n"
|
||||
msgstr "S'ha produït un error en la pujada\n"
|
||||
|
||||
msgid "obtaining instance_id failed\n"
|
||||
msgid "Obtaining instance_id failed\n"
|
||||
msgstr "error en obtenir instance_id \n"
|
||||
|
||||
msgid ""
|
||||
@@ -6836,9 +6871,6 @@ msgstr "Connectors de tall"
|
||||
msgid "Layers"
|
||||
msgstr "Capes"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "Rang"
|
||||
|
||||
msgid ""
|
||||
"The application cannot run normally because OpenGL version is lower than "
|
||||
"3.2.\n"
|
||||
@@ -7574,7 +7606,7 @@ msgid ""
|
||||
"connected printer.\n"
|
||||
"After syncing, software can optimize printing time and filament usage when "
|
||||
"slicing.\n"
|
||||
"Would you like to sync now ?"
|
||||
"Would you like to sync now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync now"
|
||||
@@ -7604,13 +7636,14 @@ msgstr "Desar projecte"
|
||||
msgid "Importing Model"
|
||||
msgstr "Important Model"
|
||||
|
||||
msgid "prepare 3MF file..."
|
||||
#, fuzzy
|
||||
msgid "Preparing 3MF file..."
|
||||
msgstr "preparar el fitxer 3MF..."
|
||||
|
||||
msgid "Download failed, unknown file format."
|
||||
msgstr "S'ha produït un error en la baixada, format de fitxer desconegut."
|
||||
|
||||
msgid "downloading project..."
|
||||
msgid "Downloading project..."
|
||||
msgstr "descarregant projecte ..."
|
||||
|
||||
msgid "Download failed, File size exception."
|
||||
@@ -8130,6 +8163,18 @@ msgstr ""
|
||||
msgid "By vendor"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimize filaments area height for..."
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid "filaments"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
||||
msgstr ""
|
||||
|
||||
msgid "Features"
|
||||
msgstr ""
|
||||
|
||||
@@ -8143,9 +8188,6 @@ msgstr ""
|
||||
"Amb aquesta opció habilitada, podeu enviar una tasca a diversos dispositius "
|
||||
"alhora i gestionar múltiples dispositius."
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pop up to select filament grouping mode"
|
||||
msgstr ""
|
||||
|
||||
@@ -8520,10 +8562,10 @@ msgstr "Amfitrió PRE: api-pre.bambu-lab.com/v1"
|
||||
msgid "Product host"
|
||||
msgstr "Amfitrió del producte"
|
||||
|
||||
msgid "debug save button"
|
||||
msgid "Debug save button"
|
||||
msgstr "botó de desar depuració"
|
||||
|
||||
msgid "save debug settings"
|
||||
msgid "Save debug settings"
|
||||
msgstr "desar la configuració de depuració"
|
||||
|
||||
msgid "DEBUG settings have been saved successfully!"
|
||||
@@ -8814,7 +8856,7 @@ msgid ""
|
||||
"*Automatic mode: Check for calibration before printing. Skip if unnecessary."
|
||||
msgstr ""
|
||||
|
||||
msgid "send completed"
|
||||
msgid "Send complete"
|
||||
msgstr "enviament completat"
|
||||
|
||||
msgid "Error code"
|
||||
@@ -8960,7 +9002,7 @@ msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"[ %s ] requires printing in a high-temperature environment.Please close the "
|
||||
"[ %s ] requires printing in a high-temperature environment. Please close the "
|
||||
"door."
|
||||
msgstr ""
|
||||
|
||||
@@ -9391,7 +9433,7 @@ msgid ""
|
||||
"ensure proper printing and achieve their intended effects (e.g., Gyroid, "
|
||||
"Cubic). Rotating the current sparse infill pattern may lead to insufficient "
|
||||
"support. Please proceed with caution and thoroughly check for any potential "
|
||||
"printing issues.Are you sure you want to enable this option?"
|
||||
"printing issues. Are you sure you want to enable this option?"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -9543,9 +9585,6 @@ msgstr "Parets i superfícies"
|
||||
msgid "Bridging"
|
||||
msgstr "Ponts"
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr "Voladissos"
|
||||
|
||||
msgid "Walls"
|
||||
msgstr "Parets"
|
||||
|
||||
@@ -10663,7 +10702,7 @@ msgstr "Moure la selecció 10 mm en direcció X positiva"
|
||||
msgid "Movement step set to 1 mm"
|
||||
msgstr "Pas de moviment configurat a 1 mm"
|
||||
|
||||
msgid "keyboard 1-9: set filament for object/part"
|
||||
msgid "Keyboard 1-9: set filament for object/part"
|
||||
msgstr "teclat 1-9: establir filament per a objecte/peça"
|
||||
|
||||
msgid "Camera view - Default"
|
||||
@@ -11449,6 +11488,16 @@ msgstr ""
|
||||
"La Torre de Purga requereix que el suport tingui la mateixa alçada de capa "
|
||||
"amb objecte."
|
||||
|
||||
msgid ""
|
||||
"For Organic supports, two walls are supported only with the Hollow/Default "
|
||||
"base pattern."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The Lightning base pattern is not supported by this support type; "
|
||||
"Rectilinear will be used instead."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Organic support tree tip diameter must not be smaller than support material "
|
||||
"extrusion width."
|
||||
@@ -13820,6 +13869,49 @@ msgstr ""
|
||||
"quantitat de material a la Torre de Purga per produir successives extrusions "
|
||||
"d'objectes de farciment o sacrifici de manera fiable."
|
||||
|
||||
msgid "Interface layer pre-extrusion distance"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion distance for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer pre-extrusion length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion length for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Tower ironing area"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Ironing area for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "mm²"
|
||||
msgstr "mm²"
|
||||
|
||||
msgid "Interface layer purge length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Purge length for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer print temperature"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Print temperature for prime tower interface layer (where different materials "
|
||||
"meet). If set to -1, use max recommended nozzle temperature."
|
||||
msgstr ""
|
||||
|
||||
msgid "Speed of the last cooling move"
|
||||
msgstr "Velocitat de l'últim moviment de refredament"
|
||||
|
||||
@@ -14402,8 +14494,8 @@ msgstr ""
|
||||
"superfície tingui un aspecte rugós. Aquest ajustament controla la posició "
|
||||
"difusa"
|
||||
|
||||
msgid "None (allow paint)"
|
||||
msgstr ""
|
||||
msgid "Painted only"
|
||||
msgstr "Només pintat"
|
||||
|
||||
msgid "Contour"
|
||||
msgstr "Contorn"
|
||||
@@ -15662,9 +15754,6 @@ msgstr ""
|
||||
"Àrea màxima d'un forat a la base del model abans que s'ompli amb material "
|
||||
"cònic. Un valor de 0 omplirà tots els forats de la base del model."
|
||||
|
||||
msgid "mm²"
|
||||
msgstr "mm²"
|
||||
|
||||
msgid "Detect overhang wall"
|
||||
msgstr "Detectar voladís de perímetre"
|
||||
|
||||
@@ -16790,8 +16879,17 @@ msgstr "Velocitat de la interfície de suport"
|
||||
msgid "Base pattern"
|
||||
msgstr "Patró de la base"
|
||||
|
||||
msgid "Line pattern of support."
|
||||
msgstr "Patró lineal del suport"
|
||||
msgid ""
|
||||
"Line pattern of support.\n"
|
||||
"\n"
|
||||
"The Default option for Tree supports is Hollow, which means no base pattern. "
|
||||
"For other support types, the Default option is the Rectilinear pattern.\n"
|
||||
"\n"
|
||||
"NOTE: For Organic supports, the two walls are supported only with the Hollow/"
|
||||
"Default base pattern. The Lightning base pattern is supported only by Tree "
|
||||
"Slim/Strong/Hybrid supports. For the other support types, the Rectilinear "
|
||||
"will be used instead of Lightning."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rectilinear grid"
|
||||
msgstr "Quadrícula rectilínia"
|
||||
@@ -17401,6 +17499,23 @@ msgstr ""
|
||||
msgid "The wall of prime tower will skip the start points of wipe path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable tower interface features"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable optimized prime tower interface behavior when different materials "
|
||||
"meet."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cool down from interface boost during prime tower"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"When interface-layer temperature boost is active, set the nozzle back to "
|
||||
"print temperature at the start of the prime tower so it cools down during "
|
||||
"the tower."
|
||||
msgstr ""
|
||||
|
||||
msgid "Infill gap"
|
||||
msgstr ""
|
||||
|
||||
@@ -19026,7 +19141,7 @@ msgstr ""
|
||||
msgid "Plate Type"
|
||||
msgstr "Tipus de placa"
|
||||
|
||||
msgid "filament position"
|
||||
msgid "Filament position"
|
||||
msgstr "posició del filament"
|
||||
|
||||
msgid "Filament For Calibration"
|
||||
@@ -19992,10 +20107,11 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Printer and all the filament&&process presets that belongs to the printer.\n"
|
||||
"Printer and all the filament and process presets that belongs to the "
|
||||
"printer.\n"
|
||||
"Can be shared with others."
|
||||
msgstr ""
|
||||
"La Impressora i tots els perfils de filament&processament que pertanyen a la "
|
||||
"Impressora i tots els perfils de filament i de procés que pertanyen a la "
|
||||
"impressora.\n"
|
||||
"Es pot compartir amb altres persones."
|
||||
|
||||
@@ -20886,7 +21002,7 @@ msgstr "Sense tasques històriques!"
|
||||
msgid "Upgrading"
|
||||
msgstr "Actualitzant"
|
||||
|
||||
msgid "syncing"
|
||||
msgid "Syncing"
|
||||
msgstr "sincronitzant"
|
||||
|
||||
msgid "Printing Finish"
|
||||
@@ -21506,6 +21622,22 @@ msgstr ""
|
||||
"augmentar adequadament la temperatura del llit pot reduir la probabilitat de "
|
||||
"deformació?"
|
||||
|
||||
#~ msgid "Line pattern of support."
|
||||
#~ msgstr "Patró lineal del suport"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Failed to install the plug-in. Please check whether it is blocked or "
|
||||
#~ "deleted by anti-virus software."
|
||||
#~ msgstr ""
|
||||
#~ "No s'ha pogut instal·lar el connector. Comproveu si el programari "
|
||||
#~ "antivirus l'ha bloquejat o suprimit."
|
||||
|
||||
#~ msgid "°C"
|
||||
#~ msgstr "°C"
|
||||
|
||||
#~ msgid "travel"
|
||||
#~ msgstr "recorregut"
|
||||
|
||||
#~ msgid "Replace with STL"
|
||||
#~ msgstr "Substitueix per STL"
|
||||
|
||||
@@ -21650,8 +21782,8 @@ msgstr ""
|
||||
#~ "capacitat restant s'actualitzarà automàticament."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The recommended minimum temperature is less than 190°C or the recommended "
|
||||
#~ "maximum temperature is greater than 300°C.\n"
|
||||
#~ "The recommended minimum temperature is less than 190℃ or the recommended "
|
||||
#~ "maximum temperature is greater than 300℃.\n"
|
||||
#~ msgstr ""
|
||||
#~ "La temperatura mínima recomanada és inferior a 190 °C o la màxima "
|
||||
#~ "recomanada és superior a 300 °C.\n"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-02-12 08:42+0800\n"
|
||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
||||
"PO-Revision-Date: 2026-02-11 20:30+0100\n"
|
||||
"Last-Translator: Jakub Hencl <jakub.hencl@seznam.cz> René Mošner "
|
||||
"<Renemosner@seznam.cz>\n"
|
||||
@@ -457,7 +457,7 @@ msgstr "Souřadnice součásti"
|
||||
msgid "Size"
|
||||
msgstr "Rozměr"
|
||||
|
||||
msgid "uniform scale"
|
||||
msgid "Uniform scale"
|
||||
msgstr "Jednotné měřítko"
|
||||
|
||||
msgid "Planar"
|
||||
@@ -723,7 +723,7 @@ msgstr "Spojka"
|
||||
msgid "Cut by Plane"
|
||||
msgstr "Řez rovinou"
|
||||
|
||||
msgid "non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgid "Non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgstr "Řezací nástroj způsobil ne-manifoldní hrany, chcete je nyní opravit?"
|
||||
|
||||
msgid "Repairing model object"
|
||||
@@ -2330,31 +2330,37 @@ msgstr "Sloučit s"
|
||||
msgid "Select All"
|
||||
msgstr "Vybrat vše"
|
||||
|
||||
msgid "select all objects on current plate"
|
||||
msgid "Select all objects on the current plate"
|
||||
msgstr "Vybrat všechny objekty na aktuální podložce"
|
||||
|
||||
msgid "Select All Plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select all objects on all plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete All"
|
||||
msgstr "Smazat vše"
|
||||
|
||||
msgid "delete all objects on current plate"
|
||||
msgid "Delete all objects on the current plate"
|
||||
msgstr "Smazat všechny objekty na aktuální podložce"
|
||||
|
||||
msgid "Arrange"
|
||||
msgstr "Uspořádat"
|
||||
|
||||
msgid "arrange current plate"
|
||||
msgid "Arrange current plate"
|
||||
msgstr "Uspořádat aktuální podložku"
|
||||
|
||||
msgid "Reload All"
|
||||
msgstr "Přenačíst vše"
|
||||
|
||||
msgid "reload all from disk"
|
||||
msgid "Reload all from disk"
|
||||
msgstr "Přenačíst vše z disku"
|
||||
|
||||
msgid "Auto Rotate"
|
||||
msgstr "Automatické otáčení"
|
||||
|
||||
msgid "auto rotate current plate"
|
||||
msgid "Auto rotate current plate"
|
||||
msgstr "Automatické otáčení aktuální podložky"
|
||||
|
||||
msgid "Delete Plate"
|
||||
@@ -2685,7 +2691,8 @@ msgstr "Přidat rozsah výšky"
|
||||
msgid "Invalid numeric."
|
||||
msgstr "Neplatné číslo."
|
||||
|
||||
msgid "one cell can only be copied to one or multiple cells in the same column"
|
||||
#, fuzzy
|
||||
msgid "One cell can only be copied to one or more cells in the same column."
|
||||
msgstr ""
|
||||
"Jednu buňku lze kopírovat pouze do jedné nebo více buněk ve stejném "
|
||||
"sloupcijednu buňku lze zkopírovat pouze do jedné nebo více buněk ve stejném "
|
||||
@@ -2951,9 +2958,9 @@ msgid "Top"
|
||||
msgstr "Shora"
|
||||
|
||||
msgid ""
|
||||
"The fan controls the temperature during printing to improve print "
|
||||
"quality.The system automatically adjusts the fan's switch and speed "
|
||||
"according to different printing materials."
|
||||
"The fan controls the temperature during printing to improve print quality. "
|
||||
"The system automatically adjusts the fan's switch and speed according to "
|
||||
"different printing materials."
|
||||
msgstr ""
|
||||
"Ventilátor během tisku reguluje teplotu pro zlepšení kvality tisku. Systém "
|
||||
"automaticky upravuje zapínání a rychlost ventilátoru podle různých tiskových "
|
||||
@@ -3888,8 +3895,7 @@ msgstr "Tiskárna je zaneprázdněná a nelze přepnout typ AMS."
|
||||
msgid "Please unload all filament before switching."
|
||||
msgstr "Před přepnutím vyložte všechny filamenty."
|
||||
|
||||
msgid ""
|
||||
"AMS type switching needs firmware update, taking about 30s. Switch now ?"
|
||||
msgid "AMS type switching needs firmware update, taking about 30s. Switch now?"
|
||||
msgstr ""
|
||||
"Přepnutí typu AMS vyžaduje aktualizaci firmwaru, která trvá přibližně 30 s. "
|
||||
"Přepnout nyní?"
|
||||
@@ -3920,14 +3926,12 @@ msgstr ""
|
||||
"zkuste to znovu."
|
||||
|
||||
msgid ""
|
||||
"Failed to install the plug-in. Please check whether it is blocked or deleted "
|
||||
"by anti-virus software."
|
||||
"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 "
|
||||
"deleted by anti-virus software."
|
||||
msgstr ""
|
||||
"Nepodařilo se nainstalovat zásuvný modul. Zkontrolujte, zda nebyl zablokován "
|
||||
"nebo smazán antivirovým softwarem.Nepodařilo se nainstalovat plugin. "
|
||||
"Zkontrolujte, zda není blokován nebo odstraněn antivirovým softwarem."
|
||||
|
||||
msgid "click here to see more info"
|
||||
msgid "Click here to see more info"
|
||||
msgstr "Kliknutím sem zobrazíte více informací"
|
||||
|
||||
msgid ""
|
||||
@@ -4528,7 +4532,7 @@ msgstr "Měření přesnosti pohybu"
|
||||
msgid "Nozzle offset calibration"
|
||||
msgstr "Kalibrace offsetu trysky"
|
||||
|
||||
msgid "high temperature auto bed leveling"
|
||||
msgid "High temperature auto bed leveling"
|
||||
msgstr "Automatické vyrovnání podložky při vysoké teplotě"
|
||||
|
||||
msgid "Auto Check: Quick Release Lever"
|
||||
@@ -4821,6 +4825,12 @@ msgstr "Nastavení tiskárny"
|
||||
msgid "parameter name"
|
||||
msgstr "Název parametru"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "Rozsah"
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "Hodnota je mimo rozsah."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s can't be a percentage"
|
||||
msgstr "%s nemůže být procento"
|
||||
@@ -4836,9 +4846,6 @@ msgstr "Validace parametru"
|
||||
msgid "Value %s is out of range. The valid range is from %d to %d."
|
||||
msgstr "Hodnota %s je mimo rozsah. Platný rozsah je od %d do %d."
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "Hodnota je mimo rozsah."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Is it %s%% or %s %s?\n"
|
||||
@@ -4914,6 +4921,9 @@ msgstr "Čas vrstvy"
|
||||
msgid "Layer Time (log)"
|
||||
msgstr "Čas vrstvy (protokol)"
|
||||
|
||||
msgid "Pressure Advance"
|
||||
msgstr ""
|
||||
|
||||
msgid "Noop"
|
||||
msgstr "Noop"
|
||||
|
||||
@@ -5001,9 +5011,6 @@ msgstr "mm³/s"
|
||||
msgid "Fan speed"
|
||||
msgstr "Rychlost ventilátoru"
|
||||
|
||||
msgid "°C"
|
||||
msgstr "°C"
|
||||
|
||||
msgid "Time"
|
||||
msgstr "Čas"
|
||||
|
||||
@@ -5040,6 +5047,9 @@ msgstr "Barva: "
|
||||
msgid "Actual Speed: "
|
||||
msgstr "Aktuální rychlost: "
|
||||
|
||||
msgid "PA: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Statistics of All Plates"
|
||||
msgstr "Statistiky všech podložek"
|
||||
|
||||
@@ -5163,7 +5173,7 @@ msgstr "Skutečná rychlost (mm/s)"
|
||||
msgid "Fan Speed (%)"
|
||||
msgstr "Rychlost ventilátoru (%)"
|
||||
|
||||
msgid "Temperature (°C)"
|
||||
msgid "Temperature (℃)"
|
||||
msgstr "Teplota (°C)"
|
||||
|
||||
msgid "Volumetric flow rate (mm³/s)"
|
||||
@@ -5181,9 +5191,6 @@ msgstr "Výměna filamentu"
|
||||
msgid "Options"
|
||||
msgstr "Možnosti"
|
||||
|
||||
msgid "travel"
|
||||
msgstr "Cestování"
|
||||
|
||||
msgid "Extruder"
|
||||
msgstr "Extruder"
|
||||
|
||||
@@ -5285,16 +5292,13 @@ msgstr "Zvětšit/Zmenšit oblast úprav"
|
||||
msgid "Sequence"
|
||||
msgstr "Sekvence"
|
||||
|
||||
msgid "object selection"
|
||||
msgid "Object selection"
|
||||
msgstr "Výběr objektu"
|
||||
|
||||
msgid "part selection"
|
||||
msgstr "Výběr části"
|
||||
|
||||
msgid "number keys"
|
||||
msgstr "Číselné klávesy"
|
||||
|
||||
msgid "number keys can quickly change the color of objects"
|
||||
msgid "Number keys can quickly change the color of objects"
|
||||
msgstr "Číselné klávesy mohou rychle změnit barvu objektů"
|
||||
|
||||
msgid ""
|
||||
@@ -5450,6 +5454,30 @@ msgstr "Nástrojová lišta plátna"
|
||||
msgid "Fit camera to scene or selected object."
|
||||
msgstr "Přizpůsobit kameru scéně nebo vybranému objektu."
|
||||
|
||||
msgid "3D Navigator"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom button"
|
||||
msgstr ""
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr "Převisy"
|
||||
|
||||
msgid "Outline"
|
||||
msgstr ""
|
||||
|
||||
msgid "Perspective"
|
||||
msgstr ""
|
||||
|
||||
msgid "Axes"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Labels"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "Panel nástrojů malování"
|
||||
|
||||
@@ -5540,7 +5568,7 @@ msgid "Only the object being edited is visible."
|
||||
msgstr "Viditelný je pouze objekt, který právě upravujete."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgid "Filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgstr "Filamenty %s nelze tisknout přímo na povrch této podložky."
|
||||
|
||||
msgid ""
|
||||
@@ -5974,6 +6002,12 @@ msgstr "Zobrazit 3D navigátor"
|
||||
msgid "Show 3D navigator in Prepare and Preview scene."
|
||||
msgstr "Zobrazit 3D navigátor ve scénách Příprava a Náhled."
|
||||
|
||||
msgid "Show Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Show Gridlines on plate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset Window Layout"
|
||||
msgstr "Obnovit rozvržení oken"
|
||||
|
||||
@@ -6738,7 +6772,7 @@ msgid "Layer: %d/%d"
|
||||
msgstr "Vrstva: %d/%d"
|
||||
|
||||
msgid ""
|
||||
"Please heat the nozzle to above 170°C before loading or unloading filament."
|
||||
"Please heat the nozzle to above 170℃ before loading or unloading filament."
|
||||
msgstr ""
|
||||
"Před zaváděním nebo vyjímáním filamentu prosím zahřejte trysku na více než "
|
||||
"170 °C."
|
||||
@@ -6862,7 +6896,7 @@ msgstr ""
|
||||
msgid "Upload failed\n"
|
||||
msgstr "Nahrávání selhalo\n"
|
||||
|
||||
msgid "obtaining instance_id failed\n"
|
||||
msgid "Obtaining instance_id failed\n"
|
||||
msgstr "Získání instance_id selhalo\n"
|
||||
|
||||
msgid ""
|
||||
@@ -7150,9 +7184,6 @@ msgstr "Říznout spojky"
|
||||
msgid "Layers"
|
||||
msgstr "Vrstvy"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "Rozsah"
|
||||
|
||||
msgid ""
|
||||
"The application cannot run normally because OpenGL version is lower than "
|
||||
"3.2.\n"
|
||||
@@ -7947,7 +7978,7 @@ msgid ""
|
||||
"connected printer.\n"
|
||||
"After syncing, software can optimize printing time and filament usage when "
|
||||
"slicing.\n"
|
||||
"Would you like to sync now ?"
|
||||
"Would you like to sync now?"
|
||||
msgstr ""
|
||||
"Informace o typu trysky a množství AMS nebyly synchronizovány z připojené "
|
||||
"tiskárny.\n"
|
||||
@@ -7984,13 +8015,14 @@ msgstr "Uložit projekt"
|
||||
msgid "Importing Model"
|
||||
msgstr "Importovat model"
|
||||
|
||||
msgid "prepare 3MF file..."
|
||||
#, fuzzy
|
||||
msgid "Preparing 3MF file..."
|
||||
msgstr "Připravte soubor 3MF..."
|
||||
|
||||
msgid "Download failed, unknown file format."
|
||||
msgstr "Stažení selhalo, neznámý formát souboru."
|
||||
|
||||
msgid "downloading project..."
|
||||
msgid "Downloading project..."
|
||||
msgstr "Stahuji projekt..."
|
||||
|
||||
msgid "Download failed, File size exception."
|
||||
@@ -8533,6 +8565,18 @@ msgstr "Podle typu"
|
||||
msgid "By vendor"
|
||||
msgstr "Podle výrobce"
|
||||
|
||||
msgid "Optimize filaments area height for..."
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr "(Vyžaduje restart)"
|
||||
|
||||
msgid "filaments"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
||||
msgstr ""
|
||||
|
||||
msgid "Features"
|
||||
msgstr "Funkce"
|
||||
|
||||
@@ -8546,9 +8590,6 @@ msgstr ""
|
||||
"Pokud je tato možnost povolena, můžete odesílat úlohy na více zařízení "
|
||||
"zároveň a spravovat více zařízení."
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr "(Vyžaduje restart)"
|
||||
|
||||
msgid "Pop up to select filament grouping mode"
|
||||
msgstr "Zobrazit okno pro výběr režimu seskupení filamentů"
|
||||
|
||||
@@ -8953,10 +8994,10 @@ msgstr "Hostitel PRE: api-pre.bambu-lab.com/v1"
|
||||
msgid "Product host"
|
||||
msgstr "Produktový hostitel"
|
||||
|
||||
msgid "debug save button"
|
||||
msgid "Debug save button"
|
||||
msgstr "Tlačítko pro uložení ladění"
|
||||
|
||||
msgid "save debug settings"
|
||||
msgid "Save debug settings"
|
||||
msgstr "Uložit nastavení ladění"
|
||||
|
||||
msgid "DEBUG settings have been saved successfully!"
|
||||
@@ -9260,7 +9301,7 @@ msgstr ""
|
||||
"*Automatický režim: Zkontrolujte kalibraci před tiskem. Přeskočte, pokud "
|
||||
"není nutné."
|
||||
|
||||
msgid "send completed"
|
||||
msgid "Send complete"
|
||||
msgstr "Odeslání dokončeno"
|
||||
|
||||
msgid "Error code"
|
||||
@@ -9438,7 +9479,7 @@ msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"[ %s ] requires printing in a high-temperature environment.Please close the "
|
||||
"[ %s ] requires printing in a high-temperature environment. Please close the "
|
||||
"door."
|
||||
msgstr ""
|
||||
"[ %s ] vyžaduje tisk ve vysokoteplotním prostředí. Zavřete prosím dveře."
|
||||
@@ -9905,7 +9946,7 @@ msgid ""
|
||||
"ensure proper printing and achieve their intended effects (e.g., Gyroid, "
|
||||
"Cubic). Rotating the current sparse infill pattern may lead to insufficient "
|
||||
"support. Please proceed with caution and thoroughly check for any potential "
|
||||
"printing issues.Are you sure you want to enable this option?"
|
||||
"printing issues. Are you sure you want to enable this option?"
|
||||
msgstr ""
|
||||
"Výplňové vzory jsou obvykle navrženy tak, aby rotaci automaticky zvládaly, "
|
||||
"což zajistí správný tisk a dosažení požadovaných efektů (např. Gyroid, "
|
||||
@@ -10067,9 +10108,6 @@ msgstr "Stěny a povrchy"
|
||||
msgid "Bridging"
|
||||
msgstr "Přemostění"
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr "Převisy"
|
||||
|
||||
msgid "Walls"
|
||||
msgstr "Stěny"
|
||||
|
||||
@@ -11259,7 +11297,7 @@ msgstr "Posunout výběr o 10 mm v kladném směru osy X"
|
||||
msgid "Movement step set to 1 mm"
|
||||
msgstr "Krok posunu výběru: 1 mm"
|
||||
|
||||
msgid "keyboard 1-9: set filament for object/part"
|
||||
msgid "Keyboard 1-9: set filament for object/part"
|
||||
msgstr "Klávesy 1-9: nastavení filamentu pro objekt/díl"
|
||||
|
||||
msgid "Camera view - Default"
|
||||
@@ -12085,6 +12123,16 @@ msgstr ""
|
||||
"objekt.Čistící věž vyžaduje, aby podpěry měly stejnou výšku vrstvy jako "
|
||||
"objekt."
|
||||
|
||||
msgid ""
|
||||
"For Organic supports, two walls are supported only with the Hollow/Default "
|
||||
"base pattern."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The Lightning base pattern is not supported by this support type; "
|
||||
"Rectilinear will be used instead."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Organic support tree tip diameter must not be smaller than support material "
|
||||
"extrusion width."
|
||||
@@ -14599,6 +14647,49 @@ msgstr ""
|
||||
"materiálu vždy vytlačovat do čistící věže, aby se spolehlivě vytvořily "
|
||||
"následné výplně nebo objekty."
|
||||
|
||||
msgid "Interface layer pre-extrusion distance"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion distance for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer pre-extrusion length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion length for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Tower ironing area"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Ironing area for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "mm²"
|
||||
msgstr "mm²"
|
||||
|
||||
msgid "Interface layer purge length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Purge length for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer print temperature"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Print temperature for prime tower interface layer (where different materials "
|
||||
"meet). If set to -1, use max recommended nozzle temperature."
|
||||
msgstr ""
|
||||
|
||||
msgid "Speed of the last cooling move"
|
||||
msgstr "Rychlost posledního pohybu chlazení"
|
||||
|
||||
@@ -15233,8 +15324,8 @@ msgstr ""
|
||||
"nastavení ovládá polohu členitého povrchu.Náhodné chvění při tisku na stěnu, "
|
||||
"takže povrch má hrubý vzhled. Toto nastavení řídí neostrou polohu"
|
||||
|
||||
msgid "None (allow paint)"
|
||||
msgstr "Žádné (povolit barvení)"
|
||||
msgid "Painted only"
|
||||
msgstr "Pouze natřeno"
|
||||
|
||||
msgid "Contour"
|
||||
msgstr "Obrys"
|
||||
@@ -16636,9 +16727,6 @@ msgstr ""
|
||||
"modelu.Maximální plocha otvoru v základně modelu před tím, než bude vyplněna "
|
||||
"kuželovým materiálem. Hodnota 0 vyplní všechny díry v základně modelu."
|
||||
|
||||
msgid "mm²"
|
||||
msgstr "mm²"
|
||||
|
||||
msgid "Detect overhang wall"
|
||||
msgstr "Detekovat převisy stěn"
|
||||
|
||||
@@ -17830,8 +17918,17 @@ msgstr "Rychlost pro kontaktní vrstvy podpěr"
|
||||
msgid "Base pattern"
|
||||
msgstr "Základní vzor"
|
||||
|
||||
msgid "Line pattern of support."
|
||||
msgstr "Čárový vzor podpěry"
|
||||
msgid ""
|
||||
"Line pattern of support.\n"
|
||||
"\n"
|
||||
"The Default option for Tree supports is Hollow, which means no base pattern. "
|
||||
"For other support types, the Default option is the Rectilinear pattern.\n"
|
||||
"\n"
|
||||
"NOTE: For Organic supports, the two walls are supported only with the Hollow/"
|
||||
"Default base pattern. The Lightning base pattern is supported only by Tree "
|
||||
"Slim/Strong/Hybrid supports. For the other support types, the Rectilinear "
|
||||
"will be used instead of Lightning."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rectilinear grid"
|
||||
msgstr "Přímočará mřížka"
|
||||
@@ -18492,6 +18589,23 @@ msgstr "Přeskočit body"
|
||||
msgid "The wall of prime tower will skip the start points of wipe path."
|
||||
msgstr "Stěna prime tower přeskočí počáteční body dráhy čištění."
|
||||
|
||||
msgid "Enable tower interface features"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable optimized prime tower interface behavior when different materials "
|
||||
"meet."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cool down from interface boost during prime tower"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"When interface-layer temperature boost is active, set the nozzle back to "
|
||||
"print temperature at the start of the prime tower so it cools down during "
|
||||
"the tower."
|
||||
msgstr ""
|
||||
|
||||
msgid "Infill gap"
|
||||
msgstr "Vzdálenost výplně"
|
||||
|
||||
@@ -20238,7 +20352,7 @@ msgstr "Informace o trysce"
|
||||
msgid "Plate Type"
|
||||
msgstr "Typ podložky"
|
||||
|
||||
msgid "filament position"
|
||||
msgid "Filament position"
|
||||
msgstr "Pozice filamentu"
|
||||
|
||||
msgid "Filament For Calibration"
|
||||
@@ -21228,7 +21342,8 @@ msgstr ""
|
||||
"Zavřete jej prosím a zkuste to znovu."
|
||||
|
||||
msgid ""
|
||||
"Printer and all the filament&&process presets that belongs to the printer.\n"
|
||||
"Printer and all the filament and process presets that belongs to the "
|
||||
"printer.\n"
|
||||
"Can be shared with others."
|
||||
msgstr ""
|
||||
"Tiskárna a všechny filamentové a procesní předvolby, které patří k "
|
||||
@@ -22191,7 +22306,7 @@ msgstr "Žádné historické úlohy!"
|
||||
msgid "Upgrading"
|
||||
msgstr "Aktualizace"
|
||||
|
||||
msgid "syncing"
|
||||
msgid "Syncing"
|
||||
msgstr "Synchronizace"
|
||||
|
||||
msgid "Printing Finish"
|
||||
@@ -22878,6 +22993,27 @@ msgstr ""
|
||||
"může zvýšení teploty vyhřívané podložky snížit pravděpodobnost vzniku "
|
||||
"deformace?"
|
||||
|
||||
#~ msgid "Line pattern of support."
|
||||
#~ msgstr "Čárový vzor podpěry"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Failed to install the plug-in. Please check whether it is blocked or "
|
||||
#~ "deleted by anti-virus software."
|
||||
#~ msgstr ""
|
||||
#~ "Nepodařilo se nainstalovat zásuvný modul. Zkontrolujte, zda nebyl "
|
||||
#~ "zablokován nebo smazán antivirovým softwarem.Nepodařilo se nainstalovat "
|
||||
#~ "plugin. Zkontrolujte, zda není blokován nebo odstraněn antivirovým "
|
||||
#~ "softwarem."
|
||||
|
||||
#~ msgid "°C"
|
||||
#~ msgstr "°C"
|
||||
|
||||
#~ msgid "travel"
|
||||
#~ msgstr "Cestování"
|
||||
|
||||
#~ msgid "part selection"
|
||||
#~ msgstr "Výběr části"
|
||||
|
||||
#~ msgid "Filament remapping finished."
|
||||
#~ msgstr "Přemapování filamentů dokončeno."
|
||||
|
||||
@@ -24254,7 +24390,7 @@ msgstr ""
|
||||
#~ "Ano - přepnout na přímočarý vzor automaticky\n"
|
||||
#~ "Ne - automaticky resetovat hustotu na výchozí ne 100% hodnotu"
|
||||
|
||||
#~ msgid "Please heat the nozzle to above 170°C before loading filament."
|
||||
#~ msgid "Please heat the nozzle to above 170℃ before loading filament."
|
||||
#~ msgstr "Před vložením filamentu zahřejte trysku na více než 170 stupňů."
|
||||
|
||||
#~ msgid "Show G-code window"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-02-12 08:42+0800\n"
|
||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Heiko Liebscher <hliebschergmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
@@ -457,7 +457,7 @@ msgstr "Teile Koordinaten"
|
||||
msgid "Size"
|
||||
msgstr "Größe"
|
||||
|
||||
msgid "uniform scale"
|
||||
msgid "Uniform scale"
|
||||
msgstr "einheitliche Skalierung"
|
||||
|
||||
msgid "Planar"
|
||||
@@ -720,7 +720,7 @@ msgstr "Verbinder"
|
||||
msgid "Cut by Plane"
|
||||
msgstr "Schnitt durch Ebene"
|
||||
|
||||
msgid "non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgid "Non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgstr ""
|
||||
"Nicht-manifold Kanten durch Schneidwerkzeug verursacht, möchten Sie es jetzt "
|
||||
"beheben?"
|
||||
@@ -1853,6 +1853,16 @@ msgid ""
|
||||
"Developer mode allows the printer to work exclusively through local network "
|
||||
"access, enabling full functionality with OrcaSlicer."
|
||||
msgstr ""
|
||||
"Um OrcaSlicer mit Bambu Lab Druckern zu verwenden, müssen Sie den LAN-Modus "
|
||||
"und den Entwicklermodus auf Ihrem Drucker aktivieren.\n"
|
||||
"\n"
|
||||
"Bitte gehen Sie zu den Einstellungen Ihres Druckers und:\n"
|
||||
"1. Schalten Sie den LAN-Modus ein\n"
|
||||
"2. Aktivieren Sie den Entwicklermodus\n"
|
||||
"\n"
|
||||
"Der Entwicklermodus ermöglicht es dem Drucker, ausschließlich über den "
|
||||
"lokalen Netzwerkzugriff zu arbeiten, wodurch die volle Funktionalität mit "
|
||||
"OrcaSlicer ermöglicht wird."
|
||||
|
||||
msgid "Network Plugin Restriction"
|
||||
msgstr "Netzwerk-Plugin-Einschränkung"
|
||||
@@ -2302,31 +2312,37 @@ msgstr "Zusammenführen mit"
|
||||
msgid "Select All"
|
||||
msgstr "Alle auswählen"
|
||||
|
||||
msgid "select all objects on current plate"
|
||||
msgid "Select all objects on the current plate"
|
||||
msgstr "Alle Objekte auf der aktuellen Druckplatte auswählen"
|
||||
|
||||
msgid "Select All Plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select all objects on all plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete All"
|
||||
msgstr "Alles löschen"
|
||||
|
||||
msgid "delete all objects on current plate"
|
||||
msgid "Delete all objects on the current plate"
|
||||
msgstr "Alle Objekte auf der aktuellen Druckplatte löschen"
|
||||
|
||||
msgid "Arrange"
|
||||
msgstr "Anordnen"
|
||||
|
||||
msgid "arrange current plate"
|
||||
msgid "Arrange current plate"
|
||||
msgstr "Aktuelle Druckplatte anordnen"
|
||||
|
||||
msgid "Reload All"
|
||||
msgstr "Alles neu laden"
|
||||
|
||||
msgid "reload all from disk"
|
||||
msgid "Reload all from disk"
|
||||
msgstr "Alles von der Festplatte neu laden"
|
||||
|
||||
msgid "Auto Rotate"
|
||||
msgstr "Automatisch rotieren"
|
||||
|
||||
msgid "auto rotate current plate"
|
||||
msgid "Auto rotate current plate"
|
||||
msgstr "Aktuelle Druckplatte automatisch rotieren"
|
||||
|
||||
msgid "Delete Plate"
|
||||
@@ -2367,10 +2383,10 @@ msgid "Simplify Model"
|
||||
msgstr "Modell vereinfachen"
|
||||
|
||||
msgid "Subdivision mesh"
|
||||
msgstr ""
|
||||
msgstr "Unterteilungsgitter"
|
||||
|
||||
msgid "(Lost color)"
|
||||
msgstr ""
|
||||
msgstr "(Farbe verloren)"
|
||||
|
||||
msgid "Center"
|
||||
msgstr "Zur Mitte"
|
||||
@@ -2629,13 +2645,15 @@ msgid ""
|
||||
"\"%s\" will exceed 1 million faces after this subdivision, which may "
|
||||
"increase slicing time. Do you want to continue?"
|
||||
msgstr ""
|
||||
"\"%s\" wird nach dieser Unterteilung über 1 Million Flächen haben, was die "
|
||||
"Slicing-Zeit erhöhen kann. Möchten Sie fortfahren?"
|
||||
|
||||
msgid "BambuStudio warning"
|
||||
msgstr ""
|
||||
msgstr "BambuStudio Warnung"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "\"%s\" part's mesh contains errors. Please repair it first."
|
||||
msgstr ""
|
||||
msgstr "\"%s\" Teilnetz enthält Fehler. Bitte zuerst reparieren."
|
||||
|
||||
msgid "Additional process preset"
|
||||
msgstr "Zusätzliche Prozesseinstellung"
|
||||
@@ -2655,7 +2673,8 @@ msgstr "Höhenbereich hinzufügen"
|
||||
msgid "Invalid numeric."
|
||||
msgstr "Ungültige Zahl."
|
||||
|
||||
msgid "one cell can only be copied to one or multiple cells in the same column"
|
||||
#, fuzzy
|
||||
msgid "One cell can only be copied to one or more cells in the same column."
|
||||
msgstr ""
|
||||
"eine Zelle kann nur in eine oder mehrere Zellen in derselben Spalte kopiert "
|
||||
"werden"
|
||||
@@ -2926,9 +2945,9 @@ msgid "Top"
|
||||
msgstr "Oben"
|
||||
|
||||
msgid ""
|
||||
"The fan controls the temperature during printing to improve print "
|
||||
"quality.The system automatically adjusts the fan's switch and speed "
|
||||
"according to different printing materials."
|
||||
"The fan controls the temperature during printing to improve print quality. "
|
||||
"The system automatically adjusts the fan's switch and speed according to "
|
||||
"different printing materials."
|
||||
msgstr ""
|
||||
"Der Lüfter steuert die Temperatur während des Druckens, um die Druckqualität "
|
||||
"zu verbessern. Das System passt das Ein- und Ausschalten sowie die "
|
||||
@@ -3841,8 +3860,7 @@ msgstr "Der Drucker ist beschäftigt und kann den AMS-Typ nicht wechseln."
|
||||
msgid "Please unload all filament before switching."
|
||||
msgstr "Bitte entladen Sie alle Filamente vor dem Wechsel."
|
||||
|
||||
msgid ""
|
||||
"AMS type switching needs firmware update, taking about 30s. Switch now ?"
|
||||
msgid "AMS type switching needs firmware update, taking about 30s. Switch now?"
|
||||
msgstr ""
|
||||
"Der Wechsel des AMS-Typs erfordert ein Firmware-Update, das etwa 30 Sekunden "
|
||||
"dauert. Jetzt wechseln?"
|
||||
@@ -3872,13 +3890,12 @@ msgstr ""
|
||||
"Firewall-Einstellungen und VPN-Software und versuchen Sie es erneut."
|
||||
|
||||
msgid ""
|
||||
"Failed to install the plug-in. Please check whether it is blocked or deleted "
|
||||
"by anti-virus software."
|
||||
"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 "
|
||||
"deleted by anti-virus software."
|
||||
msgstr ""
|
||||
"Die Installation des Plugins ist fehlgeschlagen. Bitte prüfen Sie, ob es von "
|
||||
"einer Antiviren-Software blockiert oder gelöscht wurde."
|
||||
|
||||
msgid "click here to see more info"
|
||||
msgid "Click here to see more info"
|
||||
msgstr "Klicken Sie hier, um weitere Informationen zu erhalten"
|
||||
|
||||
msgid ""
|
||||
@@ -4442,7 +4459,7 @@ msgstr "Messung der Bewegungsgenauigkeit"
|
||||
msgid "Nozzle offset calibration"
|
||||
msgstr "Kalibrierung des Düsenversatzes"
|
||||
|
||||
msgid "high temperature auto bed leveling"
|
||||
msgid "High temperature auto bed leveling"
|
||||
msgstr "Automatische Druckbettnivellierung bei hoher Temperatur"
|
||||
|
||||
msgid "Auto Check: Quick Release Lever"
|
||||
@@ -4741,6 +4758,12 @@ msgstr "Drucker-Einstellungen"
|
||||
msgid "parameter name"
|
||||
msgstr "Parametername"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "Reichweite"
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "Wert ist außerhalb der Reichweite."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s can't be a percentage"
|
||||
msgstr "%s kann nicht Prozent sein"
|
||||
@@ -4758,9 +4781,6 @@ msgstr ""
|
||||
"Wert %s ist außerhalb des Bereichs. Der gültige Bereich liegt zwischen %d "
|
||||
"und %d."
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "Wert ist außerhalb der Reichweite."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Is it %s%% or %s %s?\n"
|
||||
@@ -4835,6 +4855,9 @@ msgstr "Schichtdauer"
|
||||
msgid "Layer Time (log)"
|
||||
msgstr "Layerzeit (log)"
|
||||
|
||||
msgid "Pressure Advance"
|
||||
msgstr ""
|
||||
|
||||
msgid "Noop"
|
||||
msgstr "Keine Operation"
|
||||
|
||||
@@ -4922,9 +4945,6 @@ msgstr "mm³/s"
|
||||
msgid "Fan speed"
|
||||
msgstr "Lüftergeschwindigkeit"
|
||||
|
||||
msgid "°C"
|
||||
msgstr "°C"
|
||||
|
||||
msgid "Time"
|
||||
msgstr "Zeit"
|
||||
|
||||
@@ -4961,6 +4981,9 @@ msgstr "Farbe: "
|
||||
msgid "Actual Speed: "
|
||||
msgstr "Aktuelle Geschwindigkeit: "
|
||||
|
||||
msgid "PA: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Statistics of All Plates"
|
||||
msgstr "Statistiken aller Platten"
|
||||
|
||||
@@ -5092,8 +5115,8 @@ msgstr "Aktuelle Geschwindigkeit (mm/s)"
|
||||
msgid "Fan Speed (%)"
|
||||
msgstr "Lüftergeschwindigkeit (%)"
|
||||
|
||||
msgid "Temperature (°C)"
|
||||
msgstr "Temperatur (°C)"
|
||||
msgid "Temperature (℃)"
|
||||
msgstr "Temperatur (℃)"
|
||||
|
||||
msgid "Volumetric flow rate (mm³/s)"
|
||||
msgstr "Volumetrische Flussrate (mm³/s)"
|
||||
@@ -5110,9 +5133,6 @@ msgstr "Filamentwechsel"
|
||||
msgid "Options"
|
||||
msgstr "Optionen"
|
||||
|
||||
msgid "travel"
|
||||
msgstr "Bewegung"
|
||||
|
||||
msgid "Extruder"
|
||||
msgstr "Extruder"
|
||||
|
||||
@@ -5216,16 +5236,13 @@ msgstr "Bearbeitungsbereich vergrößern/verkleinern"
|
||||
msgid "Sequence"
|
||||
msgstr "Reihenfolge"
|
||||
|
||||
msgid "object selection"
|
||||
msgid "Object selection"
|
||||
msgstr "Objektauswahl"
|
||||
|
||||
msgid "part selection"
|
||||
msgstr "Teileauswahl"
|
||||
|
||||
msgid "number keys"
|
||||
msgstr "Nummerntasten"
|
||||
|
||||
msgid "number keys can quickly change the color of objects"
|
||||
msgid "Number keys can quickly change the color of objects"
|
||||
msgstr "Nummerntasten können schnell die Farbe von Objekten ändern."
|
||||
|
||||
msgid ""
|
||||
@@ -5386,6 +5403,30 @@ msgstr "Leinwand-Werkzeugleiste"
|
||||
msgid "Fit camera to scene or selected object."
|
||||
msgstr "Kamera an Szene oder ausgewähltes Objekt anpassen."
|
||||
|
||||
msgid "3D Navigator"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom button"
|
||||
msgstr ""
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr "Überhänge"
|
||||
|
||||
msgid "Outline"
|
||||
msgstr ""
|
||||
|
||||
msgid "Perspective"
|
||||
msgstr ""
|
||||
|
||||
msgid "Axes"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Labels"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "Malwerkzeuge"
|
||||
|
||||
@@ -5476,7 +5517,7 @@ msgid "Only the object being edited is visible."
|
||||
msgstr "Nur das bearbeitete Modell ist sichtbar."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgid "Filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgstr ""
|
||||
"Filament %s kann nicht direkt auf der Oberfläche dieser Druckplatte gedruckt "
|
||||
"werden."
|
||||
@@ -5495,6 +5536,8 @@ msgid ""
|
||||
"Prime tower position exceeded build plate boundaries and was repositioned to "
|
||||
"the nearest valid edge."
|
||||
msgstr ""
|
||||
"Die Position des Prime-Turms überschritt die Grenzen der Druckplatte und "
|
||||
"wurde an den nächstgelegenen gültigen Rand verschoben."
|
||||
|
||||
msgid ""
|
||||
"Partial flushing volume set to 0. Multi-color printing may cause color "
|
||||
@@ -5911,6 +5954,12 @@ msgstr "3D-Navigator anzeigen"
|
||||
msgid "Show 3D navigator in Prepare and Preview scene."
|
||||
msgstr "3D-Navigator in Vorbereitungs- und Vorschauansicht anzeigen."
|
||||
|
||||
msgid "Show Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Show Gridlines on plate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset Window Layout"
|
||||
msgstr "Window-Layout zurücksetzen"
|
||||
|
||||
@@ -6687,9 +6736,9 @@ msgid "Layer: %d/%d"
|
||||
msgstr "Schicht: %d/%d"
|
||||
|
||||
msgid ""
|
||||
"Please heat the nozzle to above 170°C before loading or unloading filament."
|
||||
"Please heat the nozzle to above 170℃ before loading or unloading filament."
|
||||
msgstr ""
|
||||
"Heizen Sie die Düse vor dem Laden oder Entladen des Filaments auf über 170°C."
|
||||
"Heizen Sie die Düse vor dem Laden oder Entladen des Filaments auf über 170℃."
|
||||
|
||||
msgid "Chamber temperature cannot be changed in cooling mode while printing."
|
||||
msgstr ""
|
||||
@@ -6807,7 +6856,7 @@ msgstr ""
|
||||
msgid "Upload failed\n"
|
||||
msgstr "Hochladen fehlgeschlagen\n"
|
||||
|
||||
msgid "obtaining instance_id failed\n"
|
||||
msgid "Obtaining instance_id failed\n"
|
||||
msgstr "Abrufen der Instanz-ID fehlgeschlagen\n"
|
||||
|
||||
#, fuzzy
|
||||
@@ -7089,9 +7138,6 @@ msgstr "Schnittstellenverbindungen"
|
||||
msgid "Layers"
|
||||
msgstr "Schichten"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "Reichweite"
|
||||
|
||||
msgid ""
|
||||
"The application cannot run normally because OpenGL version is lower than "
|
||||
"3.2.\n"
|
||||
@@ -7489,6 +7535,7 @@ msgstr ""
|
||||
|
||||
msgid "Only filament color information has been synchronized from printer."
|
||||
msgstr ""
|
||||
"Nur die Farbinformationen des Filaments wurden vom Drucker synchronisiert."
|
||||
|
||||
msgid ""
|
||||
"Filament type and color information have been synchronized, but slot "
|
||||
@@ -7881,7 +7928,7 @@ msgid ""
|
||||
"connected printer.\n"
|
||||
"After syncing, software can optimize printing time and filament usage when "
|
||||
"slicing.\n"
|
||||
"Would you like to sync now ?"
|
||||
"Would you like to sync now?"
|
||||
msgstr ""
|
||||
"Die Düsenart- und AMS-Mengeninformationen wurden nicht vom verbundenen "
|
||||
"Drucker synchronisiert.\n"
|
||||
@@ -7918,13 +7965,14 @@ msgstr "Projekt speichern"
|
||||
msgid "Importing Model"
|
||||
msgstr "Modell importieren"
|
||||
|
||||
msgid "prepare 3MF file..."
|
||||
#, fuzzy
|
||||
msgid "Preparing 3MF file..."
|
||||
msgstr "3MF-Datei vorbereiten…"
|
||||
|
||||
msgid "Download failed, unknown file format."
|
||||
msgstr "Download fehlgeschlagen, unbekanntes Dateiformat."
|
||||
|
||||
msgid "downloading project..."
|
||||
msgid "Downloading project..."
|
||||
msgstr "Projekt wird heruntergeladen..."
|
||||
|
||||
msgid "Download failed, File size exception."
|
||||
@@ -8469,6 +8517,18 @@ msgstr "Nach Typ"
|
||||
msgid "By vendor"
|
||||
msgstr "Nach Hersteller"
|
||||
|
||||
msgid "Optimize filaments area height for..."
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr "(Erfordert Neustart)"
|
||||
|
||||
msgid "filaments"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
||||
msgstr ""
|
||||
|
||||
msgid "Features"
|
||||
msgstr "Funktionen"
|
||||
|
||||
@@ -8482,9 +8542,6 @@ msgstr ""
|
||||
"Wenn diese Option aktiviert ist, können Sie eine Aufgabe gleichzeitig an "
|
||||
"mehrere Geräte senden und mehrere Geräte verwalten."
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr "(Erfordert Neustart)"
|
||||
|
||||
msgid "Pop up to select filament grouping mode"
|
||||
msgstr "Popup zum Auswählen des Filament-Gruppierungsmodus"
|
||||
|
||||
@@ -8671,20 +8728,22 @@ msgstr ""
|
||||
"anstelle des System-Schlüsselbunds. (Erfordert Neustart)"
|
||||
|
||||
msgid "Filament Sync Options"
|
||||
msgstr ""
|
||||
msgstr "Filament-Synchronisierungsoptionen"
|
||||
|
||||
msgid "Filament sync mode"
|
||||
msgstr ""
|
||||
msgstr "Filament-Synchronisierungsmodus"
|
||||
|
||||
msgid ""
|
||||
"Choose whether sync updates both filament preset and color, or only color."
|
||||
msgstr ""
|
||||
"Wählen Sie, ob die Synchronisierung sowohl die Filamentvoreinstellung als "
|
||||
"auch die Farbe oder nur die Farbe aktualisiert."
|
||||
|
||||
msgid "Filament & Color"
|
||||
msgstr ""
|
||||
msgstr "Filament und Farbe"
|
||||
|
||||
msgid "Color only"
|
||||
msgstr ""
|
||||
msgstr "Nur Farbe"
|
||||
|
||||
msgid "Network plugin"
|
||||
msgstr "Netzwerk-Plugin"
|
||||
@@ -8884,10 +8943,10 @@ msgstr "PRE host: api-pre.bambu-lab.com/v1"
|
||||
msgid "Product host"
|
||||
msgstr "Produkt Moderator"
|
||||
|
||||
msgid "debug save button"
|
||||
msgid "Debug save button"
|
||||
msgstr "Debug Speicher-Taste"
|
||||
|
||||
msgid "save debug settings"
|
||||
msgid "Save debug settings"
|
||||
msgstr "Debug-Einstellungen speichern"
|
||||
|
||||
msgid "DEBUG settings have been saved successfully!"
|
||||
@@ -9196,7 +9255,7 @@ msgstr ""
|
||||
"*Automatikmodus: Überprüfen Sie die Kalibrierung vor dem Drucken. "
|
||||
"Überspringen, wenn nicht erforderlich."
|
||||
|
||||
msgid "send completed"
|
||||
msgid "Send complete"
|
||||
msgstr "Senden abgeschlossen"
|
||||
|
||||
msgid "Error code"
|
||||
@@ -9376,7 +9435,7 @@ msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"[ %s ] requires printing in a high-temperature environment.Please close the "
|
||||
"[ %s ] requires printing in a high-temperature environment. Please close the "
|
||||
"door."
|
||||
msgstr ""
|
||||
|
||||
@@ -9857,7 +9916,7 @@ msgid ""
|
||||
"ensure proper printing and achieve their intended effects (e.g., Gyroid, "
|
||||
"Cubic). Rotating the current sparse infill pattern may lead to insufficient "
|
||||
"support. Please proceed with caution and thoroughly check for any potential "
|
||||
"printing issues.Are you sure you want to enable this option?"
|
||||
"printing issues. Are you sure you want to enable this option?"
|
||||
msgstr ""
|
||||
"Infill-Muster sind in der Regel so konzipiert, dass sie eine automatische "
|
||||
"Drehung ermöglichen, um einen ordnungsgemäßen Druck zu gewährleisten und die "
|
||||
@@ -10016,9 +10075,6 @@ msgstr "Wände und Oberflächen"
|
||||
msgid "Bridging"
|
||||
msgstr "Brücken"
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr "Überhänge"
|
||||
|
||||
msgid "Walls"
|
||||
msgstr "Wände"
|
||||
|
||||
@@ -10958,7 +11014,7 @@ msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
|
||||
msgid "Successfully synchronized filament color from printer."
|
||||
msgstr ""
|
||||
msgstr "Farbe des Filaments erfolgreich vom Drucker synchronisiert."
|
||||
|
||||
msgid "Successfully synchronized color and type of filament from printer."
|
||||
msgstr "Farbe und Typ des Filaments erfolgreich vom Drucker synchronisiert."
|
||||
@@ -11193,7 +11249,7 @@ msgstr "Auswahl 10 mm in positiver X-Richtung verschieben"
|
||||
msgid "Movement step set to 1 mm"
|
||||
msgstr "Bewegungsschritt auf 1 mm eingestellt"
|
||||
|
||||
msgid "keyboard 1-9: set filament for object/part"
|
||||
msgid "Keyboard 1-9: set filament for object/part"
|
||||
msgstr "Tastatur 1-9: Filament für Objekt/Teil einstellen"
|
||||
|
||||
msgid "Camera view - Default"
|
||||
@@ -12014,6 +12070,16 @@ msgstr ""
|
||||
"Der Reinigungsturm erfordert, dass die Stützstrukturen die gleiche "
|
||||
"Schichthöhe wie das Objekt haben."
|
||||
|
||||
msgid ""
|
||||
"For Organic supports, two walls are supported only with the Hollow/Default "
|
||||
"base pattern."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The Lightning base pattern is not supported by this support type; "
|
||||
"Rectilinear will be used instead."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Organic support tree tip diameter must not be smaller than support material "
|
||||
"extrusion width."
|
||||
@@ -14490,6 +14556,49 @@ msgstr ""
|
||||
"Objekt-Extrusionen zu erzeugen. So wird sichergestellt, dass das Drucken "
|
||||
"nicht gestört wird und die Qualität des Drucks erhalten bleibt."
|
||||
|
||||
msgid "Interface layer pre-extrusion distance"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion distance for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer pre-extrusion length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion length for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Tower ironing area"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Ironing area for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "mm²"
|
||||
msgstr "mm²"
|
||||
|
||||
msgid "Interface layer purge length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Purge length for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer print temperature"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Print temperature for prime tower interface layer (where different materials "
|
||||
"meet). If set to -1, use max recommended nozzle temperature."
|
||||
msgstr ""
|
||||
|
||||
msgid "Speed of the last cooling move"
|
||||
msgstr "Geschwindigkeit der letzten Kühlbewegung"
|
||||
|
||||
@@ -15111,8 +15220,8 @@ msgstr ""
|
||||
"zufällig zittert, so dass die Oberfläche ein raues, strukturiertes Aussehen "
|
||||
"erhält. Diese Einstellung steuert die Fuzzy-Position."
|
||||
|
||||
msgid "None (allow paint)"
|
||||
msgstr "keine (Erlaubt das Bemalen)"
|
||||
msgid "Painted only"
|
||||
msgstr "Nur lackiert"
|
||||
|
||||
msgid "Contour"
|
||||
msgstr "Kontur"
|
||||
@@ -16439,9 +16548,6 @@ msgstr ""
|
||||
"konischem Material gefüllt wird. Ein Wert von 0 füllt alle Löcher in der "
|
||||
"Basis des Modells."
|
||||
|
||||
msgid "mm²"
|
||||
msgstr "mm²"
|
||||
|
||||
msgid "Detect overhang wall"
|
||||
msgstr "Erkennen von Wandüberhängen"
|
||||
|
||||
@@ -17597,8 +17703,17 @@ msgstr "Geschwindigkeit der Stützstruktur-Schnittstellen."
|
||||
msgid "Base pattern"
|
||||
msgstr "Basismuster"
|
||||
|
||||
msgid "Line pattern of support."
|
||||
msgstr "Linienmuster der Stützstrukturen"
|
||||
msgid ""
|
||||
"Line pattern of support.\n"
|
||||
"\n"
|
||||
"The Default option for Tree supports is Hollow, which means no base pattern. "
|
||||
"For other support types, the Default option is the Rectilinear pattern.\n"
|
||||
"\n"
|
||||
"NOTE: For Organic supports, the two walls are supported only with the Hollow/"
|
||||
"Default base pattern. The Lightning base pattern is supported only by Tree "
|
||||
"Slim/Strong/Hybrid supports. For the other support types, the Rectilinear "
|
||||
"will be used instead of Lightning."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rectilinear grid"
|
||||
msgstr "Rechtwinkliges Gitter"
|
||||
@@ -18241,6 +18356,23 @@ msgid "The wall of prime tower will skip the start points of wipe path."
|
||||
msgstr ""
|
||||
"Die Wand des Reinigungsturms überspringt die Startpunkte des Wischpfads."
|
||||
|
||||
msgid "Enable tower interface features"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable optimized prime tower interface behavior when different materials "
|
||||
"meet."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cool down from interface boost during prime tower"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"When interface-layer temperature boost is active, set the nozzle back to "
|
||||
"print temperature at the start of the prime tower so it cools down during "
|
||||
"the tower."
|
||||
msgstr ""
|
||||
|
||||
msgid "Infill gap"
|
||||
msgstr "Infill-Lücke"
|
||||
|
||||
@@ -19913,7 +20045,7 @@ msgstr "Düseninfo"
|
||||
msgid "Plate Type"
|
||||
msgstr "Druckbetttyp"
|
||||
|
||||
msgid "filament position"
|
||||
msgid "Filament position"
|
||||
msgstr "Filamentposition"
|
||||
|
||||
msgid "Filament For Calibration"
|
||||
@@ -20165,6 +20297,10 @@ msgid ""
|
||||
"End temp: >= 155\n"
|
||||
"Start temp >= End temp + 5"
|
||||
msgstr ""
|
||||
"Bitte geben Sie gültige Werte ein:\n"
|
||||
"Start temp: <= 500\n"
|
||||
"End temp: >= 155\n"
|
||||
"Start temp >= End temp + 5"
|
||||
|
||||
msgid "Max volumetric speed test"
|
||||
msgstr "Test zur maximalen Volumengeschwindigkeit"
|
||||
@@ -20918,7 +21054,8 @@ msgstr ""
|
||||
"Bitte schließen Sie es und versuchen Sie es erneut."
|
||||
|
||||
msgid ""
|
||||
"Printer and all the filament&&process presets that belongs to the printer.\n"
|
||||
"Printer and all the filament and process presets that belongs to the "
|
||||
"printer.\n"
|
||||
"Can be shared with others."
|
||||
msgstr ""
|
||||
"Drucker und alle Filament- und Prozessvoreinstellungen, die zum Drucker "
|
||||
@@ -21904,7 +22041,7 @@ msgstr "Keine historischen Aufgaben!"
|
||||
msgid "Upgrading"
|
||||
msgstr "Aktualisieren"
|
||||
|
||||
msgid "syncing"
|
||||
msgid "Syncing"
|
||||
msgstr "synchronisieren"
|
||||
|
||||
msgid "Printing Finish"
|
||||
@@ -22544,6 +22681,25 @@ msgstr ""
|
||||
"wie z.B. ABS, durch eine entsprechende Erhöhung der Heizbetttemperatur die "
|
||||
"Wahrscheinlichkeit von Verwerfungen verringert werden kann?"
|
||||
|
||||
#~ msgid "Line pattern of support."
|
||||
#~ msgstr "Linienmuster der Stützstrukturen"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Failed to install the plug-in. Please check whether it is blocked or "
|
||||
#~ "deleted by anti-virus software."
|
||||
#~ msgstr ""
|
||||
#~ "Die Installation des Plugins ist fehlgeschlagen. Bitte prüfen Sie, ob es "
|
||||
#~ "von einer Antiviren-Software blockiert oder gelöscht wurde."
|
||||
|
||||
#~ msgid "°C"
|
||||
#~ msgstr "°C"
|
||||
|
||||
#~ msgid "travel"
|
||||
#~ msgstr "Bewegung"
|
||||
|
||||
#~ msgid "part selection"
|
||||
#~ msgstr "Teileauswahl"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Bambu Lab has implemented a signature verification check in their network "
|
||||
#~ "plugin that restricts third-party software from communicating with your "
|
||||
@@ -22889,11 +23045,11 @@ msgstr ""
|
||||
#~ "die verbleibende Kapazität automatisch aktualisiert."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The recommended minimum temperature is less than 190°C or the recommended "
|
||||
#~ "maximum temperature is greater than 300°C.\n"
|
||||
#~ "The recommended minimum temperature is less than 190℃ or the recommended "
|
||||
#~ "maximum temperature is greater than 300℃.\n"
|
||||
#~ msgstr ""
|
||||
#~ "Die empfohlene Mindesttemperatur liegt unter 190°C oder die empfohlene "
|
||||
#~ "Maximaltemperatur liegt über 300°C.\n"
|
||||
#~ "Die empfohlene Mindesttemperatur liegt unter 190℃ oder die empfohlene "
|
||||
#~ "Maximaltemperatur liegt über 300℃.\n"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Spiral mode only works when wall loops is 1, support is disabled, top "
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-02-12 08:42+0800\n"
|
||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
||||
"PO-Revision-Date: 2025-05-18 09:32-0300\n"
|
||||
"Last-Translator: Alexandre Folle de Menezes\n"
|
||||
"Language-Team: \n"
|
||||
@@ -425,8 +425,8 @@ msgstr ""
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
msgid "uniform scale"
|
||||
msgstr "Uniform scale"
|
||||
msgid "Uniform scale"
|
||||
msgstr ""
|
||||
|
||||
msgid "Planar"
|
||||
msgstr ""
|
||||
@@ -680,7 +680,7 @@ msgstr ""
|
||||
msgid "Cut by Plane"
|
||||
msgstr ""
|
||||
|
||||
msgid "non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgid "Non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgstr "Non-manifold edges be caused by cut tool: do you want to fix now?"
|
||||
|
||||
msgid "Repairing model object"
|
||||
@@ -2173,32 +2173,38 @@ msgstr ""
|
||||
msgid "Select All"
|
||||
msgstr ""
|
||||
|
||||
msgid "select all objects on current plate"
|
||||
msgstr "Select all objects on the current plate"
|
||||
msgid "Select all objects on the current plate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select All Plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select all objects on all plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete All"
|
||||
msgstr ""
|
||||
|
||||
msgid "delete all objects on current plate"
|
||||
msgstr "Delete all objects on the current plate"
|
||||
msgid "Delete all objects on the current plate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Arrange"
|
||||
msgstr ""
|
||||
|
||||
msgid "arrange current plate"
|
||||
msgstr "Arrange current plate"
|
||||
msgid "Arrange current plate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reload All"
|
||||
msgstr ""
|
||||
|
||||
msgid "reload all from disk"
|
||||
msgid "Reload all from disk"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto Rotate"
|
||||
msgstr ""
|
||||
|
||||
msgid "auto rotate current plate"
|
||||
msgstr "Auto rotate current plate"
|
||||
msgid "Auto rotate current plate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete Plate"
|
||||
msgstr ""
|
||||
@@ -2504,8 +2510,8 @@ msgstr ""
|
||||
msgid "Invalid numeric."
|
||||
msgstr ""
|
||||
|
||||
msgid "one cell can only be copied to one or multiple cells in the same column"
|
||||
msgstr "One cell can only be copied to one or more cells in the same column."
|
||||
msgid "One cell can only be copied to one or more cells in the same column."
|
||||
msgstr ""
|
||||
|
||||
msgid "Copying multiple cells is not supported."
|
||||
msgstr ""
|
||||
@@ -2757,9 +2763,9 @@ msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The fan controls the temperature during printing to improve print "
|
||||
"quality.The system automatically adjusts the fan's switch and speed "
|
||||
"according to different printing materials."
|
||||
"The fan controls the temperature during printing to improve print quality. "
|
||||
"The system automatically adjusts the fan's switch and speed according to "
|
||||
"different printing materials."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -3559,8 +3565,7 @@ msgstr ""
|
||||
msgid "Please unload all filament before switching."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"AMS type switching needs firmware update, taking about 30s. Switch now ?"
|
||||
msgid "AMS type switching needs firmware update, taking about 30s. Switch now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Arrange AMS Order"
|
||||
@@ -3585,13 +3590,12 @@ msgstr ""
|
||||
"software and retry."
|
||||
|
||||
msgid ""
|
||||
"Failed to install the plug-in. Please check whether it is blocked or deleted "
|
||||
"by anti-virus software."
|
||||
"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 "
|
||||
"deleted by anti-virus software."
|
||||
msgstr ""
|
||||
"Failed to install the plug-in. Please 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 ""
|
||||
|
||||
msgid ""
|
||||
@@ -4075,7 +4079,7 @@ msgstr ""
|
||||
msgid "Nozzle offset calibration"
|
||||
msgstr ""
|
||||
|
||||
msgid "high temperature auto bed leveling"
|
||||
msgid "High temperature auto bed leveling"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto Check: Quick Release Lever"
|
||||
@@ -4350,6 +4354,12 @@ msgstr ""
|
||||
msgid "parameter name"
|
||||
msgstr ""
|
||||
|
||||
msgid "Range"
|
||||
msgstr ""
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s can't be a percentage"
|
||||
msgstr "%s can’t be a percentage"
|
||||
@@ -4365,9 +4375,6 @@ msgstr ""
|
||||
msgid "Value %s is out of range. The valid range is from %d to %d."
|
||||
msgstr ""
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Is it %s%% or %s %s?\n"
|
||||
@@ -4435,6 +4442,9 @@ msgstr ""
|
||||
msgid "Layer Time (log)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pressure Advance"
|
||||
msgstr ""
|
||||
|
||||
msgid "Noop"
|
||||
msgstr ""
|
||||
|
||||
@@ -4522,9 +4532,6 @@ msgstr ""
|
||||
msgid "Fan speed"
|
||||
msgstr ""
|
||||
|
||||
msgid "°C"
|
||||
msgstr ""
|
||||
|
||||
msgid "Time"
|
||||
msgstr ""
|
||||
|
||||
@@ -4561,6 +4568,9 @@ msgstr ""
|
||||
msgid "Actual Speed: "
|
||||
msgstr ""
|
||||
|
||||
msgid "PA: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Statistics of All Plates"
|
||||
msgstr ""
|
||||
|
||||
@@ -4678,7 +4688,7 @@ msgstr ""
|
||||
msgid "Fan Speed (%)"
|
||||
msgstr "Fan speed (%)"
|
||||
|
||||
msgid "Temperature (°C)"
|
||||
msgid "Temperature (℃)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Volumetric flow rate (mm³/s)"
|
||||
@@ -4696,9 +4706,6 @@ msgstr "Filament changes"
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
msgid "travel"
|
||||
msgstr "Travel"
|
||||
|
||||
msgid "Extruder"
|
||||
msgstr ""
|
||||
|
||||
@@ -4793,16 +4800,13 @@ msgstr ""
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "part selection"
|
||||
msgid "Object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys can quickly change the color of objects"
|
||||
msgid "Number keys can quickly change the color of objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -4952,6 +4956,30 @@ msgstr ""
|
||||
msgid "Fit camera to scene or selected object."
|
||||
msgstr ""
|
||||
|
||||
msgid "3D Navigator"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom button"
|
||||
msgstr ""
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr ""
|
||||
|
||||
msgid "Outline"
|
||||
msgstr ""
|
||||
|
||||
msgid "Perspective"
|
||||
msgstr ""
|
||||
|
||||
msgid "Axes"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Labels"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint Toolbar"
|
||||
msgstr ""
|
||||
|
||||
@@ -5032,7 +5060,7 @@ msgid "Only the object being edited is visible."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgid "Filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -5448,6 +5476,12 @@ msgstr ""
|
||||
msgid "Show 3D navigator in Prepare and Preview scene."
|
||||
msgstr ""
|
||||
|
||||
msgid "Show Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Show Gridlines on plate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset Window Layout"
|
||||
msgstr ""
|
||||
|
||||
@@ -6005,10 +6039,10 @@ msgid "Name is invalid;"
|
||||
msgstr ""
|
||||
|
||||
msgid "illegal characters:"
|
||||
msgstr "Illegal characters:"
|
||||
msgstr ""
|
||||
|
||||
msgid "illegal suffix:"
|
||||
msgstr "Illegal suffix:"
|
||||
msgstr ""
|
||||
|
||||
msgid "The name is not allowed to be empty."
|
||||
msgstr "The name field is not allowed to be empty."
|
||||
@@ -6161,7 +6195,7 @@ msgid "Layer: %d/%d"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Please heat the nozzle to above 170°C before loading or unloading filament."
|
||||
"Please heat the nozzle to above 170℃ before loading or unloading filament."
|
||||
msgstr ""
|
||||
|
||||
msgid "Chamber temperature cannot be changed in cooling mode while printing."
|
||||
@@ -6268,8 +6302,8 @@ msgstr ""
|
||||
msgid "Upload failed\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "obtaining instance_id failed\n"
|
||||
msgstr "Obtaining instance_id failed\n"
|
||||
msgid "Obtaining instance_id failed\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Your comment result cannot be uploaded due to the following reasons:\n"
|
||||
@@ -6527,9 +6561,6 @@ msgstr ""
|
||||
msgid "Layers"
|
||||
msgstr ""
|
||||
|
||||
msgid "Range"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The application cannot run normally because OpenGL version is lower than "
|
||||
"3.2.\n"
|
||||
@@ -7230,7 +7261,7 @@ msgid ""
|
||||
"connected printer.\n"
|
||||
"After syncing, software can optimize printing time and filament usage when "
|
||||
"slicing.\n"
|
||||
"Would you like to sync now ?"
|
||||
"Would you like to sync now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync now"
|
||||
@@ -7260,13 +7291,13 @@ msgstr ""
|
||||
msgid "Importing Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "prepare 3MF file..."
|
||||
msgstr "preparing 3MF file..."
|
||||
msgid "Preparing 3MF file..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Download failed, unknown file format."
|
||||
msgstr "Download failed; unknown file format."
|
||||
|
||||
msgid "downloading project..."
|
||||
msgid "Downloading project..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Download failed, File size exception."
|
||||
@@ -7755,6 +7786,18 @@ msgstr ""
|
||||
msgid "By vendor"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimize filaments area height for..."
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid "filaments"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
||||
msgstr ""
|
||||
|
||||
msgid "Features"
|
||||
msgstr ""
|
||||
|
||||
@@ -7766,9 +7809,6 @@ msgid ""
|
||||
"same time and manage multiple devices."
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pop up to select filament grouping mode"
|
||||
msgstr ""
|
||||
|
||||
@@ -8122,10 +8162,10 @@ msgstr ""
|
||||
msgid "Product host"
|
||||
msgstr ""
|
||||
|
||||
msgid "debug save button"
|
||||
msgstr "Debug save button"
|
||||
msgid "Debug save button"
|
||||
msgstr ""
|
||||
|
||||
msgid "save debug settings"
|
||||
msgid "Save debug settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "DEBUG settings have been saved successfully!"
|
||||
@@ -8414,8 +8454,8 @@ msgid ""
|
||||
"*Automatic mode: Check for calibration before printing. Skip if unnecessary."
|
||||
msgstr ""
|
||||
|
||||
msgid "send completed"
|
||||
msgstr "Send complete"
|
||||
msgid "Send complete"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error code"
|
||||
msgstr ""
|
||||
@@ -8550,7 +8590,7 @@ msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"[ %s ] requires printing in a high-temperature environment.Please close the "
|
||||
"[ %s ] requires printing in a high-temperature environment. Please close the "
|
||||
"door."
|
||||
msgstr ""
|
||||
|
||||
@@ -8938,7 +8978,7 @@ msgid ""
|
||||
"ensure proper printing and achieve their intended effects (e.g., Gyroid, "
|
||||
"Cubic). Rotating the current sparse infill pattern may lead to insufficient "
|
||||
"support. Please proceed with caution and thoroughly check for any potential "
|
||||
"printing issues.Are you sure you want to enable this option?"
|
||||
"printing issues. Are you sure you want to enable this option?"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -9065,9 +9105,6 @@ msgstr ""
|
||||
msgid "Bridging"
|
||||
msgstr ""
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr ""
|
||||
|
||||
msgid "Walls"
|
||||
msgstr ""
|
||||
|
||||
@@ -10110,7 +10147,7 @@ msgstr "Move selection 10mm in positive X direction"
|
||||
msgid "Movement step set to 1 mm"
|
||||
msgstr "Movement step set to 1mm"
|
||||
|
||||
msgid "keyboard 1-9: set filament for object/part"
|
||||
msgid "Keyboard 1-9: set filament for object/part"
|
||||
msgstr "Keyboard 1-9: set filament for object/part"
|
||||
|
||||
msgid "Camera view - Default"
|
||||
@@ -10834,6 +10871,16 @@ msgid ""
|
||||
msgstr ""
|
||||
"A prime tower requires that support has the same layer height as the object."
|
||||
|
||||
msgid ""
|
||||
"For Organic supports, two walls are supported only with the Hollow/Default "
|
||||
"base pattern."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The Lightning base pattern is not supported by this support type; "
|
||||
"Rectilinear will be used instead."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Organic support tree tip diameter must not be smaller than support material "
|
||||
"extrusion width."
|
||||
@@ -12676,6 +12723,49 @@ msgid ""
|
||||
"tower to produce successive infill or sacrificial object extrusions reliably."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer pre-extrusion distance"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion distance for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer pre-extrusion length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion length for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Tower ironing area"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Ironing area for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "mm²"
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer purge length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Purge length for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer print temperature"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Print temperature for prime tower interface layer (where different materials "
|
||||
"meet). If set to -1, use max recommended nozzle temperature."
|
||||
msgstr ""
|
||||
|
||||
msgid "Speed of the last cooling move"
|
||||
msgstr ""
|
||||
|
||||
@@ -13182,7 +13272,7 @@ msgstr ""
|
||||
"the surface has a rough textured look. This setting controls the fuzzy "
|
||||
"position."
|
||||
|
||||
msgid "None (allow paint)"
|
||||
msgid "Painted only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Contour"
|
||||
@@ -14244,9 +14334,6 @@ msgid ""
|
||||
"conical material. A value of 0 will fill all the holes in the model base."
|
||||
msgstr ""
|
||||
|
||||
msgid "mm²"
|
||||
msgstr ""
|
||||
|
||||
msgid "Detect overhang wall"
|
||||
msgstr "Detect overhang walls"
|
||||
|
||||
@@ -15180,8 +15267,17 @@ msgstr "This is the speed for support interfaces."
|
||||
msgid "Base pattern"
|
||||
msgstr ""
|
||||
|
||||
msgid "Line pattern of support."
|
||||
msgstr "This is the line pattern for support."
|
||||
msgid ""
|
||||
"Line pattern of support.\n"
|
||||
"\n"
|
||||
"The Default option for Tree supports is Hollow, which means no base pattern. "
|
||||
"For other support types, the Default option is the Rectilinear pattern.\n"
|
||||
"\n"
|
||||
"NOTE: For Organic supports, the two walls are supported only with the Hollow/"
|
||||
"Default base pattern. The Lightning base pattern is supported only by Tree "
|
||||
"Slim/Strong/Hybrid supports. For the other support types, the Rectilinear "
|
||||
"will be used instead of Lightning."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rectilinear grid"
|
||||
msgstr ""
|
||||
@@ -15676,6 +15772,23 @@ msgstr ""
|
||||
msgid "The wall of prime tower will skip the start points of wipe path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable tower interface features"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable optimized prime tower interface behavior when different materials "
|
||||
"meet."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cool down from interface boost during prime tower"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"When interface-layer temperature boost is active, set the nozzle back to "
|
||||
"print temperature at the start of the prime tower so it cools down during "
|
||||
"the tower."
|
||||
msgstr ""
|
||||
|
||||
msgid "Infill gap"
|
||||
msgstr ""
|
||||
|
||||
@@ -17086,7 +17199,7 @@ msgstr ""
|
||||
msgid "Plate Type"
|
||||
msgstr ""
|
||||
|
||||
msgid "filament position"
|
||||
msgid "Filament position"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filament For Calibration"
|
||||
@@ -17988,7 +18101,8 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Printer and all the filament&&process presets that belongs to the printer.\n"
|
||||
"Printer and all the filament and process presets that belongs to the "
|
||||
"printer.\n"
|
||||
"Can be shared with others."
|
||||
msgstr ""
|
||||
|
||||
@@ -18750,7 +18864,7 @@ msgstr ""
|
||||
msgid "Upgrading"
|
||||
msgstr ""
|
||||
|
||||
msgid "syncing"
|
||||
msgid "Syncing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printing Finish"
|
||||
@@ -19271,6 +19385,16 @@ msgstr ""
|
||||
"ABS, appropriately increasing the heatbed temperature can reduce the "
|
||||
"probability of warping?"
|
||||
|
||||
#~ msgid "Line pattern of support."
|
||||
#~ msgstr "This is the line pattern for support."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Failed to install the plug-in. Please check whether it is blocked or "
|
||||
#~ "deleted by anti-virus software."
|
||||
#~ msgstr ""
|
||||
#~ "Failed to install the plug-in. Please check whether it is blocked or has "
|
||||
#~ "been deleted by anti-virus software."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The application cannot run normally because OpenGL version is lower than "
|
||||
#~ "2.0.\n"
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-02-12 08:42+0800\n"
|
||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Guislain Cyril, Thomas Lété\n"
|
||||
@@ -436,7 +436,7 @@ msgstr ""
|
||||
msgid "Size"
|
||||
msgstr "Taille"
|
||||
|
||||
msgid "uniform scale"
|
||||
msgid "Uniform scale"
|
||||
msgstr "échelle uniforme"
|
||||
|
||||
msgid "Planar"
|
||||
@@ -696,7 +696,7 @@ msgstr "Connecteur"
|
||||
msgid "Cut by Plane"
|
||||
msgstr "Coupe par plan"
|
||||
|
||||
msgid "non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgid "Non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgstr ""
|
||||
"les bords non pliables sont dus à l’outil de coupe, voulez-vous les corriger "
|
||||
"maintenant ?"
|
||||
@@ -2283,31 +2283,37 @@ msgstr ""
|
||||
msgid "Select All"
|
||||
msgstr "Tout sélectionner"
|
||||
|
||||
msgid "select all objects on current plate"
|
||||
msgid "Select all objects on the current plate"
|
||||
msgstr "sélectionner tous les objets sur la plaque actuelle"
|
||||
|
||||
msgid "Select All Plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select all objects on all plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete All"
|
||||
msgstr "Tout Supprimer"
|
||||
|
||||
msgid "delete all objects on current plate"
|
||||
msgid "Delete all objects on the current plate"
|
||||
msgstr "supprimer tous les objets sur la plaque actuelle"
|
||||
|
||||
msgid "Arrange"
|
||||
msgstr "Organiser"
|
||||
|
||||
msgid "arrange current plate"
|
||||
msgid "Arrange current plate"
|
||||
msgstr "organiser la plaque actuelle"
|
||||
|
||||
msgid "Reload All"
|
||||
msgstr "Tout recharger"
|
||||
|
||||
msgid "reload all from disk"
|
||||
msgid "Reload all from disk"
|
||||
msgstr "tout recharger à partir du disque"
|
||||
|
||||
msgid "Auto Rotate"
|
||||
msgstr "Rotation automatique"
|
||||
|
||||
msgid "auto rotate current plate"
|
||||
msgid "Auto rotate current plate"
|
||||
msgstr "rotation automatique de la plaque actuelle"
|
||||
|
||||
msgid "Delete Plate"
|
||||
@@ -2629,7 +2635,8 @@ msgstr "Ajouter une plage de hauteur"
|
||||
msgid "Invalid numeric."
|
||||
msgstr "Chiffre non valide."
|
||||
|
||||
msgid "one cell can only be copied to one or multiple cells in the same column"
|
||||
#, fuzzy
|
||||
msgid "One cell can only be copied to one or more cells in the same column."
|
||||
msgstr ""
|
||||
"une cellule ne peut être copiée que dans une ou plusieurs cellules de la "
|
||||
"même colonne"
|
||||
@@ -2884,9 +2891,9 @@ msgid "Top"
|
||||
msgstr "Haut"
|
||||
|
||||
msgid ""
|
||||
"The fan controls the temperature during printing to improve print "
|
||||
"quality.The system automatically adjusts the fan's switch and speed "
|
||||
"according to different printing materials."
|
||||
"The fan controls the temperature during printing to improve print quality. "
|
||||
"The system automatically adjusts the fan's switch and speed according to "
|
||||
"different printing materials."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -3750,8 +3757,7 @@ msgstr ""
|
||||
msgid "Please unload all filament before switching."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"AMS type switching needs firmware update, taking about 30s. Switch now ?"
|
||||
msgid "AMS type switching needs firmware update, taking about 30s. Switch now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Arrange AMS Order"
|
||||
@@ -3776,13 +3782,12 @@ msgstr ""
|
||||
"votre pare-feu et votre logiciel VPN puis réessayer."
|
||||
|
||||
msgid ""
|
||||
"Failed to install the plug-in. Please check whether it is blocked or deleted "
|
||||
"by anti-virus software."
|
||||
"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 "
|
||||
"deleted by anti-virus software."
|
||||
msgstr ""
|
||||
"É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."
|
||||
|
||||
msgid "click here to see more info"
|
||||
msgid "Click here to see more info"
|
||||
msgstr "cliquez ici pour voir plus d'informations"
|
||||
|
||||
msgid ""
|
||||
@@ -4320,7 +4325,7 @@ msgstr ""
|
||||
msgid "Nozzle offset calibration"
|
||||
msgstr ""
|
||||
|
||||
msgid "high temperature auto bed leveling"
|
||||
msgid "High temperature auto bed leveling"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto Check: Quick Release Lever"
|
||||
@@ -4602,6 +4607,12 @@ msgstr "Paramètres de l'imprimante"
|
||||
msgid "parameter name"
|
||||
msgstr "nom du paramètre"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "Zone"
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "La valeur est hors plage."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s can't be a percentage"
|
||||
msgstr "%s ne peut pas être un pourcentage"
|
||||
@@ -4618,9 +4629,6 @@ msgid "Value %s is out of range. The valid range is from %d to %d."
|
||||
msgstr ""
|
||||
"La valeur %s est hors plage. La plage valide est comprise entre %d et %d."
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "La valeur est hors plage."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Is it %s%% or %s %s?\n"
|
||||
@@ -4670,7 +4678,7 @@ msgid "Line Width"
|
||||
msgstr "Largeur de ligne"
|
||||
|
||||
msgid "Actual Speed"
|
||||
msgstr ""
|
||||
msgstr "Vitesse réelle"
|
||||
|
||||
msgid "Fan Speed"
|
||||
msgstr "Vitesse du ventilateur"
|
||||
@@ -4679,7 +4687,7 @@ msgid "Flow"
|
||||
msgstr "Débit"
|
||||
|
||||
msgid "Actual Flow"
|
||||
msgstr ""
|
||||
msgstr "Débit réel"
|
||||
|
||||
msgid "Tool"
|
||||
msgstr "Outil"
|
||||
@@ -4690,6 +4698,9 @@ msgstr "Temps de couche"
|
||||
msgid "Layer Time (log)"
|
||||
msgstr "Temps de couche (journal)"
|
||||
|
||||
msgid "Pressure Advance"
|
||||
msgstr ""
|
||||
|
||||
msgid "Noop"
|
||||
msgstr ""
|
||||
|
||||
@@ -4777,9 +4788,6 @@ msgstr ""
|
||||
msgid "Fan speed"
|
||||
msgstr "Vitesse du ventilateur"
|
||||
|
||||
msgid "°C"
|
||||
msgstr "°C"
|
||||
|
||||
msgid "Time"
|
||||
msgstr "Durée"
|
||||
|
||||
@@ -4814,6 +4822,9 @@ msgid "Color: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Actual Speed: "
|
||||
msgstr "Vitesse réelle: "
|
||||
|
||||
msgid "PA: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Statistics of All Plates"
|
||||
@@ -4928,13 +4939,13 @@ msgid "Speed (mm/s)"
|
||||
msgstr "Vitesse (mm/s)"
|
||||
|
||||
msgid "Actual Speed (mm/s)"
|
||||
msgstr ""
|
||||
msgstr "Vitesse réelle (mm/s)"
|
||||
|
||||
msgid "Fan Speed (%)"
|
||||
msgstr "Vitesse du ventilateur (%)"
|
||||
|
||||
msgid "Temperature (°C)"
|
||||
msgstr "Température (°C)"
|
||||
msgid "Temperature (℃)"
|
||||
msgstr "Température (℃)"
|
||||
|
||||
msgid "Volumetric flow rate (mm³/s)"
|
||||
msgstr "Débit volumétrique (mm³/s)"
|
||||
@@ -4951,9 +4962,6 @@ msgstr "Changements de filaments"
|
||||
msgid "Options"
|
||||
msgstr "Choix"
|
||||
|
||||
msgid "travel"
|
||||
msgstr "déplacement"
|
||||
|
||||
msgid "Extruder"
|
||||
msgstr "Extrudeur"
|
||||
|
||||
@@ -5048,16 +5056,13 @@ msgstr "Augmenter/diminuer la zone d'édition"
|
||||
msgid "Sequence"
|
||||
msgstr "Séquence"
|
||||
|
||||
msgid "object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "part selection"
|
||||
msgid "Object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys can quickly change the color of objects"
|
||||
msgid "Number keys can quickly change the color of objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -5207,6 +5212,30 @@ msgstr ""
|
||||
msgid "Fit camera to scene or selected object."
|
||||
msgstr ""
|
||||
|
||||
msgid "3D Navigator"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom button"
|
||||
msgstr ""
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr "Surplombs"
|
||||
|
||||
msgid "Outline"
|
||||
msgstr ""
|
||||
|
||||
msgid "Perspective"
|
||||
msgstr ""
|
||||
|
||||
msgid "Axes"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Labels"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "Barre d'outils de peinture"
|
||||
|
||||
@@ -5289,7 +5318,7 @@ msgid "Only the object being edited is visible."
|
||||
msgstr "Seul l'objet en cours d'édition est visible."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgid "Filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -5713,6 +5742,12 @@ msgstr ""
|
||||
"Afficher le navigateur 3D dans la scène de préparation et de "
|
||||
"prévisualisation."
|
||||
|
||||
msgid "Show Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Show Gridlines on plate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset Window Layout"
|
||||
msgstr "Réinitialiser la présentation de la fenêtre"
|
||||
|
||||
@@ -5753,7 +5788,7 @@ msgid "Max flowrate"
|
||||
msgstr "Débit maximal"
|
||||
|
||||
msgid "Pressure advance"
|
||||
msgstr ""
|
||||
msgstr "Avance de pression"
|
||||
|
||||
msgid "Pass 1"
|
||||
msgstr "Passe 1"
|
||||
@@ -6472,10 +6507,10 @@ msgid "Layer: %d/%d"
|
||||
msgstr "Couche : %d/%d"
|
||||
|
||||
msgid ""
|
||||
"Please heat the nozzle to above 170°C before loading or unloading filament."
|
||||
"Please heat the nozzle to above 170℃ before loading or unloading filament."
|
||||
msgstr ""
|
||||
"Veuillez chauffer la buse à plus de 170°C avant de charger ou de décharger "
|
||||
"le filament."
|
||||
"Veuillez chauffer la buse à plus de 170℃ avant de charger ou de décharger le "
|
||||
"filament."
|
||||
|
||||
msgid "Chamber temperature cannot be changed in cooling mode while printing."
|
||||
msgstr ""
|
||||
@@ -6586,7 +6621,7 @@ msgstr ""
|
||||
msgid "Upload failed\n"
|
||||
msgstr "Échec de l’envoi\n"
|
||||
|
||||
msgid "obtaining instance_id failed\n"
|
||||
msgid "Obtaining instance_id failed\n"
|
||||
msgstr "échec de l’obtention de l’instance_id\n"
|
||||
|
||||
msgid ""
|
||||
@@ -6861,9 +6896,6 @@ msgstr "Connecteurs de découpe"
|
||||
msgid "Layers"
|
||||
msgstr "Couches"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "Zone"
|
||||
|
||||
msgid ""
|
||||
"The application cannot run normally because OpenGL version is lower than "
|
||||
"3.2.\n"
|
||||
@@ -7591,7 +7623,7 @@ msgid ""
|
||||
"connected printer.\n"
|
||||
"After syncing, software can optimize printing time and filament usage when "
|
||||
"slicing.\n"
|
||||
"Would you like to sync now ?"
|
||||
"Would you like to sync now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync now"
|
||||
@@ -7623,13 +7655,14 @@ msgstr "Sauvegarder le projet"
|
||||
msgid "Importing Model"
|
||||
msgstr "Importation du modèle"
|
||||
|
||||
msgid "prepare 3MF file..."
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
msgid "Preparing 3MF file..."
|
||||
msgstr "préparation du fichier 3mf..."
|
||||
|
||||
msgid "Download failed, unknown file format."
|
||||
msgstr "Échec du téléchargement, format de fichier inconnu."
|
||||
|
||||
msgid "downloading project..."
|
||||
msgid "Downloading project..."
|
||||
msgstr "téléchargement du projet..."
|
||||
|
||||
msgid "Download failed, File size exception."
|
||||
@@ -8161,6 +8194,18 @@ msgstr ""
|
||||
msgid "By vendor"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimize filaments area height for..."
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid "filaments"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
||||
msgstr ""
|
||||
|
||||
msgid "Features"
|
||||
msgstr ""
|
||||
|
||||
@@ -8174,9 +8219,6 @@ msgstr ""
|
||||
"Si cette option est activée, vous pouvez envoyer une tâche à plusieurs "
|
||||
"appareils en même temps et gérer plusieurs appareils."
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pop up to select filament grouping mode"
|
||||
msgstr ""
|
||||
|
||||
@@ -8543,10 +8585,10 @@ msgstr "Hébergeur PRE : api-pre.bambu-lab.com/v1"
|
||||
msgid "Product host"
|
||||
msgstr "Hôte du produit"
|
||||
|
||||
msgid "debug save button"
|
||||
msgid "Debug save button"
|
||||
msgstr "bouton d'enregistrement de débogage"
|
||||
|
||||
msgid "save debug settings"
|
||||
msgid "Save debug settings"
|
||||
msgstr "enregistrer les paramètres de débogage"
|
||||
|
||||
msgid "DEBUG settings have been saved successfully!"
|
||||
@@ -8843,7 +8885,7 @@ msgid ""
|
||||
"*Automatic mode: Check for calibration before printing. Skip if unnecessary."
|
||||
msgstr ""
|
||||
|
||||
msgid "send completed"
|
||||
msgid "Send complete"
|
||||
msgstr "envoi terminé"
|
||||
|
||||
msgid "Error code"
|
||||
@@ -8991,7 +9033,7 @@ msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"[ %s ] requires printing in a high-temperature environment.Please close the "
|
||||
"[ %s ] requires printing in a high-temperature environment. Please close the "
|
||||
"door."
|
||||
msgstr ""
|
||||
|
||||
@@ -9434,7 +9476,7 @@ msgid ""
|
||||
"ensure proper printing and achieve their intended effects (e.g., Gyroid, "
|
||||
"Cubic). Rotating the current sparse infill pattern may lead to insufficient "
|
||||
"support. Please proceed with caution and thoroughly check for any potential "
|
||||
"printing issues.Are you sure you want to enable this option?"
|
||||
"printing issues. Are you sure you want to enable this option?"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -9590,9 +9632,6 @@ msgstr "Parois et surfaces"
|
||||
msgid "Bridging"
|
||||
msgstr "Ponts"
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr "Surplombs"
|
||||
|
||||
msgid "Walls"
|
||||
msgstr "Parois"
|
||||
|
||||
@@ -10737,7 +10776,7 @@ msgstr "Déplacer la sélection de 10 mm dans la direction positive X"
|
||||
msgid "Movement step set to 1 mm"
|
||||
msgstr "Pas du mouvement réglé sur 1 mm"
|
||||
|
||||
msgid "keyboard 1-9: set filament for object/part"
|
||||
msgid "Keyboard 1-9: set filament for object/part"
|
||||
msgstr "clavier 1-9 : définir le filament pour l'objet/la pièce"
|
||||
|
||||
msgid "Camera view - Default"
|
||||
@@ -11533,6 +11572,16 @@ msgstr ""
|
||||
"La tour d’amorçage nécessite que le support ait la même hauteur de couche "
|
||||
"avec l'objet."
|
||||
|
||||
msgid ""
|
||||
"For Organic supports, two walls are supported only with the Hollow/Default "
|
||||
"base pattern."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The Lightning base pattern is not supported by this support type; "
|
||||
"Rectilinear will be used instead."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Organic support tree tip diameter must not be smaller than support material "
|
||||
"extrusion width."
|
||||
@@ -13938,6 +13987,49 @@ msgstr ""
|
||||
"cette quantité de matériau dans la tour d’essuyage pour purger dans les "
|
||||
"remplissages ou objets de manière fiable."
|
||||
|
||||
msgid "Interface layer pre-extrusion distance"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion distance for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer pre-extrusion length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion length for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Tower ironing area"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Ironing area for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "mm²"
|
||||
msgstr "mm²"
|
||||
|
||||
msgid "Interface layer purge length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Purge length for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer print temperature"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Print temperature for prime tower interface layer (where different materials "
|
||||
"meet). If set to -1, use max recommended nozzle temperature."
|
||||
msgstr ""
|
||||
|
||||
msgid "Speed of the last cooling move"
|
||||
msgstr "Vitesse du dernier mouvement de refroidissement"
|
||||
|
||||
@@ -14525,8 +14617,8 @@ msgstr ""
|
||||
"Gigue aléatoire lors de l'impression de la paroi, de sorte que la surface "
|
||||
"ait un aspect rugueux. Ce réglage contrôle la position irrégulière"
|
||||
|
||||
msgid "None (allow paint)"
|
||||
msgstr ""
|
||||
msgid "Painted only"
|
||||
msgstr "Peint uniquement"
|
||||
|
||||
msgid "Contour"
|
||||
msgstr "Contour"
|
||||
@@ -15800,9 +15892,6 @@ msgstr ""
|
||||
"par un matériau conique. Une valeur de 0 remplira tous les trous dans la "
|
||||
"base du modèle."
|
||||
|
||||
msgid "mm²"
|
||||
msgstr "mm²"
|
||||
|
||||
msgid "Detect overhang wall"
|
||||
msgstr "Détecter une paroi en surplomb"
|
||||
|
||||
@@ -16941,8 +17030,17 @@ msgstr "Vitesse pour l'interface des supports"
|
||||
msgid "Base pattern"
|
||||
msgstr "Motif de base"
|
||||
|
||||
msgid "Line pattern of support."
|
||||
msgstr "Motif de ligne de support"
|
||||
msgid ""
|
||||
"Line pattern of support.\n"
|
||||
"\n"
|
||||
"The Default option for Tree supports is Hollow, which means no base pattern. "
|
||||
"For other support types, the Default option is the Rectilinear pattern.\n"
|
||||
"\n"
|
||||
"NOTE: For Organic supports, the two walls are supported only with the Hollow/"
|
||||
"Default base pattern. The Lightning base pattern is supported only by Tree "
|
||||
"Slim/Strong/Hybrid supports. For the other support types, the Rectilinear "
|
||||
"will be used instead of Lightning."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rectilinear grid"
|
||||
msgstr "Grille rectiligne"
|
||||
@@ -17555,6 +17653,23 @@ msgstr ""
|
||||
msgid "The wall of prime tower will skip the start points of wipe path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable tower interface features"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable optimized prime tower interface behavior when different materials "
|
||||
"meet."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cool down from interface boost during prime tower"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"When interface-layer temperature boost is active, set the nozzle back to "
|
||||
"print temperature at the start of the prime tower so it cools down during "
|
||||
"the tower."
|
||||
msgstr ""
|
||||
|
||||
msgid "Infill gap"
|
||||
msgstr ""
|
||||
|
||||
@@ -19207,7 +19322,7 @@ msgstr ""
|
||||
msgid "Plate Type"
|
||||
msgstr "Type de plaque"
|
||||
|
||||
msgid "filament position"
|
||||
msgid "Filament position"
|
||||
msgstr "position du filament"
|
||||
|
||||
msgid "Filament For Calibration"
|
||||
@@ -20181,7 +20296,8 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Printer and all the filament&&process presets that belongs to the printer.\n"
|
||||
"Printer and all the filament and process presets that belongs to the "
|
||||
"printer.\n"
|
||||
"Can be shared with others."
|
||||
msgstr ""
|
||||
"Imprimante et tous les préréglages de filament et de traitement qui "
|
||||
@@ -21086,7 +21202,7 @@ msgstr "Aucune tâche historique !"
|
||||
msgid "Upgrading"
|
||||
msgstr "Mise à jour"
|
||||
|
||||
msgid "syncing"
|
||||
msgid "Syncing"
|
||||
msgstr "synchronisation"
|
||||
|
||||
msgid "Printing Finish"
|
||||
@@ -21715,6 +21831,22 @@ msgstr ""
|
||||
"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?"
|
||||
|
||||
#~ msgid "Line pattern of support."
|
||||
#~ msgstr "Motif de ligne de support"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Failed to install the plug-in. Please check whether it is blocked or "
|
||||
#~ "deleted by anti-virus software."
|
||||
#~ msgstr ""
|
||||
#~ "É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."
|
||||
|
||||
#~ msgid "°C"
|
||||
#~ msgstr "°C"
|
||||
|
||||
#~ msgid "travel"
|
||||
#~ msgstr "déplacement"
|
||||
|
||||
#~ msgid "Change to another .svg file"
|
||||
#~ msgstr "Changer pour un autre fichier .svg"
|
||||
|
||||
@@ -21822,9 +21954,6 @@ msgstr ""
|
||||
#~ "Le nom des composants à l'intérieur du fichier .step n'est pas au format "
|
||||
#~ "UTF8 !"
|
||||
|
||||
#~ msgid "prepare 3mf file..."
|
||||
#~ msgstr "préparation du fichier 3mf..."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
#~ msgstr ""
|
||||
@@ -22038,11 +22167,11 @@ msgstr ""
|
||||
#~ "sera automatiquement mise à jour."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The recommended minimum temperature is less than 190°C or the recommended "
|
||||
#~ "maximum temperature is greater than 300°C.\n"
|
||||
#~ "The recommended minimum temperature is less than 190℃ or the recommended "
|
||||
#~ "maximum temperature is greater than 300℃.\n"
|
||||
#~ msgstr ""
|
||||
#~ "La température minimale recommandée est inférieure à 190°C ou la "
|
||||
#~ "température maximale recommandée est supérieure à 300°C.\n"
|
||||
#~ "La température minimale recommandée est inférieure à 190℃ ou la "
|
||||
#~ "température maximale recommandée est supérieure à 300℃.\n"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Spiral mode only works when wall loops is 1, support is disabled, top "
|
||||
@@ -24447,9 +24576,9 @@ msgstr ""
|
||||
#~ "Oui - Passez automatiquement au modèle rectiligne\n"
|
||||
#~ "Non - Réinitialise automatiquement la densité à la valeur par défaut"
|
||||
|
||||
#~ msgid "Please heat the nozzle to above 170°C before loading filament."
|
||||
#~ msgid "Please heat the nozzle to above 170℃ before loading filament."
|
||||
#~ msgstr ""
|
||||
#~ "Veuillez chauffer la buse à plus de 170°C avant de charger le filament."
|
||||
#~ "Veuillez chauffer la buse à plus de 170℃ avant de charger le filament."
|
||||
|
||||
#~ msgid "Show G-code window"
|
||||
#~ msgstr "Afficher la fenêtre G-code"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-02-12 08:42+0800\n"
|
||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -428,7 +428,7 @@ msgstr ""
|
||||
msgid "Size"
|
||||
msgstr "Méret"
|
||||
|
||||
msgid "uniform scale"
|
||||
msgid "Uniform scale"
|
||||
msgstr "egységes méretarány"
|
||||
|
||||
msgid "Planar"
|
||||
@@ -683,7 +683,7 @@ msgstr "Connector"
|
||||
msgid "Cut by Plane"
|
||||
msgstr "Vágás Síkkal"
|
||||
|
||||
msgid "non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgid "Non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgstr "A vágás után hibás élek keletkeztek, szeretnéd most javítani őket?"
|
||||
|
||||
msgid "Repairing model object"
|
||||
@@ -2195,31 +2195,37 @@ msgstr ""
|
||||
msgid "Select All"
|
||||
msgstr "Összes kijelölése"
|
||||
|
||||
msgid "select all objects on current plate"
|
||||
msgid "Select all objects on the current plate"
|
||||
msgstr "az aktuális tálca összes objektumának kijelölése"
|
||||
|
||||
msgid "Select All Plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select all objects on all plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete All"
|
||||
msgstr "Összes törlése"
|
||||
|
||||
msgid "delete all objects on current plate"
|
||||
msgid "Delete all objects on the current plate"
|
||||
msgstr "az aktuális tálca összes objektumának törlése"
|
||||
|
||||
msgid "Arrange"
|
||||
msgstr "Elrendezés"
|
||||
|
||||
msgid "arrange current plate"
|
||||
msgid "Arrange current plate"
|
||||
msgstr "aktuális tálca elrendezése"
|
||||
|
||||
msgid "Reload All"
|
||||
msgstr ""
|
||||
|
||||
msgid "reload all from disk"
|
||||
msgid "Reload all from disk"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto Rotate"
|
||||
msgstr "Automatikus forgatás"
|
||||
|
||||
msgid "auto rotate current plate"
|
||||
msgid "Auto rotate current plate"
|
||||
msgstr "aktuális tálca automatikus forgatása"
|
||||
|
||||
msgid "Delete Plate"
|
||||
@@ -2532,7 +2538,8 @@ msgstr ""
|
||||
msgid "Invalid numeric."
|
||||
msgstr "Érvénytelen számjegy."
|
||||
|
||||
msgid "one cell can only be copied to one or multiple cells in the same column"
|
||||
#, fuzzy
|
||||
msgid "One cell can only be copied to one or more cells in the same column."
|
||||
msgstr ""
|
||||
"egy cellát csak az ugyanabban az oszlopban lévő egy vagy több cellába lehet "
|
||||
"másolni"
|
||||
@@ -2787,9 +2794,9 @@ msgid "Top"
|
||||
msgstr "Felül"
|
||||
|
||||
msgid ""
|
||||
"The fan controls the temperature during printing to improve print "
|
||||
"quality.The system automatically adjusts the fan's switch and speed "
|
||||
"according to different printing materials."
|
||||
"The fan controls the temperature during printing to improve print quality. "
|
||||
"The system automatically adjusts the fan's switch and speed according to "
|
||||
"different printing materials."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -3622,8 +3629,7 @@ msgstr ""
|
||||
msgid "Please unload all filament before switching."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"AMS type switching needs firmware update, taking about 30s. Switch now ?"
|
||||
msgid "AMS type switching needs firmware update, taking about 30s. Switch now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Arrange AMS Order"
|
||||
@@ -3648,13 +3654,12 @@ msgstr ""
|
||||
"beállításait és a VPN-szoftvert, majd próbálja meg újra."
|
||||
|
||||
msgid ""
|
||||
"Failed to install the plug-in. Please check whether it is blocked or deleted "
|
||||
"by anti-virus software."
|
||||
"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 "
|
||||
"deleted by anti-virus software."
|
||||
msgstr ""
|
||||
"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."
|
||||
|
||||
msgid "click here to see more info"
|
||||
msgid "Click here to see more info"
|
||||
msgstr "kattints ide további információkért"
|
||||
|
||||
msgid ""
|
||||
@@ -4172,7 +4177,7 @@ msgstr ""
|
||||
msgid "Nozzle offset calibration"
|
||||
msgstr ""
|
||||
|
||||
msgid "high temperature auto bed leveling"
|
||||
msgid "High temperature auto bed leveling"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto Check: Quick Release Lever"
|
||||
@@ -4447,6 +4452,12 @@ msgstr "Nyomtató beállítások"
|
||||
msgid "parameter name"
|
||||
msgstr "paraméter neve"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "Tartomány"
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "Az érték tartományon kívül esik."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s can't be a percentage"
|
||||
msgstr "%s nem lehet százalék"
|
||||
@@ -4462,9 +4473,6 @@ msgstr "Paraméter validáció"
|
||||
msgid "Value %s is out of range. The valid range is from %d to %d."
|
||||
msgstr ""
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "Az érték tartományon kívül esik."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Is it %s%% or %s %s?\n"
|
||||
@@ -4517,7 +4525,7 @@ msgid "Line Width"
|
||||
msgstr "Vonalszélesség"
|
||||
|
||||
msgid "Actual Speed"
|
||||
msgstr ""
|
||||
msgstr "Tényleges sebesség"
|
||||
|
||||
msgid "Fan Speed"
|
||||
msgstr "Ventilátor fordulatszám"
|
||||
@@ -4526,7 +4534,7 @@ msgid "Flow"
|
||||
msgstr "Anyagáramlás"
|
||||
|
||||
msgid "Actual Flow"
|
||||
msgstr ""
|
||||
msgstr "Tényleges áramlás"
|
||||
|
||||
msgid "Tool"
|
||||
msgstr "Szerszám"
|
||||
@@ -4537,6 +4545,9 @@ msgstr "Rétegidő"
|
||||
msgid "Layer Time (log)"
|
||||
msgstr "Rétegidő (log)"
|
||||
|
||||
msgid "Pressure Advance"
|
||||
msgstr ""
|
||||
|
||||
msgid "Noop"
|
||||
msgstr ""
|
||||
|
||||
@@ -4624,9 +4635,6 @@ msgstr ""
|
||||
msgid "Fan speed"
|
||||
msgstr "Ventilátor fordulatszám"
|
||||
|
||||
msgid "°C"
|
||||
msgstr "°C"
|
||||
|
||||
msgid "Time"
|
||||
msgstr "Idő"
|
||||
|
||||
@@ -4661,6 +4669,9 @@ msgid "Color: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Actual Speed: "
|
||||
msgstr "Tényleges sebesség: "
|
||||
|
||||
msgid "PA: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Statistics of All Plates"
|
||||
@@ -4775,12 +4786,12 @@ msgid "Speed (mm/s)"
|
||||
msgstr "Sebesség (mm/s)"
|
||||
|
||||
msgid "Actual Speed (mm/s)"
|
||||
msgstr ""
|
||||
msgstr "Tényleges sebesség (mm/s)"
|
||||
|
||||
msgid "Fan Speed (%)"
|
||||
msgstr "Ventilátor fordulatszám (%)"
|
||||
|
||||
msgid "Temperature (°C)"
|
||||
msgid "Temperature (℃)"
|
||||
msgstr "Hőmérséklet (°C)"
|
||||
|
||||
msgid "Volumetric flow rate (mm³/s)"
|
||||
@@ -4798,9 +4809,6 @@ msgstr "Filamentcserék"
|
||||
msgid "Options"
|
||||
msgstr "Opciók"
|
||||
|
||||
msgid "travel"
|
||||
msgstr "mozgás"
|
||||
|
||||
msgid "Extruder"
|
||||
msgstr ""
|
||||
|
||||
@@ -4895,16 +4903,13 @@ msgstr "Szerkesztési terület növelése/csökkentése"
|
||||
msgid "Sequence"
|
||||
msgstr "Sorrend"
|
||||
|
||||
msgid "object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "part selection"
|
||||
msgid "Object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys can quickly change the color of objects"
|
||||
msgid "Number keys can quickly change the color of objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -5054,6 +5059,30 @@ msgstr ""
|
||||
msgid "Fit camera to scene or selected object."
|
||||
msgstr ""
|
||||
|
||||
msgid "3D Navigator"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom button"
|
||||
msgstr ""
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr ""
|
||||
|
||||
msgid "Outline"
|
||||
msgstr ""
|
||||
|
||||
msgid "Perspective"
|
||||
msgstr ""
|
||||
|
||||
msgid "Axes"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Labels"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "Festés eszköztár"
|
||||
|
||||
@@ -5134,7 +5163,7 @@ msgid "Only the object being edited is visible."
|
||||
msgstr "Csak az éppen szerkesztett objektum látható."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgid "Filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -5553,6 +5582,12 @@ msgstr ""
|
||||
msgid "Show 3D navigator in Prepare and Preview scene."
|
||||
msgstr ""
|
||||
|
||||
msgid "Show Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Show Gridlines on plate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset Window Layout"
|
||||
msgstr ""
|
||||
|
||||
@@ -6279,7 +6314,7 @@ msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Please heat the nozzle to above 170°C before loading or unloading filament."
|
||||
"Please heat the nozzle to above 170℃ before loading or unloading filament."
|
||||
msgstr ""
|
||||
"Kérjük, melegítsd a fúvókát 170 fok fölé a filament betöltése vagy kihúzása "
|
||||
"előtt."
|
||||
@@ -6391,7 +6426,7 @@ msgstr "Nyomtatási eredmények szinkronizálása. Kérjük, próbáld újra ké
|
||||
msgid "Upload failed\n"
|
||||
msgstr "Feltöltés sikertelen\n"
|
||||
|
||||
msgid "obtaining instance_id failed\n"
|
||||
msgid "Obtaining instance_id failed\n"
|
||||
msgstr "Az instance_id beszerzése sikertelen\n"
|
||||
|
||||
msgid ""
|
||||
@@ -6655,9 +6690,6 @@ msgstr ""
|
||||
msgid "Layers"
|
||||
msgstr "Rétegek"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "Tartomány"
|
||||
|
||||
msgid ""
|
||||
"The application cannot run normally because OpenGL version is lower than "
|
||||
"3.2.\n"
|
||||
@@ -7377,7 +7409,7 @@ msgid ""
|
||||
"connected printer.\n"
|
||||
"After syncing, software can optimize printing time and filament usage when "
|
||||
"slicing.\n"
|
||||
"Would you like to sync now ?"
|
||||
"Would you like to sync now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync now"
|
||||
@@ -7408,13 +7440,14 @@ msgstr "Projekt mentése"
|
||||
msgid "Importing Model"
|
||||
msgstr "Modell importálása"
|
||||
|
||||
msgid "prepare 3MF file..."
|
||||
#, fuzzy
|
||||
msgid "Preparing 3MF file..."
|
||||
msgstr "3mf fájl előkészítése..."
|
||||
|
||||
msgid "Download failed, unknown file format."
|
||||
msgstr ""
|
||||
|
||||
msgid "downloading project..."
|
||||
msgid "Downloading project..."
|
||||
msgstr "projekt letöltése ..."
|
||||
|
||||
msgid "Download failed, File size exception."
|
||||
@@ -7905,6 +7938,18 @@ msgstr ""
|
||||
msgid "By vendor"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimize filaments area height for..."
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid "filaments"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
||||
msgstr ""
|
||||
|
||||
msgid "Features"
|
||||
msgstr ""
|
||||
|
||||
@@ -7916,9 +7961,6 @@ msgid ""
|
||||
"same time and manage multiple devices."
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pop up to select filament grouping mode"
|
||||
msgstr ""
|
||||
|
||||
@@ -8283,10 +8325,10 @@ msgstr "PRE host: api-pre.bambu-lab.com/v1"
|
||||
msgid "Product host"
|
||||
msgstr "Product host"
|
||||
|
||||
msgid "debug save button"
|
||||
msgid "Debug save button"
|
||||
msgstr "debug mentés gomb"
|
||||
|
||||
msgid "save debug settings"
|
||||
msgid "Save debug settings"
|
||||
msgstr "hibakeresési beállítások mentése"
|
||||
|
||||
msgid "DEBUG settings have been saved successfully!"
|
||||
@@ -8576,7 +8618,7 @@ msgid ""
|
||||
"*Automatic mode: Check for calibration before printing. Skip if unnecessary."
|
||||
msgstr ""
|
||||
|
||||
msgid "send completed"
|
||||
msgid "Send complete"
|
||||
msgstr "küldés befejezve"
|
||||
|
||||
msgid "Error code"
|
||||
@@ -8716,7 +8758,7 @@ msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"[ %s ] requires printing in a high-temperature environment.Please close the "
|
||||
"[ %s ] requires printing in a high-temperature environment. Please close the "
|
||||
"door."
|
||||
msgstr ""
|
||||
|
||||
@@ -9114,7 +9156,7 @@ msgid ""
|
||||
"ensure proper printing and achieve their intended effects (e.g., Gyroid, "
|
||||
"Cubic). Rotating the current sparse infill pattern may lead to insufficient "
|
||||
"support. Please proceed with caution and thoroughly check for any potential "
|
||||
"printing issues.Are you sure you want to enable this option?"
|
||||
"printing issues. Are you sure you want to enable this option?"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -9254,9 +9296,6 @@ msgstr ""
|
||||
msgid "Bridging"
|
||||
msgstr ""
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr ""
|
||||
|
||||
msgid "Walls"
|
||||
msgstr "Falak"
|
||||
|
||||
@@ -10337,7 +10376,7 @@ msgstr "Kijelölés mozgatása 10 mm-rel pozitív X irányban"
|
||||
msgid "Movement step set to 1 mm"
|
||||
msgstr "Mozgatás lépéstávolsága 1mm-re állítva"
|
||||
|
||||
msgid "keyboard 1-9: set filament for object/part"
|
||||
msgid "Keyboard 1-9: set filament for object/part"
|
||||
msgstr "filament hozzárendelése az objektumhoz/tárgyhoz"
|
||||
|
||||
msgid "Camera view - Default"
|
||||
@@ -11095,6 +11134,16 @@ msgstr ""
|
||||
"The prime tower requires that support has the same layer height as the "
|
||||
"object."
|
||||
|
||||
msgid ""
|
||||
"For Organic supports, two walls are supported only with the Hollow/Default "
|
||||
"base pattern."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The Lightning base pattern is not supported by this support type; "
|
||||
"Rectilinear will be used instead."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Organic support tree tip diameter must not be smaller than support material "
|
||||
"extrusion width."
|
||||
@@ -12973,6 +13022,49 @@ msgid ""
|
||||
"tower to produce successive infill or sacrificial object extrusions reliably."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer pre-extrusion distance"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion distance for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer pre-extrusion length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion length for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Tower ironing area"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Ironing area for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "mm²"
|
||||
msgstr "mm²"
|
||||
|
||||
msgid "Interface layer purge length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Purge length for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer print temperature"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Print temperature for prime tower interface layer (where different materials "
|
||||
"meet). If set to -1, use max recommended nozzle temperature."
|
||||
msgstr ""
|
||||
|
||||
msgid "Speed of the last cooling move"
|
||||
msgstr "Az utolsó hűtési lépés sebessége"
|
||||
|
||||
@@ -13484,14 +13576,14 @@ msgstr ""
|
||||
"A nyomtató véletlenszerűen vibrál a fal nyomtatása közben, így a felület "
|
||||
"durva megjelenésű lesz"
|
||||
|
||||
msgid "None (allow paint)"
|
||||
msgstr ""
|
||||
msgid "Painted only"
|
||||
msgstr "Csak festett"
|
||||
|
||||
msgid "Contour"
|
||||
msgstr ""
|
||||
msgstr "Kontúr"
|
||||
|
||||
msgid "Contour and hole"
|
||||
msgstr ""
|
||||
msgstr "Kontúr és lyuk"
|
||||
|
||||
msgid "All walls"
|
||||
msgstr "Összes fal"
|
||||
@@ -14570,9 +14662,6 @@ msgid ""
|
||||
"conical material. A value of 0 will fill all the holes in the model base."
|
||||
msgstr ""
|
||||
|
||||
msgid "mm²"
|
||||
msgstr "mm²"
|
||||
|
||||
msgid "Detect overhang wall"
|
||||
msgstr "Túlnyúló fal felismerése"
|
||||
|
||||
@@ -15561,8 +15650,17 @@ msgstr "Támasz érintkező felületek sebessége"
|
||||
msgid "Base pattern"
|
||||
msgstr "Alap mintázata"
|
||||
|
||||
msgid "Line pattern of support."
|
||||
msgstr "A támasz mintázata."
|
||||
msgid ""
|
||||
"Line pattern of support.\n"
|
||||
"\n"
|
||||
"The Default option for Tree supports is Hollow, which means no base pattern. "
|
||||
"For other support types, the Default option is the Rectilinear pattern.\n"
|
||||
"\n"
|
||||
"NOTE: For Organic supports, the two walls are supported only with the Hollow/"
|
||||
"Default base pattern. The Lightning base pattern is supported only by Tree "
|
||||
"Slim/Strong/Hybrid supports. For the other support types, the Rectilinear "
|
||||
"will be used instead of Lightning."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rectilinear grid"
|
||||
msgstr "Vonalrács"
|
||||
@@ -16066,6 +16164,23 @@ msgstr ""
|
||||
msgid "The wall of prime tower will skip the start points of wipe path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable tower interface features"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable optimized prime tower interface behavior when different materials "
|
||||
"meet."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cool down from interface boost during prime tower"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"When interface-layer temperature boost is active, set the nozzle back to "
|
||||
"print temperature at the start of the prime tower so it cools down during "
|
||||
"the tower."
|
||||
msgstr ""
|
||||
|
||||
msgid "Infill gap"
|
||||
msgstr ""
|
||||
|
||||
@@ -17517,7 +17632,7 @@ msgstr ""
|
||||
msgid "Plate Type"
|
||||
msgstr ""
|
||||
|
||||
msgid "filament position"
|
||||
msgid "Filament position"
|
||||
msgstr "filamentpozíció"
|
||||
|
||||
msgid "Filament For Calibration"
|
||||
@@ -18438,7 +18553,8 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Printer and all the filament&&process presets that belongs to the printer.\n"
|
||||
"Printer and all the filament and process presets that belongs to the "
|
||||
"printer.\n"
|
||||
"Can be shared with others."
|
||||
msgstr ""
|
||||
|
||||
@@ -19233,7 +19349,7 @@ msgstr ""
|
||||
msgid "Upgrading"
|
||||
msgstr ""
|
||||
|
||||
msgid "syncing"
|
||||
msgid "Syncing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printing Finish"
|
||||
@@ -19799,6 +19915,22 @@ msgstr ""
|
||||
"Tudtad, hogy a vetemedésre hajlamos anyagok (például ABS) nyomtatásakor a "
|
||||
"tárgyasztal hőmérsékletének növelése csökkentheti a vetemedés valószínűségét?"
|
||||
|
||||
#~ msgid "Line pattern of support."
|
||||
#~ msgstr "A támasz mintázata."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Failed to install the plug-in. Please check whether it is blocked or "
|
||||
#~ "deleted by anti-virus software."
|
||||
#~ msgstr ""
|
||||
#~ "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."
|
||||
|
||||
#~ msgid "°C"
|
||||
#~ msgstr "°C"
|
||||
|
||||
#~ msgid "travel"
|
||||
#~ msgstr "mozgás"
|
||||
|
||||
#~ msgid "Replace with STL"
|
||||
#~ msgstr "Lecserélés STL-lel"
|
||||
|
||||
@@ -19899,8 +20031,8 @@ msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid ""
|
||||
#~ "The recommended minimum temperature is less than 190°C or the recommended "
|
||||
#~ "maximum temperature is greater than 300°C.\n"
|
||||
#~ "The recommended minimum temperature is less than 190℃ or the recommended "
|
||||
#~ "maximum temperature is greater than 300℃.\n"
|
||||
#~ msgstr ""
|
||||
#~ "Az ajánlott minimum hőmérséklet kevesebb, mint 190 fok, vagy az ajánlott "
|
||||
#~ "maximális hőmérséklet nagyobb, mint 300 fok.\n"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-02-12 08:42+0800\n"
|
||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -432,7 +432,7 @@ msgstr ""
|
||||
msgid "Size"
|
||||
msgstr "Dimensioni"
|
||||
|
||||
msgid "uniform scale"
|
||||
msgid "Uniform scale"
|
||||
msgstr "scala uniforme"
|
||||
|
||||
msgid "Planar"
|
||||
@@ -693,7 +693,7 @@ msgstr "Connettore"
|
||||
msgid "Cut by Plane"
|
||||
msgstr "Taglio per piano"
|
||||
|
||||
msgid "non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgid "Non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgstr ""
|
||||
"lo strumento Taglia ha generato geometrie con spessore zero, vuoi risolvere "
|
||||
"il problema ora?"
|
||||
@@ -2275,31 +2275,37 @@ msgstr ""
|
||||
msgid "Select All"
|
||||
msgstr "Seleziona tutto"
|
||||
|
||||
msgid "select all objects on current plate"
|
||||
msgid "Select all objects on the current plate"
|
||||
msgstr "seleziona tutti gli oggetti sul piatto corrente"
|
||||
|
||||
msgid "Select All Plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select all objects on all plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete All"
|
||||
msgstr "Elimina tutto"
|
||||
|
||||
msgid "delete all objects on current plate"
|
||||
msgid "Delete all objects on the current plate"
|
||||
msgstr "elimina tutti gli oggetti sul piatto corrente"
|
||||
|
||||
msgid "Arrange"
|
||||
msgstr "Disponi"
|
||||
|
||||
msgid "arrange current plate"
|
||||
msgid "Arrange current plate"
|
||||
msgstr "disponi sul piatto corrente"
|
||||
|
||||
msgid "Reload All"
|
||||
msgstr "Ricarica tutto"
|
||||
|
||||
msgid "reload all from disk"
|
||||
msgid "Reload all from disk"
|
||||
msgstr "ricarica tutto dal disco"
|
||||
|
||||
msgid "Auto Rotate"
|
||||
msgstr "Rotazione automatica"
|
||||
|
||||
msgid "auto rotate current plate"
|
||||
msgid "Auto rotate current plate"
|
||||
msgstr "rotazione automatica piatto corrente"
|
||||
|
||||
msgid "Delete Plate"
|
||||
@@ -2624,7 +2630,8 @@ msgstr "Aggiungi intervallo di altezza"
|
||||
msgid "Invalid numeric."
|
||||
msgstr "Numero non valido."
|
||||
|
||||
msgid "one cell can only be copied to one or multiple cells in the same column"
|
||||
#, fuzzy
|
||||
msgid "One cell can only be copied to one or more cells in the same column."
|
||||
msgstr ""
|
||||
"una cella può essere copiata solo in una o più celle della stessa colonna"
|
||||
|
||||
@@ -2881,9 +2888,9 @@ msgid "Top"
|
||||
msgstr "Dall'alto"
|
||||
|
||||
msgid ""
|
||||
"The fan controls the temperature during printing to improve print "
|
||||
"quality.The system automatically adjusts the fan's switch and speed "
|
||||
"according to different printing materials."
|
||||
"The fan controls the temperature during printing to improve print quality. "
|
||||
"The system automatically adjusts the fan's switch and speed according to "
|
||||
"different printing materials."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -3746,8 +3753,7 @@ msgstr ""
|
||||
msgid "Please unload all filament before switching."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"AMS type switching needs firmware update, taking about 30s. Switch now ?"
|
||||
msgid "AMS type switching needs firmware update, taking about 30s. Switch now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Arrange AMS Order"
|
||||
@@ -3772,13 +3778,12 @@ msgstr ""
|
||||
"VPN poi riprova."
|
||||
|
||||
msgid ""
|
||||
"Failed to install the plug-in. Please check whether it is blocked or deleted "
|
||||
"by anti-virus software."
|
||||
"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 "
|
||||
"deleted by anti-virus software."
|
||||
msgstr ""
|
||||
"Impossibile installare il modulo. Verificare se è bloccato o se è stato "
|
||||
"eliminato dall'antivirus."
|
||||
|
||||
msgid "click here to see more info"
|
||||
msgid "Click here to see more info"
|
||||
msgstr "clicca per ulteriori informazioni"
|
||||
|
||||
msgid ""
|
||||
@@ -4322,7 +4327,7 @@ msgstr ""
|
||||
msgid "Nozzle offset calibration"
|
||||
msgstr ""
|
||||
|
||||
msgid "high temperature auto bed leveling"
|
||||
msgid "High temperature auto bed leveling"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto Check: Quick Release Lever"
|
||||
@@ -4440,7 +4445,7 @@ msgid ""
|
||||
"control will not be activated, and the target chamber temperature will "
|
||||
"automatically be set to 0℃."
|
||||
msgstr ""
|
||||
"Quando si imposta la temperatura della camera al di sotto di 40°C, il "
|
||||
"Quando si imposta la temperatura della camera al di sotto di 40℃, il "
|
||||
"controllo della temperatura della camera non verrà attivato. La temperatura "
|
||||
"obiettivo della camera sarà automaticamente impostata su 0℃."
|
||||
|
||||
@@ -4603,6 +4608,12 @@ msgstr "Impostazioni stampante"
|
||||
msgid "parameter name"
|
||||
msgstr "nome parametro"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "Intervallo"
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "Valore fuori intervallo."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s can't be a percentage"
|
||||
msgstr "%s non può essere una percentuale"
|
||||
@@ -4618,9 +4629,6 @@ msgstr "Validazione parametri"
|
||||
msgid "Value %s is out of range. The valid range is from %d to %d."
|
||||
msgstr "Il valore %s è fuori intervallo. L'intervallo valido è da %d a %d."
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "Valore fuori intervallo."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Is it %s%% or %s %s?\n"
|
||||
@@ -4673,7 +4681,7 @@ msgid "Line Width"
|
||||
msgstr "Larghezza linea"
|
||||
|
||||
msgid "Actual Speed"
|
||||
msgstr ""
|
||||
msgstr "Velocità effettiva"
|
||||
|
||||
msgid "Fan Speed"
|
||||
msgstr "Velocità ventola"
|
||||
@@ -4682,7 +4690,7 @@ msgid "Flow"
|
||||
msgstr "Flusso"
|
||||
|
||||
msgid "Actual Flow"
|
||||
msgstr ""
|
||||
msgstr "Flusso effettivo"
|
||||
|
||||
msgid "Tool"
|
||||
msgstr "Strumento"
|
||||
@@ -4693,6 +4701,9 @@ msgstr "Durata strato"
|
||||
msgid "Layer Time (log)"
|
||||
msgstr "Durata strato (log)"
|
||||
|
||||
msgid "Pressure Advance"
|
||||
msgstr ""
|
||||
|
||||
msgid "Noop"
|
||||
msgstr ""
|
||||
|
||||
@@ -4780,9 +4791,6 @@ msgstr ""
|
||||
msgid "Fan speed"
|
||||
msgstr "Velocità ventola"
|
||||
|
||||
msgid "°C"
|
||||
msgstr "°C"
|
||||
|
||||
msgid "Time"
|
||||
msgstr "Tempo"
|
||||
|
||||
@@ -4817,6 +4825,9 @@ msgid "Color: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Actual Speed: "
|
||||
msgstr "Velocità effettiva: "
|
||||
|
||||
msgid "PA: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Statistics of All Plates"
|
||||
@@ -4931,13 +4942,13 @@ msgid "Speed (mm/s)"
|
||||
msgstr "Velocità (mm/s)"
|
||||
|
||||
msgid "Actual Speed (mm/s)"
|
||||
msgstr ""
|
||||
msgstr "Velocità effettiva (mm/s)"
|
||||
|
||||
msgid "Fan Speed (%)"
|
||||
msgstr "Velocità ventola (%)"
|
||||
|
||||
msgid "Temperature (°C)"
|
||||
msgstr "Temperatura (°C)"
|
||||
msgid "Temperature (℃)"
|
||||
msgstr "Temperatura (℃)"
|
||||
|
||||
msgid "Volumetric flow rate (mm³/s)"
|
||||
msgstr "Portata volumetrica (mm³/s)"
|
||||
@@ -4954,9 +4965,6 @@ msgstr "Cambi filamento"
|
||||
msgid "Options"
|
||||
msgstr "Opzioni"
|
||||
|
||||
msgid "travel"
|
||||
msgstr "spostamento"
|
||||
|
||||
msgid "Extruder"
|
||||
msgstr "Estrusore"
|
||||
|
||||
@@ -5051,16 +5059,13 @@ msgstr "Aumenta/diminuisci l'area di modifica"
|
||||
msgid "Sequence"
|
||||
msgstr "Sequenza"
|
||||
|
||||
msgid "object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "part selection"
|
||||
msgid "Object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys can quickly change the color of objects"
|
||||
msgid "Number keys can quickly change the color of objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -5210,6 +5215,30 @@ msgstr ""
|
||||
msgid "Fit camera to scene or selected object."
|
||||
msgstr ""
|
||||
|
||||
msgid "3D Navigator"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom button"
|
||||
msgstr ""
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr "Sporgenze"
|
||||
|
||||
msgid "Outline"
|
||||
msgstr ""
|
||||
|
||||
msgid "Perspective"
|
||||
msgstr ""
|
||||
|
||||
msgid "Axes"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Labels"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "Barra strumenti di pittura"
|
||||
|
||||
@@ -5292,7 +5321,7 @@ msgid "Only the object being edited is visible."
|
||||
msgstr "È visibile solo l'oggetto da modificare."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgid "Filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -5713,6 +5742,12 @@ msgstr "Mostra navigatore 3D"
|
||||
msgid "Show 3D navigator in Prepare and Preview scene."
|
||||
msgstr "Mostra navigatore 3D nella sezione Prepara e Anteprima."
|
||||
|
||||
msgid "Show Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Show Gridlines on plate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset Window Layout"
|
||||
msgstr "Ripristina disposizione finestra"
|
||||
|
||||
@@ -6460,9 +6495,9 @@ msgid "Layer: %d/%d"
|
||||
msgstr "Strato: %d/%d"
|
||||
|
||||
msgid ""
|
||||
"Please heat the nozzle to above 170°C before loading or unloading filament."
|
||||
"Please heat the nozzle to above 170℃ before loading or unloading filament."
|
||||
msgstr ""
|
||||
"Si prega di riscaldare l'ugello a oltre 170°C prima di caricare o scaricare "
|
||||
"Si prega di riscaldare l'ugello a oltre 170℃ prima di caricare o scaricare "
|
||||
"il filamento."
|
||||
|
||||
msgid "Chamber temperature cannot be changed in cooling mode while printing."
|
||||
@@ -6572,7 +6607,7 @@ msgstr "Sincronizzazione dei risultati di stampa. Riprova tra qualche secondo."
|
||||
msgid "Upload failed\n"
|
||||
msgstr "Caricamento non riuscito\n"
|
||||
|
||||
msgid "obtaining instance_id failed\n"
|
||||
msgid "Obtaining instance_id failed\n"
|
||||
msgstr "ottenimento di instance_id non riuscito\n"
|
||||
|
||||
msgid ""
|
||||
@@ -6851,9 +6886,6 @@ msgstr "Taglia connettori"
|
||||
msgid "Layers"
|
||||
msgstr "Strati"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "Intervallo"
|
||||
|
||||
msgid ""
|
||||
"The application cannot run normally because OpenGL version is lower than "
|
||||
"3.2.\n"
|
||||
@@ -7587,7 +7619,7 @@ msgid ""
|
||||
"connected printer.\n"
|
||||
"After syncing, software can optimize printing time and filament usage when "
|
||||
"slicing.\n"
|
||||
"Would you like to sync now ?"
|
||||
"Would you like to sync now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync now"
|
||||
@@ -7618,13 +7650,14 @@ msgstr "Salva progetto"
|
||||
msgid "Importing Model"
|
||||
msgstr "Importazione del modello"
|
||||
|
||||
msgid "prepare 3MF file..."
|
||||
#, fuzzy
|
||||
msgid "Preparing 3MF file..."
|
||||
msgstr "preparazione file 3MF..."
|
||||
|
||||
msgid "Download failed, unknown file format."
|
||||
msgstr "Scaricamento non riuscito; formato file sconosciuto."
|
||||
|
||||
msgid "downloading project..."
|
||||
msgid "Downloading project..."
|
||||
msgstr "scaricamento progetto..."
|
||||
|
||||
msgid "Download failed, File size exception."
|
||||
@@ -8144,6 +8177,18 @@ msgstr ""
|
||||
msgid "By vendor"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimize filaments area height for..."
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid "filaments"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
||||
msgstr ""
|
||||
|
||||
msgid "Features"
|
||||
msgstr ""
|
||||
|
||||
@@ -8157,9 +8202,6 @@ msgstr ""
|
||||
"Abilitando questa opzione, puoi inviare un'attività a più dispositivi "
|
||||
"contemporaneamente e gestire più dispositivi."
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pop up to select filament grouping mode"
|
||||
msgstr ""
|
||||
|
||||
@@ -8528,10 +8570,10 @@ msgstr "PRE host: api-pre.bambu-lab.com/v1"
|
||||
msgid "Product host"
|
||||
msgstr "Host del prodotto"
|
||||
|
||||
msgid "debug save button"
|
||||
msgid "Debug save button"
|
||||
msgstr "pulsante salvataggio debug"
|
||||
|
||||
msgid "save debug settings"
|
||||
msgid "Save debug settings"
|
||||
msgstr "salva impostazioni debug"
|
||||
|
||||
msgid "DEBUG settings have been saved successfully!"
|
||||
@@ -8824,7 +8866,7 @@ msgid ""
|
||||
"*Automatic mode: Check for calibration before printing. Skip if unnecessary."
|
||||
msgstr ""
|
||||
|
||||
msgid "send completed"
|
||||
msgid "Send complete"
|
||||
msgstr "invio completato"
|
||||
|
||||
msgid "Error code"
|
||||
@@ -8970,7 +9012,7 @@ msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"[ %s ] requires printing in a high-temperature environment.Please close the "
|
||||
"[ %s ] requires printing in a high-temperature environment. Please close the "
|
||||
"door."
|
||||
msgstr ""
|
||||
|
||||
@@ -9403,7 +9445,7 @@ msgid ""
|
||||
"ensure proper printing and achieve their intended effects (e.g., Gyroid, "
|
||||
"Cubic). Rotating the current sparse infill pattern may lead to insufficient "
|
||||
"support. Please proceed with caution and thoroughly check for any potential "
|
||||
"printing issues.Are you sure you want to enable this option?"
|
||||
"printing issues. Are you sure you want to enable this option?"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -9556,9 +9598,6 @@ msgstr "Pareti e superfici"
|
||||
msgid "Bridging"
|
||||
msgstr "Ponti"
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr "Sporgenze"
|
||||
|
||||
msgid "Walls"
|
||||
msgstr "Pareti"
|
||||
|
||||
@@ -10695,7 +10734,7 @@ msgstr "Sposta selezione di 10 mm in direzione X positiva"
|
||||
msgid "Movement step set to 1 mm"
|
||||
msgstr "Passo movimento impostato a 1 mm"
|
||||
|
||||
msgid "keyboard 1-9: set filament for object/part"
|
||||
msgid "Keyboard 1-9: set filament for object/part"
|
||||
msgstr "tastiera 1-9: imposta il filamento per l'oggetto/parte"
|
||||
|
||||
msgid "Camera view - Default"
|
||||
@@ -11489,6 +11528,16 @@ msgstr ""
|
||||
"La torre di spurgo richiede che i supporti abbiano gli strati della stessa "
|
||||
"altezza dell'oggetto."
|
||||
|
||||
msgid ""
|
||||
"For Organic supports, two walls are supported only with the Hollow/Default "
|
||||
"base pattern."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The Lightning base pattern is not supported by this support type; "
|
||||
"Rectilinear will be used instead."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Organic support tree tip diameter must not be smaller than support material "
|
||||
"extrusion width."
|
||||
@@ -13882,6 +13931,49 @@ msgstr ""
|
||||
"torre di spurgo al fine di ottenere una successiva estrusione affidabile su "
|
||||
"oggetti sacrificali o riempimenti."
|
||||
|
||||
msgid "Interface layer pre-extrusion distance"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion distance for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer pre-extrusion length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion length for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Tower ironing area"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Ironing area for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "mm²"
|
||||
msgstr "mm²"
|
||||
|
||||
msgid "Interface layer purge length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Purge length for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer print temperature"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Print temperature for prime tower interface layer (where different materials "
|
||||
"meet). If set to -1, use max recommended nozzle temperature."
|
||||
msgstr ""
|
||||
|
||||
msgid "Speed of the last cooling move"
|
||||
msgstr "Velocità dell'ultimo movimento di raffreddamento"
|
||||
|
||||
@@ -14472,8 +14564,8 @@ msgstr ""
|
||||
"la superficie abbia un aspetto ruvido. Con questa impostazione è possibile "
|
||||
"controllare le zone in cui si vuole avere una superficie ruvida e irregolare."
|
||||
|
||||
msgid "None (allow paint)"
|
||||
msgstr ""
|
||||
msgid "Painted only"
|
||||
msgstr "Solo verniciato"
|
||||
|
||||
msgid "Contour"
|
||||
msgstr "Contorno"
|
||||
@@ -15744,9 +15836,6 @@ msgstr ""
|
||||
"una forma conica. Un valore pari a 0 riempirà tutti i fori nella base del "
|
||||
"modello."
|
||||
|
||||
msgid "mm²"
|
||||
msgstr "mm²"
|
||||
|
||||
msgid "Detect overhang wall"
|
||||
msgstr "Rileva parete sporgente"
|
||||
|
||||
@@ -16888,8 +16977,17 @@ msgstr "Velocità per le interfacce di supporto."
|
||||
msgid "Base pattern"
|
||||
msgstr "Motivo base"
|
||||
|
||||
msgid "Line pattern of support."
|
||||
msgstr "Motivo delle linee utilizzate nei supporti."
|
||||
msgid ""
|
||||
"Line pattern of support.\n"
|
||||
"\n"
|
||||
"The Default option for Tree supports is Hollow, which means no base pattern. "
|
||||
"For other support types, the Default option is the Rectilinear pattern.\n"
|
||||
"\n"
|
||||
"NOTE: For Organic supports, the two walls are supported only with the Hollow/"
|
||||
"Default base pattern. The Lightning base pattern is supported only by Tree "
|
||||
"Slim/Strong/Hybrid supports. For the other support types, the Rectilinear "
|
||||
"will be used instead of Lightning."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rectilinear grid"
|
||||
msgstr "Griglia rettilinea"
|
||||
@@ -17502,6 +17600,23 @@ msgstr ""
|
||||
msgid "The wall of prime tower will skip the start points of wipe path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable tower interface features"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable optimized prime tower interface behavior when different materials "
|
||||
"meet."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cool down from interface boost during prime tower"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"When interface-layer temperature boost is active, set the nozzle back to "
|
||||
"print temperature at the start of the prime tower so it cools down during "
|
||||
"the tower."
|
||||
msgstr ""
|
||||
|
||||
msgid "Infill gap"
|
||||
msgstr ""
|
||||
|
||||
@@ -19146,7 +19261,7 @@ msgstr ""
|
||||
msgid "Plate Type"
|
||||
msgstr "Tipo di piatto"
|
||||
|
||||
msgid "filament position"
|
||||
msgid "Filament position"
|
||||
msgstr "posizione del filamento"
|
||||
|
||||
msgid "Filament For Calibration"
|
||||
@@ -20121,7 +20236,8 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Printer and all the filament&&process presets that belongs to the printer.\n"
|
||||
"Printer and all the filament and process presets that belongs to the "
|
||||
"printer.\n"
|
||||
"Can be shared with others."
|
||||
msgstr ""
|
||||
"Stampante e tutti profili di filamento e processo che appartengono alla "
|
||||
@@ -21009,7 +21125,7 @@ msgstr "Nessuna cronologia delle attività!"
|
||||
msgid "Upgrading"
|
||||
msgstr "Aggiornamento"
|
||||
|
||||
msgid "syncing"
|
||||
msgid "Syncing"
|
||||
msgstr "sincronizzazione"
|
||||
|
||||
msgid "Printing Finish"
|
||||
@@ -21631,6 +21747,22 @@ msgstr ""
|
||||
"aumentare in modo appropriato la temperatura del piano riscaldato può "
|
||||
"ridurre la probabilità di deformazione?"
|
||||
|
||||
#~ msgid "Line pattern of support."
|
||||
#~ msgstr "Motivo delle linee utilizzate nei supporti."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Failed to install the plug-in. Please check whether it is blocked or "
|
||||
#~ "deleted by anti-virus software."
|
||||
#~ msgstr ""
|
||||
#~ "Impossibile installare il modulo. Verificare se è bloccato o se è stato "
|
||||
#~ "eliminato dall'antivirus."
|
||||
|
||||
#~ msgid "°C"
|
||||
#~ msgstr "°C"
|
||||
|
||||
#~ msgid "travel"
|
||||
#~ msgstr "spostamento"
|
||||
|
||||
#~ msgid "Filament remapping finished."
|
||||
#~ msgstr "Rimappatura filamenti completata."
|
||||
|
||||
@@ -21780,11 +21912,11 @@ msgstr ""
|
||||
#~ "residua verrà aggiornata automaticamente."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The recommended minimum temperature is less than 190°C or the recommended "
|
||||
#~ "maximum temperature is greater than 300°C.\n"
|
||||
#~ "The recommended minimum temperature is less than 190℃ or the recommended "
|
||||
#~ "maximum temperature is greater than 300℃.\n"
|
||||
#~ msgstr ""
|
||||
#~ "La temperatura minima consigliata è inferiore a 190°C o la temperatura "
|
||||
#~ "massima consigliata è superiore a 300°C.\n"
|
||||
#~ "La temperatura minima consigliata è inferiore a 190℃ o la temperatura "
|
||||
#~ "massima consigliata è superiore a 300℃.\n"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Spiral mode only works when wall loops is 1, support is disabled, top "
|
||||
@@ -23798,10 +23930,10 @@ msgstr ""
|
||||
#~ "Sì - passa automaticamente alla trama rettilinea\n"
|
||||
#~ "No - ripristina automaticamente la densità al valore predefinito non 100%"
|
||||
|
||||
#~ msgid "Please heat the nozzle to above 170°C before loading filament."
|
||||
#~ msgid "Please heat the nozzle to above 170℃ before loading filament."
|
||||
#~ msgstr ""
|
||||
#~ "Riscaldare il nozzle a una temperatura superiore a 170°C prima di "
|
||||
#~ "caricare il filamento."
|
||||
#~ "Riscaldare il nozzle a una temperatura superiore a 170℃ prima di caricare "
|
||||
#~ "il filamento."
|
||||
|
||||
#~ msgid "Show G-code window"
|
||||
#~ msgstr "Mostra la finestra del G-code"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-02-12 08:42+0800\n"
|
||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -426,7 +426,7 @@ msgstr ""
|
||||
msgid "Size"
|
||||
msgstr "サイズ"
|
||||
|
||||
msgid "uniform scale"
|
||||
msgid "Uniform scale"
|
||||
msgstr "スケール"
|
||||
|
||||
msgid "Planar"
|
||||
@@ -684,8 +684,8 @@ msgstr ""
|
||||
msgid "Cut by Plane"
|
||||
msgstr "面でカット"
|
||||
|
||||
msgid "non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgstr "Non-manifold edges be caused by cut tool: do you want to fix now?"
|
||||
msgid "Non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Repairing model object"
|
||||
msgstr "モデルオブジェクトを修復"
|
||||
@@ -2204,31 +2204,37 @@ msgstr ""
|
||||
msgid "Select All"
|
||||
msgstr "全てを選択"
|
||||
|
||||
msgid "select all objects on current plate"
|
||||
msgid "Select all objects on the current plate"
|
||||
msgstr "現在のプレート上のすべてのオブジェクトを選択"
|
||||
|
||||
msgid "Select All Plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select all objects on all plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete All"
|
||||
msgstr "全てを削除"
|
||||
|
||||
msgid "delete all objects on current plate"
|
||||
msgid "Delete all objects on the current plate"
|
||||
msgstr "現在のプレート上の全てのオブジェクトを削除"
|
||||
|
||||
msgid "Arrange"
|
||||
msgstr "レイアウト"
|
||||
|
||||
msgid "arrange current plate"
|
||||
msgid "Arrange current plate"
|
||||
msgstr "現在のプレートをレイアウト"
|
||||
|
||||
msgid "Reload All"
|
||||
msgstr "全て再読み込み"
|
||||
|
||||
msgid "reload all from disk"
|
||||
msgid "Reload all from disk"
|
||||
msgstr "全てディスクから再読み込み"
|
||||
|
||||
msgid "Auto Rotate"
|
||||
msgstr "自動回転"
|
||||
|
||||
msgid "auto rotate current plate"
|
||||
msgid "Auto rotate current plate"
|
||||
msgstr "現在のプレートを自動回転させる"
|
||||
|
||||
msgid "Delete Plate"
|
||||
@@ -2529,7 +2535,8 @@ msgstr ""
|
||||
msgid "Invalid numeric."
|
||||
msgstr "無効な数値"
|
||||
|
||||
msgid "one cell can only be copied to one or multiple cells in the same column"
|
||||
#, fuzzy
|
||||
msgid "One cell can only be copied to one or more cells in the same column."
|
||||
msgstr "一つのセルは、同じ列のセルにしかコピーできません"
|
||||
|
||||
msgid "Copying multiple cells is not supported."
|
||||
@@ -2782,9 +2789,9 @@ msgid "Top"
|
||||
msgstr "トップ"
|
||||
|
||||
msgid ""
|
||||
"The fan controls the temperature during printing to improve print "
|
||||
"quality.The system automatically adjusts the fan's switch and speed "
|
||||
"according to different printing materials."
|
||||
"The fan controls the temperature during printing to improve print quality. "
|
||||
"The system automatically adjusts the fan's switch and speed according to "
|
||||
"different printing materials."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -3585,8 +3592,7 @@ msgstr ""
|
||||
msgid "Please unload all filament before switching."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"AMS type switching needs firmware update, taking about 30s. Switch now ?"
|
||||
msgid "AMS type switching needs firmware update, taking about 30s. Switch now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Arrange AMS Order"
|
||||
@@ -3611,11 +3617,12 @@ msgstr ""
|
||||
"ださい。"
|
||||
|
||||
msgid ""
|
||||
"Failed to install the plug-in. Please check whether it is blocked or deleted "
|
||||
"by anti-virus software."
|
||||
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 "
|
||||
"deleted by anti-virus software."
|
||||
msgstr ""
|
||||
|
||||
msgid "click here to see more info"
|
||||
msgid "Click here to see more info"
|
||||
msgstr "詳しくはこちら"
|
||||
|
||||
msgid ""
|
||||
@@ -4113,7 +4120,7 @@ msgstr ""
|
||||
msgid "Nozzle offset calibration"
|
||||
msgstr ""
|
||||
|
||||
msgid "high temperature auto bed leveling"
|
||||
msgid "High temperature auto bed leveling"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto Check: Quick Release Lever"
|
||||
@@ -4388,6 +4395,12 @@ msgstr "プリンター設定"
|
||||
msgid "parameter name"
|
||||
msgstr "パラメータ名"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "範囲"
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "値が範囲外です。"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s can't be a percentage"
|
||||
msgstr "%s をパーセンテージにすることはできません"
|
||||
@@ -4403,9 +4416,6 @@ msgstr "パラメータ検証"
|
||||
msgid "Value %s is out of range. The valid range is from %d to %d."
|
||||
msgstr ""
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "値が範囲外です。"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Is it %s%% or %s %s?\n"
|
||||
@@ -4455,7 +4465,7 @@ msgid "Line Width"
|
||||
msgstr "押出線幅"
|
||||
|
||||
msgid "Actual Speed"
|
||||
msgstr ""
|
||||
msgstr "実速度"
|
||||
|
||||
msgid "Fan Speed"
|
||||
msgstr "ファン回転速度"
|
||||
@@ -4464,7 +4474,7 @@ msgid "Flow"
|
||||
msgstr "流量"
|
||||
|
||||
msgid "Actual Flow"
|
||||
msgstr ""
|
||||
msgstr "実際の流れ"
|
||||
|
||||
msgid "Tool"
|
||||
msgstr "ツール"
|
||||
@@ -4475,6 +4485,9 @@ msgstr "積層時間"
|
||||
msgid "Layer Time (log)"
|
||||
msgstr "積層時間 (Log)"
|
||||
|
||||
msgid "Pressure Advance"
|
||||
msgstr ""
|
||||
|
||||
msgid "Noop"
|
||||
msgstr ""
|
||||
|
||||
@@ -4562,9 +4575,6 @@ msgstr ""
|
||||
msgid "Fan speed"
|
||||
msgstr "回転速度"
|
||||
|
||||
msgid "°C"
|
||||
msgstr "°C"
|
||||
|
||||
msgid "Time"
|
||||
msgstr "時間"
|
||||
|
||||
@@ -4599,6 +4609,9 @@ msgid "Color: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Actual Speed: "
|
||||
msgstr "実速度: "
|
||||
|
||||
msgid "PA: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Statistics of All Plates"
|
||||
@@ -4713,13 +4726,13 @@ msgid "Speed (mm/s)"
|
||||
msgstr "速度 (mm/s)"
|
||||
|
||||
msgid "Actual Speed (mm/s)"
|
||||
msgstr ""
|
||||
msgstr "実速度 (mm/s)"
|
||||
|
||||
msgid "Fan Speed (%)"
|
||||
msgstr "ファン回転速度 (%)"
|
||||
|
||||
msgid "Temperature (°C)"
|
||||
msgstr "温度 (°C)"
|
||||
msgid "Temperature (℃)"
|
||||
msgstr "温度 (℃)"
|
||||
|
||||
msgid "Volumetric flow rate (mm³/s)"
|
||||
msgstr "流量 (mm³/s)"
|
||||
@@ -4736,9 +4749,6 @@ msgstr "フィラメント交換"
|
||||
msgid "Options"
|
||||
msgstr "オプション"
|
||||
|
||||
msgid "travel"
|
||||
msgstr "移動"
|
||||
|
||||
msgid "Extruder"
|
||||
msgstr "押出機"
|
||||
|
||||
@@ -4833,16 +4843,13 @@ msgstr "編集領域を拡大/縮小"
|
||||
msgid "Sequence"
|
||||
msgstr "順番"
|
||||
|
||||
msgid "object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "part selection"
|
||||
msgid "Object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys can quickly change the color of objects"
|
||||
msgid "Number keys can quickly change the color of objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -4992,6 +4999,30 @@ msgstr ""
|
||||
msgid "Fit camera to scene or selected object."
|
||||
msgstr ""
|
||||
|
||||
msgid "3D Navigator"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom button"
|
||||
msgstr ""
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr ""
|
||||
|
||||
msgid "Outline"
|
||||
msgstr ""
|
||||
|
||||
msgid "Perspective"
|
||||
msgstr ""
|
||||
|
||||
msgid "Axes"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Labels"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "ペイント ツールバー"
|
||||
|
||||
@@ -5072,7 +5103,7 @@ msgid "Only the object being edited is visible."
|
||||
msgstr "編集中のオブジェクトのみ表示されます"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgid "Filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -5490,6 +5521,12 @@ msgstr ""
|
||||
msgid "Show 3D navigator in Prepare and Preview scene."
|
||||
msgstr ""
|
||||
|
||||
msgid "Show Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Show Gridlines on plate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset Window Layout"
|
||||
msgstr ""
|
||||
|
||||
@@ -6199,7 +6236,7 @@ msgid "Layer: %d/%d"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Please heat the nozzle to above 170°C before loading or unloading filament."
|
||||
"Please heat the nozzle to above 170℃ before loading or unloading filament."
|
||||
msgstr ""
|
||||
|
||||
msgid "Chamber temperature cannot be changed in cooling mode while printing."
|
||||
@@ -6306,7 +6343,7 @@ msgstr ""
|
||||
msgid "Upload failed\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "obtaining instance_id failed\n"
|
||||
msgid "Obtaining instance_id failed\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -6563,9 +6600,6 @@ msgstr ""
|
||||
msgid "Layers"
|
||||
msgstr "積層"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "範囲"
|
||||
|
||||
msgid ""
|
||||
"The application cannot run normally because OpenGL version is lower than "
|
||||
"3.2.\n"
|
||||
@@ -7270,7 +7304,7 @@ msgid ""
|
||||
"connected printer.\n"
|
||||
"After syncing, software can optimize printing time and filament usage when "
|
||||
"slicing.\n"
|
||||
"Would you like to sync now ?"
|
||||
"Would you like to sync now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync now"
|
||||
@@ -7299,13 +7333,14 @@ msgstr "プロジェクトを保存"
|
||||
msgid "Importing Model"
|
||||
msgstr "モデルをインポート"
|
||||
|
||||
msgid "prepare 3MF file..."
|
||||
#, fuzzy
|
||||
msgid "Preparing 3MF file..."
|
||||
msgstr "3mfファイルを準備"
|
||||
|
||||
msgid "Download failed, unknown file format."
|
||||
msgstr ""
|
||||
|
||||
msgid "downloading project..."
|
||||
msgid "Downloading project..."
|
||||
msgstr "プロジェクトをダウンロード中"
|
||||
|
||||
msgid "Download failed, File size exception."
|
||||
@@ -7794,6 +7829,18 @@ msgstr ""
|
||||
msgid "By vendor"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimize filaments area height for..."
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid "filaments"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
||||
msgstr ""
|
||||
|
||||
msgid "Features"
|
||||
msgstr ""
|
||||
|
||||
@@ -7805,9 +7852,6 @@ msgid ""
|
||||
"same time and manage multiple devices."
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pop up to select filament grouping mode"
|
||||
msgstr ""
|
||||
|
||||
@@ -8164,10 +8208,10 @@ msgstr "PRE ホスト: api-pre.bambu-lab.com/v1"
|
||||
msgid "Product host"
|
||||
msgstr "PRODホスト"
|
||||
|
||||
msgid "debug save button"
|
||||
msgid "Debug save button"
|
||||
msgstr "保存"
|
||||
|
||||
msgid "save debug settings"
|
||||
msgid "Save debug settings"
|
||||
msgstr "デバッグ設定を保存"
|
||||
|
||||
msgid "DEBUG settings have been saved successfully!"
|
||||
@@ -8457,7 +8501,7 @@ msgid ""
|
||||
"*Automatic mode: Check for calibration before printing. Skip if unnecessary."
|
||||
msgstr ""
|
||||
|
||||
msgid "send completed"
|
||||
msgid "Send complete"
|
||||
msgstr "送信完了"
|
||||
|
||||
msgid "Error code"
|
||||
@@ -8590,7 +8634,7 @@ msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"[ %s ] requires printing in a high-temperature environment.Please close the "
|
||||
"[ %s ] requires printing in a high-temperature environment. Please close the "
|
||||
"door."
|
||||
msgstr ""
|
||||
|
||||
@@ -8978,7 +9022,7 @@ msgid ""
|
||||
"ensure proper printing and achieve their intended effects (e.g., Gyroid, "
|
||||
"Cubic). Rotating the current sparse infill pattern may lead to insufficient "
|
||||
"support. Please proceed with caution and thoroughly check for any potential "
|
||||
"printing issues.Are you sure you want to enable this option?"
|
||||
"printing issues. Are you sure you want to enable this option?"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -9113,9 +9157,6 @@ msgstr ""
|
||||
msgid "Bridging"
|
||||
msgstr ""
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr ""
|
||||
|
||||
msgid "Walls"
|
||||
msgstr "壁面"
|
||||
|
||||
@@ -10163,7 +10204,7 @@ msgstr "X方向 10mm"
|
||||
msgid "Movement step set to 1 mm"
|
||||
msgstr "移動ステップを1mmに設定"
|
||||
|
||||
msgid "keyboard 1-9: set filament for object/part"
|
||||
msgid "Keyboard 1-9: set filament for object/part"
|
||||
msgstr "キー1-9: オブジェクト/パーツのフィラメントを設定"
|
||||
|
||||
msgid "Camera view - Default"
|
||||
@@ -10903,6 +10944,16 @@ msgstr ""
|
||||
"プライムタワーを使用するには、オブジェクトとサポートが同じ積層ピッチを使う必"
|
||||
"要があります"
|
||||
|
||||
msgid ""
|
||||
"For Organic supports, two walls are supported only with the Hollow/Default "
|
||||
"base pattern."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The Lightning base pattern is not supported by this support type; "
|
||||
"Rectilinear will be used instead."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Organic support tree tip diameter must not be smaller than support material "
|
||||
"extrusion width."
|
||||
@@ -12743,6 +12794,49 @@ msgid ""
|
||||
"tower to produce successive infill or sacrificial object extrusions reliably."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer pre-extrusion distance"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion distance for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer pre-extrusion length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion length for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Tower ironing area"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Ironing area for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "mm²"
|
||||
msgstr "mm²"
|
||||
|
||||
msgid "Interface layer purge length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Purge length for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer print temperature"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Print temperature for prime tower interface layer (where different materials "
|
||||
"meet). If set to -1, use max recommended nozzle temperature."
|
||||
msgstr ""
|
||||
|
||||
msgid "Speed of the last cooling move"
|
||||
msgstr "最後の冷却移動の速度"
|
||||
|
||||
@@ -13245,14 +13339,14 @@ msgstr ""
|
||||
"この設定により、壁面を造形時にノズルがランダムで軽微な振動を加えます。これに"
|
||||
"より、表面にザラザラ感が出来上がります。"
|
||||
|
||||
msgid "None (allow paint)"
|
||||
msgstr ""
|
||||
msgid "Painted only"
|
||||
msgstr "塗装のみ"
|
||||
|
||||
msgid "Contour"
|
||||
msgstr ""
|
||||
msgstr "輪郭"
|
||||
|
||||
msgid "Contour and hole"
|
||||
msgstr ""
|
||||
msgstr "輪郭と穴"
|
||||
|
||||
msgid "All walls"
|
||||
msgstr "すべての壁"
|
||||
@@ -14322,9 +14416,6 @@ msgid ""
|
||||
"conical material. A value of 0 will fill all the holes in the model base."
|
||||
msgstr ""
|
||||
|
||||
msgid "mm²"
|
||||
msgstr "mm²"
|
||||
|
||||
msgid "Detect overhang wall"
|
||||
msgstr "オーバーハングを検出"
|
||||
|
||||
@@ -15270,8 +15361,17 @@ msgstr "サポート接触面の造形速度です。"
|
||||
msgid "Base pattern"
|
||||
msgstr "基本パターン"
|
||||
|
||||
msgid "Line pattern of support."
|
||||
msgstr "サポートのサターンです。"
|
||||
msgid ""
|
||||
"Line pattern of support.\n"
|
||||
"\n"
|
||||
"The Default option for Tree supports is Hollow, which means no base pattern. "
|
||||
"For other support types, the Default option is the Rectilinear pattern.\n"
|
||||
"\n"
|
||||
"NOTE: For Organic supports, the two walls are supported only with the Hollow/"
|
||||
"Default base pattern. The Lightning base pattern is supported only by Tree "
|
||||
"Slim/Strong/Hybrid supports. For the other support types, the Rectilinear "
|
||||
"will be used instead of Lightning."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rectilinear grid"
|
||||
msgstr "直線グリッド"
|
||||
@@ -15775,6 +15875,23 @@ msgstr ""
|
||||
msgid "The wall of prime tower will skip the start points of wipe path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable tower interface features"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable optimized prime tower interface behavior when different materials "
|
||||
"meet."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cool down from interface boost during prime tower"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"When interface-layer temperature boost is active, set the nozzle back to "
|
||||
"print temperature at the start of the prime tower so it cools down during "
|
||||
"the tower."
|
||||
msgstr ""
|
||||
|
||||
msgid "Infill gap"
|
||||
msgstr ""
|
||||
|
||||
@@ -17212,7 +17329,7 @@ msgstr ""
|
||||
msgid "Plate Type"
|
||||
msgstr ""
|
||||
|
||||
msgid "filament position"
|
||||
msgid "Filament position"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filament For Calibration"
|
||||
@@ -18090,7 +18207,8 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Printer and all the filament&&process presets that belongs to the printer.\n"
|
||||
"Printer and all the filament and process presets that belongs to the "
|
||||
"printer.\n"
|
||||
"Can be shared with others."
|
||||
msgstr ""
|
||||
|
||||
@@ -18851,7 +18969,7 @@ msgstr ""
|
||||
msgid "Upgrading"
|
||||
msgstr ""
|
||||
|
||||
msgid "syncing"
|
||||
msgid "Syncing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printing Finish"
|
||||
@@ -19401,6 +19519,20 @@ msgstr ""
|
||||
"ABSのような反りやすい素材を印刷する場合、ヒートベッドの温度を適切に上げること"
|
||||
"で、反りが発生する確率を下げることができることをご存知ですか?"
|
||||
|
||||
#~ msgid "Line pattern of support."
|
||||
#~ msgstr "サポートのサターンです。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Failed to install the plug-in. Please check whether it is blocked or "
|
||||
#~ "deleted by anti-virus software."
|
||||
#~ msgstr "プラグインをインストールできませんでした。ご確認ください。"
|
||||
|
||||
#~ msgid "°C"
|
||||
#~ msgstr "°C"
|
||||
|
||||
#~ msgid "travel"
|
||||
#~ msgstr "移動"
|
||||
|
||||
#~ msgid "Replace with STL"
|
||||
#~ msgstr "STLに置き換え"
|
||||
|
||||
@@ -20291,7 +20423,7 @@ msgstr ""
|
||||
#~ "はい - 直線パターンに切り替えます\n"
|
||||
#~ "いいえ - 充填密度をリセットします"
|
||||
|
||||
#~ msgid "Please heat the nozzle to above 170°C before loading filament."
|
||||
#~ msgid "Please heat the nozzle to above 170℃ before loading filament."
|
||||
#~ msgstr ""
|
||||
#~ "フィラメントをロードする前に、ノズル温度を170℃以上に加熱してください"
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-02-12 08:42+0800\n"
|
||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
||||
"PO-Revision-Date: 2025-06-02 17:12+0900\n"
|
||||
"Last-Translator: crwusiz <crwusiz@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
@@ -435,7 +435,7 @@ msgstr ""
|
||||
msgid "Size"
|
||||
msgstr "크기"
|
||||
|
||||
msgid "uniform scale"
|
||||
msgid "Uniform scale"
|
||||
msgstr "균일 배율"
|
||||
|
||||
msgid "Planar"
|
||||
@@ -693,7 +693,7 @@ msgstr "커넥터"
|
||||
msgid "Cut by Plane"
|
||||
msgstr "평면으로 자르기"
|
||||
|
||||
msgid "non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgid "Non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgstr ""
|
||||
"절단 도구로 인해 메인폴드가 아닌 가장자리가 발생했는데 지금 수정하시겠습니까?"
|
||||
|
||||
@@ -2232,31 +2232,37 @@ msgstr ""
|
||||
msgid "Select All"
|
||||
msgstr "모두 선택"
|
||||
|
||||
msgid "select all objects on current plate"
|
||||
msgid "Select all objects on the current plate"
|
||||
msgstr "현재 플레이트의 모든 객체 선택"
|
||||
|
||||
msgid "Select All Plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select all objects on all plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete All"
|
||||
msgstr "모두 삭제"
|
||||
|
||||
msgid "delete all objects on current plate"
|
||||
msgid "Delete all objects on the current plate"
|
||||
msgstr "현재 플레이트의 모든 객체 삭제"
|
||||
|
||||
msgid "Arrange"
|
||||
msgstr "정렬"
|
||||
|
||||
msgid "arrange current plate"
|
||||
msgid "Arrange current plate"
|
||||
msgstr "현재 플레이트 정렬"
|
||||
|
||||
msgid "Reload All"
|
||||
msgstr "모두 다시 불러오기"
|
||||
|
||||
msgid "reload all from disk"
|
||||
msgid "Reload all from disk"
|
||||
msgstr "디스크에서 모두 다시 로드"
|
||||
|
||||
msgid "Auto Rotate"
|
||||
msgstr "자동 회전"
|
||||
|
||||
msgid "auto rotate current plate"
|
||||
msgid "Auto rotate current plate"
|
||||
msgstr "현재 플레이트 자동 정렬"
|
||||
|
||||
msgid "Delete Plate"
|
||||
@@ -2562,7 +2568,8 @@ msgstr "높이 범위 추가"
|
||||
msgid "Invalid numeric."
|
||||
msgstr "잘못된 숫자입니다."
|
||||
|
||||
msgid "one cell can only be copied to one or multiple cells in the same column"
|
||||
#, fuzzy
|
||||
msgid "One cell can only be copied to one or more cells in the same column."
|
||||
msgstr "하나의 셀은 동일한 열에 있는 하나 이상의 셀에만 복사할 수 있습니다"
|
||||
|
||||
msgid "Copying multiple cells is not supported."
|
||||
@@ -2815,9 +2822,9 @@ msgid "Top"
|
||||
msgstr "위"
|
||||
|
||||
msgid ""
|
||||
"The fan controls the temperature during printing to improve print "
|
||||
"quality.The system automatically adjusts the fan's switch and speed "
|
||||
"according to different printing materials."
|
||||
"The fan controls the temperature during printing to improve print quality. "
|
||||
"The system automatically adjusts the fan's switch and speed according to "
|
||||
"different printing materials."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -3648,8 +3655,7 @@ msgstr ""
|
||||
msgid "Please unload all filament before switching."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"AMS type switching needs firmware update, taking about 30s. Switch now ?"
|
||||
msgid "AMS type switching needs firmware update, taking about 30s. Switch now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Arrange AMS Order"
|
||||
@@ -3674,13 +3680,12 @@ msgstr ""
|
||||
"확인한 후 다시 시도하세요."
|
||||
|
||||
msgid ""
|
||||
"Failed to install the plug-in. Please check whether it is blocked or deleted "
|
||||
"by anti-virus software."
|
||||
"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 "
|
||||
"deleted by anti-virus software."
|
||||
msgstr ""
|
||||
"플러그인을 설치하지 못했습니다. 안티바이러스 소프트웨어에 의해 차단 또는 삭제"
|
||||
"되었는지 확인하세요."
|
||||
|
||||
msgid "click here to see more info"
|
||||
msgid "Click here to see more info"
|
||||
msgstr "자세한 내용을 보려면 여기를 클릭하세요"
|
||||
|
||||
msgid ""
|
||||
@@ -4195,7 +4200,7 @@ msgstr ""
|
||||
msgid "Nozzle offset calibration"
|
||||
msgstr ""
|
||||
|
||||
msgid "high temperature auto bed leveling"
|
||||
msgid "High temperature auto bed leveling"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto Check: Quick Release Lever"
|
||||
@@ -4473,6 +4478,12 @@ msgstr "프린터 설정"
|
||||
msgid "parameter name"
|
||||
msgstr "매개변수 이름"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "범위"
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "값이 범위를 벗어났습니다."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s can't be a percentage"
|
||||
msgstr "%s 는 백분율일 수 없습니다"
|
||||
@@ -4488,9 +4499,6 @@ msgstr "매개변수 유효성 검사"
|
||||
msgid "Value %s is out of range. The valid range is from %d to %d."
|
||||
msgstr "값 %s이 범위를 벗어났습니다. 유효한 범위는 %d에서 %d까지입니다."
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "값이 범위를 벗어났습니다."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Is it %s%% or %s %s?\n"
|
||||
@@ -4541,7 +4549,7 @@ msgid "Line Width"
|
||||
msgstr "선 너비"
|
||||
|
||||
msgid "Actual Speed"
|
||||
msgstr ""
|
||||
msgstr "실제 속도"
|
||||
|
||||
msgid "Fan Speed"
|
||||
msgstr "팬 속도"
|
||||
@@ -4550,7 +4558,7 @@ msgid "Flow"
|
||||
msgstr "압출량"
|
||||
|
||||
msgid "Actual Flow"
|
||||
msgstr ""
|
||||
msgstr "실제 흐름"
|
||||
|
||||
msgid "Tool"
|
||||
msgstr "툴"
|
||||
@@ -4561,6 +4569,9 @@ msgstr "레이어 시간"
|
||||
msgid "Layer Time (log)"
|
||||
msgstr "레이어 시간 (log)"
|
||||
|
||||
msgid "Pressure Advance"
|
||||
msgstr ""
|
||||
|
||||
msgid "Noop"
|
||||
msgstr ""
|
||||
|
||||
@@ -4648,9 +4659,6 @@ msgstr ""
|
||||
msgid "Fan speed"
|
||||
msgstr "팬 속도"
|
||||
|
||||
msgid "°C"
|
||||
msgstr "°C"
|
||||
|
||||
msgid "Time"
|
||||
msgstr "시간"
|
||||
|
||||
@@ -4685,6 +4693,9 @@ msgid "Color: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Actual Speed: "
|
||||
msgstr "실제 속도: "
|
||||
|
||||
msgid "PA: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Statistics of All Plates"
|
||||
@@ -4799,13 +4810,13 @@ msgid "Speed (mm/s)"
|
||||
msgstr "속도 (mm/s)"
|
||||
|
||||
msgid "Actual Speed (mm/s)"
|
||||
msgstr ""
|
||||
msgstr "실제 속도 (mm/s)"
|
||||
|
||||
msgid "Fan Speed (%)"
|
||||
msgstr "팬 속도 (%)"
|
||||
|
||||
msgid "Temperature (°C)"
|
||||
msgstr "온도 (°C)"
|
||||
msgid "Temperature (℃)"
|
||||
msgstr "온도 (℃)"
|
||||
|
||||
msgid "Volumetric flow rate (mm³/s)"
|
||||
msgstr "압출 압출량 (mm³/s)"
|
||||
@@ -4822,9 +4833,6 @@ msgstr "필라멘트 변경"
|
||||
msgid "Options"
|
||||
msgstr "옵션"
|
||||
|
||||
msgid "travel"
|
||||
msgstr "이동"
|
||||
|
||||
msgid "Extruder"
|
||||
msgstr "압출기"
|
||||
|
||||
@@ -4919,16 +4927,13 @@ msgstr "편집 영역 증가/감소"
|
||||
msgid "Sequence"
|
||||
msgstr "순서"
|
||||
|
||||
msgid "object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "part selection"
|
||||
msgid "Object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys can quickly change the color of objects"
|
||||
msgid "Number keys can quickly change the color of objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -5078,6 +5083,30 @@ msgstr ""
|
||||
msgid "Fit camera to scene or selected object."
|
||||
msgstr ""
|
||||
|
||||
msgid "3D Navigator"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom button"
|
||||
msgstr ""
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr "오버행"
|
||||
|
||||
msgid "Outline"
|
||||
msgstr ""
|
||||
|
||||
msgid "Perspective"
|
||||
msgstr ""
|
||||
|
||||
msgid "Axes"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Labels"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "칠하기 도구 모음"
|
||||
|
||||
@@ -5160,7 +5189,7 @@ msgid "Only the object being edited is visible."
|
||||
msgstr "편집 중인 객체만 표시됩니다."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgid "Filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -5579,6 +5608,12 @@ msgstr "3D 내비게이터 표시"
|
||||
msgid "Show 3D navigator in Prepare and Preview scene."
|
||||
msgstr "준비 및 미리보기 장면에서 3D 내비게이터 표시"
|
||||
|
||||
msgid "Show Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Show Gridlines on plate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset Window Layout"
|
||||
msgstr "창 레이아웃 재설정"
|
||||
|
||||
@@ -6309,7 +6344,7 @@ msgstr "레이어: %d/%d"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Please heat the nozzle to above 170°C before loading or unloading filament."
|
||||
"Please heat the nozzle to above 170℃ before loading or unloading filament."
|
||||
msgstr ""
|
||||
"필라멘트를 로드하거나 언로드하기 전에 노즐을 170도 이상으로 가열하세요."
|
||||
|
||||
@@ -6419,7 +6454,7 @@ msgstr "출력 결과를 동기화하는 중입니다. 몇 초 후에 다시 시
|
||||
msgid "Upload failed\n"
|
||||
msgstr "업로드 실패\n"
|
||||
|
||||
msgid "obtaining instance_id failed\n"
|
||||
msgid "Obtaining instance_id failed\n"
|
||||
msgstr "instance_id를 가져오지 못했습니다.\n"
|
||||
|
||||
msgid ""
|
||||
@@ -6693,9 +6728,6 @@ msgstr "잘라내기 커넥터"
|
||||
msgid "Layers"
|
||||
msgstr "레이어"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "범위"
|
||||
|
||||
msgid ""
|
||||
"The application cannot run normally because OpenGL version is lower than "
|
||||
"3.2.\n"
|
||||
@@ -7414,7 +7446,7 @@ msgid ""
|
||||
"connected printer.\n"
|
||||
"After syncing, software can optimize printing time and filament usage when "
|
||||
"slicing.\n"
|
||||
"Would you like to sync now ?"
|
||||
"Would you like to sync now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync now"
|
||||
@@ -7444,13 +7476,14 @@ msgstr "프로젝트 저장"
|
||||
msgid "Importing Model"
|
||||
msgstr "모델 가져오는 중"
|
||||
|
||||
msgid "prepare 3MF file..."
|
||||
#, fuzzy
|
||||
msgid "Preparing 3MF file..."
|
||||
msgstr "3mf 파일 준비..."
|
||||
|
||||
msgid "Download failed, unknown file format."
|
||||
msgstr "다운로드에 실패했습니다. 파일 형식을 알 수 없습니다."
|
||||
|
||||
msgid "downloading project..."
|
||||
msgid "Downloading project..."
|
||||
msgstr "프로젝트 다운로드 중 ..."
|
||||
|
||||
msgid "Download failed, File size exception."
|
||||
@@ -7952,6 +7985,18 @@ msgstr ""
|
||||
msgid "By vendor"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimize filaments area height for..."
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid "filaments"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
||||
msgstr ""
|
||||
|
||||
msgid "Features"
|
||||
msgstr ""
|
||||
|
||||
@@ -7964,9 +8009,6 @@ msgid ""
|
||||
msgstr ""
|
||||
"활성화하면 여러 장치에 동시에 작업을 보내고 여러 장치를 관리할 수 있습니다."
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pop up to select filament grouping mode"
|
||||
msgstr ""
|
||||
|
||||
@@ -8332,10 +8374,10 @@ msgstr "PRE host: api-pre.bambu-lab.com/v1"
|
||||
msgid "Product host"
|
||||
msgstr "제품 호스트"
|
||||
|
||||
msgid "debug save button"
|
||||
msgid "Debug save button"
|
||||
msgstr "디버그 저장 버튼"
|
||||
|
||||
msgid "save debug settings"
|
||||
msgid "Save debug settings"
|
||||
msgstr "디버그 설정 저장"
|
||||
|
||||
msgid "DEBUG settings have been saved successfully!"
|
||||
@@ -8625,7 +8667,7 @@ msgid ""
|
||||
"*Automatic mode: Check for calibration before printing. Skip if unnecessary."
|
||||
msgstr ""
|
||||
|
||||
msgid "send completed"
|
||||
msgid "Send complete"
|
||||
msgstr "전송 완료"
|
||||
|
||||
msgid "Error code"
|
||||
@@ -8766,7 +8808,7 @@ msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"[ %s ] requires printing in a high-temperature environment.Please close the "
|
||||
"[ %s ] requires printing in a high-temperature environment. Please close the "
|
||||
"door."
|
||||
msgstr ""
|
||||
|
||||
@@ -9177,7 +9219,7 @@ msgid ""
|
||||
"ensure proper printing and achieve their intended effects (e.g., Gyroid, "
|
||||
"Cubic). Rotating the current sparse infill pattern may lead to insufficient "
|
||||
"support. Please proceed with caution and thoroughly check for any potential "
|
||||
"printing issues.Are you sure you want to enable this option?"
|
||||
"printing issues. Are you sure you want to enable this option?"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -9323,9 +9365,6 @@ msgstr "벽과 표면"
|
||||
msgid "Bridging"
|
||||
msgstr "브릿지"
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr "오버행"
|
||||
|
||||
msgid "Walls"
|
||||
msgstr "벽"
|
||||
|
||||
@@ -10417,7 +10456,7 @@ msgstr "선택 항목을 +X 방향으로 10mm 이동"
|
||||
msgid "Movement step set to 1 mm"
|
||||
msgstr "1mm로 이동"
|
||||
|
||||
msgid "keyboard 1-9: set filament for object/part"
|
||||
msgid "Keyboard 1-9: set filament for object/part"
|
||||
msgstr "키보드 1-9: 객체/부품에 필라멘트 할당"
|
||||
|
||||
msgid "Camera view - Default"
|
||||
@@ -11171,6 +11210,16 @@ msgid ""
|
||||
"The prime tower requires that support has the same layer height with object."
|
||||
msgstr "프라임 타워는 서포트가 객체와 동일한 레이어 높이를 갖도록 요구합니다."
|
||||
|
||||
msgid ""
|
||||
"For Organic supports, two walls are supported only with the Hollow/Default "
|
||||
"base pattern."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The Lightning base pattern is not supported by this support type; "
|
||||
"Rectilinear will be used instead."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Organic support tree tip diameter must not be smaller than support material "
|
||||
"extrusion width."
|
||||
@@ -13360,6 +13409,49 @@ msgstr ""
|
||||
"생 객체로 청소하기 전에 Orca Slicer은 항상 이 양의 재료를 프라임 타워로 프라"
|
||||
"이밍하여 연속적인 채우기 또는 희생 물체 압출을 안정적으로 생성합니다."
|
||||
|
||||
msgid "Interface layer pre-extrusion distance"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion distance for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer pre-extrusion length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion length for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Tower ironing area"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Ironing area for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "mm²"
|
||||
msgstr "mm²"
|
||||
|
||||
msgid "Interface layer purge length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Purge length for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer print temperature"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Print temperature for prime tower interface layer (where different materials "
|
||||
"meet). If set to -1, use max recommended nozzle temperature."
|
||||
msgstr ""
|
||||
|
||||
msgid "Speed of the last cooling move"
|
||||
msgstr "마지막 냉각 이동 속도"
|
||||
|
||||
@@ -13908,8 +14000,8 @@ msgstr ""
|
||||
"벽을 출력하는 동안 무작위로 지터가 발생하여 표면이 거칠게 보입니다. 이 설정"
|
||||
"은 퍼지 위치를 제어합니다"
|
||||
|
||||
msgid "None (allow paint)"
|
||||
msgstr ""
|
||||
msgid "Painted only"
|
||||
msgstr "도색만"
|
||||
|
||||
msgid "Contour"
|
||||
msgstr "윤곽"
|
||||
@@ -15102,9 +15194,6 @@ msgstr ""
|
||||
"원뿔형 재료로 채워지기 전에 모델 베이스에 있는 구멍의 최대 면적입니다. 값이 0"
|
||||
"이면 모델 베이스의 모든 구멍이 채워집니다."
|
||||
|
||||
msgid "mm²"
|
||||
msgstr "mm²"
|
||||
|
||||
msgid "Detect overhang wall"
|
||||
msgstr "오버행 벽 감지"
|
||||
|
||||
@@ -16166,8 +16255,17 @@ msgstr "서포트 접점 속도"
|
||||
msgid "Base pattern"
|
||||
msgstr "기본 패턴"
|
||||
|
||||
msgid "Line pattern of support."
|
||||
msgstr "서포트 기본 패턴"
|
||||
msgid ""
|
||||
"Line pattern of support.\n"
|
||||
"\n"
|
||||
"The Default option for Tree supports is Hollow, which means no base pattern. "
|
||||
"For other support types, the Default option is the Rectilinear pattern.\n"
|
||||
"\n"
|
||||
"NOTE: For Organic supports, the two walls are supported only with the Hollow/"
|
||||
"Default base pattern. The Lightning base pattern is supported only by Tree "
|
||||
"Slim/Strong/Hybrid supports. For the other support types, the Rectilinear "
|
||||
"will be used instead of Lightning."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rectilinear grid"
|
||||
msgstr "직선 격자"
|
||||
@@ -16729,6 +16827,23 @@ msgstr ""
|
||||
msgid "The wall of prime tower will skip the start points of wipe path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable tower interface features"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable optimized prime tower interface behavior when different materials "
|
||||
"meet."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cool down from interface boost during prime tower"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"When interface-layer temperature boost is active, set the nozzle back to "
|
||||
"print temperature at the start of the prime tower so it cools down during "
|
||||
"the tower."
|
||||
msgstr ""
|
||||
|
||||
msgid "Infill gap"
|
||||
msgstr ""
|
||||
|
||||
@@ -18270,7 +18385,7 @@ msgstr ""
|
||||
msgid "Plate Type"
|
||||
msgstr "플레이트 타입"
|
||||
|
||||
msgid "filament position"
|
||||
msgid "Filament position"
|
||||
msgstr "필라멘트 위치"
|
||||
|
||||
msgid "Filament For Calibration"
|
||||
@@ -19203,7 +19318,8 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Printer and all the filament&&process presets that belongs to the printer.\n"
|
||||
"Printer and all the filament and process presets that belongs to the "
|
||||
"printer.\n"
|
||||
"Can be shared with others."
|
||||
msgstr ""
|
||||
"프린터와 프린터에 속한 모든 필라멘트 및 프로세스 사전 설정.\n"
|
||||
@@ -20052,7 +20168,7 @@ msgstr "작업 내역이 없습니다!"
|
||||
msgid "Upgrading"
|
||||
msgstr "업그레이드 하기"
|
||||
|
||||
msgid "syncing"
|
||||
msgid "Syncing"
|
||||
msgstr "동기화"
|
||||
|
||||
msgid "Printing Finish"
|
||||
@@ -20658,6 +20774,22 @@ msgstr ""
|
||||
"ABS와 같이 뒤틀림이 발생하기 쉬운 소재를 출력할 때, 히트베드 온도를 적절하게 "
|
||||
"높이면 뒤틀림 가능성을 줄일 수 있다는 사실을 알고 계셨나요?"
|
||||
|
||||
#~ msgid "Line pattern of support."
|
||||
#~ msgstr "서포트 기본 패턴"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Failed to install the plug-in. Please check whether it is blocked or "
|
||||
#~ "deleted by anti-virus software."
|
||||
#~ msgstr ""
|
||||
#~ "플러그인을 설치하지 못했습니다. 안티바이러스 소프트웨어에 의해 차단 또는 "
|
||||
#~ "삭제되었는지 확인하세요."
|
||||
|
||||
#~ msgid "°C"
|
||||
#~ msgstr "°C"
|
||||
|
||||
#~ msgid "travel"
|
||||
#~ msgstr "이동"
|
||||
|
||||
#~ msgid "Replace with STL"
|
||||
#~ msgstr "STL 파일로 교체"
|
||||
|
||||
@@ -20826,8 +20958,8 @@ msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid ""
|
||||
#~ "The recommended minimum temperature is less than 190°C or the recommended "
|
||||
#~ "maximum temperature is greater than 300°C.\n"
|
||||
#~ "The recommended minimum temperature is less than 190℃ or the recommended "
|
||||
#~ "maximum temperature is greater than 300℃.\n"
|
||||
#~ msgstr ""
|
||||
#~ "권장 최저 온도는 190도 미만 또는 권장 최고 온도는 300도 이상입니다.\n"
|
||||
|
||||
@@ -22882,7 +23014,7 @@ msgstr ""
|
||||
#~ "예 - 자동으로 직선 패턴으로 전환합니다\n"
|
||||
#~ "아니요 - 밀도를 기본값(100%가 아닌 값)으로 자동 재설정합니다"
|
||||
|
||||
#~ msgid "Please heat the nozzle to above 170°C before loading filament."
|
||||
#~ msgid "Please heat the nozzle to above 170℃ before loading filament."
|
||||
#~ msgstr "필라멘트를 로드하기 전에 노즐을 170도 이상으로 가열하십시오."
|
||||
|
||||
#~ msgid "Show G-code window"
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-02-12 08:42+0800\n"
|
||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
||||
"PO-Revision-Date: 2025-10-25 23:01+0300\n"
|
||||
"Last-Translator: Gintaras Kučinskas <sharanchius@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
@@ -438,7 +438,7 @@ msgstr "Detalės koordinatės"
|
||||
msgid "Size"
|
||||
msgstr "Dydis"
|
||||
|
||||
msgid "uniform scale"
|
||||
msgid "Uniform scale"
|
||||
msgstr "vienoda skalė"
|
||||
|
||||
msgid "Planar"
|
||||
@@ -700,7 +700,7 @@ msgstr "Jungtis"
|
||||
msgid "Cut by Plane"
|
||||
msgstr "Iškirpti su plokštuma"
|
||||
|
||||
msgid "non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgid "Non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgstr ""
|
||||
"netinkami kraštai atsirado dėl pjovimo įrankio. Ar norite sutvarkyti dabar?"
|
||||
|
||||
@@ -921,7 +921,7 @@ msgstr "Grąžinti šriftą į pradinę būseną."
|
||||
|
||||
#, boost-format
|
||||
msgid "Font \"%1%\" can't be selected."
|
||||
msgstr "Nepavyksta pasirinkti \"%1%\" šrifto ."
|
||||
msgstr "Nepavyksta pasirinkti \"%1%\" šrifto."
|
||||
|
||||
msgid "Operation"
|
||||
msgstr "Operacija"
|
||||
@@ -2256,31 +2256,37 @@ msgstr ""
|
||||
msgid "Select All"
|
||||
msgstr "Pasirinkti viską"
|
||||
|
||||
msgid "select all objects on current plate"
|
||||
msgid "Select all objects on the current plate"
|
||||
msgstr "pasirinkti visus objektus pasirinktoje plokštėje"
|
||||
|
||||
msgid "Select All Plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select all objects on all plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete All"
|
||||
msgstr "Ištrinti visus"
|
||||
|
||||
msgid "delete all objects on current plate"
|
||||
msgid "Delete all objects on the current plate"
|
||||
msgstr "ištrinti visus objektus pasirinktoje plokštėje"
|
||||
|
||||
msgid "Arrange"
|
||||
msgstr "Išdėstyti"
|
||||
|
||||
msgid "arrange current plate"
|
||||
msgid "Arrange current plate"
|
||||
msgstr "išdėstyti dabartinės plokštės objektus"
|
||||
|
||||
msgid "Reload All"
|
||||
msgstr "Pakartotinai užkrauti viską"
|
||||
|
||||
msgid "reload all from disk"
|
||||
msgid "Reload all from disk"
|
||||
msgstr "dar kartą užkrauti viską iš disko"
|
||||
|
||||
msgid "Auto Rotate"
|
||||
msgstr "Automatinis pasukimas"
|
||||
|
||||
msgid "auto rotate current plate"
|
||||
msgid "Auto rotate current plate"
|
||||
msgstr "utomatiškai pasukti dabartinę plokštę"
|
||||
|
||||
msgid "Delete Plate"
|
||||
@@ -2608,7 +2614,8 @@ msgstr "Pridėti aukščio ribas"
|
||||
msgid "Invalid numeric."
|
||||
msgstr "Netinkamas skaičius."
|
||||
|
||||
msgid "one cell can only be copied to one or multiple cells in the same column"
|
||||
#, fuzzy
|
||||
msgid "One cell can only be copied to one or more cells in the same column."
|
||||
msgstr ""
|
||||
"vieną langelį galima nukopijuoti tik į vieną ar daugiau to paties stulpelio "
|
||||
"langelių"
|
||||
@@ -2864,9 +2871,9 @@ msgid "Top"
|
||||
msgstr "Viršutinis"
|
||||
|
||||
msgid ""
|
||||
"The fan controls the temperature during printing to improve print "
|
||||
"quality.The system automatically adjusts the fan's switch and speed "
|
||||
"according to different printing materials."
|
||||
"The fan controls the temperature during printing to improve print quality. "
|
||||
"The system automatically adjusts the fan's switch and speed according to "
|
||||
"different printing materials."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -3715,8 +3722,7 @@ msgstr ""
|
||||
msgid "Please unload all filament before switching."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"AMS type switching needs firmware update, taking about 30s. Switch now ?"
|
||||
msgid "AMS type switching needs firmware update, taking about 30s. Switch now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Arrange AMS Order"
|
||||
@@ -3741,13 +3747,12 @@ msgstr ""
|
||||
"programinę įrangą, ir bandykite dar kartą."
|
||||
|
||||
msgid ""
|
||||
"Failed to install the plug-in. Please check whether it is blocked or deleted "
|
||||
"by anti-virus software."
|
||||
"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 "
|
||||
"deleted by anti-virus software."
|
||||
msgstr ""
|
||||
"Nepavyko įdiegti papildinio. Patikrinkite, ar jo neblokuoja arba neištrina "
|
||||
"antivirusinė programinė įranga."
|
||||
|
||||
msgid "click here to see more info"
|
||||
msgid "Click here to see more info"
|
||||
msgstr "spustelėkite norėdami gauti daugiau informacijos"
|
||||
|
||||
msgid ""
|
||||
@@ -4293,7 +4298,7 @@ msgstr ""
|
||||
msgid "Nozzle offset calibration"
|
||||
msgstr ""
|
||||
|
||||
msgid "high temperature auto bed leveling"
|
||||
msgid "High temperature auto bed leveling"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto Check: Quick Release Lever"
|
||||
@@ -4578,6 +4583,12 @@ msgstr "Spausdintuvo nustatymai"
|
||||
msgid "parameter name"
|
||||
msgstr "parametro pavadinimas"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "Diapazonas"
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "Dydis netelpa į ribas."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s can't be a percentage"
|
||||
msgstr "%s negali būti procentai"
|
||||
@@ -4593,9 +4604,6 @@ msgstr "Parametrų patvirtinimas"
|
||||
msgid "Value %s is out of range. The valid range is from %d to %d."
|
||||
msgstr "Dydis %s netelpa į ribas. Tinkami dydžiai yra nuo %d iki %d."
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "Dydis netelpa į ribas."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Is it %s%% or %s %s?\n"
|
||||
@@ -4650,7 +4658,7 @@ msgid "Line Width"
|
||||
msgstr "Linijos plotis"
|
||||
|
||||
msgid "Actual Speed"
|
||||
msgstr ""
|
||||
msgstr "Faktinis greitis"
|
||||
|
||||
msgid "Fan Speed"
|
||||
msgstr "Ventiliatoriaus greitis"
|
||||
@@ -4659,7 +4667,7 @@ msgid "Flow"
|
||||
msgstr "Srautas"
|
||||
|
||||
msgid "Actual Flow"
|
||||
msgstr ""
|
||||
msgstr "Faktinis srautas"
|
||||
|
||||
msgid "Tool"
|
||||
msgstr "Įrankis"
|
||||
@@ -4670,6 +4678,9 @@ msgstr "Sluoksnio laikas"
|
||||
msgid "Layer Time (log)"
|
||||
msgstr "Sluoksnio laikas (log)"
|
||||
|
||||
msgid "Pressure Advance"
|
||||
msgstr ""
|
||||
|
||||
msgid "Noop"
|
||||
msgstr ""
|
||||
|
||||
@@ -4757,9 +4768,6 @@ msgstr ""
|
||||
msgid "Fan speed"
|
||||
msgstr "Ventiliatoriaus greitis"
|
||||
|
||||
msgid "°C"
|
||||
msgstr "°C"
|
||||
|
||||
msgid "Time"
|
||||
msgstr "Laikas"
|
||||
|
||||
@@ -4794,6 +4802,9 @@ msgid "Color: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Actual Speed: "
|
||||
msgstr "Faktinis greitis: "
|
||||
|
||||
msgid "PA: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Statistics of All Plates"
|
||||
@@ -4908,13 +4919,13 @@ msgid "Speed (mm/s)"
|
||||
msgstr "Greitis (mm/s)"
|
||||
|
||||
msgid "Actual Speed (mm/s)"
|
||||
msgstr ""
|
||||
msgstr "Faktinis greitis (mm/s)"
|
||||
|
||||
msgid "Fan Speed (%)"
|
||||
msgstr "Ventiliatoriaus greitis (%)"
|
||||
|
||||
msgid "Temperature (°C)"
|
||||
msgstr "Temperatūra (°C)"
|
||||
msgid "Temperature (℃)"
|
||||
msgstr "Temperatūra (℃)"
|
||||
|
||||
msgid "Volumetric flow rate (mm³/s)"
|
||||
msgstr "Tūrinis srautas (mm³/s)"
|
||||
@@ -4931,9 +4942,6 @@ msgstr "Gijų keitimai"
|
||||
msgid "Options"
|
||||
msgstr "Parinktys"
|
||||
|
||||
msgid "travel"
|
||||
msgstr "judėjimas"
|
||||
|
||||
msgid "Extruder"
|
||||
msgstr "Ekstruderis"
|
||||
|
||||
@@ -5031,16 +5039,13 @@ msgstr "Padidinti / sumažinti redagavimo sritį"
|
||||
msgid "Sequence"
|
||||
msgstr "Seka"
|
||||
|
||||
msgid "object selection"
|
||||
msgid "Object selection"
|
||||
msgstr "objekto pasirinkimas"
|
||||
|
||||
msgid "part selection"
|
||||
msgstr "detalės pasirinkimas"
|
||||
|
||||
msgid "number keys"
|
||||
msgstr "skaičių klavišai"
|
||||
|
||||
msgid "number keys can quickly change the color of objects"
|
||||
msgid "Number keys can quickly change the color of objects"
|
||||
msgstr "skaičių klavišais galima greitai pakeisti objektų spalvą"
|
||||
|
||||
msgid ""
|
||||
@@ -5190,6 +5195,30 @@ msgstr ""
|
||||
msgid "Fit camera to scene or selected object."
|
||||
msgstr ""
|
||||
|
||||
msgid "3D Navigator"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom button"
|
||||
msgstr ""
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr "Iškyšos"
|
||||
|
||||
msgid "Outline"
|
||||
msgstr ""
|
||||
|
||||
msgid "Perspective"
|
||||
msgstr ""
|
||||
|
||||
msgid "Axes"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Labels"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "Piešimo įrankių juosta"
|
||||
|
||||
@@ -5272,7 +5301,7 @@ msgid "Only the object being edited is visible."
|
||||
msgstr "Matomas tik redaguojamas objektas."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgid "Filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -5693,6 +5722,12 @@ msgstr "Rodyti 3D navigatorių"
|
||||
msgid "Show 3D navigator in Prepare and Preview scene."
|
||||
msgstr "Rodyti 3D navigatorių paruošimo ir peržiūros scenose."
|
||||
|
||||
msgid "Show Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Show Gridlines on plate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset Window Layout"
|
||||
msgstr "Atstatyti lango išdėstymą"
|
||||
|
||||
@@ -6442,7 +6477,7 @@ msgstr "Sluoksnis: %d/%d"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Please heat the nozzle to above 170°C before loading or unloading filament."
|
||||
"Please heat the nozzle to above 170℃ before loading or unloading filament."
|
||||
msgstr ""
|
||||
"Prašome prieš įtraukiant ar išstumiant giją įkaitinti purkštuką virš 170 "
|
||||
"laipsnių."
|
||||
@@ -6555,7 +6590,7 @@ msgstr ""
|
||||
msgid "Upload failed\n"
|
||||
msgstr "Įkėlimas nepavyko\n"
|
||||
|
||||
msgid "obtaining instance_id failed\n"
|
||||
msgid "Obtaining instance_id failed\n"
|
||||
msgstr "nepavyko gauti instance_id\n"
|
||||
|
||||
msgid ""
|
||||
@@ -6839,9 +6874,6 @@ msgstr "Pjūvių jungtys"
|
||||
msgid "Layers"
|
||||
msgstr "Sluoksniai"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "Diapazonas"
|
||||
|
||||
msgid ""
|
||||
"The application cannot run normally because OpenGL version is lower than "
|
||||
"3.2.\n"
|
||||
@@ -7569,7 +7601,7 @@ msgid ""
|
||||
"connected printer.\n"
|
||||
"After syncing, software can optimize printing time and filament usage when "
|
||||
"slicing.\n"
|
||||
"Would you like to sync now ?"
|
||||
"Would you like to sync now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync now"
|
||||
@@ -7600,13 +7632,14 @@ msgstr "Išsaugoti projektą"
|
||||
msgid "Importing Model"
|
||||
msgstr "Importuojamas modelis"
|
||||
|
||||
msgid "prepare 3MF file..."
|
||||
#, fuzzy
|
||||
msgid "Preparing 3MF file..."
|
||||
msgstr "paruošti 3MF failą..."
|
||||
|
||||
msgid "Download failed, unknown file format."
|
||||
msgstr "Atsisuntimas nepavyko, nežinomas failo tipas."
|
||||
|
||||
msgid "downloading project..."
|
||||
msgid "Downloading project..."
|
||||
msgstr "projektas atsisiunčiamas..."
|
||||
|
||||
msgid "Download failed, File size exception."
|
||||
@@ -8121,6 +8154,18 @@ msgstr ""
|
||||
msgid "By vendor"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimize filaments area height for..."
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr "(Reikia paleisti iš naujo)"
|
||||
|
||||
msgid "filaments"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
||||
msgstr ""
|
||||
|
||||
msgid "Features"
|
||||
msgstr ""
|
||||
|
||||
@@ -8134,9 +8179,6 @@ msgstr ""
|
||||
"Kai įjungta ši funkcija, jūs galite siųsti užduotį keliems įrenginiams vienu "
|
||||
"metu, taip apt kontroliuoti keletą įrenginių."
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr "(Reikia paleisti iš naujo)"
|
||||
|
||||
msgid "Pop up to select filament grouping mode"
|
||||
msgstr ""
|
||||
|
||||
@@ -8512,10 +8554,10 @@ msgstr "PRE hostas: api-pre.bambu-lab.com/v1"
|
||||
msgid "Product host"
|
||||
msgstr "Produkto hostas"
|
||||
|
||||
msgid "debug save button"
|
||||
msgid "Debug save button"
|
||||
msgstr "derinimo išsaugojimo mygtukas"
|
||||
|
||||
msgid "save debug settings"
|
||||
msgid "Save debug settings"
|
||||
msgstr "išsaugoti testavimo nuostatas"
|
||||
|
||||
msgid "DEBUG settings have been saved successfully!"
|
||||
@@ -8808,7 +8850,7 @@ msgid ""
|
||||
"*Automatic mode: Check for calibration before printing. Skip if unnecessary."
|
||||
msgstr ""
|
||||
|
||||
msgid "send completed"
|
||||
msgid "Send complete"
|
||||
msgstr "siuntimas baigtas"
|
||||
|
||||
msgid "Error code"
|
||||
@@ -8954,7 +8996,7 @@ msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"[ %s ] requires printing in a high-temperature environment.Please close the "
|
||||
"[ %s ] requires printing in a high-temperature environment. Please close the "
|
||||
"door."
|
||||
msgstr ""
|
||||
|
||||
@@ -9386,7 +9428,7 @@ msgid ""
|
||||
"ensure proper printing and achieve their intended effects (e.g., Gyroid, "
|
||||
"Cubic). Rotating the current sparse infill pattern may lead to insufficient "
|
||||
"support. Please proceed with caution and thoroughly check for any potential "
|
||||
"printing issues.Are you sure you want to enable this option?"
|
||||
"printing issues. Are you sure you want to enable this option?"
|
||||
msgstr ""
|
||||
"Užpildymo modeliai paprastai yra suprojektuoti taip, kad automatiškai "
|
||||
"tvarkytų sukimąsi, siekiant užtikrinti tinkamą spausdinimą ir pasiekti "
|
||||
@@ -9548,9 +9590,6 @@ msgstr "Sienos ir paviršiai"
|
||||
msgid "Bridging"
|
||||
msgstr "Tiltai"
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr "Iškyšos"
|
||||
|
||||
msgid "Walls"
|
||||
msgstr "Sienos"
|
||||
|
||||
@@ -10677,7 +10716,7 @@ msgstr "Perkelti pasirinktą10 mm teigiama X kryptimi"
|
||||
msgid "Movement step set to 1 mm"
|
||||
msgstr "Judėjimo žingsnis nustatytas į 1 mm"
|
||||
|
||||
msgid "keyboard 1-9: set filament for object/part"
|
||||
msgid "Keyboard 1-9: set filament for object/part"
|
||||
msgstr "klaviatūra 1-9: nustatyti objekto/dalies giją"
|
||||
|
||||
msgid "Camera view - Default"
|
||||
@@ -11454,6 +11493,16 @@ msgstr ""
|
||||
"Pagrindinis bokštas reikalauja, kad atramos ir objekto sluoksnio aukštis "
|
||||
"būtų toks pat."
|
||||
|
||||
msgid ""
|
||||
"For Organic supports, two walls are supported only with the Hollow/Default "
|
||||
"base pattern."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The Lightning base pattern is not supported by this support type; "
|
||||
"Rectilinear will be used instead."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Organic support tree tip diameter must not be smaller than support material "
|
||||
"extrusion width."
|
||||
@@ -13796,6 +13845,49 @@ msgstr ""
|
||||
"paruoš tokį medžiagos kiekį į valymo bokštą, kad būtų patikimai gaminami "
|
||||
"vienas po kito einantys užpildų arba apsauginių objektų išspaudimai."
|
||||
|
||||
msgid "Interface layer pre-extrusion distance"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion distance for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer pre-extrusion length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion length for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Tower ironing area"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Ironing area for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "mm²"
|
||||
msgstr "mm²"
|
||||
|
||||
msgid "Interface layer purge length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Purge length for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer print temperature"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Print temperature for prime tower interface layer (where different materials "
|
||||
"meet). If set to -1, use max recommended nozzle temperature."
|
||||
msgstr ""
|
||||
|
||||
msgid "Speed of the last cooling move"
|
||||
msgstr "Paskutinio aušinimo judesio greitis"
|
||||
|
||||
@@ -14387,8 +14479,8 @@ msgstr ""
|
||||
"todėl paviršius atrodo grublėtas. Šiuo nustatymu kontroliuojama grublėtumo "
|
||||
"padėtis."
|
||||
|
||||
msgid "None (allow paint)"
|
||||
msgstr ""
|
||||
msgid "Painted only"
|
||||
msgstr "Tik dažytas"
|
||||
|
||||
msgid "Contour"
|
||||
msgstr "Kontūras"
|
||||
@@ -15691,9 +15783,6 @@ msgstr ""
|
||||
"Didžiausias modelio pagrindo skylės plotas prieš ją užpildant kūgine "
|
||||
"medžiaga. 0 reikšmė užpildys visas modelio pagrindo skyles."
|
||||
|
||||
msgid "mm²"
|
||||
msgstr "mm²"
|
||||
|
||||
msgid "Detect overhang wall"
|
||||
msgstr "Aptikti išsikišusią sieną"
|
||||
|
||||
@@ -16815,8 +16904,17 @@ msgstr "Atramų sąsajų greitis."
|
||||
msgid "Base pattern"
|
||||
msgstr "Pagrindinis raštas"
|
||||
|
||||
msgid "Line pattern of support."
|
||||
msgstr "Linijinis atramų raštas."
|
||||
msgid ""
|
||||
"Line pattern of support.\n"
|
||||
"\n"
|
||||
"The Default option for Tree supports is Hollow, which means no base pattern. "
|
||||
"For other support types, the Default option is the Rectilinear pattern.\n"
|
||||
"\n"
|
||||
"NOTE: For Organic supports, the two walls are supported only with the Hollow/"
|
||||
"Default base pattern. The Lightning base pattern is supported only by Tree "
|
||||
"Slim/Strong/Hybrid supports. For the other support types, the Rectilinear "
|
||||
"will be used instead of Lightning."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rectilinear grid"
|
||||
msgstr "Tiesus tinklelis"
|
||||
@@ -17440,6 +17538,23 @@ msgstr ""
|
||||
msgid "The wall of prime tower will skip the start points of wipe path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable tower interface features"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable optimized prime tower interface behavior when different materials "
|
||||
"meet."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cool down from interface boost during prime tower"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"When interface-layer temperature boost is active, set the nozzle back to "
|
||||
"print temperature at the start of the prime tower so it cools down during "
|
||||
"the tower."
|
||||
msgstr ""
|
||||
|
||||
msgid "Infill gap"
|
||||
msgstr ""
|
||||
|
||||
@@ -19055,7 +19170,7 @@ msgstr ""
|
||||
msgid "Plate Type"
|
||||
msgstr "Plokštės tipas"
|
||||
|
||||
msgid "filament position"
|
||||
msgid "Filament position"
|
||||
msgstr "gijos padėtis"
|
||||
|
||||
msgid "Filament For Calibration"
|
||||
@@ -20020,7 +20135,8 @@ msgstr ""
|
||||
"Uždarykite jį ir bandykite dar kartą."
|
||||
|
||||
msgid ""
|
||||
"Printer and all the filament&&process presets that belongs to the printer.\n"
|
||||
"Printer and all the filament and process presets that belongs to the "
|
||||
"printer.\n"
|
||||
"Can be shared with others."
|
||||
msgstr ""
|
||||
"Spausdintuvo ir visų spausdintuvui priklausančių gijų ir procesų išankstinės "
|
||||
@@ -20923,7 +21039,7 @@ msgstr "Be istorinių užduočių!"
|
||||
msgid "Upgrading"
|
||||
msgstr "Atnaujinama"
|
||||
|
||||
msgid "syncing"
|
||||
msgid "Syncing"
|
||||
msgstr "sinchronizuojama"
|
||||
|
||||
msgid "Printing Finish"
|
||||
@@ -21539,6 +21655,25 @@ msgstr ""
|
||||
"pavyzdžiui, ABS, tinkamai padidinus kaitinimo pagrindo temperatūrą galima "
|
||||
"sumažinti deformavimosi tikimybę."
|
||||
|
||||
#~ msgid "Line pattern of support."
|
||||
#~ msgstr "Linijinis atramų raštas."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Failed to install the plug-in. Please check whether it is blocked or "
|
||||
#~ "deleted by anti-virus software."
|
||||
#~ msgstr ""
|
||||
#~ "Nepavyko įdiegti papildinio. Patikrinkite, ar jo neblokuoja arba "
|
||||
#~ "neištrina antivirusinė programinė įranga."
|
||||
|
||||
#~ msgid "°C"
|
||||
#~ msgstr "°C"
|
||||
|
||||
#~ msgid "travel"
|
||||
#~ msgstr "judėjimas"
|
||||
|
||||
#~ msgid "part selection"
|
||||
#~ msgstr "detalės pasirinkimas"
|
||||
|
||||
#~ msgid "Filament remapping finished."
|
||||
#~ msgstr "Gijų perplanavimas baigtas."
|
||||
|
||||
@@ -21742,8 +21877,8 @@ msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid ""
|
||||
#~ "The recommended minimum temperature is less than 190°C or the recommended "
|
||||
#~ "maximum temperature is greater than 300°C.\n"
|
||||
#~ "The recommended minimum temperature is less than 190℃ or the recommended "
|
||||
#~ "maximum temperature is greater than 300℃.\n"
|
||||
#~ msgstr ""
|
||||
#~ "Rekomenduojama minimali temperatūra yra žemesnė nei 190 laipsnių arba "
|
||||
#~ "maksimali temperatūra aukštesnė nei 300 laipsnių.\n"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-02-12 08:42+0800\n"
|
||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -432,7 +432,7 @@ msgstr ""
|
||||
msgid "Size"
|
||||
msgstr "Maat"
|
||||
|
||||
msgid "uniform scale"
|
||||
msgid "Uniform scale"
|
||||
msgstr "uniform schalen"
|
||||
|
||||
msgid "Planar"
|
||||
@@ -687,7 +687,7 @@ msgstr "Verbinding"
|
||||
msgid "Cut by Plane"
|
||||
msgstr "Snij met behulp van vlak"
|
||||
|
||||
msgid "non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgid "Non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgstr ""
|
||||
"hiet-gevormde randen worden veroorzaakt door snijgereedschap: wil je dit nu "
|
||||
"herstellen?"
|
||||
@@ -2217,31 +2217,37 @@ msgstr ""
|
||||
msgid "Select All"
|
||||
msgstr "Alles selecteren"
|
||||
|
||||
msgid "select all objects on current plate"
|
||||
msgid "Select all objects on the current plate"
|
||||
msgstr "Selecteer alle objecten op het huidige printbed"
|
||||
|
||||
msgid "Select All Plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select all objects on all plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete All"
|
||||
msgstr "Alles verwijderen"
|
||||
|
||||
msgid "delete all objects on current plate"
|
||||
msgid "Delete all objects on the current plate"
|
||||
msgstr "Verwijder alle objecten op het huidige printbed"
|
||||
|
||||
msgid "Arrange"
|
||||
msgstr "Rangschikken"
|
||||
|
||||
msgid "arrange current plate"
|
||||
msgid "Arrange current plate"
|
||||
msgstr "Huidig printbed rangschikken"
|
||||
|
||||
msgid "Reload All"
|
||||
msgstr ""
|
||||
|
||||
msgid "reload all from disk"
|
||||
msgid "Reload all from disk"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto Rotate"
|
||||
msgstr "Automatisch roteren"
|
||||
|
||||
msgid "auto rotate current plate"
|
||||
msgid "Auto rotate current plate"
|
||||
msgstr "Huidig printbed automatisch roteren"
|
||||
|
||||
msgid "Delete Plate"
|
||||
@@ -2563,7 +2569,8 @@ msgstr ""
|
||||
msgid "Invalid numeric."
|
||||
msgstr "Onjuist getal."
|
||||
|
||||
msgid "one cell can only be copied to one or multiple cells in the same column"
|
||||
#, fuzzy
|
||||
msgid "One cell can only be copied to one or more cells in the same column."
|
||||
msgstr ""
|
||||
"één cel kan alleen naar één of meerdere cellen in dezelfde kolom worden "
|
||||
"gekopieerd"
|
||||
@@ -2818,9 +2825,9 @@ msgid "Top"
|
||||
msgstr "Bovenste"
|
||||
|
||||
msgid ""
|
||||
"The fan controls the temperature during printing to improve print "
|
||||
"quality.The system automatically adjusts the fan's switch and speed "
|
||||
"according to different printing materials."
|
||||
"The fan controls the temperature during printing to improve print quality. "
|
||||
"The system automatically adjusts the fan's switch and speed according to "
|
||||
"different printing materials."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -3653,8 +3660,7 @@ msgstr ""
|
||||
msgid "Please unload all filament before switching."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"AMS type switching needs firmware update, taking about 30s. Switch now ?"
|
||||
msgid "AMS type switching needs firmware update, taking about 30s. Switch now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Arrange AMS Order"
|
||||
@@ -3679,13 +3685,12 @@ msgstr ""
|
||||
"instellingen en VPN-software en probeer het opnieuw."
|
||||
|
||||
msgid ""
|
||||
"Failed to install the plug-in. Please check whether it is blocked or deleted "
|
||||
"by anti-virus software."
|
||||
"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 "
|
||||
"deleted by anti-virus software."
|
||||
msgstr ""
|
||||
"De installatie van de plug-in is mislukt. Controleer of deze is geblokkeerd "
|
||||
"of verwijderd door anti-virussoftware."
|
||||
|
||||
msgid "click here to see more info"
|
||||
msgid "Click here to see more info"
|
||||
msgstr "klik hier voor meer informatie"
|
||||
|
||||
msgid ""
|
||||
@@ -4213,7 +4218,7 @@ msgstr ""
|
||||
msgid "Nozzle offset calibration"
|
||||
msgstr ""
|
||||
|
||||
msgid "high temperature auto bed leveling"
|
||||
msgid "High temperature auto bed leveling"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto Check: Quick Release Lever"
|
||||
@@ -4489,6 +4494,12 @@ msgstr "Printer instellingen"
|
||||
msgid "parameter name"
|
||||
msgstr "parameternaam"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "Bereik"
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "Waarde is buiten het bereik."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s can't be a percentage"
|
||||
msgstr "%s kan geen percentage zijn"
|
||||
@@ -4504,9 +4515,6 @@ msgstr "Parametervalidatie"
|
||||
msgid "Value %s is out of range. The valid range is from %d to %d."
|
||||
msgstr ""
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "Waarde is buiten het bereik."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Is it %s%% or %s %s?\n"
|
||||
@@ -4558,7 +4566,7 @@ msgid "Line Width"
|
||||
msgstr "Lijn dikte"
|
||||
|
||||
msgid "Actual Speed"
|
||||
msgstr ""
|
||||
msgstr "Werkelijke snelheid"
|
||||
|
||||
msgid "Fan Speed"
|
||||
msgstr "Ventilator snelheid"
|
||||
@@ -4567,7 +4575,7 @@ msgid "Flow"
|
||||
msgstr "Flow"
|
||||
|
||||
msgid "Actual Flow"
|
||||
msgstr ""
|
||||
msgstr "Werkelijke stroom"
|
||||
|
||||
msgid "Tool"
|
||||
msgstr "Hulpmiddel"
|
||||
@@ -4578,6 +4586,9 @@ msgstr "Laag tijd"
|
||||
msgid "Layer Time (log)"
|
||||
msgstr "Laagtijd (logboek)"
|
||||
|
||||
msgid "Pressure Advance"
|
||||
msgstr ""
|
||||
|
||||
msgid "Noop"
|
||||
msgstr ""
|
||||
|
||||
@@ -4665,9 +4676,6 @@ msgstr ""
|
||||
msgid "Fan speed"
|
||||
msgstr "Ventilator snelheid"
|
||||
|
||||
msgid "°C"
|
||||
msgstr "°C"
|
||||
|
||||
msgid "Time"
|
||||
msgstr "Tijd"
|
||||
|
||||
@@ -4702,6 +4710,9 @@ msgid "Color: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Actual Speed: "
|
||||
msgstr "Werkelijke snelheid: "
|
||||
|
||||
msgid "PA: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Statistics of All Plates"
|
||||
@@ -4816,13 +4827,13 @@ msgid "Speed (mm/s)"
|
||||
msgstr "Snelheid (mm/s)"
|
||||
|
||||
msgid "Actual Speed (mm/s)"
|
||||
msgstr ""
|
||||
msgstr "Werkelijke snelheid (mm/s)"
|
||||
|
||||
msgid "Fan Speed (%)"
|
||||
msgstr "Ventilator snelheid (%)"
|
||||
|
||||
msgid "Temperature (°C)"
|
||||
msgstr "Temperatuur (°C)"
|
||||
msgid "Temperature (℃)"
|
||||
msgstr "Temperatuur (℃)"
|
||||
|
||||
msgid "Volumetric flow rate (mm³/s)"
|
||||
msgstr "Volumestroom (mm³/s)"
|
||||
@@ -4839,9 +4850,6 @@ msgstr "Filament wisselingen"
|
||||
msgid "Options"
|
||||
msgstr "Opties"
|
||||
|
||||
msgid "travel"
|
||||
msgstr "verplaatsen"
|
||||
|
||||
msgid "Extruder"
|
||||
msgstr "Extruder"
|
||||
|
||||
@@ -4936,16 +4944,13 @@ msgstr "Bewerkingsgebied vergroten/verkleinen"
|
||||
msgid "Sequence"
|
||||
msgstr "Reeks"
|
||||
|
||||
msgid "object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "part selection"
|
||||
msgid "Object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys can quickly change the color of objects"
|
||||
msgid "Number keys can quickly change the color of objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -5095,6 +5100,30 @@ msgstr ""
|
||||
msgid "Fit camera to scene or selected object."
|
||||
msgstr ""
|
||||
|
||||
msgid "3D Navigator"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom button"
|
||||
msgstr ""
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr "Overhangen"
|
||||
|
||||
msgid "Outline"
|
||||
msgstr ""
|
||||
|
||||
msgid "Perspective"
|
||||
msgstr ""
|
||||
|
||||
msgid "Axes"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Labels"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "Kleur instellingen"
|
||||
|
||||
@@ -5175,7 +5204,7 @@ msgid "Only the object being edited is visible."
|
||||
msgstr "Alleen het object waaraan gewerkt wordt is zichtbaar."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgid "Filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -5594,6 +5623,12 @@ msgstr ""
|
||||
msgid "Show 3D navigator in Prepare and Preview scene."
|
||||
msgstr ""
|
||||
|
||||
msgid "Show Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Show Gridlines on plate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset Window Layout"
|
||||
msgstr ""
|
||||
|
||||
@@ -6320,9 +6355,9 @@ msgid "Layer: %d/%d"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Please heat the nozzle to above 170°C before loading or unloading filament."
|
||||
"Please heat the nozzle to above 170℃ before loading or unloading filament."
|
||||
msgstr ""
|
||||
"Verwarm het mondstuk tot boven de 170°C voordat u filament laadt of lost."
|
||||
"Verwarm het mondstuk tot boven de 170℃ voordat u filament laadt of lost."
|
||||
|
||||
msgid "Chamber temperature cannot be changed in cooling mode while printing."
|
||||
msgstr ""
|
||||
@@ -6433,7 +6468,7 @@ msgstr ""
|
||||
msgid "Upload failed\n"
|
||||
msgstr "Uploaden mislukt\n"
|
||||
|
||||
msgid "obtaining instance_id failed\n"
|
||||
msgid "Obtaining instance_id failed\n"
|
||||
msgstr "het verkrijgen van instance_id is mislukt\n"
|
||||
|
||||
msgid ""
|
||||
@@ -6705,9 +6740,6 @@ msgstr ""
|
||||
msgid "Layers"
|
||||
msgstr "Lagen"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "Bereik"
|
||||
|
||||
msgid ""
|
||||
"The application cannot run normally because OpenGL version is lower than "
|
||||
"3.2.\n"
|
||||
@@ -7441,7 +7473,7 @@ msgid ""
|
||||
"connected printer.\n"
|
||||
"After syncing, software can optimize printing time and filament usage when "
|
||||
"slicing.\n"
|
||||
"Would you like to sync now ?"
|
||||
"Would you like to sync now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync now"
|
||||
@@ -7473,13 +7505,14 @@ msgstr "Project opslaan"
|
||||
msgid "Importing Model"
|
||||
msgstr "Model importeren"
|
||||
|
||||
msgid "prepare 3MF file..."
|
||||
#, fuzzy
|
||||
msgid "Preparing 3MF file..."
|
||||
msgstr "voorbereiden van 3MF bestand..."
|
||||
|
||||
msgid "Download failed, unknown file format."
|
||||
msgstr ""
|
||||
|
||||
msgid "downloading project..."
|
||||
msgid "Downloading project..."
|
||||
msgstr "project downloaden..."
|
||||
|
||||
msgid "Download failed, File size exception."
|
||||
@@ -7984,6 +8017,18 @@ msgstr ""
|
||||
msgid "By vendor"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimize filaments area height for..."
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid "filaments"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
||||
msgstr ""
|
||||
|
||||
msgid "Features"
|
||||
msgstr ""
|
||||
|
||||
@@ -7995,9 +8040,6 @@ msgid ""
|
||||
"same time and manage multiple devices."
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pop up to select filament grouping mode"
|
||||
msgstr ""
|
||||
|
||||
@@ -8372,10 +8414,10 @@ msgstr "PRE-host: api-pre.bambu-lab.com/v1"
|
||||
msgid "Product host"
|
||||
msgstr "Producthost"
|
||||
|
||||
msgid "debug save button"
|
||||
msgid "Debug save button"
|
||||
msgstr "debug opslaan knop"
|
||||
|
||||
msgid "save debug settings"
|
||||
msgid "Save debug settings"
|
||||
msgstr "bewaar debug instellingen"
|
||||
|
||||
msgid "DEBUG settings have been saved successfully!"
|
||||
@@ -8673,7 +8715,7 @@ msgid ""
|
||||
"*Automatic mode: Check for calibration before printing. Skip if unnecessary."
|
||||
msgstr ""
|
||||
|
||||
msgid "send completed"
|
||||
msgid "Send complete"
|
||||
msgstr "versturen gelukt"
|
||||
|
||||
msgid "Error code"
|
||||
@@ -8811,7 +8853,7 @@ msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"[ %s ] requires printing in a high-temperature environment.Please close the "
|
||||
"[ %s ] requires printing in a high-temperature environment. Please close the "
|
||||
"door."
|
||||
msgstr ""
|
||||
|
||||
@@ -9219,7 +9261,7 @@ msgid ""
|
||||
"ensure proper printing and achieve their intended effects (e.g., Gyroid, "
|
||||
"Cubic). Rotating the current sparse infill pattern may lead to insufficient "
|
||||
"support. Please proceed with caution and thoroughly check for any potential "
|
||||
"printing issues.Are you sure you want to enable this option?"
|
||||
"printing issues. Are you sure you want to enable this option?"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -9369,9 +9411,6 @@ msgstr "Wanden en oppervlakten"
|
||||
msgid "Bridging"
|
||||
msgstr "Overbruggen"
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr "Overhangen"
|
||||
|
||||
msgid "Walls"
|
||||
msgstr "Wanden"
|
||||
|
||||
@@ -10466,7 +10505,7 @@ msgstr "Verplaats de selectie 10mm in een positieve X richting"
|
||||
msgid "Movement step set to 1 mm"
|
||||
msgstr "Bewegingsinterval ingesteld op 1mm"
|
||||
|
||||
msgid "keyboard 1-9: set filament for object/part"
|
||||
msgid "Keyboard 1-9: set filament for object/part"
|
||||
msgstr "Toets 1-9: kies filament voor het object/onderdeel"
|
||||
|
||||
msgid "Camera view - Default"
|
||||
@@ -11229,6 +11268,16 @@ msgid ""
|
||||
msgstr ""
|
||||
"Een prime toren vereist dat support dezelfde laaghoogte heeft als het object."
|
||||
|
||||
msgid ""
|
||||
"For Organic supports, two walls are supported only with the Hollow/Default "
|
||||
"base pattern."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The Lightning base pattern is not supported by this support type; "
|
||||
"Rectilinear will be used instead."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Organic support tree tip diameter must not be smaller than support material "
|
||||
"extrusion width."
|
||||
@@ -13129,6 +13178,49 @@ msgid ""
|
||||
"tower to produce successive infill or sacrificial object extrusions reliably."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer pre-extrusion distance"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion distance for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer pre-extrusion length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion length for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Tower ironing area"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Ironing area for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "mm²"
|
||||
msgstr "mm²"
|
||||
|
||||
msgid "Interface layer purge length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Purge length for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer print temperature"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Print temperature for prime tower interface layer (where different materials "
|
||||
"meet). If set to -1, use max recommended nozzle temperature."
|
||||
msgstr ""
|
||||
|
||||
msgid "Speed of the last cooling move"
|
||||
msgstr "Snelheid voor de laatste koelbeweging"
|
||||
|
||||
@@ -13644,14 +13736,14 @@ msgstr ""
|
||||
"printen van muren, zodat het oppervlak er ruw uitziet. Deze instelling "
|
||||
"regelt de \"fuzzy\" positie."
|
||||
|
||||
msgid "None (allow paint)"
|
||||
msgstr ""
|
||||
msgid "Painted only"
|
||||
msgstr "Alleen geverfd"
|
||||
|
||||
msgid "Contour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Contour and hole"
|
||||
msgstr ""
|
||||
msgstr "Contour en gat"
|
||||
|
||||
msgid "All walls"
|
||||
msgstr "Alle wanden"
|
||||
@@ -14741,9 +14833,6 @@ msgid ""
|
||||
"conical material. A value of 0 will fill all the holes in the model base."
|
||||
msgstr ""
|
||||
|
||||
msgid "mm²"
|
||||
msgstr "mm²"
|
||||
|
||||
msgid "Detect overhang wall"
|
||||
msgstr "Overhange wand detecteren"
|
||||
|
||||
@@ -15745,8 +15834,17 @@ msgstr "Dit is de snelheid voor het printen van de support interfaces."
|
||||
msgid "Base pattern"
|
||||
msgstr "Basis patroon"
|
||||
|
||||
msgid "Line pattern of support."
|
||||
msgstr "Dit is het lijnpatroon voor support."
|
||||
msgid ""
|
||||
"Line pattern of support.\n"
|
||||
"\n"
|
||||
"The Default option for Tree supports is Hollow, which means no base pattern. "
|
||||
"For other support types, the Default option is the Rectilinear pattern.\n"
|
||||
"\n"
|
||||
"NOTE: For Organic supports, the two walls are supported only with the Hollow/"
|
||||
"Default base pattern. The Lightning base pattern is supported only by Tree "
|
||||
"Slim/Strong/Hybrid supports. For the other support types, the Rectilinear "
|
||||
"will be used instead of Lightning."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rectilinear grid"
|
||||
msgstr "Rechtlijnig raster"
|
||||
@@ -16260,6 +16358,23 @@ msgstr ""
|
||||
msgid "The wall of prime tower will skip the start points of wipe path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable tower interface features"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable optimized prime tower interface behavior when different materials "
|
||||
"meet."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cool down from interface boost during prime tower"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"When interface-layer temperature boost is active, set the nozzle back to "
|
||||
"print temperature at the start of the prime tower so it cools down during "
|
||||
"the tower."
|
||||
msgstr ""
|
||||
|
||||
msgid "Infill gap"
|
||||
msgstr ""
|
||||
|
||||
@@ -17735,7 +17850,7 @@ msgstr ""
|
||||
msgid "Plate Type"
|
||||
msgstr ""
|
||||
|
||||
msgid "filament position"
|
||||
msgid "Filament position"
|
||||
msgstr "filament positie"
|
||||
|
||||
msgid "Filament For Calibration"
|
||||
@@ -18671,7 +18786,8 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Printer and all the filament&&process presets that belongs to the printer.\n"
|
||||
"Printer and all the filament and process presets that belongs to the "
|
||||
"printer.\n"
|
||||
"Can be shared with others."
|
||||
msgstr ""
|
||||
|
||||
@@ -19477,7 +19593,7 @@ msgstr ""
|
||||
msgid "Upgrading"
|
||||
msgstr ""
|
||||
|
||||
msgid "syncing"
|
||||
msgid "Syncing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printing Finish"
|
||||
@@ -20088,6 +20204,22 @@ msgstr ""
|
||||
"kromtrekken, zoals ABS, een juiste verhoging van de temperatuur van het "
|
||||
"warmtebed de kans op kromtrekken kan verkleinen?"
|
||||
|
||||
#~ msgid "Line pattern of support."
|
||||
#~ msgstr "Dit is het lijnpatroon voor support."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Failed to install the plug-in. Please check whether it is blocked or "
|
||||
#~ "deleted by anti-virus software."
|
||||
#~ msgstr ""
|
||||
#~ "De installatie van de plug-in is mislukt. Controleer of deze is "
|
||||
#~ "geblokkeerd of verwijderd door anti-virussoftware."
|
||||
|
||||
#~ msgid "°C"
|
||||
#~ msgstr "°C"
|
||||
|
||||
#~ msgid "travel"
|
||||
#~ msgstr "verplaatsen"
|
||||
|
||||
#~ msgid "Replace with STL"
|
||||
#~ msgstr "Vervangen door STL"
|
||||
|
||||
@@ -20190,11 +20322,11 @@ msgstr ""
|
||||
#~ "wordt de resterende capaciteit automatisch bijgewerkt."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The recommended minimum temperature is less than 190°C or the recommended "
|
||||
#~ "maximum temperature is greater than 300°C.\n"
|
||||
#~ "The recommended minimum temperature is less than 190℃ or the recommended "
|
||||
#~ "maximum temperature is greater than 300℃.\n"
|
||||
#~ msgstr ""
|
||||
#~ "De aanbevolen minimumtemperatuur is lager dan 190°C of de aanbevolen "
|
||||
#~ "maximumtemperatuur is hoger dan 300°C.\n"
|
||||
#~ "De aanbevolen minimumtemperatuur is lager dan 190℃ of de aanbevolen "
|
||||
#~ "maximumtemperatuur is hoger dan 300℃.\n"
|
||||
|
||||
#~ msgid "Paused due to filament runout"
|
||||
#~ msgstr "De printtaak is gepauzeerd omdat het filament op is"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OrcaSlicer 2.3.0-rc\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-02-12 08:42+0800\n"
|
||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Krzysztof Morga <<tlumaczeniebs@gmail.com>>\n"
|
||||
"Language-Team: \n"
|
||||
@@ -434,7 +434,7 @@ msgstr ""
|
||||
msgid "Size"
|
||||
msgstr "Rozmiar"
|
||||
|
||||
msgid "uniform scale"
|
||||
msgid "Uniform scale"
|
||||
msgstr "równomierne skalowanie"
|
||||
|
||||
msgid "Planar"
|
||||
@@ -697,7 +697,7 @@ msgstr "Łącznik"
|
||||
msgid "Cut by Plane"
|
||||
msgstr "Cięcie płaszczyzną"
|
||||
|
||||
msgid "non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgid "Non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgstr ""
|
||||
"niezamknięte krawędzie mogą być spowodowane narzędziem do przecinania, czy "
|
||||
"chcesz to teraz naprawić?"
|
||||
@@ -2253,31 +2253,37 @@ msgstr ""
|
||||
msgid "Select All"
|
||||
msgstr "Zaznacz wszystko"
|
||||
|
||||
msgid "select all objects on current plate"
|
||||
msgid "Select all objects on the current plate"
|
||||
msgstr "zaznacz wszystkie obiekty na bieżącej płycie"
|
||||
|
||||
msgid "Select All Plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select all objects on all plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete All"
|
||||
msgstr "Usuń wszystko"
|
||||
|
||||
msgid "delete all objects on current plate"
|
||||
msgid "Delete all objects on the current plate"
|
||||
msgstr "usuń wszystkie obiekty na bieżącej płycie"
|
||||
|
||||
msgid "Arrange"
|
||||
msgstr "Ustaw"
|
||||
|
||||
msgid "arrange current plate"
|
||||
msgid "Arrange current plate"
|
||||
msgstr "ustaw bieżącą płytę"
|
||||
|
||||
msgid "Reload All"
|
||||
msgstr "Wczytaj wszystko ponownie"
|
||||
|
||||
msgid "reload all from disk"
|
||||
msgid "Reload all from disk"
|
||||
msgstr "Przeładuj wszystko z dysku"
|
||||
|
||||
msgid "Auto Rotate"
|
||||
msgstr "Obróć automatycznie"
|
||||
|
||||
msgid "auto rotate current plate"
|
||||
msgid "Auto rotate current plate"
|
||||
msgstr "automatyczna rotacja obiektów na bieżącej płycie"
|
||||
|
||||
msgid "Delete Plate"
|
||||
@@ -2601,7 +2607,8 @@ msgstr "Dodaj zakres wysokości"
|
||||
msgid "Invalid numeric."
|
||||
msgstr "Nieprawidłowa wartość numeryczna."
|
||||
|
||||
msgid "one cell can only be copied to one or multiple cells in the same column"
|
||||
#, fuzzy
|
||||
msgid "One cell can only be copied to one or more cells in the same column."
|
||||
msgstr ""
|
||||
"jedna komórka może być skopiowana do jednej lub wielu komórek w tej samej "
|
||||
"kolumnie"
|
||||
@@ -2857,9 +2864,9 @@ msgid "Top"
|
||||
msgstr "Góra"
|
||||
|
||||
msgid ""
|
||||
"The fan controls the temperature during printing to improve print "
|
||||
"quality.The system automatically adjusts the fan's switch and speed "
|
||||
"according to different printing materials."
|
||||
"The fan controls the temperature during printing to improve print quality. "
|
||||
"The system automatically adjusts the fan's switch and speed according to "
|
||||
"different printing materials."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -3719,8 +3726,7 @@ msgstr ""
|
||||
msgid "Please unload all filament before switching."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"AMS type switching needs firmware update, taking about 30s. Switch now ?"
|
||||
msgid "AMS type switching needs firmware update, taking about 30s. Switch now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Arrange AMS Order"
|
||||
@@ -3745,14 +3751,13 @@ msgstr ""
|
||||
"oprogramowania VPN, sprawdź i spróbuj ponownie."
|
||||
|
||||
msgid ""
|
||||
"Failed to install the plug-in. Please check whether it is blocked or deleted "
|
||||
"by anti-virus software."
|
||||
"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 "
|
||||
"deleted by anti-virus software."
|
||||
msgstr ""
|
||||
"Nie udało się zainstalować wtyczki. Sprawdź, czy nie jest zablokowana lub "
|
||||
"usunięta przez oprogramowanie antywirusowe."
|
||||
|
||||
msgid "click here to see more info"
|
||||
msgstr "kliknij tutaj, aby zobaczyć więcej informacji"
|
||||
msgid "Click here to see more info"
|
||||
msgstr "Kliknij tutaj, aby zobaczyć więcej informacji"
|
||||
|
||||
msgid ""
|
||||
"The network plugin was installed but could not be loaded. Please restart the "
|
||||
@@ -4288,7 +4293,7 @@ msgstr ""
|
||||
msgid "Nozzle offset calibration"
|
||||
msgstr ""
|
||||
|
||||
msgid "high temperature auto bed leveling"
|
||||
msgid "High temperature auto bed leveling"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto Check: Quick Release Lever"
|
||||
@@ -4566,6 +4571,12 @@ msgstr "Ustawienia drukarki"
|
||||
msgid "parameter name"
|
||||
msgstr "nazwa parametru"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "Zakres"
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "Wartość jest poza zakresem."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s can't be a percentage"
|
||||
msgstr "%s nie może być procentem"
|
||||
@@ -4581,9 +4592,6 @@ msgstr "Walidacja parametru"
|
||||
msgid "Value %s is out of range. The valid range is from %d to %d."
|
||||
msgstr "Wartość %s jest spoza zakresu. Poprawny zakres wynosi od %d do %d."
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "Wartość jest poza zakresem."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Is it %s%% or %s %s?\n"
|
||||
@@ -4636,7 +4644,7 @@ msgid "Line Width"
|
||||
msgstr "Szerokość linii"
|
||||
|
||||
msgid "Actual Speed"
|
||||
msgstr ""
|
||||
msgstr "Rzeczywista prędkość"
|
||||
|
||||
msgid "Fan Speed"
|
||||
msgstr "Prędkość wentylatora"
|
||||
@@ -4645,7 +4653,7 @@ msgid "Flow"
|
||||
msgstr "Przepływ"
|
||||
|
||||
msgid "Actual Flow"
|
||||
msgstr ""
|
||||
msgstr "Rzeczywisty przepływ"
|
||||
|
||||
msgid "Tool"
|
||||
msgstr "Narzędzie"
|
||||
@@ -4656,6 +4664,9 @@ msgstr "Czas warstwy"
|
||||
msgid "Layer Time (log)"
|
||||
msgstr "Czas warstwy (logarytmicznie)"
|
||||
|
||||
msgid "Pressure Advance"
|
||||
msgstr ""
|
||||
|
||||
msgid "Noop"
|
||||
msgstr ""
|
||||
|
||||
@@ -4743,9 +4754,6 @@ msgstr ""
|
||||
msgid "Fan speed"
|
||||
msgstr "Prędkość wentylatora"
|
||||
|
||||
msgid "°C"
|
||||
msgstr "°C"
|
||||
|
||||
msgid "Time"
|
||||
msgstr "Czas"
|
||||
|
||||
@@ -4780,6 +4788,9 @@ msgid "Color: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Actual Speed: "
|
||||
msgstr "Rzeczywista prędkość: "
|
||||
|
||||
msgid "PA: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Statistics of All Plates"
|
||||
@@ -4894,13 +4905,13 @@ msgid "Speed (mm/s)"
|
||||
msgstr "Prędkość (mm/s)"
|
||||
|
||||
msgid "Actual Speed (mm/s)"
|
||||
msgstr ""
|
||||
msgstr "Rzeczywista prędkość (mm/s)"
|
||||
|
||||
msgid "Fan Speed (%)"
|
||||
msgstr "Prędkość wentylatora (%)"
|
||||
|
||||
msgid "Temperature (°C)"
|
||||
msgstr "Temperatura (°C)"
|
||||
msgid "Temperature (℃)"
|
||||
msgstr "Temperatura (℃)"
|
||||
|
||||
msgid "Volumetric flow rate (mm³/s)"
|
||||
msgstr "Natężenie przepływu (mm³/s)"
|
||||
@@ -4917,9 +4928,6 @@ msgstr "Zmiany filamentu"
|
||||
msgid "Options"
|
||||
msgstr "Opcje"
|
||||
|
||||
msgid "travel"
|
||||
msgstr "przemieszczenie"
|
||||
|
||||
msgid "Extruder"
|
||||
msgstr "Ekstruder"
|
||||
|
||||
@@ -5014,16 +5022,13 @@ msgstr "Zwiększ/zmniejsz obszar edycji"
|
||||
msgid "Sequence"
|
||||
msgstr "Kolejność"
|
||||
|
||||
msgid "object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "part selection"
|
||||
msgid "Object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys can quickly change the color of objects"
|
||||
msgid "Number keys can quickly change the color of objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -5173,6 +5178,30 @@ msgstr ""
|
||||
msgid "Fit camera to scene or selected object."
|
||||
msgstr ""
|
||||
|
||||
msgid "3D Navigator"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom button"
|
||||
msgstr ""
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr "Nawisy"
|
||||
|
||||
msgid "Outline"
|
||||
msgstr ""
|
||||
|
||||
msgid "Perspective"
|
||||
msgstr ""
|
||||
|
||||
msgid "Axes"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Labels"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "Pasek narzędzi do malowania"
|
||||
|
||||
@@ -5255,7 +5284,7 @@ msgid "Only the object being edited is visible."
|
||||
msgstr "Widoczny jest tylko edytowany obiekt."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgid "Filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -5677,6 +5706,12 @@ msgid "Show 3D navigator in Prepare and Preview scene."
|
||||
msgstr ""
|
||||
"Przełącza wyświetlanie nawidgatora 3D w scenie przygotowania i podglądu"
|
||||
|
||||
msgid "Show Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Show Gridlines on plate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset Window Layout"
|
||||
msgstr "Przywróć układ okna"
|
||||
|
||||
@@ -6430,7 +6465,7 @@ msgid "Layer: %d/%d"
|
||||
msgstr "Warstwa: %d/%d"
|
||||
|
||||
msgid ""
|
||||
"Please heat the nozzle to above 170°C before loading or unloading filament."
|
||||
"Please heat the nozzle to above 170℃ before loading or unloading filament."
|
||||
msgstr ""
|
||||
"Przed załadowaniem lub rozładunkiem filamentu, podgrzej dyszę do temperatury "
|
||||
"powyżej 170 stopni."
|
||||
@@ -6544,7 +6579,7 @@ msgstr ""
|
||||
msgid "Upload failed\n"
|
||||
msgstr "Nie udało się przesłać\n"
|
||||
|
||||
msgid "obtaining instance_id failed\n"
|
||||
msgid "Obtaining instance_id failed\n"
|
||||
msgstr "nie udało się uzyskać instance_id\n"
|
||||
|
||||
msgid ""
|
||||
@@ -6826,9 +6861,6 @@ msgstr "Utnij łącznik"
|
||||
msgid "Layers"
|
||||
msgstr "Warstwy"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "Zakres"
|
||||
|
||||
msgid ""
|
||||
"The application cannot run normally because OpenGL version is lower than "
|
||||
"3.2.\n"
|
||||
@@ -7559,7 +7591,7 @@ msgid ""
|
||||
"connected printer.\n"
|
||||
"After syncing, software can optimize printing time and filament usage when "
|
||||
"slicing.\n"
|
||||
"Would you like to sync now ?"
|
||||
"Would you like to sync now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync now"
|
||||
@@ -7590,13 +7622,14 @@ msgstr "Zapisz projekt"
|
||||
msgid "Importing Model"
|
||||
msgstr "Importowanie modelu"
|
||||
|
||||
msgid "prepare 3MF file..."
|
||||
#, fuzzy
|
||||
msgid "Preparing 3MF file..."
|
||||
msgstr "przygotuj plik 3MF..."
|
||||
|
||||
msgid "Download failed, unknown file format."
|
||||
msgstr "Nie udało się pobrać. Nieznany format pliku."
|
||||
|
||||
msgid "downloading project..."
|
||||
msgid "Downloading project..."
|
||||
msgstr "pobieranie projektu ..."
|
||||
|
||||
msgid "Download failed, File size exception."
|
||||
@@ -8113,6 +8146,18 @@ msgstr ""
|
||||
msgid "By vendor"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimize filaments area height for..."
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid "filaments"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
||||
msgstr ""
|
||||
|
||||
msgid "Features"
|
||||
msgstr ""
|
||||
|
||||
@@ -8126,9 +8171,6 @@ msgstr ""
|
||||
"Umożliwia wysyłanie zadania do wielu urządzeń jednocześnie i zarządzanie "
|
||||
"nimi."
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pop up to select filament grouping mode"
|
||||
msgstr ""
|
||||
|
||||
@@ -8487,10 +8529,10 @@ msgstr "Host PRE: api-pre.bambu-lab.com/v1"
|
||||
msgid "Product host"
|
||||
msgstr "Host produktu"
|
||||
|
||||
msgid "debug save button"
|
||||
msgid "Debug save button"
|
||||
msgstr "przycisk zapisywania debugowania"
|
||||
|
||||
msgid "save debug settings"
|
||||
msgid "Save debug settings"
|
||||
msgstr "zapisz ustawienia debugowania"
|
||||
|
||||
msgid "DEBUG settings have been saved successfully!"
|
||||
@@ -8779,7 +8821,7 @@ msgid ""
|
||||
"*Automatic mode: Check for calibration before printing. Skip if unnecessary."
|
||||
msgstr ""
|
||||
|
||||
msgid "send completed"
|
||||
msgid "Send complete"
|
||||
msgstr "wysłanie zakończone"
|
||||
|
||||
msgid "Error code"
|
||||
@@ -8925,7 +8967,7 @@ msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"[ %s ] requires printing in a high-temperature environment.Please close the "
|
||||
"[ %s ] requires printing in a high-temperature environment. Please close the "
|
||||
"door."
|
||||
msgstr ""
|
||||
|
||||
@@ -9348,7 +9390,7 @@ msgid ""
|
||||
"ensure proper printing and achieve their intended effects (e.g., Gyroid, "
|
||||
"Cubic). Rotating the current sparse infill pattern may lead to insufficient "
|
||||
"support. Please proceed with caution and thoroughly check for any potential "
|
||||
"printing issues.Are you sure you want to enable this option?"
|
||||
"printing issues. Are you sure you want to enable this option?"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -9500,9 +9542,6 @@ msgstr "Ściany i powierzchnie"
|
||||
msgid "Bridging"
|
||||
msgstr "Mosty"
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr "Nawisy"
|
||||
|
||||
msgid "Walls"
|
||||
msgstr "Ściany"
|
||||
|
||||
@@ -10625,7 +10664,7 @@ msgstr "Przesuń wybrane o 10 mm w kierunku dodatnim osi X"
|
||||
msgid "Movement step set to 1 mm"
|
||||
msgstr "Ustaw krok ruchu na 1 mm"
|
||||
|
||||
msgid "keyboard 1-9: set filament for object/part"
|
||||
msgid "Keyboard 1-9: set filament for object/part"
|
||||
msgstr "klawiatura 1-9: ustaw filament dla obiektu/części"
|
||||
|
||||
msgid "Camera view - Default"
|
||||
@@ -11402,6 +11441,16 @@ msgstr ""
|
||||
"Wieża czyszcząca wymaga, aby podpory miały tę samą wysokość warstwy co "
|
||||
"obiekt."
|
||||
|
||||
msgid ""
|
||||
"For Organic supports, two walls are supported only with the Hollow/Default "
|
||||
"base pattern."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The Lightning base pattern is not supported by this support type; "
|
||||
"Rectilinear will be used instead."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Organic support tree tip diameter must not be smaller than support material "
|
||||
"extrusion width."
|
||||
@@ -13754,6 +13803,49 @@ msgstr ""
|
||||
"wytłoczy tę ilość filamentu do wieży czyszczącej, aby zapewnić niezawodną "
|
||||
"dalszą ekstruzję."
|
||||
|
||||
msgid "Interface layer pre-extrusion distance"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion distance for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer pre-extrusion length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion length for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Tower ironing area"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Ironing area for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "mm²"
|
||||
msgstr "mm²"
|
||||
|
||||
msgid "Interface layer purge length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Purge length for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer print temperature"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Print temperature for prime tower interface layer (where different materials "
|
||||
"meet). If set to -1, use max recommended nozzle temperature."
|
||||
msgstr ""
|
||||
|
||||
msgid "Speed of the last cooling move"
|
||||
msgstr "Prędkość ostatniego ruchu chłodzącego"
|
||||
|
||||
@@ -14332,8 +14424,8 @@ msgstr ""
|
||||
"Losowe wibracje podczas drukowania ścian, aby nadać powierzchni chropowaty "
|
||||
"wygląd. To ustawienie reguluje „chropowatość”"
|
||||
|
||||
msgid "None (allow paint)"
|
||||
msgstr ""
|
||||
msgid "Painted only"
|
||||
msgstr "Tylko malowane"
|
||||
|
||||
msgid "Contour"
|
||||
msgstr "Kontur"
|
||||
@@ -15588,9 +15680,6 @@ msgstr ""
|
||||
"Maksymalna powierzchnia otworu w podstawie modelu przed jego wypełnieniem "
|
||||
"materiałem stożkowym. Wartość 0 wypełni wszystkie otwory w podstawie modelu."
|
||||
|
||||
msgid "mm²"
|
||||
msgstr "mm²"
|
||||
|
||||
msgid "Detect overhang wall"
|
||||
msgstr "Wykrywanie ścian nawisu"
|
||||
|
||||
@@ -16715,8 +16804,17 @@ msgstr "Prędkość dla warstw łączących"
|
||||
msgid "Base pattern"
|
||||
msgstr "Wzór podstawowy"
|
||||
|
||||
msgid "Line pattern of support."
|
||||
msgstr "Liniowy wzór podpór"
|
||||
msgid ""
|
||||
"Line pattern of support.\n"
|
||||
"\n"
|
||||
"The Default option for Tree supports is Hollow, which means no base pattern. "
|
||||
"For other support types, the Default option is the Rectilinear pattern.\n"
|
||||
"\n"
|
||||
"NOTE: For Organic supports, the two walls are supported only with the Hollow/"
|
||||
"Default base pattern. The Lightning base pattern is supported only by Tree "
|
||||
"Slim/Strong/Hybrid supports. For the other support types, the Rectilinear "
|
||||
"will be used instead of Lightning."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rectilinear grid"
|
||||
msgstr "Siatka prostoliniowa"
|
||||
@@ -17313,6 +17411,23 @@ msgstr ""
|
||||
msgid "The wall of prime tower will skip the start points of wipe path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable tower interface features"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable optimized prime tower interface behavior when different materials "
|
||||
"meet."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cool down from interface boost during prime tower"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"When interface-layer temperature boost is active, set the nozzle back to "
|
||||
"print temperature at the start of the prime tower so it cools down during "
|
||||
"the tower."
|
||||
msgstr ""
|
||||
|
||||
msgid "Infill gap"
|
||||
msgstr ""
|
||||
|
||||
@@ -18927,7 +19042,7 @@ msgstr ""
|
||||
msgid "Plate Type"
|
||||
msgstr "Typ Płyty"
|
||||
|
||||
msgid "filament position"
|
||||
msgid "Filament position"
|
||||
msgstr "pozycja filamentu"
|
||||
|
||||
msgid "Filament For Calibration"
|
||||
@@ -19876,7 +19991,8 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Printer and all the filament&&process presets that belongs to the printer.\n"
|
||||
"Printer and all the filament and process presets that belongs to the "
|
||||
"printer.\n"
|
||||
"Can be shared with others."
|
||||
msgstr ""
|
||||
"Profil drukarki oraz wszystkie ustawienia filamentu i procesu, które do niej "
|
||||
@@ -20766,7 +20882,7 @@ msgstr "Brak historii zadań!"
|
||||
msgid "Upgrading"
|
||||
msgstr "Aktualizacja"
|
||||
|
||||
msgid "syncing"
|
||||
msgid "Syncing"
|
||||
msgstr "synchronizacja"
|
||||
|
||||
msgid "Printing Finish"
|
||||
@@ -21382,6 +21498,22 @@ msgstr ""
|
||||
"takimi jak ABS, odpowiednie zwiększenie temperatury podgrzewanej płyty może "
|
||||
"zmniejszyć prawdopodobieństwo odkształceń?"
|
||||
|
||||
#~ msgid "Line pattern of support."
|
||||
#~ msgstr "Liniowy wzór podpór"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Failed to install the plug-in. Please check whether it is blocked or "
|
||||
#~ "deleted by anti-virus software."
|
||||
#~ msgstr ""
|
||||
#~ "Nie udało się zainstalować wtyczki. Sprawdź, czy nie jest zablokowana lub "
|
||||
#~ "usunięta przez oprogramowanie antywirusowe."
|
||||
|
||||
#~ msgid "°C"
|
||||
#~ msgstr "°C"
|
||||
|
||||
#~ msgid "travel"
|
||||
#~ msgstr "przemieszczenie"
|
||||
|
||||
#~ msgid "Replace with STL"
|
||||
#~ msgstr "Zamień na STL"
|
||||
|
||||
@@ -21524,8 +21656,8 @@ msgstr ""
|
||||
#~ "aktualizowana automatycznie."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The recommended minimum temperature is less than 190°C or the recommended "
|
||||
#~ "maximum temperature is greater than 300°C.\n"
|
||||
#~ "The recommended minimum temperature is less than 190℃ or the recommended "
|
||||
#~ "maximum temperature is greater than 300℃.\n"
|
||||
#~ msgstr ""
|
||||
#~ "Zalecana temperatura jest poniżej minimalnych 190 stopni lub temperatura "
|
||||
#~ "przekracza zalecane maksimum 300 stopni.\n"
|
||||
@@ -24577,9 +24709,6 @@ msgstr ""
|
||||
#~ "Nie udało się pobrać wtyczki. Sprawdź ustawienia zapory ogniowej i "
|
||||
#~ "oprogramowania VPN, sprawdź i spróbuj ponownie."
|
||||
|
||||
#~ msgid "Click here to see more info"
|
||||
#~ msgstr "Kliknij tutaj, aby zobaczyć więcej informacji"
|
||||
|
||||
#~ msgid ""
|
||||
#~ ") to locate the toolhead's position. This prevents the device from moving "
|
||||
#~ "beyond the printable boundary and causing equipment wear."
|
||||
@@ -24774,7 +24903,7 @@ msgstr ""
|
||||
#~ "Tak - przełącz automatycznie na wzór prostoliniowy\n"
|
||||
#~ "Nie - automatycznie zresetuj gęstość do domyślnej wartości nie 100%"
|
||||
|
||||
#~ msgid "Please heat the nozzle to above 170°C before loading filament."
|
||||
#~ msgid "Please heat the nozzle to above 170℃ before loading filament."
|
||||
#~ msgstr ""
|
||||
#~ "Proszę podgrzać dyszę do ponad 170 stopni przed załadowaniem filamentu."
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-02-12 08:42+0800\n"
|
||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -429,7 +429,7 @@ msgstr ""
|
||||
msgid "Size"
|
||||
msgstr "Storlek"
|
||||
|
||||
msgid "uniform scale"
|
||||
msgid "Uniform scale"
|
||||
msgstr "enhetlig skala"
|
||||
|
||||
msgid "Planar"
|
||||
@@ -684,7 +684,7 @@ msgstr "Kontakt"
|
||||
msgid "Cut by Plane"
|
||||
msgstr ""
|
||||
|
||||
msgid "non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgid "Non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgstr "Icke-mångsidiga kanter orsakade av skärverktyg: vill du fixa det nu?"
|
||||
|
||||
msgid "Repairing model object"
|
||||
@@ -2187,31 +2187,37 @@ msgstr ""
|
||||
msgid "Select All"
|
||||
msgstr "Välj Alla"
|
||||
|
||||
msgid "select all objects on current plate"
|
||||
msgid "Select all objects on the current plate"
|
||||
msgstr "Välj alla objekt på plattan"
|
||||
|
||||
msgid "Select All Plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select all objects on all plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete All"
|
||||
msgstr "Radera Allt"
|
||||
|
||||
msgid "delete all objects on current plate"
|
||||
msgid "Delete all objects on the current plate"
|
||||
msgstr "Radera alla objekt på plattan"
|
||||
|
||||
msgid "Arrange"
|
||||
msgstr "Arrangera"
|
||||
|
||||
msgid "arrange current plate"
|
||||
msgid "Arrange current plate"
|
||||
msgstr "Arrangera plattan"
|
||||
|
||||
msgid "Reload All"
|
||||
msgstr ""
|
||||
|
||||
msgid "reload all from disk"
|
||||
msgid "Reload all from disk"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto Rotate"
|
||||
msgstr "Auto Rotera"
|
||||
|
||||
msgid "auto rotate current plate"
|
||||
msgid "Auto rotate current plate"
|
||||
msgstr "auto rotera plattan"
|
||||
|
||||
msgid "Delete Plate"
|
||||
@@ -2532,7 +2538,8 @@ msgstr "Lägg till höjdintervall"
|
||||
msgid "Invalid numeric."
|
||||
msgstr "Ogiltig siffra."
|
||||
|
||||
msgid "one cell can only be copied to one or multiple cells in the same column"
|
||||
#, fuzzy
|
||||
msgid "One cell can only be copied to one or more cells in the same column."
|
||||
msgstr ""
|
||||
"En cell kan endast kopieras till en eller flertalet celler i samma kolumn"
|
||||
|
||||
@@ -2786,9 +2793,9 @@ msgid "Top"
|
||||
msgstr "Topplager"
|
||||
|
||||
msgid ""
|
||||
"The fan controls the temperature during printing to improve print "
|
||||
"quality.The system automatically adjusts the fan's switch and speed "
|
||||
"according to different printing materials."
|
||||
"The fan controls the temperature during printing to improve print quality. "
|
||||
"The system automatically adjusts the fan's switch and speed according to "
|
||||
"different printing materials."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -3630,8 +3637,7 @@ msgstr ""
|
||||
msgid "Please unload all filament before switching."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"AMS type switching needs firmware update, taking about 30s. Switch now ?"
|
||||
msgid "AMS type switching needs firmware update, taking about 30s. Switch now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Arrange AMS Order"
|
||||
@@ -3656,13 +3662,12 @@ msgstr ""
|
||||
"brandväggsinställningar och vpn-programvara och försök igen."
|
||||
|
||||
msgid ""
|
||||
"Failed to install the plug-in. Please check whether it is blocked or deleted "
|
||||
"by anti-virus software."
|
||||
"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 "
|
||||
"deleted by anti-virus software."
|
||||
msgstr ""
|
||||
"Det gick inte att installera plugin-programmet. Kontrollera om den är "
|
||||
"blockerad eller har raderats av antivirusprogram."
|
||||
|
||||
msgid "click here to see more info"
|
||||
msgid "Click here to see more info"
|
||||
msgstr "Klicka här för att se mer information"
|
||||
|
||||
msgid ""
|
||||
@@ -4167,7 +4172,7 @@ msgstr ""
|
||||
msgid "Nozzle offset calibration"
|
||||
msgstr ""
|
||||
|
||||
msgid "high temperature auto bed leveling"
|
||||
msgid "High temperature auto bed leveling"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto Check: Quick Release Lever"
|
||||
@@ -4443,6 +4448,12 @@ msgstr "Skrivarens inställningar"
|
||||
msgid "parameter name"
|
||||
msgstr "Parameter namn"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "Räckvidd"
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "Värdet är utanför intervallet."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s can't be a percentage"
|
||||
msgstr "%s kan inte vara procent"
|
||||
@@ -4458,9 +4469,6 @@ msgstr "Parameter validering"
|
||||
msgid "Value %s is out of range. The valid range is from %d to %d."
|
||||
msgstr ""
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "Värdet är utanför intervallet."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Is it %s%% or %s %s?\n"
|
||||
@@ -4511,7 +4519,7 @@ msgid "Line Width"
|
||||
msgstr "Linjebredd"
|
||||
|
||||
msgid "Actual Speed"
|
||||
msgstr ""
|
||||
msgstr "Faktisk hastighet"
|
||||
|
||||
msgid "Fan Speed"
|
||||
msgstr "Fläkt Hastighet"
|
||||
@@ -4520,7 +4528,7 @@ msgid "Flow"
|
||||
msgstr "Flöde"
|
||||
|
||||
msgid "Actual Flow"
|
||||
msgstr ""
|
||||
msgstr "Faktiskt flöde"
|
||||
|
||||
msgid "Tool"
|
||||
msgstr "Verktyg"
|
||||
@@ -4531,6 +4539,9 @@ msgstr "Lager tid"
|
||||
msgid "Layer Time (log)"
|
||||
msgstr "Lagertid (logg)"
|
||||
|
||||
msgid "Pressure Advance"
|
||||
msgstr ""
|
||||
|
||||
msgid "Noop"
|
||||
msgstr ""
|
||||
|
||||
@@ -4618,9 +4629,6 @@ msgstr ""
|
||||
msgid "Fan speed"
|
||||
msgstr "Fläkt hastighet"
|
||||
|
||||
msgid "°C"
|
||||
msgstr "° C"
|
||||
|
||||
msgid "Time"
|
||||
msgstr "Tid"
|
||||
|
||||
@@ -4655,6 +4663,9 @@ msgid "Color: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Actual Speed: "
|
||||
msgstr "Faktisk hastighet: "
|
||||
|
||||
msgid "PA: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Statistics of All Plates"
|
||||
@@ -4769,12 +4780,12 @@ msgid "Speed (mm/s)"
|
||||
msgstr "Hastighet (mm/s)"
|
||||
|
||||
msgid "Actual Speed (mm/s)"
|
||||
msgstr ""
|
||||
msgstr "Faktisk hastighet (mm/s)"
|
||||
|
||||
msgid "Fan Speed (%)"
|
||||
msgstr "Fläkt hastighet (%)"
|
||||
|
||||
msgid "Temperature (°C)"
|
||||
msgid "Temperature (℃)"
|
||||
msgstr "Temperatur (°C)"
|
||||
|
||||
msgid "Volumetric flow rate (mm³/s)"
|
||||
@@ -4792,9 +4803,6 @@ msgstr "Filament byten"
|
||||
msgid "Options"
|
||||
msgstr "Val"
|
||||
|
||||
msgid "travel"
|
||||
msgstr "flytta"
|
||||
|
||||
msgid "Extruder"
|
||||
msgstr "Extruder"
|
||||
|
||||
@@ -4889,16 +4897,13 @@ msgstr "Öka/minska redigeringsområdet"
|
||||
msgid "Sequence"
|
||||
msgstr "Sekvens"
|
||||
|
||||
msgid "object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "part selection"
|
||||
msgid "Object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys can quickly change the color of objects"
|
||||
msgid "Number keys can quickly change the color of objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -5048,6 +5053,30 @@ msgstr ""
|
||||
msgid "Fit camera to scene or selected object."
|
||||
msgstr ""
|
||||
|
||||
msgid "3D Navigator"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom button"
|
||||
msgstr ""
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr ""
|
||||
|
||||
msgid "Outline"
|
||||
msgstr ""
|
||||
|
||||
msgid "Perspective"
|
||||
msgstr ""
|
||||
|
||||
msgid "Axes"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Labels"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "Färgläggningsverktyg"
|
||||
|
||||
@@ -5128,7 +5157,7 @@ msgid "Only the object being edited is visible."
|
||||
msgstr "Bara objektet som editeras är synligt."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgid "Filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -5547,6 +5576,12 @@ msgstr ""
|
||||
msgid "Show 3D navigator in Prepare and Preview scene."
|
||||
msgstr ""
|
||||
|
||||
msgid "Show Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Show Gridlines on plate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset Window Layout"
|
||||
msgstr ""
|
||||
|
||||
@@ -6272,8 +6307,8 @@ msgid "Layer: %d/%d"
|
||||
msgstr "Lager: %d/%d"
|
||||
|
||||
msgid ""
|
||||
"Please heat the nozzle to above 170°C before loading or unloading filament."
|
||||
msgstr "Värm nozzeln till över 170°C innan du laddar eller matar ut filament."
|
||||
"Please heat the nozzle to above 170℃ before loading or unloading filament."
|
||||
msgstr "Värm nozzeln till över 170℃ innan du laddar eller matar ut filament."
|
||||
|
||||
msgid "Chamber temperature cannot be changed in cooling mode while printing."
|
||||
msgstr ""
|
||||
@@ -6382,7 +6417,7 @@ msgstr "Synkroniserar utskriftsresultaten. Försök igen om några sekunder."
|
||||
msgid "Upload failed\n"
|
||||
msgstr "Uppladdningen misslyckades\n"
|
||||
|
||||
msgid "obtaining instance_id failed\n"
|
||||
msgid "Obtaining instance_id failed\n"
|
||||
msgstr "det gick inte att få instance_id\n"
|
||||
|
||||
msgid ""
|
||||
@@ -6646,9 +6681,6 @@ msgstr "Klipp kontakter"
|
||||
msgid "Layers"
|
||||
msgstr "Lager"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "Räckvidd"
|
||||
|
||||
msgid ""
|
||||
"The application cannot run normally because OpenGL version is lower than "
|
||||
"3.2.\n"
|
||||
@@ -7371,7 +7403,7 @@ msgid ""
|
||||
"connected printer.\n"
|
||||
"After syncing, software can optimize printing time and filament usage when "
|
||||
"slicing.\n"
|
||||
"Would you like to sync now ?"
|
||||
"Would you like to sync now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync now"
|
||||
@@ -7402,13 +7434,14 @@ msgstr "Spara projekt"
|
||||
msgid "Importing Model"
|
||||
msgstr "Importerar Modell"
|
||||
|
||||
msgid "prepare 3MF file..."
|
||||
#, fuzzy
|
||||
msgid "Preparing 3MF file..."
|
||||
msgstr "förbereder 3mf-filen..."
|
||||
|
||||
msgid "Download failed, unknown file format."
|
||||
msgstr ""
|
||||
|
||||
msgid "downloading project..."
|
||||
msgid "Downloading project..."
|
||||
msgstr "laddar ner projekt ..."
|
||||
|
||||
msgid "Download failed, File size exception."
|
||||
@@ -7902,6 +7935,18 @@ msgstr ""
|
||||
msgid "By vendor"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimize filaments area height for..."
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid "filaments"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
||||
msgstr ""
|
||||
|
||||
msgid "Features"
|
||||
msgstr ""
|
||||
|
||||
@@ -7913,9 +7958,6 @@ msgid ""
|
||||
"same time and manage multiple devices."
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pop up to select filament grouping mode"
|
||||
msgstr ""
|
||||
|
||||
@@ -8272,10 +8314,10 @@ msgstr "PRE host: api-pre.bambu-lab.com/v1"
|
||||
msgid "Product host"
|
||||
msgstr "Produktvärd"
|
||||
|
||||
msgid "debug save button"
|
||||
msgid "Debug save button"
|
||||
msgstr "Spar knappen för felsökning"
|
||||
|
||||
msgid "save debug settings"
|
||||
msgid "Save debug settings"
|
||||
msgstr "spara felsöknings knappen"
|
||||
|
||||
msgid "DEBUG settings have been saved successfully!"
|
||||
@@ -8568,7 +8610,7 @@ msgid ""
|
||||
"*Automatic mode: Check for calibration before printing. Skip if unnecessary."
|
||||
msgstr ""
|
||||
|
||||
msgid "send completed"
|
||||
msgid "Send complete"
|
||||
msgstr "Skicka komplett"
|
||||
|
||||
msgid "Error code"
|
||||
@@ -8710,7 +8752,7 @@ msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"[ %s ] requires printing in a high-temperature environment.Please close the "
|
||||
"[ %s ] requires printing in a high-temperature environment. Please close the "
|
||||
"door."
|
||||
msgstr ""
|
||||
|
||||
@@ -9129,7 +9171,7 @@ msgid ""
|
||||
"ensure proper printing and achieve their intended effects (e.g., Gyroid, "
|
||||
"Cubic). Rotating the current sparse infill pattern may lead to insufficient "
|
||||
"support. Please proceed with caution and thoroughly check for any potential "
|
||||
"printing issues.Are you sure you want to enable this option?"
|
||||
"printing issues. Are you sure you want to enable this option?"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -9262,9 +9304,6 @@ msgstr ""
|
||||
msgid "Bridging"
|
||||
msgstr ""
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr ""
|
||||
|
||||
msgid "Walls"
|
||||
msgstr "Väggar"
|
||||
|
||||
@@ -10335,7 +10374,7 @@ msgstr "Flytta markeringen 10mm i positiv X riktning"
|
||||
msgid "Movement step set to 1 mm"
|
||||
msgstr "Rörelse steg är vald till 1mm"
|
||||
|
||||
msgid "keyboard 1-9: set filament for object/part"
|
||||
msgid "Keyboard 1-9: set filament for object/part"
|
||||
msgstr "tangentbord 1-9: fastställer filament för objekt/del"
|
||||
|
||||
msgid "Camera view - Default"
|
||||
@@ -11074,6 +11113,16 @@ msgid ""
|
||||
"The prime tower requires that support has the same layer height with object."
|
||||
msgstr "Ett Prime Torn kräver att support har samma lagerhöjd som objektet."
|
||||
|
||||
msgid ""
|
||||
"For Organic supports, two walls are supported only with the Hollow/Default "
|
||||
"base pattern."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The Lightning base pattern is not supported by this support type; "
|
||||
"Rectilinear will be used instead."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Organic support tree tip diameter must not be smaller than support material "
|
||||
"extrusion width."
|
||||
@@ -12928,6 +12977,49 @@ msgid ""
|
||||
"tower to produce successive infill or sacrificial object extrusions reliably."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer pre-extrusion distance"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion distance for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer pre-extrusion length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion length for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Tower ironing area"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Ironing area for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "mm²"
|
||||
msgstr "mm²"
|
||||
|
||||
msgid "Interface layer purge length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Purge length for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer print temperature"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Print temperature for prime tower interface layer (where different materials "
|
||||
"meet). If set to -1, use max recommended nozzle temperature."
|
||||
msgstr ""
|
||||
|
||||
msgid "Speed of the last cooling move"
|
||||
msgstr ""
|
||||
|
||||
@@ -13436,8 +13528,8 @@ msgstr ""
|
||||
"väggar så att ytan får ett strävt utseende. Denna inställning styr fuzzy "
|
||||
"position"
|
||||
|
||||
msgid "None (allow paint)"
|
||||
msgstr ""
|
||||
msgid "Painted only"
|
||||
msgstr "Endast målad"
|
||||
|
||||
msgid "Contour"
|
||||
msgstr "Kontur"
|
||||
@@ -14503,9 +14595,6 @@ msgid ""
|
||||
"conical material. A value of 0 will fill all the holes in the model base."
|
||||
msgstr ""
|
||||
|
||||
msgid "mm²"
|
||||
msgstr "mm²"
|
||||
|
||||
msgid "Detect overhang wall"
|
||||
msgstr "Upptäck överhängs vägg"
|
||||
|
||||
@@ -15469,8 +15558,17 @@ msgstr "Support gränssnittets hastighet"
|
||||
msgid "Base pattern"
|
||||
msgstr "Botten mönster"
|
||||
|
||||
msgid "Line pattern of support."
|
||||
msgstr "Supportens linje mönster"
|
||||
msgid ""
|
||||
"Line pattern of support.\n"
|
||||
"\n"
|
||||
"The Default option for Tree supports is Hollow, which means no base pattern. "
|
||||
"For other support types, the Default option is the Rectilinear pattern.\n"
|
||||
"\n"
|
||||
"NOTE: For Organic supports, the two walls are supported only with the Hollow/"
|
||||
"Default base pattern. The Lightning base pattern is supported only by Tree "
|
||||
"Slim/Strong/Hybrid supports. For the other support types, the Rectilinear "
|
||||
"will be used instead of Lightning."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rectilinear grid"
|
||||
msgstr "Rät linjärt nät"
|
||||
@@ -15974,6 +16072,23 @@ msgstr ""
|
||||
msgid "The wall of prime tower will skip the start points of wipe path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable tower interface features"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable optimized prime tower interface behavior when different materials "
|
||||
"meet."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cool down from interface boost during prime tower"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"When interface-layer temperature boost is active, set the nozzle back to "
|
||||
"print temperature at the start of the prime tower so it cools down during "
|
||||
"the tower."
|
||||
msgstr ""
|
||||
|
||||
msgid "Infill gap"
|
||||
msgstr ""
|
||||
|
||||
@@ -17435,8 +17550,8 @@ msgstr ""
|
||||
msgid "Plate Type"
|
||||
msgstr "Typ av byggplatta"
|
||||
|
||||
msgid "filament position"
|
||||
msgstr "Filament position"
|
||||
msgid "Filament position"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filament For Calibration"
|
||||
msgstr "Filament för kalibrering"
|
||||
@@ -18358,7 +18473,8 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Printer and all the filament&&process presets that belongs to the printer.\n"
|
||||
"Printer and all the filament and process presets that belongs to the "
|
||||
"printer.\n"
|
||||
"Can be shared with others."
|
||||
msgstr ""
|
||||
|
||||
@@ -19152,7 +19268,7 @@ msgstr ""
|
||||
msgid "Upgrading"
|
||||
msgstr ""
|
||||
|
||||
msgid "syncing"
|
||||
msgid "Syncing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printing Finish"
|
||||
@@ -19718,6 +19834,22 @@ msgstr ""
|
||||
"ABS, kan en lämplig ökning av värmebäddens temperatur minska sannolikheten "
|
||||
"för vridning?"
|
||||
|
||||
#~ msgid "Line pattern of support."
|
||||
#~ msgstr "Supportens linje mönster"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Failed to install the plug-in. Please check whether it is blocked or "
|
||||
#~ "deleted by anti-virus software."
|
||||
#~ msgstr ""
|
||||
#~ "Det gick inte att installera plugin-programmet. Kontrollera om den är "
|
||||
#~ "blockerad eller har raderats av antivirusprogram."
|
||||
|
||||
#~ msgid "°C"
|
||||
#~ msgstr "° C"
|
||||
|
||||
#~ msgid "travel"
|
||||
#~ msgstr "flytta"
|
||||
|
||||
#~ msgid "Replace with STL"
|
||||
#~ msgstr "Ersätt med STL"
|
||||
|
||||
@@ -19813,11 +19945,11 @@ msgstr ""
|
||||
#~ "återstående kapaciteten automatiskt."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The recommended minimum temperature is less than 190°C or the recommended "
|
||||
#~ "maximum temperature is greater than 300°C.\n"
|
||||
#~ "The recommended minimum temperature is less than 190℃ or the recommended "
|
||||
#~ "maximum temperature is greater than 300℃.\n"
|
||||
#~ msgstr ""
|
||||
#~ "Den rekommenderade lägsta temperaturen är lägre än 190°C eller den "
|
||||
#~ "rekommenderade max temperaturen är högre än 300°C.\n"
|
||||
#~ "Den rekommenderade lägsta temperaturen är lägre än 190℃ eller den "
|
||||
#~ "rekommenderade max temperaturen är högre än 300℃.\n"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Spiral mode only works when wall loops is 1, support is disabled, top "
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-02-12 08:42+0800\n"
|
||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
||||
"PO-Revision-Date: 2025-09-30 09:12+0300\n"
|
||||
"Last-Translator: GlauTech\n"
|
||||
"Language-Team: \n"
|
||||
@@ -432,7 +432,7 @@ msgstr "Parça koordinatları"
|
||||
msgid "Size"
|
||||
msgstr "Boyut"
|
||||
|
||||
msgid "uniform scale"
|
||||
msgid "Uniform scale"
|
||||
msgstr "düzgün ölçek"
|
||||
|
||||
msgid "Planar"
|
||||
@@ -692,7 +692,7 @@ msgstr "Bağlayıcı"
|
||||
msgid "Cut by Plane"
|
||||
msgstr "Düzlemsel Kes"
|
||||
|
||||
msgid "non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgid "Non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgstr ""
|
||||
"Ana kat olmayan kenarlar kesme aletinden kaynaklanıyor, şimdi düzeltmek "
|
||||
"istiyor musunuz?"
|
||||
@@ -2247,31 +2247,37 @@ msgstr ""
|
||||
msgid "Select All"
|
||||
msgstr "Hepsini seç"
|
||||
|
||||
msgid "select all objects on current plate"
|
||||
msgid "Select all objects on the current plate"
|
||||
msgstr "geçerli plakadaki tüm nesneleri seç"
|
||||
|
||||
msgid "Select All Plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select all objects on all plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete All"
|
||||
msgstr "Hepsini sil"
|
||||
|
||||
msgid "delete all objects on current plate"
|
||||
msgid "Delete all objects on the current plate"
|
||||
msgstr "geçerli plakadaki tüm nesneleri sil"
|
||||
|
||||
msgid "Arrange"
|
||||
msgstr "Hizala"
|
||||
|
||||
msgid "arrange current plate"
|
||||
msgid "Arrange current plate"
|
||||
msgstr "Mevcut plakayı hizala"
|
||||
|
||||
msgid "Reload All"
|
||||
msgstr "Tümünü yeniden yükle"
|
||||
|
||||
msgid "reload all from disk"
|
||||
msgid "Reload all from disk"
|
||||
msgstr "Hepsini diskten yeniden yükle"
|
||||
|
||||
msgid "Auto Rotate"
|
||||
msgstr "Otomatik döndürme"
|
||||
|
||||
msgid "auto rotate current plate"
|
||||
msgid "Auto rotate current plate"
|
||||
msgstr "Geçerli plakayı otomatik döndürme"
|
||||
|
||||
msgid "Delete Plate"
|
||||
@@ -2583,7 +2589,8 @@ msgstr "Yükseklik aralığı ekle"
|
||||
msgid "Invalid numeric."
|
||||
msgstr "Geçersiz sayı."
|
||||
|
||||
msgid "one cell can only be copied to one or multiple cells in the same column"
|
||||
#, fuzzy
|
||||
msgid "One cell can only be copied to one or more cells in the same column."
|
||||
msgstr ""
|
||||
"bir hücre aynı sütundaki yalnızca bir veya daha fazla hücreye kopyalanabilir"
|
||||
|
||||
@@ -2838,9 +2845,9 @@ msgid "Top"
|
||||
msgstr "Üst"
|
||||
|
||||
msgid ""
|
||||
"The fan controls the temperature during printing to improve print "
|
||||
"quality.The system automatically adjusts the fan's switch and speed "
|
||||
"according to different printing materials."
|
||||
"The fan controls the temperature during printing to improve print quality. "
|
||||
"The system automatically adjusts the fan's switch and speed according to "
|
||||
"different printing materials."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -3693,8 +3700,7 @@ msgstr ""
|
||||
msgid "Please unload all filament before switching."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"AMS type switching needs firmware update, taking about 30s. Switch now ?"
|
||||
msgid "AMS type switching needs firmware update, taking about 30s. Switch now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Arrange AMS Order"
|
||||
@@ -3719,13 +3725,12 @@ msgstr ""
|
||||
"yazılımınızı kontrol edin, kontrol edip yeniden deneyin."
|
||||
|
||||
msgid ""
|
||||
"Failed to install the plug-in. Please check whether it is blocked or deleted "
|
||||
"by anti-virus software."
|
||||
"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 "
|
||||
"deleted by anti-virus software."
|
||||
msgstr ""
|
||||
"Eklenti yüklenemedi. Lütfen anti-virüs yazılımı tarafından engellenip "
|
||||
"engellenmediğini veya silinip silinmediğini kontrol edin."
|
||||
|
||||
msgid "click here to see more info"
|
||||
msgid "Click here to see more info"
|
||||
msgstr "daha fazla bilgi görmek için burayı tıklayın"
|
||||
|
||||
msgid ""
|
||||
@@ -4264,7 +4269,7 @@ msgstr ""
|
||||
msgid "Nozzle offset calibration"
|
||||
msgstr ""
|
||||
|
||||
msgid "high temperature auto bed leveling"
|
||||
msgid "High temperature auto bed leveling"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto Check: Quick Release Lever"
|
||||
@@ -4542,6 +4547,12 @@ msgstr "Yazıcı Ayarları"
|
||||
msgid "parameter name"
|
||||
msgstr "parametre adı"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "Aralık"
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "Değer aralık dışında."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s can't be a percentage"
|
||||
msgstr "%s yüzde olamaz"
|
||||
@@ -4557,9 +4568,6 @@ msgstr "Parametre doğrulama"
|
||||
msgid "Value %s is out of range. The valid range is from %d to %d."
|
||||
msgstr "Değer %s aralık dışında. Geçerli aralık %d ile %d arasındadır."
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "Değer aralık dışında."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Is it %s%% or %s %s?\n"
|
||||
@@ -4612,7 +4620,7 @@ msgid "Line Width"
|
||||
msgstr "Katman Genişliği"
|
||||
|
||||
msgid "Actual Speed"
|
||||
msgstr ""
|
||||
msgstr "Gerçek Hız"
|
||||
|
||||
msgid "Fan Speed"
|
||||
msgstr "Fan hızı"
|
||||
@@ -4621,7 +4629,7 @@ msgid "Flow"
|
||||
msgstr "Akış"
|
||||
|
||||
msgid "Actual Flow"
|
||||
msgstr ""
|
||||
msgstr "Gerçek Akış"
|
||||
|
||||
msgid "Tool"
|
||||
msgstr "Araç"
|
||||
@@ -4632,6 +4640,9 @@ msgstr "Katman Süresi"
|
||||
msgid "Layer Time (log)"
|
||||
msgstr "Katman Süresi (günlük)"
|
||||
|
||||
msgid "Pressure Advance"
|
||||
msgstr ""
|
||||
|
||||
msgid "Noop"
|
||||
msgstr ""
|
||||
|
||||
@@ -4719,9 +4730,6 @@ msgstr "mm³/s"
|
||||
msgid "Fan speed"
|
||||
msgstr "Fan hızı"
|
||||
|
||||
msgid "°C"
|
||||
msgstr "°C"
|
||||
|
||||
msgid "Time"
|
||||
msgstr "Zaman"
|
||||
|
||||
@@ -4756,6 +4764,9 @@ msgid "Color: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Actual Speed: "
|
||||
msgstr "Gerçek Hız: "
|
||||
|
||||
msgid "PA: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Statistics of All Plates"
|
||||
@@ -4870,12 +4881,12 @@ msgid "Speed (mm/s)"
|
||||
msgstr "Hız (mm/s)"
|
||||
|
||||
msgid "Actual Speed (mm/s)"
|
||||
msgstr ""
|
||||
msgstr "Gerçek Hız (mm/s)"
|
||||
|
||||
msgid "Fan Speed (%)"
|
||||
msgstr "Fan hızı (%)"
|
||||
|
||||
msgid "Temperature (°C)"
|
||||
msgid "Temperature (℃)"
|
||||
msgstr "Sıcaklık (°C)"
|
||||
|
||||
msgid "Volumetric flow rate (mm³/s)"
|
||||
@@ -4893,9 +4904,6 @@ msgstr "Filament Değişiklikleri"
|
||||
msgid "Options"
|
||||
msgstr "Seçenekler"
|
||||
|
||||
msgid "travel"
|
||||
msgstr "seyahat"
|
||||
|
||||
msgid "Extruder"
|
||||
msgstr "Ekstruder"
|
||||
|
||||
@@ -4994,16 +5002,13 @@ msgstr "Düzenleme alanını artır/azalt"
|
||||
msgid "Sequence"
|
||||
msgstr "Sekans"
|
||||
|
||||
msgid "object selection"
|
||||
msgid "Object selection"
|
||||
msgstr "nesne seçimi"
|
||||
|
||||
msgid "part selection"
|
||||
msgstr "parça seçimi"
|
||||
|
||||
msgid "number keys"
|
||||
msgstr "sayı tuşları"
|
||||
|
||||
msgid "number keys can quickly change the color of objects"
|
||||
msgid "Number keys can quickly change the color of objects"
|
||||
msgstr "Sayı tuşları nesnelerin rengini hızla değiştirebilir"
|
||||
|
||||
msgid ""
|
||||
@@ -5153,6 +5158,30 @@ msgstr ""
|
||||
msgid "Fit camera to scene or selected object."
|
||||
msgstr ""
|
||||
|
||||
msgid "3D Navigator"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom button"
|
||||
msgstr ""
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr "Çıkıntılar"
|
||||
|
||||
msgid "Outline"
|
||||
msgstr ""
|
||||
|
||||
msgid "Perspective"
|
||||
msgstr ""
|
||||
|
||||
msgid "Axes"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Labels"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "Boyama Araç Çubuğu"
|
||||
|
||||
@@ -5235,7 +5264,7 @@ msgid "Only the object being edited is visible."
|
||||
msgstr "Yalnızca düzenlenen nesne görünür."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgid "Filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -5657,6 +5686,12 @@ msgstr "3D Gezgini Göster"
|
||||
msgid "Show 3D navigator in Prepare and Preview scene."
|
||||
msgstr "Hazırlama ve Önizleme sahnesinde 3D gezgini göster."
|
||||
|
||||
msgid "Show Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Show Gridlines on plate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset Window Layout"
|
||||
msgstr "Pencere Düzenini Sıfırla"
|
||||
|
||||
@@ -6403,7 +6438,7 @@ msgid "Layer: %d/%d"
|
||||
msgstr "Katman: %d/%d"
|
||||
|
||||
msgid ""
|
||||
"Please heat the nozzle to above 170°C before loading or unloading filament."
|
||||
"Please heat the nozzle to above 170℃ before loading or unloading filament."
|
||||
msgstr ""
|
||||
"Filamenti yüklemeden veya boşaltmadan önce lütfen nozulu 170 derecenin "
|
||||
"üzerine ısıtın."
|
||||
@@ -6517,7 +6552,7 @@ msgstr ""
|
||||
msgid "Upload failed\n"
|
||||
msgstr "Yükleme başarısız\n"
|
||||
|
||||
msgid "obtaining instance_id failed\n"
|
||||
msgid "Obtaining instance_id failed\n"
|
||||
msgstr "instance_id alınamadı\n"
|
||||
|
||||
msgid ""
|
||||
@@ -6798,9 +6833,6 @@ msgstr "Konektörleri kes"
|
||||
msgid "Layers"
|
||||
msgstr "Katmanlar"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "Aralık"
|
||||
|
||||
msgid ""
|
||||
"The application cannot run normally because OpenGL version is lower than "
|
||||
"3.2.\n"
|
||||
@@ -7536,7 +7568,7 @@ msgid ""
|
||||
"connected printer.\n"
|
||||
"After syncing, software can optimize printing time and filament usage when "
|
||||
"slicing.\n"
|
||||
"Would you like to sync now ?"
|
||||
"Would you like to sync now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync now"
|
||||
@@ -7566,13 +7598,14 @@ msgstr "Projeyi kaydet"
|
||||
msgid "Importing Model"
|
||||
msgstr "Model İçe aktarılıyor"
|
||||
|
||||
msgid "prepare 3MF file..."
|
||||
#, fuzzy
|
||||
msgid "Preparing 3MF file..."
|
||||
msgstr "3mf dosyasını hazırla..."
|
||||
|
||||
msgid "Download failed, unknown file format."
|
||||
msgstr "İndirme başarısız oldu, dosya türü bilinmiyor."
|
||||
|
||||
msgid "downloading project..."
|
||||
msgid "Downloading project..."
|
||||
msgstr "proje indiriliyor..."
|
||||
|
||||
msgid "Download failed, File size exception."
|
||||
@@ -8085,6 +8118,18 @@ msgstr ""
|
||||
msgid "By vendor"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimize filaments area height for..."
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr "(Yeniden başlatma gerektirir)"
|
||||
|
||||
msgid "filaments"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
||||
msgstr ""
|
||||
|
||||
msgid "Features"
|
||||
msgstr ""
|
||||
|
||||
@@ -8098,9 +8143,6 @@ msgstr ""
|
||||
"Bu seçenek etkinleştirildiğinde, aynı anda birden fazla cihaza bir görev "
|
||||
"gönderebilir ve birden fazla cihazı yönetebilirsiniz."
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr "(Yeniden başlatma gerektirir)"
|
||||
|
||||
msgid "Pop up to select filament grouping mode"
|
||||
msgstr ""
|
||||
|
||||
@@ -8473,10 +8515,10 @@ msgstr "ÖN ana bilgisayar: api-pre.bambu-lab.com/v1"
|
||||
msgid "Product host"
|
||||
msgstr "Ürün ana bilgisayarı"
|
||||
|
||||
msgid "debug save button"
|
||||
msgid "Debug save button"
|
||||
msgstr "hata ayıklama kaydet düğmesi"
|
||||
|
||||
msgid "save debug settings"
|
||||
msgid "Save debug settings"
|
||||
msgstr "hata ayıklama ayarlarını kaydet"
|
||||
|
||||
msgid "DEBUG settings have been saved successfully!"
|
||||
@@ -8765,7 +8807,7 @@ msgid ""
|
||||
"*Automatic mode: Check for calibration before printing. Skip if unnecessary."
|
||||
msgstr ""
|
||||
|
||||
msgid "send completed"
|
||||
msgid "Send complete"
|
||||
msgstr "gönderme tamamlandı"
|
||||
|
||||
msgid "Error code"
|
||||
@@ -8910,7 +8952,7 @@ msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"[ %s ] requires printing in a high-temperature environment.Please close the "
|
||||
"[ %s ] requires printing in a high-temperature environment. Please close the "
|
||||
"door."
|
||||
msgstr ""
|
||||
|
||||
@@ -9336,7 +9378,7 @@ msgid ""
|
||||
"ensure proper printing and achieve their intended effects (e.g., Gyroid, "
|
||||
"Cubic). Rotating the current sparse infill pattern may lead to insufficient "
|
||||
"support. Please proceed with caution and thoroughly check for any potential "
|
||||
"printing issues.Are you sure you want to enable this option?"
|
||||
"printing issues. Are you sure you want to enable this option?"
|
||||
msgstr ""
|
||||
"Dolgu desenleri genellikle, doğru baskı alınmasını ve istenen etkilerin (ör. "
|
||||
"Gyroid, Kübik) elde edilmesini sağlamak için döndürme işlemini otomatik "
|
||||
@@ -9493,9 +9535,6 @@ msgstr "Duvarlar ve Yüzeyler"
|
||||
msgid "Bridging"
|
||||
msgstr "Köprüleme"
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr "Çıkıntılar"
|
||||
|
||||
msgid "Walls"
|
||||
msgstr "Duvarlar"
|
||||
|
||||
@@ -10606,7 +10645,7 @@ msgstr "Seçimi pozitif X yönünde 10 mm taşı"
|
||||
msgid "Movement step set to 1 mm"
|
||||
msgstr "Hareket adımı 1 mm'ye ayarlandı"
|
||||
|
||||
msgid "keyboard 1-9: set filament for object/part"
|
||||
msgid "Keyboard 1-9: set filament for object/part"
|
||||
msgstr "klavye 1-9: nesne/parça için filamenti ayarlayın"
|
||||
|
||||
msgid "Camera view - Default"
|
||||
@@ -11378,6 +11417,16 @@ msgstr ""
|
||||
"Prime kulesi için, destek, nesne ile aynı katman yüksekliğine sahip "
|
||||
"olmalıdır."
|
||||
|
||||
msgid ""
|
||||
"For Organic supports, two walls are supported only with the Hollow/Default "
|
||||
"base pattern."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The Lightning base pattern is not supported by this support type; "
|
||||
"Rectilinear will be used instead."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Organic support tree tip diameter must not be smaller than support material "
|
||||
"extrusion width."
|
||||
@@ -13703,6 +13752,49 @@ msgstr ""
|
||||
"şekilde üretmek için her zaman bu miktardaki malzemeyi silme kulesine "
|
||||
"hazırlayacaktır."
|
||||
|
||||
msgid "Interface layer pre-extrusion distance"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion distance for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer pre-extrusion length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion length for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Tower ironing area"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Ironing area for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "mm²"
|
||||
msgstr "mm²"
|
||||
|
||||
msgid "Interface layer purge length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Purge length for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer print temperature"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Print temperature for prime tower interface layer (where different materials "
|
||||
"meet). If set to -1, use max recommended nozzle temperature."
|
||||
msgstr ""
|
||||
|
||||
msgid "Speed of the last cooling move"
|
||||
msgstr "Son soğutma hareketi hızı"
|
||||
|
||||
@@ -14285,8 +14377,8 @@ msgstr ""
|
||||
"Duvara baskı yaparken rastgele titreme, böylece yüzeyin pürüzlü bir görünüme "
|
||||
"sahip olması. Bu ayar pütürlü konumu kontrol eder."
|
||||
|
||||
msgid "None (allow paint)"
|
||||
msgstr ""
|
||||
msgid "Painted only"
|
||||
msgstr "Sadece boyalı"
|
||||
|
||||
msgid "Contour"
|
||||
msgstr "Kontur"
|
||||
@@ -15588,9 +15680,6 @@ msgstr ""
|
||||
"Modelin tabanındaki bir deliğin, konik malzemeyle doldurulmadan önce "
|
||||
"maksimum alanı. 0 değeri, model tabanındaki tüm delikleri dolduracaktır."
|
||||
|
||||
msgid "mm²"
|
||||
msgstr "mm²"
|
||||
|
||||
msgid "Detect overhang wall"
|
||||
msgstr "Çıkıntılı duvarı algıla"
|
||||
|
||||
@@ -16708,8 +16797,17 @@ msgstr "Destek arayüzünün hızı."
|
||||
msgid "Base pattern"
|
||||
msgstr "Destek deseni"
|
||||
|
||||
msgid "Line pattern of support."
|
||||
msgstr "Desteğin çizgi deseni."
|
||||
msgid ""
|
||||
"Line pattern of support.\n"
|
||||
"\n"
|
||||
"The Default option for Tree supports is Hollow, which means no base pattern. "
|
||||
"For other support types, the Default option is the Rectilinear pattern.\n"
|
||||
"\n"
|
||||
"NOTE: For Organic supports, the two walls are supported only with the Hollow/"
|
||||
"Default base pattern. The Lightning base pattern is supported only by Tree "
|
||||
"Slim/Strong/Hybrid supports. For the other support types, the Rectilinear "
|
||||
"will be used instead of Lightning."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rectilinear grid"
|
||||
msgstr "Doğrusal ızgara"
|
||||
@@ -17329,6 +17427,23 @@ msgstr ""
|
||||
msgid "The wall of prime tower will skip the start points of wipe path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable tower interface features"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable optimized prime tower interface behavior when different materials "
|
||||
"meet."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cool down from interface boost during prime tower"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"When interface-layer temperature boost is active, set the nozzle back to "
|
||||
"print temperature at the start of the prime tower so it cools down during "
|
||||
"the tower."
|
||||
msgstr ""
|
||||
|
||||
msgid "Infill gap"
|
||||
msgstr ""
|
||||
|
||||
@@ -18967,7 +19082,7 @@ msgstr ""
|
||||
msgid "Plate Type"
|
||||
msgstr "Plaka Tipi"
|
||||
|
||||
msgid "filament position"
|
||||
msgid "Filament position"
|
||||
msgstr "filament konumu"
|
||||
|
||||
msgid "Filament For Calibration"
|
||||
@@ -19921,7 +20036,8 @@ msgstr ""
|
||||
"Lütfen kapatıp tekrar deneyin."
|
||||
|
||||
msgid ""
|
||||
"Printer and all the filament&&process presets that belongs to the printer.\n"
|
||||
"Printer and all the filament and process presets that belongs to the "
|
||||
"printer.\n"
|
||||
"Can be shared with others."
|
||||
msgstr ""
|
||||
"Yazıcı ve yazıcıya ait tüm filament ve işlem ön ayarları.\n"
|
||||
@@ -20828,7 +20944,7 @@ msgstr "Tarihi görevler yok!"
|
||||
msgid "Upgrading"
|
||||
msgstr "Yükseltiliyor"
|
||||
|
||||
msgid "syncing"
|
||||
msgid "Syncing"
|
||||
msgstr "Senkronize ediliyor"
|
||||
|
||||
msgid "Printing Finish"
|
||||
@@ -21444,6 +21560,25 @@ msgstr ""
|
||||
"sıcaklığının uygun şekilde arttırılmasının bükülme olasılığını "
|
||||
"azaltabileceğini biliyor muydunuz?"
|
||||
|
||||
#~ msgid "Line pattern of support."
|
||||
#~ msgstr "Desteğin çizgi deseni."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Failed to install the plug-in. Please check whether it is blocked or "
|
||||
#~ "deleted by anti-virus software."
|
||||
#~ msgstr ""
|
||||
#~ "Eklenti yüklenemedi. Lütfen anti-virüs yazılımı tarafından engellenip "
|
||||
#~ "engellenmediğini veya silinip silinmediğini kontrol edin."
|
||||
|
||||
#~ msgid "°C"
|
||||
#~ msgstr "°C"
|
||||
|
||||
#~ msgid "travel"
|
||||
#~ msgstr "seyahat"
|
||||
|
||||
#~ msgid "part selection"
|
||||
#~ msgstr "parça seçimi"
|
||||
|
||||
#~ msgid "Filament remapping finished."
|
||||
#~ msgstr "Filament yeniden eşleşme işlemi tamamlandı."
|
||||
|
||||
@@ -21640,8 +21775,8 @@ msgstr ""
|
||||
#~ "olarak güncellenecektir."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The recommended minimum temperature is less than 190°C or the recommended "
|
||||
#~ "maximum temperature is greater than 300°C.\n"
|
||||
#~ "The recommended minimum temperature is less than 190℃ or the recommended "
|
||||
#~ "maximum temperature is greater than 300℃.\n"
|
||||
#~ msgstr ""
|
||||
#~ "Önerilen minimum sıcaklık 190 dereceden azdır veya önerilen maksimum "
|
||||
#~ "sıcaklık 300 dereceden yüksektir.\n"
|
||||
@@ -23929,7 +24064,7 @@ msgstr ""
|
||||
#~ "Hayır - yoğunluğu otomatik olarak %100 olmayan varsayılan değere "
|
||||
#~ "sıfırlayın"
|
||||
|
||||
#~ msgid "Please heat the nozzle to above 170°C before loading filament."
|
||||
#~ msgid "Please heat the nozzle to above 170℃ before loading filament."
|
||||
#~ msgstr ""
|
||||
#~ "Filamenti yüklemeden önce lütfen Nozulu 170 derecenin üzerine ısıtın."
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: orcaslicerua\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-02-12 08:42+0800\n"
|
||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
||||
"PO-Revision-Date: 2025-03-07 09:30+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Ukrainian\n"
|
||||
@@ -438,7 +438,7 @@ msgstr ""
|
||||
msgid "Size"
|
||||
msgstr "Розмір"
|
||||
|
||||
msgid "uniform scale"
|
||||
msgid "Uniform scale"
|
||||
msgstr "рівномірне масштабування"
|
||||
|
||||
msgid "Planar"
|
||||
@@ -702,7 +702,7 @@ msgstr "З'єднувач"
|
||||
msgid "Cut by Plane"
|
||||
msgstr "Вирізати площиною"
|
||||
|
||||
msgid "non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgid "Non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgstr ""
|
||||
"неманіфольдні ребра можуть бути викликані інструментом різання, ви хочете "
|
||||
"виправити це зараз?"
|
||||
@@ -2255,31 +2255,37 @@ msgstr ""
|
||||
msgid "Select All"
|
||||
msgstr "Вибрати все"
|
||||
|
||||
msgid "select all objects on current plate"
|
||||
msgid "Select all objects on the current plate"
|
||||
msgstr "вибрати всі об'єкти на поточній пластині"
|
||||
|
||||
msgid "Select All Plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select all objects on all plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete All"
|
||||
msgstr "Видалити все"
|
||||
|
||||
msgid "delete all objects on current plate"
|
||||
msgid "Delete all objects on the current plate"
|
||||
msgstr "видалити всі об'єкти на поточній пластині"
|
||||
|
||||
msgid "Arrange"
|
||||
msgstr "Впорядкувати"
|
||||
|
||||
msgid "arrange current plate"
|
||||
msgid "Arrange current plate"
|
||||
msgstr "впорядкувати поточну пластину"
|
||||
|
||||
msgid "Reload All"
|
||||
msgstr "Перезавантажити все"
|
||||
|
||||
msgid "reload all from disk"
|
||||
msgid "Reload all from disk"
|
||||
msgstr "перезавантажити все з диска"
|
||||
|
||||
msgid "Auto Rotate"
|
||||
msgstr "Авто-поворот"
|
||||
|
||||
msgid "auto rotate current plate"
|
||||
msgid "Auto rotate current plate"
|
||||
msgstr "автоповорот поточної пластини"
|
||||
|
||||
msgid "Delete Plate"
|
||||
@@ -2607,7 +2613,8 @@ msgstr "Додавання діапазон висот шарів"
|
||||
msgid "Invalid numeric."
|
||||
msgstr "Неприпустиме числове значення."
|
||||
|
||||
msgid "one cell can only be copied to one or multiple cells in the same column"
|
||||
#, fuzzy
|
||||
msgid "One cell can only be copied to one or more cells in the same column."
|
||||
msgstr ""
|
||||
"одну клітинку можна скопіювати лише в одну або декілька клітинок у тому "
|
||||
"самому стовпці"
|
||||
@@ -2862,9 +2869,9 @@ msgid "Top"
|
||||
msgstr "Верх"
|
||||
|
||||
msgid ""
|
||||
"The fan controls the temperature during printing to improve print "
|
||||
"quality.The system automatically adjusts the fan's switch and speed "
|
||||
"according to different printing materials."
|
||||
"The fan controls the temperature during printing to improve print quality. "
|
||||
"The system automatically adjusts the fan's switch and speed according to "
|
||||
"different printing materials."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -3720,8 +3727,7 @@ msgstr ""
|
||||
msgid "Please unload all filament before switching."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"AMS type switching needs firmware update, taking about 30s. Switch now ?"
|
||||
msgid "AMS type switching needs firmware update, taking about 30s. Switch now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Arrange AMS Order"
|
||||
@@ -3747,14 +3753,12 @@ msgstr ""
|
||||
"Програмне забезпечення, перевірте та повторіть спробу."
|
||||
|
||||
msgid ""
|
||||
"Failed to install the plug-in. Please check whether it is blocked or deleted "
|
||||
"by anti-virus software."
|
||||
"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 "
|
||||
"deleted by anti-virus software."
|
||||
msgstr ""
|
||||
"Не вдалося встановити плагін. Будь ласка, перевірте, чи він не заблокований "
|
||||
"або видалений\n"
|
||||
"за допомогою антивірусного програмного забезпечення."
|
||||
|
||||
msgid "click here to see more info"
|
||||
msgid "Click here to see more info"
|
||||
msgstr "натисніть тут, щоб побачити більше інформації"
|
||||
|
||||
msgid ""
|
||||
@@ -4288,7 +4292,7 @@ msgstr ""
|
||||
msgid "Nozzle offset calibration"
|
||||
msgstr ""
|
||||
|
||||
msgid "high temperature auto bed leveling"
|
||||
msgid "High temperature auto bed leveling"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto Check: Quick Release Lever"
|
||||
@@ -4566,6 +4570,12 @@ msgstr "Налаштування принтера"
|
||||
msgid "parameter name"
|
||||
msgstr "ім'я параметра"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "Діапазон"
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "Значення поза допустимим діапазоном."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s can't be a percentage"
|
||||
msgstr "%s не може бути відсотком"
|
||||
@@ -4582,9 +4592,6 @@ msgid "Value %s is out of range. The valid range is from %d to %d."
|
||||
msgstr ""
|
||||
"Значення %s знаходиться за межами діапазону. Дійсний діапазон від %d до %d."
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "Значення поза допустимим діапазоном."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Is it %s%% or %s %s?\n"
|
||||
@@ -4637,16 +4644,16 @@ msgid "Line Width"
|
||||
msgstr "Ширина лінії"
|
||||
|
||||
msgid "Actual Speed"
|
||||
msgstr ""
|
||||
msgstr "Фактична швидкість"
|
||||
|
||||
msgid "Fan Speed"
|
||||
msgstr "Швидкість Вентилятора"
|
||||
msgstr "Швидкість вентилятора"
|
||||
|
||||
msgid "Flow"
|
||||
msgstr "Потік"
|
||||
|
||||
msgid "Actual Flow"
|
||||
msgstr ""
|
||||
msgstr "Фактичний потік"
|
||||
|
||||
msgid "Tool"
|
||||
msgstr "Інструмент"
|
||||
@@ -4657,6 +4664,9 @@ msgstr "Час Шару"
|
||||
msgid "Layer Time (log)"
|
||||
msgstr "Час шару (журнал)"
|
||||
|
||||
msgid "Pressure Advance"
|
||||
msgstr ""
|
||||
|
||||
msgid "Noop"
|
||||
msgstr ""
|
||||
|
||||
@@ -4744,9 +4754,6 @@ msgstr "мм³/с"
|
||||
msgid "Fan speed"
|
||||
msgstr "Швидкість вентилятора"
|
||||
|
||||
msgid "°C"
|
||||
msgstr ""
|
||||
|
||||
msgid "Time"
|
||||
msgstr "Час"
|
||||
|
||||
@@ -4781,6 +4788,9 @@ msgid "Color: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Actual Speed: "
|
||||
msgstr "Фактична швидкість: "
|
||||
|
||||
msgid "PA: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Statistics of All Plates"
|
||||
@@ -4895,12 +4905,12 @@ msgid "Speed (mm/s)"
|
||||
msgstr "Швидкість (мм/с)"
|
||||
|
||||
msgid "Actual Speed (mm/s)"
|
||||
msgstr ""
|
||||
msgstr "Фактична швидкість (мм/с)"
|
||||
|
||||
msgid "Fan Speed (%)"
|
||||
msgstr "Швидкість Вентилятора (%)"
|
||||
|
||||
msgid "Temperature (°C)"
|
||||
msgid "Temperature (℃)"
|
||||
msgstr "Температура (°С)"
|
||||
|
||||
msgid "Volumetric flow rate (mm³/s)"
|
||||
@@ -4918,9 +4928,6 @@ msgstr "Зміна філаменту"
|
||||
msgid "Options"
|
||||
msgstr "Параметри"
|
||||
|
||||
msgid "travel"
|
||||
msgstr "переміщення"
|
||||
|
||||
msgid "Extruder"
|
||||
msgstr "Екструдер"
|
||||
|
||||
@@ -5015,16 +5022,13 @@ msgstr "Збільшення/зменшення області редагува
|
||||
msgid "Sequence"
|
||||
msgstr "Послідовність"
|
||||
|
||||
msgid "object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "part selection"
|
||||
msgid "Object selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys"
|
||||
msgstr ""
|
||||
|
||||
msgid "number keys can quickly change the color of objects"
|
||||
msgid "Number keys can quickly change the color of objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -5174,6 +5178,30 @@ msgstr ""
|
||||
msgid "Fit camera to scene or selected object."
|
||||
msgstr ""
|
||||
|
||||
msgid "3D Navigator"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom button"
|
||||
msgstr ""
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr "Нависання"
|
||||
|
||||
msgid "Outline"
|
||||
msgstr ""
|
||||
|
||||
msgid "Perspective"
|
||||
msgstr ""
|
||||
|
||||
msgid "Axes"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Labels"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "Панель інструментів малювання"
|
||||
|
||||
@@ -5256,7 +5284,7 @@ msgid "Only the object being edited is visible."
|
||||
msgstr "Відображається лише редагований об'єкт."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgid "Filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -5675,6 +5703,12 @@ msgstr "Показати 3D-навігатор"
|
||||
msgid "Show 3D navigator in Prepare and Preview scene."
|
||||
msgstr "Показати 3D-навігатор у сцені підготовки та попереднього перегляду"
|
||||
|
||||
msgid "Show Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Show Gridlines on plate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset Window Layout"
|
||||
msgstr "Скинути розташування вікон"
|
||||
|
||||
@@ -6442,7 +6476,7 @@ msgstr "Шар: %d/%d"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Please heat the nozzle to above 170°C before loading or unloading filament."
|
||||
"Please heat the nozzle to above 170℃ before loading or unloading filament."
|
||||
msgstr ""
|
||||
"Будь ласка, нагрійте насадку до понад 170 градусів перед завантаженням або "
|
||||
"вивантаженням філаменту."
|
||||
@@ -6556,7 +6590,7 @@ msgstr ""
|
||||
msgid "Upload failed\n"
|
||||
msgstr "Помилка завантаження\n"
|
||||
|
||||
msgid "obtaining instance_id failed\n"
|
||||
msgid "Obtaining instance_id failed\n"
|
||||
msgstr "помилка отримання instance_id\n"
|
||||
|
||||
msgid ""
|
||||
@@ -6847,9 +6881,6 @@ msgstr "Вирізати з'єднувачі"
|
||||
msgid "Layers"
|
||||
msgstr "Шари"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "Діапазон"
|
||||
|
||||
msgid ""
|
||||
"The application cannot run normally because OpenGL version is lower than "
|
||||
"3.2.\n"
|
||||
@@ -7578,7 +7609,7 @@ msgid ""
|
||||
"connected printer.\n"
|
||||
"After syncing, software can optimize printing time and filament usage when "
|
||||
"slicing.\n"
|
||||
"Would you like to sync now ?"
|
||||
"Would you like to sync now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync now"
|
||||
@@ -7609,13 +7640,14 @@ msgstr "Зберегти проект"
|
||||
msgid "Importing Model"
|
||||
msgstr "Імпорт моделі"
|
||||
|
||||
msgid "prepare 3MF file..."
|
||||
#, fuzzy
|
||||
msgid "Preparing 3MF file..."
|
||||
msgstr "підготувати файл 3MF..."
|
||||
|
||||
msgid "Download failed, unknown file format."
|
||||
msgstr "Не вдалося завантажити, невідомий формат файлу."
|
||||
|
||||
msgid "downloading project..."
|
||||
msgid "Downloading project..."
|
||||
msgstr "завантажую проект..."
|
||||
|
||||
msgid "Download failed, File size exception."
|
||||
@@ -8127,6 +8159,18 @@ msgstr ""
|
||||
msgid "By vendor"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimize filaments area height for..."
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid "filaments"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
||||
msgstr ""
|
||||
|
||||
msgid "Features"
|
||||
msgstr ""
|
||||
|
||||
@@ -8140,9 +8184,6 @@ msgstr ""
|
||||
"З цією опцією ввімкненою, ви можете відправляти завдання на кілька пристроїв "
|
||||
"одночасно та керувати декількома пристроями."
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pop up to select filament grouping mode"
|
||||
msgstr ""
|
||||
|
||||
@@ -8515,10 +8556,10 @@ msgstr "Хост PRE: api-pre.bambu-lab.com/v1"
|
||||
msgid "Product host"
|
||||
msgstr "Хост продукту"
|
||||
|
||||
msgid "debug save button"
|
||||
msgid "Debug save button"
|
||||
msgstr "кнопка збереження налагодження"
|
||||
|
||||
msgid "save debug settings"
|
||||
msgid "Save debug settings"
|
||||
msgstr "зберегти налаштування налагодження"
|
||||
|
||||
msgid "DEBUG settings have been saved successfully!"
|
||||
@@ -8809,7 +8850,7 @@ msgid ""
|
||||
"*Automatic mode: Check for calibration before printing. Skip if unnecessary."
|
||||
msgstr ""
|
||||
|
||||
msgid "send completed"
|
||||
msgid "Send complete"
|
||||
msgstr "відправлення завершено"
|
||||
|
||||
msgid "Error code"
|
||||
@@ -8952,7 +8993,7 @@ msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"[ %s ] requires printing in a high-temperature environment.Please close the "
|
||||
"[ %s ] requires printing in a high-temperature environment. Please close the "
|
||||
"door."
|
||||
msgstr ""
|
||||
|
||||
@@ -9378,7 +9419,7 @@ msgid ""
|
||||
"ensure proper printing and achieve their intended effects (e.g., Gyroid, "
|
||||
"Cubic). Rotating the current sparse infill pattern may lead to insufficient "
|
||||
"support. Please proceed with caution and thoroughly check for any potential "
|
||||
"printing issues.Are you sure you want to enable this option?"
|
||||
"printing issues. Are you sure you want to enable this option?"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -9529,9 +9570,6 @@ msgstr "Стінки та поверхні"
|
||||
msgid "Bridging"
|
||||
msgstr "Створення мостів"
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr "Нависання"
|
||||
|
||||
msgid "Walls"
|
||||
msgstr "Стінки"
|
||||
|
||||
@@ -10653,7 +10691,7 @@ msgstr "Перемістити виділення на 10 мм у позитив
|
||||
msgid "Movement step set to 1 mm"
|
||||
msgstr "Крок переміщення встановлено на 1 мм"
|
||||
|
||||
msgid "keyboard 1-9: set filament for object/part"
|
||||
msgid "Keyboard 1-9: set filament for object/part"
|
||||
msgstr "клавіатура 1-9: встановити філамент для об'єкта/деталі"
|
||||
|
||||
msgid "Camera view - Default"
|
||||
@@ -11417,6 +11455,16 @@ msgid ""
|
||||
msgstr ""
|
||||
"Підготовча вежа вимагає, щоб підтримка мала однакову з об'єктом висоту шару."
|
||||
|
||||
msgid ""
|
||||
"For Organic supports, two walls are supported only with the Hollow/Default "
|
||||
"base pattern."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The Lightning base pattern is not supported by this support type; "
|
||||
"Rectilinear will be used instead."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Organic support tree tip diameter must not be smaller than support material "
|
||||
"extrusion width."
|
||||
@@ -13756,6 +13804,49 @@ msgstr ""
|
||||
"кількість матеріалу в вежу для протирання, щоб забезпечити надійне "
|
||||
"послідовне заповненняабо видавлювання об'єкта, що витрачається."
|
||||
|
||||
msgid "Interface layer pre-extrusion distance"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion distance for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer pre-extrusion length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion length for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Tower ironing area"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Ironing area for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "mm²"
|
||||
msgstr "мм²"
|
||||
|
||||
msgid "Interface layer purge length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Purge length for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer print temperature"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Print temperature for prime tower interface layer (where different materials "
|
||||
"meet). If set to -1, use max recommended nozzle temperature."
|
||||
msgstr ""
|
||||
|
||||
msgid "Speed of the last cooling move"
|
||||
msgstr "Швидкість останнього охолоджуючого руху"
|
||||
|
||||
@@ -14330,8 +14421,8 @@ msgstr ""
|
||||
"Випадкове тремтіння під час друку зовнішнього периметра, так що поверхня "
|
||||
"була шорсткої. Цей параметр керує нечіткою оболонкою"
|
||||
|
||||
msgid "None (allow paint)"
|
||||
msgstr ""
|
||||
msgid "Painted only"
|
||||
msgstr "Тільки пофарбовані"
|
||||
|
||||
msgid "Contour"
|
||||
msgstr "Контур"
|
||||
@@ -15580,9 +15671,6 @@ msgstr ""
|
||||
"Максимальна площа отвору в основі моделі перед заповненням його конічним "
|
||||
"матеріалом. Значення 0 заповнює всі отвори в основі моделі."
|
||||
|
||||
msgid "mm²"
|
||||
msgstr "мм²"
|
||||
|
||||
msgid "Detect overhang wall"
|
||||
msgstr "Виявлення стінок що нависають"
|
||||
|
||||
@@ -16695,8 +16783,17 @@ msgstr "Швидкість друку підтримки"
|
||||
msgid "Base pattern"
|
||||
msgstr "Основний шаблон"
|
||||
|
||||
msgid "Line pattern of support."
|
||||
msgstr "Лінія підтримки"
|
||||
msgid ""
|
||||
"Line pattern of support.\n"
|
||||
"\n"
|
||||
"The Default option for Tree supports is Hollow, which means no base pattern. "
|
||||
"For other support types, the Default option is the Rectilinear pattern.\n"
|
||||
"\n"
|
||||
"NOTE: For Organic supports, the two walls are supported only with the Hollow/"
|
||||
"Default base pattern. The Lightning base pattern is supported only by Tree "
|
||||
"Slim/Strong/Hybrid supports. For the other support types, the Rectilinear "
|
||||
"will be used instead of Lightning."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rectilinear grid"
|
||||
msgstr "Прямолінійна сітка"
|
||||
@@ -17287,6 +17384,23 @@ msgstr ""
|
||||
msgid "The wall of prime tower will skip the start points of wipe path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable tower interface features"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable optimized prime tower interface behavior when different materials "
|
||||
"meet."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cool down from interface boost during prime tower"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"When interface-layer temperature boost is active, set the nozzle back to "
|
||||
"print temperature at the start of the prime tower so it cools down during "
|
||||
"the tower."
|
||||
msgstr ""
|
||||
|
||||
msgid "Infill gap"
|
||||
msgstr ""
|
||||
|
||||
@@ -18885,7 +18999,7 @@ msgstr ""
|
||||
msgid "Plate Type"
|
||||
msgstr "Тип Пластини"
|
||||
|
||||
msgid "filament position"
|
||||
msgid "Filament position"
|
||||
msgstr "позиція філаменту"
|
||||
|
||||
msgid "Filament For Calibration"
|
||||
@@ -19841,7 +19955,8 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Printer and all the filament&&process presets that belongs to the printer.\n"
|
||||
"Printer and all the filament and process presets that belongs to the "
|
||||
"printer.\n"
|
||||
"Can be shared with others."
|
||||
msgstr ""
|
||||
"Принтер і всі нитки та налаштування процесу, які належать принтеру.\n"
|
||||
@@ -20730,7 +20845,7 @@ msgstr "Історії завдань немає!"
|
||||
msgid "Upgrading"
|
||||
msgstr "Оновлення"
|
||||
|
||||
msgid "syncing"
|
||||
msgid "Syncing"
|
||||
msgstr "синхронізація"
|
||||
|
||||
msgid "Printing Finish"
|
||||
@@ -21345,6 +21460,20 @@ msgstr ""
|
||||
"ABS, відповідне підвищення температури гарячого ліжка може зменшити "
|
||||
"ймовірність деформації?"
|
||||
|
||||
#~ msgid "Line pattern of support."
|
||||
#~ msgstr "Лінія підтримки"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Failed to install the plug-in. Please check whether it is blocked or "
|
||||
#~ "deleted by anti-virus software."
|
||||
#~ msgstr ""
|
||||
#~ "Не вдалося встановити плагін. Будь ласка, перевірте, чи він не "
|
||||
#~ "заблокований або видалений\n"
|
||||
#~ "за допомогою антивірусного програмного забезпечення."
|
||||
|
||||
#~ msgid "travel"
|
||||
#~ msgstr "переміщення"
|
||||
|
||||
#~ msgid "Replace with STL"
|
||||
#~ msgstr "Замінити на STL"
|
||||
|
||||
@@ -21521,8 +21650,8 @@ msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid ""
|
||||
#~ "The recommended minimum temperature is less than 190°C or the recommended "
|
||||
#~ "maximum temperature is greater than 300°C.\n"
|
||||
#~ "The recommended minimum temperature is less than 190℃ or the recommended "
|
||||
#~ "maximum temperature is greater than 300℃.\n"
|
||||
#~ msgstr ""
|
||||
#~ "Мінімально рекомендована температура менше 190 градусів або максимально "
|
||||
#~ "рекомендована температура більше 300 градусів.\n"
|
||||
|
||||
@@ -2,7 +2,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-02-12 08:42+0800\n"
|
||||
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
|
||||
"PO-Revision-Date: 2025-10-02 17:43+0700\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: hainguyen.ts13@gmail.com\n"
|
||||
@@ -431,7 +431,7 @@ msgstr "Tọa độ phần"
|
||||
msgid "Size"
|
||||
msgstr "Kích thước"
|
||||
|
||||
msgid "uniform scale"
|
||||
msgid "Uniform scale"
|
||||
msgstr "tỷ lệ đồng đều"
|
||||
|
||||
msgid "Planar"
|
||||
@@ -689,7 +689,7 @@ msgstr "Connector"
|
||||
msgid "Cut by Plane"
|
||||
msgstr "Cắt bằng mặt phẳng"
|
||||
|
||||
msgid "non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgid "Non-manifold edges be caused by cut tool, do you want to fix it now?"
|
||||
msgstr ""
|
||||
"cạnh non-manifold được tạo bởi công cụ cắt, bạn có muốn sửa ngay không?"
|
||||
|
||||
@@ -2226,31 +2226,37 @@ msgstr ""
|
||||
msgid "Select All"
|
||||
msgstr "Chọn tất cả"
|
||||
|
||||
msgid "select all objects on current plate"
|
||||
msgid "Select all objects on the current plate"
|
||||
msgstr "chọn tất cả vật thể trên plate hiện tại"
|
||||
|
||||
msgid "Select All Plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select all objects on all plates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete All"
|
||||
msgstr "Xóa tất cả"
|
||||
|
||||
msgid "delete all objects on current plate"
|
||||
msgid "Delete all objects on the current plate"
|
||||
msgstr "xóa tất cả vật thể trên plate hiện tại"
|
||||
|
||||
msgid "Arrange"
|
||||
msgstr "Sắp xếp"
|
||||
|
||||
msgid "arrange current plate"
|
||||
msgid "Arrange current plate"
|
||||
msgstr "sắp xếp plate hiện tại"
|
||||
|
||||
msgid "Reload All"
|
||||
msgstr "Tải lại tất cả"
|
||||
|
||||
msgid "reload all from disk"
|
||||
msgid "Reload all from disk"
|
||||
msgstr "tải lại tất cả từ ổ đĩa"
|
||||
|
||||
msgid "Auto Rotate"
|
||||
msgstr "Tự động xoay"
|
||||
|
||||
msgid "auto rotate current plate"
|
||||
msgid "Auto rotate current plate"
|
||||
msgstr "tự động xoay plate hiện tại"
|
||||
|
||||
msgid "Delete Plate"
|
||||
@@ -2559,7 +2565,8 @@ msgstr "Thêm phạm vi chiều cao"
|
||||
msgid "Invalid numeric."
|
||||
msgstr "Số không hợp lệ."
|
||||
|
||||
msgid "one cell can only be copied to one or multiple cells in the same column"
|
||||
#, fuzzy
|
||||
msgid "One cell can only be copied to one or more cells in the same column."
|
||||
msgstr "một ô chỉ có thể sao chép vào một hoặc nhiều ô trong cùng cột"
|
||||
|
||||
msgid "Copying multiple cells is not supported."
|
||||
@@ -2812,9 +2819,9 @@ msgid "Top"
|
||||
msgstr "Trên"
|
||||
|
||||
msgid ""
|
||||
"The fan controls the temperature during printing to improve print "
|
||||
"quality.The system automatically adjusts the fan's switch and speed "
|
||||
"according to different printing materials."
|
||||
"The fan controls the temperature during printing to improve print quality. "
|
||||
"The system automatically adjusts the fan's switch and speed according to "
|
||||
"different printing materials."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -3649,8 +3656,7 @@ msgstr ""
|
||||
msgid "Please unload all filament before switching."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"AMS type switching needs firmware update, taking about 30s. Switch now ?"
|
||||
msgid "AMS type switching needs firmware update, taking about 30s. Switch now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Arrange AMS Order"
|
||||
@@ -3675,13 +3681,12 @@ msgstr ""
|
||||
"kiểm tra và thử lại."
|
||||
|
||||
msgid ""
|
||||
"Failed to install the plug-in. Please check whether it is blocked or deleted "
|
||||
"by anti-virus software."
|
||||
"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 "
|
||||
"deleted by anti-virus software."
|
||||
msgstr ""
|
||||
"Cài đặt plug-in thất bại. Vui lòng kiểm tra xem nó có bị chặn hoặc xóa bởi "
|
||||
"phần mềm diệt virus không."
|
||||
|
||||
msgid "click here to see more info"
|
||||
msgid "Click here to see more info"
|
||||
msgstr "nhấn vào đây để xem thêm thông tin"
|
||||
|
||||
msgid ""
|
||||
@@ -4214,7 +4219,7 @@ msgstr ""
|
||||
msgid "Nozzle offset calibration"
|
||||
msgstr ""
|
||||
|
||||
msgid "high temperature auto bed leveling"
|
||||
msgid "High temperature auto bed leveling"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto Check: Quick Release Lever"
|
||||
@@ -4491,6 +4496,12 @@ msgstr "Cài đặt máy in"
|
||||
msgid "parameter name"
|
||||
msgstr "tên tham số"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "Phạm vi"
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "Giá trị nằm ngoài phạm vi."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s can't be a percentage"
|
||||
msgstr "%s không thể là phần trăm"
|
||||
@@ -4506,9 +4517,6 @@ msgstr "Xác thực tham số"
|
||||
msgid "Value %s is out of range. The valid range is from %d to %d."
|
||||
msgstr "Giá trị %s nằm ngoài phạm vi. Phạm vi hợp lệ từ %d đến %d."
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr "Giá trị nằm ngoài phạm vi."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Is it %s%% or %s %s?\n"
|
||||
@@ -4563,16 +4571,16 @@ msgid "Line Width"
|
||||
msgstr "Độ rộng đường"
|
||||
|
||||
msgid "Actual Speed"
|
||||
msgstr ""
|
||||
msgstr "Tốc độ thực tế"
|
||||
|
||||
msgid "Fan Speed"
|
||||
msgstr "Tốc độ quạt"
|
||||
|
||||
msgid "Flow"
|
||||
msgstr "Flow"
|
||||
msgstr "Lưu lượng"
|
||||
|
||||
msgid "Actual Flow"
|
||||
msgstr ""
|
||||
msgstr "Lưu lượng thực tế"
|
||||
|
||||
msgid "Tool"
|
||||
msgstr "Công cụ"
|
||||
@@ -4583,6 +4591,9 @@ msgstr "Thời gian lớp"
|
||||
msgid "Layer Time (log)"
|
||||
msgstr "Thời gian lớp (log)"
|
||||
|
||||
msgid "Pressure Advance"
|
||||
msgstr ""
|
||||
|
||||
msgid "Noop"
|
||||
msgstr ""
|
||||
|
||||
@@ -4670,9 +4681,6 @@ msgstr ""
|
||||
msgid "Fan speed"
|
||||
msgstr "Tốc độ quạt"
|
||||
|
||||
msgid "°C"
|
||||
msgstr ""
|
||||
|
||||
msgid "Time"
|
||||
msgstr "Thời gian"
|
||||
|
||||
@@ -4704,9 +4712,12 @@ msgid "Tool: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Color: "
|
||||
msgstr ""
|
||||
msgstr "Màu:"
|
||||
|
||||
msgid "Actual Speed: "
|
||||
msgstr "Tốc độ thực tế: "
|
||||
|
||||
msgid "PA: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Statistics of All Plates"
|
||||
@@ -4821,22 +4832,22 @@ msgid "Speed (mm/s)"
|
||||
msgstr "Tốc độ (mm/s)"
|
||||
|
||||
msgid "Actual Speed (mm/s)"
|
||||
msgstr ""
|
||||
msgstr "Tốc độ thực tế (mm/s)"
|
||||
|
||||
msgid "Fan Speed (%)"
|
||||
msgstr "Tốc độ quạt (%)"
|
||||
|
||||
msgid "Temperature (°C)"
|
||||
msgid "Temperature (℃)"
|
||||
msgstr "Nhiệt độ (°C)"
|
||||
|
||||
msgid "Volumetric flow rate (mm³/s)"
|
||||
msgstr "Tốc độ flow thể tích (mm³/s)"
|
||||
|
||||
msgid "Actual volumetric flow rate (mm³/s)"
|
||||
msgstr ""
|
||||
msgstr "Lưu lượng thể tích thực tế (mm³/s)"
|
||||
|
||||
msgid "Seams"
|
||||
msgstr "Seam"
|
||||
msgstr "Đường nối"
|
||||
|
||||
msgid "Filament Changes"
|
||||
msgstr "Đổi filament"
|
||||
@@ -4844,9 +4855,6 @@ msgstr "Đổi filament"
|
||||
msgid "Options"
|
||||
msgstr "Tùy chọn"
|
||||
|
||||
msgid "travel"
|
||||
msgstr "di chuyển"
|
||||
|
||||
msgid "Extruder"
|
||||
msgstr "Extruder"
|
||||
|
||||
@@ -4944,16 +4952,13 @@ msgstr "Tăng/giảm vùng chỉnh sửa"
|
||||
msgid "Sequence"
|
||||
msgstr "Trình tự"
|
||||
|
||||
msgid "object selection"
|
||||
msgid "Object selection"
|
||||
msgstr "chọn vật thể"
|
||||
|
||||
msgid "part selection"
|
||||
msgstr "chọn phần"
|
||||
|
||||
msgid "number keys"
|
||||
msgstr "phím số"
|
||||
|
||||
msgid "number keys can quickly change the color of objects"
|
||||
msgid "Number keys can quickly change the color of objects"
|
||||
msgstr "phím số có thể nhanh chóng đổi màu của vật thể"
|
||||
|
||||
msgid ""
|
||||
@@ -5103,6 +5108,30 @@ msgstr ""
|
||||
msgid "Fit camera to scene or selected object."
|
||||
msgstr ""
|
||||
|
||||
msgid "3D Navigator"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom button"
|
||||
msgstr ""
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr "Phần nhô"
|
||||
|
||||
msgid "Outline"
|
||||
msgstr ""
|
||||
|
||||
msgid "Perspective"
|
||||
msgstr ""
|
||||
|
||||
msgid "Axes"
|
||||
msgstr ""
|
||||
|
||||
msgid "Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Labels"
|
||||
msgstr ""
|
||||
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "Thanh công cụ vẽ"
|
||||
|
||||
@@ -5185,7 +5214,7 @@ msgid "Only the object being edited is visible."
|
||||
msgstr "Chỉ vật thể đang được chỉnh sửa là hiển thị."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgid "Filaments %s cannot be printed directly on the surface of this plate."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -5606,6 +5635,12 @@ msgstr "Hiện điều hướng 3D"
|
||||
msgid "Show 3D navigator in Prepare and Preview scene."
|
||||
msgstr "Hiện điều hướng 3D trong cảnh chuẩn bị và xem trước."
|
||||
|
||||
msgid "Show Gridlines"
|
||||
msgstr ""
|
||||
|
||||
msgid "Show Gridlines on plate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset Window Layout"
|
||||
msgstr "Đặt lại bố cục cửa sổ"
|
||||
|
||||
@@ -6336,9 +6371,9 @@ msgid "Layer: %d/%d"
|
||||
msgstr "Lớp: %d/%d"
|
||||
|
||||
msgid ""
|
||||
"Please heat the nozzle to above 170°C before loading or unloading filament."
|
||||
"Please heat the nozzle to above 170℃ before loading or unloading filament."
|
||||
msgstr ""
|
||||
"Vui lòng làm nóng đầu phun lên trên 170°C trước khi nạp hoặc tháo filament."
|
||||
"Vui lòng làm nóng đầu phun lên trên 170℃ trước khi nạp hoặc tháo filament."
|
||||
|
||||
msgid "Chamber temperature cannot be changed in cooling mode while printing."
|
||||
msgstr ""
|
||||
@@ -6447,7 +6482,7 @@ msgstr "Đang đồng bộ kết quả in. Vui lòng thử lại sau vài giây.
|
||||
msgid "Upload failed\n"
|
||||
msgstr "Tải lên thất bại\n"
|
||||
|
||||
msgid "obtaining instance_id failed\n"
|
||||
msgid "Obtaining instance_id failed\n"
|
||||
msgstr "lấy instance_id thất bại\n"
|
||||
|
||||
msgid ""
|
||||
@@ -6724,9 +6759,6 @@ msgstr "Cắt connector"
|
||||
msgid "Layers"
|
||||
msgstr "Lớp"
|
||||
|
||||
msgid "Range"
|
||||
msgstr "Phạm vi"
|
||||
|
||||
msgid ""
|
||||
"The application cannot run normally because OpenGL version is lower than "
|
||||
"3.2.\n"
|
||||
@@ -7452,7 +7484,7 @@ msgid ""
|
||||
"connected printer.\n"
|
||||
"After syncing, software can optimize printing time and filament usage when "
|
||||
"slicing.\n"
|
||||
"Would you like to sync now ?"
|
||||
"Would you like to sync now?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync now"
|
||||
@@ -7483,13 +7515,14 @@ msgstr "Lưu dự án"
|
||||
msgid "Importing Model"
|
||||
msgstr "Đang nhập model"
|
||||
|
||||
msgid "prepare 3MF file..."
|
||||
#, fuzzy
|
||||
msgid "Preparing 3MF file..."
|
||||
msgstr "chuẩn bị file 3MF..."
|
||||
|
||||
msgid "Download failed, unknown file format."
|
||||
msgstr "Tải xuống thất bại, định dạng file không xác định."
|
||||
|
||||
msgid "downloading project..."
|
||||
msgid "Downloading project..."
|
||||
msgstr "đang tải dự án xuống..."
|
||||
|
||||
msgid "Download failed, File size exception."
|
||||
@@ -7996,6 +8029,18 @@ msgstr ""
|
||||
msgid "By vendor"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimize filaments area height for..."
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid "filaments"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optimizes filament area maximum height by chosen filament count"
|
||||
msgstr ""
|
||||
|
||||
msgid "Features"
|
||||
msgstr ""
|
||||
|
||||
@@ -8009,9 +8054,6 @@ msgstr ""
|
||||
"Với tùy chọn này được bật, bạn có thể gửi tác vụ đến nhiều thiết bị cùng lúc "
|
||||
"và quản lý nhiều thiết bị."
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pop up to select filament grouping mode"
|
||||
msgstr ""
|
||||
|
||||
@@ -8189,10 +8231,10 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid "Filament & Color"
|
||||
msgstr ""
|
||||
msgstr "Sợi và Màu sắc"
|
||||
|
||||
msgid "Color only"
|
||||
msgstr ""
|
||||
msgstr "Chỉ màu"
|
||||
|
||||
msgid "Network plugin"
|
||||
msgstr ""
|
||||
@@ -8371,10 +8413,10 @@ msgstr "Máy chủ PRE: api-pre.bambu-lab.com/v1"
|
||||
msgid "Product host"
|
||||
msgstr "Máy chủ sản phẩm"
|
||||
|
||||
msgid "debug save button"
|
||||
msgid "Debug save button"
|
||||
msgstr "nút lưu gỡ lỗi"
|
||||
|
||||
msgid "save debug settings"
|
||||
msgid "Save debug settings"
|
||||
msgstr "lưu cài đặt gỡ lỗi"
|
||||
|
||||
msgid "DEBUG settings have been saved successfully!"
|
||||
@@ -8663,7 +8705,7 @@ msgid ""
|
||||
"*Automatic mode: Check for calibration before printing. Skip if unnecessary."
|
||||
msgstr ""
|
||||
|
||||
msgid "send completed"
|
||||
msgid "Send complete"
|
||||
msgstr "gửi hoàn tất"
|
||||
|
||||
msgid "Error code"
|
||||
@@ -8804,7 +8846,7 @@ msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"[ %s ] requires printing in a high-temperature environment.Please close the "
|
||||
"[ %s ] requires printing in a high-temperature environment. Please close the "
|
||||
"door."
|
||||
msgstr ""
|
||||
|
||||
@@ -9220,7 +9262,7 @@ msgid ""
|
||||
"ensure proper printing and achieve their intended effects (e.g., Gyroid, "
|
||||
"Cubic). Rotating the current sparse infill pattern may lead to insufficient "
|
||||
"support. Please proceed with caution and thoroughly check for any potential "
|
||||
"printing issues.Are you sure you want to enable this option?"
|
||||
"printing issues. Are you sure you want to enable this option?"
|
||||
msgstr ""
|
||||
"Mẫu infill thường được thiết kế để xử lý xoay tự động nhằm đảm bảo in đúng "
|
||||
"cách và đạt được hiệu quả dự kiến (ví dụ: Gyroid, Cubic). Xoay mẫu infill "
|
||||
@@ -9372,9 +9414,6 @@ msgstr "Thành và bề mặt"
|
||||
msgid "Bridging"
|
||||
msgstr "Bắc cầu"
|
||||
|
||||
msgid "Overhangs"
|
||||
msgstr "Phần nhô"
|
||||
|
||||
msgid "Walls"
|
||||
msgstr "Thành"
|
||||
|
||||
@@ -10476,7 +10515,7 @@ msgstr "Di chuyển lựa chọn 10 mm theo hướng X dương"
|
||||
msgid "Movement step set to 1 mm"
|
||||
msgstr "Bước di chuyển được đặt thành 1 mm"
|
||||
|
||||
msgid "keyboard 1-9: set filament for object/part"
|
||||
msgid "Keyboard 1-9: set filament for object/part"
|
||||
msgstr "bàn phím 1-9: đặt filament cho đối tượng/phần"
|
||||
|
||||
msgid "Camera view - Default"
|
||||
@@ -11233,6 +11272,16 @@ msgid ""
|
||||
"The prime tower requires that support has the same layer height with object."
|
||||
msgstr "Prime tower yêu cầu support có cùng chiều cao lớp với đối tượng."
|
||||
|
||||
msgid ""
|
||||
"For Organic supports, two walls are supported only with the Hollow/Default "
|
||||
"base pattern."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The Lightning base pattern is not supported by this support type; "
|
||||
"Rectilinear will be used instead."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Organic support tree tip diameter must not be smaller than support material "
|
||||
"extrusion width."
|
||||
@@ -13504,6 +13553,49 @@ msgstr ""
|
||||
"nạp lượng vật liệu này vào wipe tower để tạo ra các đùn infill hoặc đối "
|
||||
"tượng hy sinh liên tiếp một cách đáng tin cậy."
|
||||
|
||||
msgid "Interface layer pre-extrusion distance"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion distance for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer pre-extrusion length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pre-extrusion length for prime tower interface layer (where different "
|
||||
"materials meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Tower ironing area"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Ironing area for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "mm²"
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer purge length"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Purge length for prime tower interface layer (where different materials "
|
||||
"meet)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Interface layer print temperature"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Print temperature for prime tower interface layer (where different materials "
|
||||
"meet). If set to -1, use max recommended nozzle temperature."
|
||||
msgstr ""
|
||||
|
||||
msgid "Speed of the last cooling move"
|
||||
msgstr "Tốc độ của động tác làm mát cuối cùng"
|
||||
|
||||
@@ -14075,8 +14167,8 @@ msgstr ""
|
||||
"Rung ngẫu nhiên trong khi in thành, để bề mặt có vẻ thô. Cài đặt này điều "
|
||||
"khiển vị trí fuzzy."
|
||||
|
||||
msgid "None (allow paint)"
|
||||
msgstr ""
|
||||
msgid "Painted only"
|
||||
msgstr "Chỉ được sơn"
|
||||
|
||||
msgid "Contour"
|
||||
msgstr "Đường viền"
|
||||
@@ -15342,9 +15434,6 @@ msgstr ""
|
||||
"Diện tích tối đa của lỗ ở đáy model trước khi nó được lấp bởi vật liệu hình "
|
||||
"nón. Giá trị 0 sẽ lấp tất cả các lỗ ở đáy model."
|
||||
|
||||
msgid "mm²"
|
||||
msgstr ""
|
||||
|
||||
msgid "Detect overhang wall"
|
||||
msgstr "Phát hiện thành nhô"
|
||||
|
||||
@@ -16429,8 +16518,17 @@ msgstr "Tốc độ của giao diện support."
|
||||
msgid "Base pattern"
|
||||
msgstr "Mẫu đế"
|
||||
|
||||
msgid "Line pattern of support."
|
||||
msgstr "Mẫu đường của support."
|
||||
msgid ""
|
||||
"Line pattern of support.\n"
|
||||
"\n"
|
||||
"The Default option for Tree supports is Hollow, which means no base pattern. "
|
||||
"For other support types, the Default option is the Rectilinear pattern.\n"
|
||||
"\n"
|
||||
"NOTE: For Organic supports, the two walls are supported only with the Hollow/"
|
||||
"Default base pattern. The Lightning base pattern is supported only by Tree "
|
||||
"Slim/Strong/Hybrid supports. For the other support types, the Rectilinear "
|
||||
"will be used instead of Lightning."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rectilinear grid"
|
||||
msgstr "Lưới thẳng"
|
||||
@@ -16580,7 +16678,7 @@ msgstr ""
|
||||
"Điều chỉnh mật độ của cấu trúc support được sử dụng để tạo đầu các nhánh. "
|
||||
"Giá trị cao hơn dẫn đến phần nhô tốt hơn nhưng support khó loại bỏ hơn, do "
|
||||
"đó khuyến nghị bật giao diện support trên thay vì giá trị mật độ nhánh cao "
|
||||
"nếu cần giao diện dày đặc ."
|
||||
"nếu cần giao diện dày đặc."
|
||||
|
||||
msgid "Auto brim width"
|
||||
msgstr "Độ rộng vành tự động"
|
||||
@@ -17031,6 +17129,23 @@ msgstr ""
|
||||
msgid "The wall of prime tower will skip the start points of wipe path."
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable tower interface features"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable optimized prime tower interface behavior when different materials "
|
||||
"meet."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cool down from interface boost during prime tower"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"When interface-layer temperature boost is active, set the nozzle back to "
|
||||
"print temperature at the start of the prime tower so it cools down during "
|
||||
"the tower."
|
||||
msgstr ""
|
||||
|
||||
msgid "Infill gap"
|
||||
msgstr ""
|
||||
|
||||
@@ -18629,7 +18744,7 @@ msgstr ""
|
||||
msgid "Plate Type"
|
||||
msgstr "Loại bàn"
|
||||
|
||||
msgid "filament position"
|
||||
msgid "Filament position"
|
||||
msgstr "vị trí filament"
|
||||
|
||||
msgid "Filament For Calibration"
|
||||
@@ -19580,10 +19695,12 @@ msgstr ""
|
||||
"Vui lòng đóng nó và thử lại."
|
||||
|
||||
msgid ""
|
||||
"Printer and all the filament&&process presets that belongs to the printer.\n"
|
||||
"Printer and all the filament and process presets that belongs to the "
|
||||
"printer.\n"
|
||||
"Can be shared with others."
|
||||
msgstr ""
|
||||
"Máy in và tất cả cài đặt sẵn filament&&quy trình thuộc về máy in.\n"
|
||||
"Máy in và tất cả các loại sợi in 3D cùng các cài đặt quy trình đi kèm với "
|
||||
"máy in.\n"
|
||||
"Có thể chia sẻ với người khác."
|
||||
|
||||
msgid ""
|
||||
@@ -19598,7 +19715,7 @@ msgid ""
|
||||
"presets."
|
||||
msgstr ""
|
||||
"Chỉ hiển thị tên máy in có thay đổi đối với cài đặt sẵn máy in, filament và "
|
||||
"quy trình ."
|
||||
"quy trình."
|
||||
|
||||
msgid "Only display the filament names with changes to filament presets."
|
||||
msgstr "Chỉ hiển thị tên filament có thay đổi đối với cài đặt sẵn filament."
|
||||
@@ -20460,7 +20577,7 @@ msgstr "Không có tác vụ lịch sử!"
|
||||
msgid "Upgrading"
|
||||
msgstr "Đang nâng cấp"
|
||||
|
||||
msgid "syncing"
|
||||
msgid "Syncing"
|
||||
msgstr "đang đồng bộ"
|
||||
|
||||
msgid "Printing Finish"
|
||||
@@ -21073,6 +21190,22 @@ msgstr ""
|
||||
"Bạn có biết rằng khi in vật liệu dễ cong vênh như ABS, tăng nhiệt độ bàn "
|
||||
"nóng một cách thích hợp có thể giảm xác suất cong vênh không?"
|
||||
|
||||
#~ msgid "Line pattern of support."
|
||||
#~ msgstr "Mẫu đường của support."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Failed to install the plug-in. Please check whether it is blocked or "
|
||||
#~ "deleted by anti-virus software."
|
||||
#~ msgstr ""
|
||||
#~ "Cài đặt plug-in thất bại. Vui lòng kiểm tra xem nó có bị chặn hoặc xóa "
|
||||
#~ "bởi phần mềm diệt virus không."
|
||||
|
||||
#~ msgid "travel"
|
||||
#~ msgstr "di chuyển"
|
||||
|
||||
#~ msgid "part selection"
|
||||
#~ msgstr "chọn phần"
|
||||
|
||||
#~ msgid "Filament remapping finished."
|
||||
#~ msgstr "Ánh xạ lại filament hoàn tất."
|
||||
|
||||
@@ -21261,11 +21394,11 @@ msgstr ""
|
||||
#~ "tự động."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The recommended minimum temperature is less than 190°C or the recommended "
|
||||
#~ "maximum temperature is greater than 300°C.\n"
|
||||
#~ "The recommended minimum temperature is less than 190℃ or the recommended "
|
||||
#~ "maximum temperature is greater than 300℃.\n"
|
||||
#~ msgstr ""
|
||||
#~ "Nhiệt độ tối thiểu khuyến nghị nhỏ hơn 190°C hoặc nhiệt độ tối đa khuyến "
|
||||
#~ "nghị lớn hơn 300°C.\n"
|
||||
#~ "Nhiệt độ tối thiểu khuyến nghị nhỏ hơn 190℃ hoặc nhiệt độ tối đa khuyến "
|
||||
#~ "nghị lớn hơn 300℃.\n"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Spiral mode only works when wall loops is 1, support is disabled, top "
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Afinia",
|
||||
"version": "02.03.01.10",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "Afinia configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Anker",
|
||||
"version": "02.03.01.20",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "Anker configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Anycubic",
|
||||
"version": "02.03.01.10",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "Anycubic configurations",
|
||||
"machine_model_list": [
|
||||
@@ -56,6 +56,10 @@
|
||||
"name": "Anycubic Kobra S1",
|
||||
"sub_path": "machine/Anycubic Kobra S1.json"
|
||||
},
|
||||
{
|
||||
"name": "Anycubic Predator",
|
||||
"sub_path": "machine/Anycubic Predator.json"
|
||||
},
|
||||
{
|
||||
"name": "Anycubic Vyper",
|
||||
"sub_path": "machine/Anycubic Vyper.json"
|
||||
@@ -63,10 +67,6 @@
|
||||
{
|
||||
"name": "Anycubic i3 Mega S",
|
||||
"sub_path": "machine/Anycubic i3 Mega S.json"
|
||||
},
|
||||
{
|
||||
"name": "Anycubic Predator",
|
||||
"sub_path": "machine/Anycubic Predator.json"
|
||||
}
|
||||
],
|
||||
"process_list": [
|
||||
@@ -82,14 +82,14 @@
|
||||
"name": "0.10mm Detail @Anycubic Kobra 3 0.2 nozzle",
|
||||
"sub_path": "process/0.10mm Detail @Anycubic Kobra 3 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.12mm Detail @Anycubic Kobra 3 0.4 nozzle",
|
||||
"sub_path": "process/0.12mm Detail @Anycubic Kobra 3 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.12mm Detail @Anycubic Kobra 2 Neo 0.4 nozzle",
|
||||
"sub_path": "process/0.12mm Detail @Anycubic Kobra 2 Neo 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.12mm Detail @Anycubic Kobra 3 0.4 nozzle",
|
||||
"sub_path": "process/0.12mm Detail @Anycubic Kobra 3 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.15mm Optimal @Anycubic 4MaxPro2",
|
||||
"sub_path": "process/0.15mm Optimal @Anycubic 4MaxPro2.json"
|
||||
@@ -126,14 +126,14 @@
|
||||
"name": "0.16mm Optimal @Anycubic Kobra 2 Pro 0.4 nozzle",
|
||||
"sub_path": "process/0.16mm Optimal @Anycubic Kobra 2 Pro 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.16mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle",
|
||||
"sub_path": "process/0.16mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.16mm Optimal @Anycubic Kobra 3 0.4 nozzle",
|
||||
"sub_path": "process/0.16mm Optimal @Anycubic Kobra 3 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.16mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle",
|
||||
"sub_path": "process/0.16mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Anycubic 4MaxPro",
|
||||
"sub_path": "process/0.20mm Standard @Anycubic 4MaxPro.json"
|
||||
@@ -186,6 +186,10 @@
|
||||
"name": "0.20mm Standard @Anycubic KobraPlus",
|
||||
"sub_path": "process/0.20mm Standard @Anycubic KobraPlus.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Anycubic Predator",
|
||||
"sub_path": "process/0.20mm Standard @Anycubic Predator.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Anycubic Vyper",
|
||||
"sub_path": "process/0.20mm Standard @Anycubic Vyper.json"
|
||||
@@ -202,14 +206,14 @@
|
||||
"name": "0.28mm Draft @Anycubic Kobra 2 Pro 0.4 nozzle",
|
||||
"sub_path": "process/0.28mm Draft @Anycubic Kobra 2 Pro 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.28mm SuperDraft @Anycubic Kobra 3 0.4 nozzle",
|
||||
"sub_path": "process/0.28mm SuperDraft @Anycubic Kobra 3 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.28mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle",
|
||||
"sub_path": "process/0.28mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.28mm SuperDraft @Anycubic Kobra 3 0.4 nozzle",
|
||||
"sub_path": "process/0.28mm SuperDraft @Anycubic Kobra 3 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.30mm Draft @Anycubic 4MaxPro2",
|
||||
"sub_path": "process/0.30mm Draft @Anycubic 4MaxPro2.json"
|
||||
@@ -249,10 +253,6 @@
|
||||
{
|
||||
"name": "0.40mm Standard @Anycubic Kobra 3 0.8 nozzle",
|
||||
"sub_path": "process/0.40mm Standard @Anycubic Kobra 3 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Anycubic Predator",
|
||||
"sub_path": "process/0.20mm Standard @Anycubic Predator.json"
|
||||
}
|
||||
],
|
||||
"filament_list": [
|
||||
@@ -506,6 +506,10 @@
|
||||
"name": "Anycubic Kobra S1 0.4 nozzle",
|
||||
"sub_path": "machine/Anycubic Kobra S1 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Anycubic Predator 0.4 nozzle",
|
||||
"sub_path": "machine/Anycubic Predator 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Anycubic Vyper 0.4 nozzle",
|
||||
"sub_path": "machine/Anycubic Vyper 0.4 nozzle.json"
|
||||
@@ -513,10 +517,6 @@
|
||||
{
|
||||
"name": "Anycubic i3 Mega S 0.4 nozzle",
|
||||
"sub_path": "machine/Anycubic i3 Mega S 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Anycubic Predator 0.4 nozzle",
|
||||
"sub_path": "machine/Anycubic Predator 0.4 nozzle.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 1.9 MiB |
BIN
resources/profiles/Anycubic/Anycubic Kobra Neo_cover.png
Normal file
BIN
resources/profiles/Anycubic/Anycubic Kobra Neo_cover.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 133 KiB |
@@ -0,0 +1,355 @@
|
||||
{
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"activate_chamber_temp_control": [
|
||||
"0"
|
||||
],
|
||||
"adaptive_pressure_advance": [
|
||||
"0"
|
||||
],
|
||||
"adaptive_pressure_advance_bridges": [
|
||||
"0"
|
||||
],
|
||||
"adaptive_pressure_advance_model": [
|
||||
"0,0,0\n0,0,0"
|
||||
],
|
||||
"adaptive_pressure_advance_overhangs": [
|
||||
"1"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperature": [
|
||||
"0"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"1"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Anycubic Kobra Neo 0.6 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"compatible_prints": [],
|
||||
"compatible_prints_condition": "",
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"80"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"35"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"35"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
],
|
||||
"dont_slow_down_outer_wall": [
|
||||
"0"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"60"
|
||||
],
|
||||
"enable_overhang_bridge_fan": [
|
||||
"1"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"1"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"45"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"45"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"30"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_cooling_final_speed": [
|
||||
"3.4"
|
||||
],
|
||||
"filament_cooling_initial_speed": [
|
||||
"2.2"
|
||||
],
|
||||
"filament_cooling_moves": [
|
||||
"4"
|
||||
],
|
||||
"filament_cost": [
|
||||
"6000"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.23"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
" "
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"1"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_id": "P5d312b1",
|
||||
"filament_ironing_flow": [
|
||||
"nil"
|
||||
],
|
||||
"filament_ironing_inset": [
|
||||
"nil"
|
||||
],
|
||||
"filament_ironing_spacing": [
|
||||
"nil"
|
||||
],
|
||||
"filament_ironing_speed": [
|
||||
"nil"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_loading_speed": [
|
||||
"28"
|
||||
],
|
||||
"filament_loading_speed_start": [
|
||||
"3"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_multitool_ramming": [
|
||||
"0"
|
||||
],
|
||||
"filament_multitool_ramming_flow": [
|
||||
"10"
|
||||
],
|
||||
"filament_multitool_ramming_volume": [
|
||||
"10"
|
||||
],
|
||||
"filament_notes": [
|
||||
""
|
||||
],
|
||||
"filament_printable": [
|
||||
"3"
|
||||
],
|
||||
"filament_ramming_parameters": [
|
||||
"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_lift_above": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_lift_below": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_lift_enforce": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"SUNLU PETG @Anycubic Kobra Neo 0.6 nozzle"
|
||||
],
|
||||
"filament_shrink": [
|
||||
"100%"
|
||||
],
|
||||
"filament_shrinkage_compensation_z": [
|
||||
"100%"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_stamping_distance": [
|
||||
"0"
|
||||
],
|
||||
"filament_stamping_loading_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
" "
|
||||
],
|
||||
"filament_toolchange_delay": [
|
||||
"0"
|
||||
],
|
||||
"filament_tower_interface_pre_extrusion_dist": [
|
||||
"10"
|
||||
],
|
||||
"filament_tower_interface_pre_extrusion_length": [
|
||||
"0"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"-1"
|
||||
],
|
||||
"filament_tower_interface_purge_volume": [
|
||||
"20"
|
||||
],
|
||||
"filament_tower_ironing_area": [
|
||||
"4"
|
||||
],
|
||||
"filament_type": [
|
||||
"PETG"
|
||||
],
|
||||
"filament_unloading_speed": [
|
||||
"90"
|
||||
],
|
||||
"filament_unloading_speed_start": [
|
||||
"100"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"SUNLU"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil"
|
||||
],
|
||||
"from": "User",
|
||||
"full_fan_speed_layer": [
|
||||
"4"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"70"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"70"
|
||||
],
|
||||
"idle_temperature": [
|
||||
"0"
|
||||
],
|
||||
"inherits": "",
|
||||
"internal_bridge_fan_speed": [
|
||||
"-1"
|
||||
],
|
||||
"ironing_fan_speed": [
|
||||
"-1"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0"
|
||||
],
|
||||
"name": "SUNLU PETG @Anycubic Kobra Neo 0.6 nozzle",
|
||||
"nozzle_temperature": [
|
||||
"235"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"235"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"240"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"225"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"25%"
|
||||
],
|
||||
"pellet_flow_coefficient": [
|
||||
"0.4157"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.034"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"35"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"35"
|
||||
],
|
||||
"support_material_interface_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"100"
|
||||
],
|
||||
"textured_cool_plate_temp": [
|
||||
"40"
|
||||
],
|
||||
"textured_cool_plate_temp_initial_layer": [
|
||||
"40"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"45"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"45"
|
||||
],
|
||||
"version": "0.0.0.0",
|
||||
"volumetric_speed_coefficients": [
|
||||
""
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,355 @@
|
||||
{
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"activate_chamber_temp_control": [
|
||||
"0"
|
||||
],
|
||||
"adaptive_pressure_advance": [
|
||||
"0"
|
||||
],
|
||||
"adaptive_pressure_advance_bridges": [
|
||||
"0.014"
|
||||
],
|
||||
"adaptive_pressure_advance_model": [
|
||||
"0,0,0\n0,0,0"
|
||||
],
|
||||
"adaptive_pressure_advance_overhangs": [
|
||||
"0"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperature": [
|
||||
"0"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"1"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Anycubic Kobra Neo 0.6 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"compatible_prints": [],
|
||||
"compatible_prints_condition": "",
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"80"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"35"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"35"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
],
|
||||
"dont_slow_down_outer_wall": [
|
||||
"0"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"60"
|
||||
],
|
||||
"enable_overhang_bridge_fan": [
|
||||
"1"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"1"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"45"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"45"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"40"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_cooling_final_speed": [
|
||||
"3.4"
|
||||
],
|
||||
"filament_cooling_initial_speed": [
|
||||
"2.2"
|
||||
],
|
||||
"filament_cooling_moves": [
|
||||
"4"
|
||||
],
|
||||
"filament_cost": [
|
||||
"6000"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.25"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
" "
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"1"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_id": "P172589e",
|
||||
"filament_ironing_flow": [
|
||||
"nil"
|
||||
],
|
||||
"filament_ironing_inset": [
|
||||
"nil"
|
||||
],
|
||||
"filament_ironing_spacing": [
|
||||
"nil"
|
||||
],
|
||||
"filament_ironing_speed": [
|
||||
"nil"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_loading_speed": [
|
||||
"28"
|
||||
],
|
||||
"filament_loading_speed_start": [
|
||||
"3"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_multitool_ramming": [
|
||||
"0"
|
||||
],
|
||||
"filament_multitool_ramming_flow": [
|
||||
"10"
|
||||
],
|
||||
"filament_multitool_ramming_volume": [
|
||||
"10"
|
||||
],
|
||||
"filament_notes": [
|
||||
""
|
||||
],
|
||||
"filament_printable": [
|
||||
"3"
|
||||
],
|
||||
"filament_ramming_parameters": [
|
||||
"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_lift_above": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_lift_below": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_lift_enforce": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"SUNLU PLA @Anycubic Kobra Neo 0.6 nozzle"
|
||||
],
|
||||
"filament_shrink": [
|
||||
"100%"
|
||||
],
|
||||
"filament_shrinkage_compensation_z": [
|
||||
"100%"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_stamping_distance": [
|
||||
"0"
|
||||
],
|
||||
"filament_stamping_loading_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
" "
|
||||
],
|
||||
"filament_toolchange_delay": [
|
||||
"0"
|
||||
],
|
||||
"filament_tower_interface_pre_extrusion_dist": [
|
||||
"10"
|
||||
],
|
||||
"filament_tower_interface_pre_extrusion_length": [
|
||||
"0"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"-1"
|
||||
],
|
||||
"filament_tower_interface_purge_volume": [
|
||||
"20"
|
||||
],
|
||||
"filament_tower_ironing_area": [
|
||||
"4"
|
||||
],
|
||||
"filament_type": [
|
||||
"PLA"
|
||||
],
|
||||
"filament_unloading_speed": [
|
||||
"90"
|
||||
],
|
||||
"filament_unloading_speed_start": [
|
||||
"100"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"SUNLU"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil"
|
||||
],
|
||||
"from": "User",
|
||||
"full_fan_speed_layer": [
|
||||
"3"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"idle_temperature": [
|
||||
"0"
|
||||
],
|
||||
"inherits": "",
|
||||
"internal_bridge_fan_speed": [
|
||||
"-1"
|
||||
],
|
||||
"ironing_fan_speed": [
|
||||
"-1"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0"
|
||||
],
|
||||
"name": "SUNLU PLA @Anycubic Kobra Neo 0.6 nozzle",
|
||||
"nozzle_temperature": [
|
||||
"215"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"215"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"210"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"200"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"25%"
|
||||
],
|
||||
"pellet_flow_coefficient": [
|
||||
"0.4157"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.028"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"5"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"35"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"35"
|
||||
],
|
||||
"support_material_interface_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"100"
|
||||
],
|
||||
"textured_cool_plate_temp": [
|
||||
"40"
|
||||
],
|
||||
"textured_cool_plate_temp_initial_layer": [
|
||||
"40"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"45"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"45"
|
||||
],
|
||||
"version": "0.0.0.0",
|
||||
"volumetric_speed_coefficients": [
|
||||
""
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,283 @@
|
||||
{
|
||||
"adaptive_bed_mesh_margin": "5",
|
||||
"auxiliary_fan": "0",
|
||||
"bbl_use_printhost": "0",
|
||||
"bed_custom_model": "D:/3D_Prints/PEi Sheet Anycubic Kobra Neo.stl",
|
||||
"bed_custom_texture": "D:/3D_Prints/PEi Sheet Anycubic Kobra Neo.png",
|
||||
"bed_exclude_area": [],
|
||||
"bed_mesh_max": "210,205",
|
||||
"bed_mesh_min": "32,5",
|
||||
"bed_mesh_probe_distance": "0,0",
|
||||
"bed_temperature_formula": "by_first_filament",
|
||||
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\nG92 E0 ;zero out extruded length for accurecy",
|
||||
"best_object_pos": "0.5,0.5",
|
||||
"change_extrusion_role_gcode": "",
|
||||
"change_filament_gcode": "_M600",
|
||||
"cooling_tube_length": "0",
|
||||
"cooling_tube_retraction": "0",
|
||||
"default_bed_type": "",
|
||||
"default_filament_profile": [
|
||||
"SUNLU PLA @Anycubic Kobra Neo 0.6 nozzle"
|
||||
],
|
||||
"default_nozzle_volume_type": [
|
||||
"Standard"
|
||||
],
|
||||
"default_print_profile": "0.4 Layer @Anycubic Kobra Neo 0.6 nozzle",
|
||||
"deretraction_speed": [
|
||||
"30"
|
||||
],
|
||||
"disable_m73": "0",
|
||||
"emit_machine_limits_to_gcode": "1",
|
||||
"enable_filament_ramming": "0",
|
||||
"enable_long_retraction_when_cut": "0",
|
||||
"enable_power_loss_recovery": "printer_configuration",
|
||||
"extra_loading_move": "0",
|
||||
"extruder_clearance_height_to_lid": "250",
|
||||
"extruder_clearance_height_to_rod": "35",
|
||||
"extruder_clearance_radius": "55",
|
||||
"extruder_colour": [
|
||||
"#FF4D4F"
|
||||
],
|
||||
"extruder_offset": [
|
||||
"0x0"
|
||||
],
|
||||
"extruder_printable_area": [],
|
||||
"extruder_printable_height": [
|
||||
"0"
|
||||
],
|
||||
"extruder_type": [
|
||||
"Direct Drive"
|
||||
],
|
||||
"extruder_variant_list": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"fan_kickstart": "0",
|
||||
"fan_speedup_overhangs": "0",
|
||||
"fan_speedup_time": "2",
|
||||
"file_start_gcode": "",
|
||||
"from": "User",
|
||||
"gcode_flavor": "klipper",
|
||||
"grab_length": [
|
||||
"0"
|
||||
],
|
||||
"head_wrap_detect_zone": [],
|
||||
"high_current_on_filament_swap": "0",
|
||||
"host_type": "octoprint",
|
||||
"inherits": "",
|
||||
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;Layer {layer_num + 1} @ [layer_z]mm\nSET_PRINT_STATS_INFO CURRENT_LAYER={layer_num + 1}\nM117 Layer {layer_num+1}/[total_layer_count] @ [layer_z]mm\nPLR_SAVE_PRINT_STATE_WITH_LAYER LAYER={layer_num + 1} LAYER_HEIGHT={layer_z}\n",
|
||||
"long_retractions_when_cut": [
|
||||
"0"
|
||||
],
|
||||
"machine_end_gcode": "_END_PRINT\n;total layers count = [total_layer_count]",
|
||||
"machine_load_filament_time": "42",
|
||||
"machine_max_acceleration_e": [
|
||||
"2500",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_extruding": [
|
||||
"2500",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"2500",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"2500",
|
||||
"15000"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"2500",
|
||||
"15000"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"20",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"4",
|
||||
"10"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"8",
|
||||
"20"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"8",
|
||||
"20"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"4",
|
||||
"5"
|
||||
],
|
||||
"machine_max_junction_deviation": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"100",
|
||||
"80"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"250",
|
||||
"600"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"250",
|
||||
"600"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"20",
|
||||
"10"
|
||||
],
|
||||
"machine_min_extruding_rate": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"machine_min_travel_rate": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"machine_pause_gcode": "PAUSE",
|
||||
"machine_start_gcode": "SET_PRINT_STATS_INFO TOTAL_LAYER=[total_layer_count]\n;;;;; PLR_RESUME - INITIAL PRINTER SETUP STARTS ;;;;;\nPLR_DISABLE\n_START_PRINT BED_TEMP=[first_layer_bed_temperature] EXTRUDER_TEMP=[first_layer_temperature]\nPLR_ENABLE\n;;;;; PLR_RESUME - PRINT GCODE STARTS ;;;;;",
|
||||
"machine_tool_change_time": "0",
|
||||
"machine_unload_filament_time": "0",
|
||||
"manual_filament_change": "0",
|
||||
"master_extruder_id": "1",
|
||||
"max_layer_height": [
|
||||
"0.48"
|
||||
],
|
||||
"max_resonance_avoidance_speed": "120",
|
||||
"min_layer_height": [
|
||||
"0.15"
|
||||
],
|
||||
"min_resonance_avoidance_speed": "70",
|
||||
"name": "Anycubic Kobra Neo 0.6 nozzle",
|
||||
"nozzle_diameter": [
|
||||
"0.6"
|
||||
],
|
||||
"nozzle_flush_dataset": [
|
||||
"0"
|
||||
],
|
||||
"nozzle_height": "4",
|
||||
"nozzle_hrc": "0",
|
||||
"nozzle_type": [
|
||||
"undefine"
|
||||
],
|
||||
"nozzle_volume": [
|
||||
"0"
|
||||
],
|
||||
"parking_pos_retraction": "0",
|
||||
"pellet_modded_printer": "0",
|
||||
"physical_extruder_map": [
|
||||
"0"
|
||||
],
|
||||
"preferred_orientation": "0",
|
||||
"print_host": "yazan-minipc.local:5555",
|
||||
"print_host_webui": "",
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"222x0",
|
||||
"222x222",
|
||||
"0x222"
|
||||
],
|
||||
"printable_height": "250",
|
||||
"printer_agent": "moonraker",
|
||||
"printer_extruder_id": [
|
||||
"1"
|
||||
],
|
||||
"printer_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"printer_model": "Anycubic Kobra Neo",
|
||||
"printer_notes": "",
|
||||
"printer_settings_id": "Anycubic Kobra Neo 0.6 nozzle",
|
||||
"printer_structure": "undefine",
|
||||
"printer_technology": "FFF",
|
||||
"printer_variant": "0.6",
|
||||
"printhost_apikey": "",
|
||||
"printhost_authorization_type": "key",
|
||||
"printhost_cafile": "",
|
||||
"printhost_password": "",
|
||||
"printhost_port": "",
|
||||
"printhost_ssl_ignore_revoke": "0",
|
||||
"printhost_user": "",
|
||||
"printing_by_object_gcode": "",
|
||||
"purge_in_prime_tower": "0",
|
||||
"resonance_avoidance": "0",
|
||||
"retract_before_wipe": [
|
||||
"0%"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"0"
|
||||
],
|
||||
"retract_lift_above": [
|
||||
"0"
|
||||
],
|
||||
"retract_lift_below": [
|
||||
"259"
|
||||
],
|
||||
"retract_lift_enforce": [
|
||||
"All Surfaces"
|
||||
],
|
||||
"retract_restart_extra": [
|
||||
"0"
|
||||
],
|
||||
"retract_restart_extra_toolchange": [
|
||||
"0"
|
||||
],
|
||||
"retract_when_changing_layer": [
|
||||
"1"
|
||||
],
|
||||
"retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"retraction_length": [
|
||||
"1"
|
||||
],
|
||||
"retraction_minimum_travel": [
|
||||
"1"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"30"
|
||||
],
|
||||
"scan_first_layer": "0",
|
||||
"silent_mode": "0",
|
||||
"single_extruder_multi_material": "1",
|
||||
"support_air_filtration": "0",
|
||||
"support_chamber_temp_control": "0",
|
||||
"support_multi_bed_types": "0",
|
||||
"support_object_skip_flush": "0",
|
||||
"template_custom_gcode": "",
|
||||
"thumbnails": "32x32/PNG, 300x300/PNG",
|
||||
"thumbnails_format": "PNG",
|
||||
"time_cost": "0",
|
||||
"time_lapse_gcode": "",
|
||||
"travel_slope": [
|
||||
"3"
|
||||
],
|
||||
"upward_compatible_machine": [],
|
||||
"use_firmware_retraction": "1",
|
||||
"use_relative_e_distances": "1",
|
||||
"version": "2.2.0.4",
|
||||
"wipe": [
|
||||
"0"
|
||||
],
|
||||
"wipe_distance": [
|
||||
"2"
|
||||
],
|
||||
"wrapping_detection_gcode": "",
|
||||
"wrapping_detection_layers": "20",
|
||||
"wrapping_exclude_area": [],
|
||||
"z_hop": [
|
||||
"0"
|
||||
],
|
||||
"z_hop_types": [
|
||||
"Auto Lift"
|
||||
],
|
||||
"z_offset": "0"
|
||||
}
|
||||
@@ -0,0 +1,364 @@
|
||||
{
|
||||
"accel_to_decel_enable": "0",
|
||||
"accel_to_decel_factor": "50%",
|
||||
"align_infill_direction_to_model": "1",
|
||||
"alternate_extra_wall": "0",
|
||||
"bottom_shell_layers": "3",
|
||||
"bottom_shell_thickness": "0",
|
||||
"bottom_solid_infill_flow_ratio": "1",
|
||||
"bottom_surface_density": "100%",
|
||||
"bottom_surface_pattern": "concentric",
|
||||
"bridge_acceleration": "50%",
|
||||
"bridge_angle": "0",
|
||||
"bridge_density": "100%",
|
||||
"bridge_flow": "1.5",
|
||||
"bridge_no_support": "0",
|
||||
"bridge_speed": "10",
|
||||
"brim_ears_detection_length": "1",
|
||||
"brim_ears_max_angle": "125",
|
||||
"brim_object_gap": "0.4",
|
||||
"brim_type": "no_brim",
|
||||
"brim_use_efc_outline": "1",
|
||||
"brim_width": "5",
|
||||
"calib_flowrate_topinfill_special_order": "0",
|
||||
"compatible_printers": [
|
||||
"Anycubic Kobra Neo 0.6 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"default_acceleration": "2500",
|
||||
"default_jerk": "0",
|
||||
"default_junction_deviation": "0",
|
||||
"detect_narrow_internal_solid_infill": "1",
|
||||
"detect_overhang_wall": "1",
|
||||
"detect_thin_wall": "1",
|
||||
"dont_filter_internal_bridges": "disabled",
|
||||
"draft_shield": "disabled",
|
||||
"elefant_foot_compensation": "0.2",
|
||||
"elefant_foot_compensation_layers": "1",
|
||||
"enable_arc_fitting": "0",
|
||||
"enable_extra_bridge_layer": "disabled",
|
||||
"enable_overhang_speed": "1",
|
||||
"enable_prime_tower": "0",
|
||||
"enable_support": "1",
|
||||
"enable_tower_interface_cooldown_during_tower": "0",
|
||||
"enable_tower_interface_features": "0",
|
||||
"enable_wrapping_detection": "0",
|
||||
"enforce_support_layers": "0",
|
||||
"ensure_vertical_shell_thickness": "ensure_critical_only",
|
||||
"exclude_object": "1",
|
||||
"extra_perimeters_on_overhangs": "0",
|
||||
"extra_solid_infills": "",
|
||||
"extrusion_rate_smoothing_external_perimeter_only": "0",
|
||||
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||
"fill_multiline": "1",
|
||||
"filter_out_gap_fill": "0.6",
|
||||
"first_layer_flow_ratio": "1",
|
||||
"flush_into_infill": "0",
|
||||
"flush_into_objects": "0",
|
||||
"flush_into_support": "1",
|
||||
"from": "User",
|
||||
"fuzzy_skin": "none",
|
||||
"fuzzy_skin_first_layer": "0",
|
||||
"fuzzy_skin_mode": "displacement",
|
||||
"fuzzy_skin_noise_type": "classic",
|
||||
"fuzzy_skin_octaves": "4",
|
||||
"fuzzy_skin_persistence": "0.5",
|
||||
"fuzzy_skin_point_distance": "0.8",
|
||||
"fuzzy_skin_scale": "1",
|
||||
"fuzzy_skin_thickness": "0.3",
|
||||
"gap_fill_flow_ratio": "1",
|
||||
"gap_fill_target": "topbottom",
|
||||
"gap_infill_speed": "50",
|
||||
"gcode_add_line_number": "0",
|
||||
"gcode_comments": "0",
|
||||
"gcode_label_objects": "1",
|
||||
"hole_to_polyhole": "0",
|
||||
"hole_to_polyhole_threshold": "0.01",
|
||||
"hole_to_polyhole_twisted": "1",
|
||||
"independent_support_layer_height": "1",
|
||||
"infill_anchor": "1e+09",
|
||||
"infill_anchor_max": "1e+09",
|
||||
"infill_combination": "0",
|
||||
"infill_combination_max_layer_height": "100%",
|
||||
"infill_direction": "45",
|
||||
"infill_jerk": "9",
|
||||
"infill_lock_depth": "1",
|
||||
"infill_overhang_angle": "60",
|
||||
"infill_shift_step": "0.4",
|
||||
"infill_wall_overlap": "20%",
|
||||
"inherits": "",
|
||||
"initial_layer_acceleration": "1500",
|
||||
"initial_layer_infill_speed": "50",
|
||||
"initial_layer_jerk": "9",
|
||||
"initial_layer_line_width": "0",
|
||||
"initial_layer_min_bead_width": "85%",
|
||||
"initial_layer_print_height": "0.4",
|
||||
"initial_layer_speed": "30",
|
||||
"initial_layer_travel_speed": "50%",
|
||||
"inner_wall_acceleration": "2500",
|
||||
"inner_wall_flow_ratio": "1",
|
||||
"inner_wall_jerk": "9",
|
||||
"inner_wall_line_width": "0",
|
||||
"inner_wall_speed": "70",
|
||||
"interface_shells": "0",
|
||||
"interlocking_beam": "0",
|
||||
"interlocking_beam_layer_count": "2",
|
||||
"interlocking_beam_width": "0.8",
|
||||
"interlocking_boundary_avoidance": "2",
|
||||
"interlocking_depth": "2",
|
||||
"interlocking_orientation": "22.5",
|
||||
"internal_bridge_angle": "0",
|
||||
"internal_bridge_density": "100%",
|
||||
"internal_bridge_flow": "1.5",
|
||||
"internal_bridge_speed": "30",
|
||||
"internal_solid_infill_acceleration": "100%",
|
||||
"internal_solid_infill_flow_ratio": "1",
|
||||
"internal_solid_infill_line_width": "0",
|
||||
"internal_solid_infill_pattern": "monotonic",
|
||||
"internal_solid_infill_speed": "70",
|
||||
"ironing_angle": "0",
|
||||
"ironing_angle_fixed": "0",
|
||||
"ironing_flow": "10%",
|
||||
"ironing_inset": "0",
|
||||
"ironing_pattern": "rectilinear",
|
||||
"ironing_spacing": "0.1",
|
||||
"ironing_speed": "20",
|
||||
"ironing_type": "no ironing",
|
||||
"is_infill_first": "0",
|
||||
"lateral_lattice_angle_1": "-45",
|
||||
"lateral_lattice_angle_2": "45",
|
||||
"layer_height": "0.4",
|
||||
"line_width": "100%",
|
||||
"make_overhang_printable": "0",
|
||||
"make_overhang_printable_angle": "60",
|
||||
"make_overhang_printable_hole_size": "0",
|
||||
"max_bridge_length": "10",
|
||||
"max_travel_detour_distance": "0",
|
||||
"max_volumetric_extrusion_rate_slope": "0",
|
||||
"max_volumetric_extrusion_rate_slope_segment_length": "3",
|
||||
"min_bead_width": "85%",
|
||||
"min_feature_size": "25%",
|
||||
"min_length_factor": "0.75",
|
||||
"min_skirt_length": "0",
|
||||
"min_width_top_surface": "300%",
|
||||
"minimum_sparse_infill_area": "15",
|
||||
"mmu_segmented_region_interlocking_depth": "0",
|
||||
"mmu_segmented_region_max_width": "0",
|
||||
"name": "0.4 Layer @Anycubic Kobra Neo 0.6 nozzle",
|
||||
"notes": "",
|
||||
"only_one_wall_first_layer": "0",
|
||||
"only_one_wall_top": "0",
|
||||
"ooze_prevention": "0",
|
||||
"outer_wall_acceleration": "2500",
|
||||
"outer_wall_flow_ratio": "1",
|
||||
"outer_wall_jerk": "9",
|
||||
"outer_wall_line_width": "0",
|
||||
"outer_wall_speed": "70",
|
||||
"overhang_1_4_speed": "100%",
|
||||
"overhang_2_4_speed": "100%",
|
||||
"overhang_3_4_speed": "75%",
|
||||
"overhang_4_4_speed": "50%",
|
||||
"overhang_flow_ratio": "1",
|
||||
"overhang_reverse": "0",
|
||||
"overhang_reverse_internal_only": "0",
|
||||
"overhang_reverse_threshold": "50%",
|
||||
"post_process": [],
|
||||
"precise_outer_wall": "0",
|
||||
"precise_z_height": "0",
|
||||
"preheat_steps": "1",
|
||||
"preheat_time": "30",
|
||||
"prime_tower_brim_width": "3",
|
||||
"prime_tower_enable_framework": "0",
|
||||
"prime_tower_flat_ironing": "0",
|
||||
"prime_tower_infill_gap": "150%",
|
||||
"prime_tower_skip_points": "1",
|
||||
"prime_tower_width": "60",
|
||||
"prime_volume": "45",
|
||||
"print_extruder_id": [
|
||||
"1"
|
||||
],
|
||||
"print_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"print_flow_ratio": "1",
|
||||
"print_order": "default",
|
||||
"print_sequence": "by layer",
|
||||
"print_settings_id": "0.4 Layer @Anycubic Kobra Neo 0.6 nozzle",
|
||||
"raft_contact_distance": "0.1",
|
||||
"raft_expansion": "1.5",
|
||||
"raft_first_layer_density": "100%",
|
||||
"raft_first_layer_expansion": "5",
|
||||
"raft_layers": "0",
|
||||
"reduce_crossing_wall": "1",
|
||||
"reduce_infill_retraction": "1",
|
||||
"resolution": "0.005",
|
||||
"role_based_wipe_speed": "1",
|
||||
"scarf_angle_threshold": "155",
|
||||
"scarf_joint_flow_ratio": "1",
|
||||
"scarf_joint_speed": "100%",
|
||||
"scarf_overhang_threshold": "40%",
|
||||
"seam_gap": "10%",
|
||||
"seam_position": "aligned",
|
||||
"seam_slope_conditional": "0",
|
||||
"seam_slope_entire_loop": "0",
|
||||
"seam_slope_inner_walls": "0",
|
||||
"seam_slope_min_length": "20",
|
||||
"seam_slope_start_height": "0",
|
||||
"seam_slope_steps": "10",
|
||||
"seam_slope_type": "none",
|
||||
"set_other_flow_ratios": "0",
|
||||
"single_extruder_multi_material_priming": "0",
|
||||
"single_loop_draft_shield": "0",
|
||||
"skeleton_infill_density": "25%",
|
||||
"skeleton_infill_line_width": "100%",
|
||||
"skin_infill_density": "25%",
|
||||
"skin_infill_depth": "2",
|
||||
"skin_infill_line_width": "100%",
|
||||
"skirt_distance": "2",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "0",
|
||||
"skirt_speed": "50",
|
||||
"skirt_start_angle": "-135",
|
||||
"skirt_type": "combined",
|
||||
"slice_closing_radius": "0.001",
|
||||
"slicing_mode": "regular",
|
||||
"slow_down_layers": "1",
|
||||
"slowdown_for_curled_perimeters": "1",
|
||||
"small_area_infill_flow_compensation": "1",
|
||||
"small_area_infill_flow_compensation_model": [
|
||||
"0,0",
|
||||
"\n0.2,0.4444",
|
||||
"\n0.4,0.6145",
|
||||
"\n0.6,0.7059",
|
||||
"\n0.8,0.7619",
|
||||
"\n1.5,0.8571",
|
||||
"\n2,0.8889",
|
||||
"\n3,0.9231",
|
||||
"\n5,0.9520",
|
||||
"\n10,1"
|
||||
],
|
||||
"small_perimeter_speed": "0",
|
||||
"small_perimeter_threshold": "0",
|
||||
"solid_infill_direction": "45",
|
||||
"solid_infill_filament": "1",
|
||||
"solid_infill_rotate_template": "45,135",
|
||||
"sparse_infill_acceleration": "100%",
|
||||
"sparse_infill_density": "10%",
|
||||
"sparse_infill_filament": "1",
|
||||
"sparse_infill_flow_ratio": "1",
|
||||
"sparse_infill_line_width": "0",
|
||||
"sparse_infill_pattern": "3dhoneycomb",
|
||||
"sparse_infill_rotate_template": "",
|
||||
"sparse_infill_speed": "70",
|
||||
"spiral_finishing_flow_ratio": "0",
|
||||
"spiral_mode": "0",
|
||||
"spiral_mode_max_xy_smoothing": "200%",
|
||||
"spiral_mode_smooth": "1",
|
||||
"spiral_starting_flow_ratio": "0",
|
||||
"staggered_inner_seams": "0",
|
||||
"standby_temperature_delta": "-5",
|
||||
"support_angle": "0",
|
||||
"support_base_pattern": "rectilinear",
|
||||
"support_base_pattern_spacing": "2",
|
||||
"support_bottom_interface_spacing": "0.2",
|
||||
"support_bottom_z_distance": "0.4",
|
||||
"support_critical_regions_only": "0",
|
||||
"support_expansion": "0",
|
||||
"support_filament": "0",
|
||||
"support_flow_ratio": "1",
|
||||
"support_interface_bottom_layers": "2",
|
||||
"support_interface_filament": "0",
|
||||
"support_interface_flow_ratio": "1",
|
||||
"support_interface_loop_pattern": "0",
|
||||
"support_interface_not_for_body": "1",
|
||||
"support_interface_pattern": "auto",
|
||||
"support_interface_spacing": "0.2",
|
||||
"support_interface_speed": "50",
|
||||
"support_interface_top_layers": "2",
|
||||
"support_ironing": "0",
|
||||
"support_ironing_flow": "10%",
|
||||
"support_ironing_pattern": "rectilinear",
|
||||
"support_ironing_spacing": "0.1",
|
||||
"support_line_width": "0",
|
||||
"support_object_first_layer_gap": "1",
|
||||
"support_object_xy_distance": "1",
|
||||
"support_on_build_plate_only": "0",
|
||||
"support_remove_small_overhang": "0",
|
||||
"support_speed": "50",
|
||||
"support_style": "snug",
|
||||
"support_threshold_angle": "40",
|
||||
"support_threshold_overlap": "50%",
|
||||
"support_top_z_distance": "0.34",
|
||||
"support_type": "normal(auto)",
|
||||
"symmetric_infill_y_axis": "0",
|
||||
"thick_bridges": "0",
|
||||
"thick_internal_bridges": "1",
|
||||
"timelapse_type": "0",
|
||||
"top_bottom_infill_wall_overlap": "20%",
|
||||
"top_shell_layers": "3",
|
||||
"top_shell_thickness": "0",
|
||||
"top_solid_infill_flow_ratio": "1",
|
||||
"top_surface_acceleration": "1500",
|
||||
"top_surface_density": "100%",
|
||||
"top_surface_jerk": "9",
|
||||
"top_surface_line_width": "0",
|
||||
"top_surface_pattern": "concentric",
|
||||
"top_surface_speed": "60",
|
||||
"travel_acceleration": "2500",
|
||||
"travel_jerk": "12",
|
||||
"travel_speed": "140",
|
||||
"travel_speed_z": "0",
|
||||
"tree_support_angle_slow": "25",
|
||||
"tree_support_auto_brim": "1",
|
||||
"tree_support_branch_angle": "40",
|
||||
"tree_support_branch_angle_organic": "40",
|
||||
"tree_support_branch_diameter": "5",
|
||||
"tree_support_branch_diameter_angle": "10",
|
||||
"tree_support_branch_diameter_organic": "4",
|
||||
"tree_support_branch_distance": "5",
|
||||
"tree_support_branch_distance_organic": "1",
|
||||
"tree_support_brim_width": "3",
|
||||
"tree_support_tip_diameter": "0.8",
|
||||
"tree_support_top_rate": "30%",
|
||||
"tree_support_wall_count": "0",
|
||||
"version": "0.0.0.0",
|
||||
"wall_direction": "auto",
|
||||
"wall_distribution_count": "1",
|
||||
"wall_filament": "1",
|
||||
"wall_generator": "arachne",
|
||||
"wall_loops": "2",
|
||||
"wall_sequence": "inner wall/outer wall",
|
||||
"wall_transition_angle": "10",
|
||||
"wall_transition_filter_deviation": "25%",
|
||||
"wall_transition_length": "100%",
|
||||
"wipe_before_external_loop": "1",
|
||||
"wipe_on_loops": "1",
|
||||
"wipe_speed": "80%",
|
||||
"wipe_tower_bridging": "10",
|
||||
"wipe_tower_cone_angle": "0",
|
||||
"wipe_tower_extra_flow": "100%",
|
||||
"wipe_tower_extra_rib_length": "0",
|
||||
"wipe_tower_extra_spacing": "100%",
|
||||
"wipe_tower_filament": "0",
|
||||
"wipe_tower_fillet_wall": "1",
|
||||
"wipe_tower_max_purge_speed": "90",
|
||||
"wipe_tower_no_sparse_layers": "0",
|
||||
"wipe_tower_rib_width": "8",
|
||||
"wipe_tower_rotation_angle": "0",
|
||||
"wipe_tower_wall_type": "rectangle",
|
||||
"wiping_volumes_extruders": [
|
||||
"70",
|
||||
"70",
|
||||
"70",
|
||||
"70",
|
||||
"70",
|
||||
"70",
|
||||
"70",
|
||||
"70",
|
||||
"70",
|
||||
"70"
|
||||
],
|
||||
"xy_contour_compensation": "-0.02",
|
||||
"xy_hole_compensation": "0.02"
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Artillery",
|
||||
"version": "02.03.02.10",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "Artillery configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "Bambulab",
|
||||
"url": "http://www.bambulab.com/Parameters/vendor/BBL.json",
|
||||
"version": "02.00.00.56",
|
||||
"version": "02.01.00.00",
|
||||
"force_update": "0",
|
||||
"description": "the initial version of BBL configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -102,6 +102,21 @@
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_tower_interface_pre_extrusion_dist": [
|
||||
"10"
|
||||
],
|
||||
"filament_tower_interface_pre_extrusion_length": [
|
||||
"0"
|
||||
],
|
||||
"filament_tower_ironing_area": [
|
||||
"4"
|
||||
],
|
||||
"filament_tower_interface_purge_volume": [
|
||||
"20"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"-1"
|
||||
],
|
||||
"filament_printable": [
|
||||
"3"
|
||||
],
|
||||
@@ -277,4 +292,4 @@
|
||||
"volumetric_speed_coefficients":[
|
||||
"0 0 0 0 0 0"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -93,6 +93,8 @@
|
||||
"prime_tower_lift_height": "-1",
|
||||
"prime_tower_max_speed": "90",
|
||||
"prime_tower_flat_ironing": "0",
|
||||
"enable_tower_interface_features": "0",
|
||||
"enable_tower_interface_cooldown_during_tower": "0",
|
||||
"raft_layers": "0",
|
||||
"reduce_crossing_wall": "0",
|
||||
"reduce_infill_retraction": "1",
|
||||
@@ -170,4 +172,4 @@
|
||||
"xy_contour_compensation": "0",
|
||||
"xy_hole_compensation": "0",
|
||||
"z_direction_outwall_speed_continuous": "0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "BIQU",
|
||||
"version": "02.03.01.10",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "BIQU configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Blocks",
|
||||
"version": "02.03.01.10",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "Blocks configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "CONSTRUCT3D",
|
||||
"version": "02.03.01.10",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "Construct3D configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "Chuanying",
|
||||
"url": "",
|
||||
"version": "02.03.01.10",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "Chuanying configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Co Print",
|
||||
"version": "02.03.01.10",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "CoPrint configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "CoLiDo",
|
||||
"version": "02.03.01.10",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "CoLiDo configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Comgrow",
|
||||
"version": "02.03.01.10",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "Comgrow configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Creality",
|
||||
"version": "02.03.01.20",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "Creality configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Cubicon",
|
||||
"version": "02.03.01.10",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "Cubicon configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Custom Printer",
|
||||
"version": "02.03.01.10",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "My configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "DeltaMaker",
|
||||
"url": "",
|
||||
"version": "02.03.01.11",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "DeltaMaker configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Dremel",
|
||||
"version": "02.03.01.10",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "Dremel configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Elegoo",
|
||||
"version": "02.03.01.20",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "Elegoo configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Eryone",
|
||||
"version": "02.03.01.10",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "Eryone configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
"12"
|
||||
],
|
||||
"filament_type": [
|
||||
"Silk"
|
||||
"PLA Silk"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"Eryone Silk PLA"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "FLSun",
|
||||
"version": "02.03.01.10",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "FLSun configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "Flashforge",
|
||||
"url": "",
|
||||
"version": "02.03.01.10",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "Flashforge configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "FlyingBear",
|
||||
"version": "02.03.01.00",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "1",
|
||||
"description": "FlyingBear configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Folgertech",
|
||||
"version": "02.03.01.10",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "Folgertech configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Geeetech",
|
||||
"version": "02.03.01.11",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "Geeetech configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Ginger Additive",
|
||||
"version": "02.03.01.11",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "1",
|
||||
"description": "Ginger configuration",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "InfiMech",
|
||||
"version": "02.03.01.10",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "1",
|
||||
"description": "InfiMech configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "Kingroon",
|
||||
"url": "https://kingroon.com/",
|
||||
"version": "02.03.01.10",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "1",
|
||||
"description": "Kingroon configuration files",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "LONGER",
|
||||
"version": "02.03.01.10",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "LONGER configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "Lulzbot",
|
||||
"url": "https://ohai.lulzbot.com/group/taz-6/",
|
||||
"version": "02.03.01.10",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "Lulzbot configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "M3D",
|
||||
"version": "1.0.0",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "Configuration for M3D printers",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "MagicMaker",
|
||||
"version": "02.03.01.10",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "MagicMaker configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Mellow",
|
||||
"version": "02.03.01.10",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "Mellow Printer Profiles",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "OpenEYE",
|
||||
"url": "http://www.openeye.tech",
|
||||
"version": "01.00.00.03",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "OpenEYE Printers Configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
],
|
||||
"default_print_profile": "0.20mm Standard @OpenEYE Peacock V2",
|
||||
"deretraction_speed": [
|
||||
"30"
|
||||
"40"
|
||||
],
|
||||
"disable_m73": "0",
|
||||
"emit_machine_limits_to_gcode": "0",
|
||||
@@ -43,6 +43,7 @@
|
||||
"head_wrap_detect_zone": [],
|
||||
"high_current_on_filament_swap": "0",
|
||||
"host_type": "octoprint",
|
||||
"printer_agent": "moonraker",
|
||||
"inherits": "fdm_machine_common",
|
||||
"instantiation": "false",
|
||||
"layer_change_gcode": "SET_PRINT_STATS_INFO CURRENT_LAYER={layer_num + 1}\n_MMU_UPDATE_HEIGHT",
|
||||
@@ -185,13 +186,13 @@
|
||||
"18"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.8"
|
||||
"1"
|
||||
],
|
||||
"retraction_minimum_travel": [
|
||||
"1"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"30"
|
||||
"40"
|
||||
],
|
||||
"scan_first_layer": "0",
|
||||
"silent_mode": "0",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "Orca Arena Printer",
|
||||
"url": "",
|
||||
"version": "02.03.01.10",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "Orca Arena configuration files",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "OrcaFilamentLibrary",
|
||||
"version": "02.03.01.10",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "Orca Filament Library",
|
||||
"filament_list": [
|
||||
@@ -88,38 +88,6 @@
|
||||
"name": "fdm_filament_tpu",
|
||||
"sub_path": "filament/base/fdm_filament_tpu.json"
|
||||
},
|
||||
{
|
||||
"name": "Elas ASA @base",
|
||||
"sub_path": "filament/Elas/Elas ASA @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Elas PETG Basic @base",
|
||||
"sub_path": "filament/Elas/Elas PETG Basic @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Elas PLA Basic @base",
|
||||
"sub_path": "filament/Elas/Elas PLA Basic @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Elas PLA Pro @base",
|
||||
"sub_path": "filament/Elas/Elas PLA Pro @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Elas ASA @System",
|
||||
"sub_path": "filament/Elas/Elas ASA @System.json"
|
||||
},
|
||||
{
|
||||
"name": "Elas PETG Basic @System",
|
||||
"sub_path": "filament/Elas/Elas PETG Basic @System.json"
|
||||
},
|
||||
{
|
||||
"name": "Elas PLA Basic @System",
|
||||
"sub_path": "filament/Elas/Elas PLA Basic @System.json"
|
||||
},
|
||||
{
|
||||
"name": "Elas PLA Pro @System",
|
||||
"sub_path": "filament/Elas/Elas PLA Pro @System.json"
|
||||
},
|
||||
{
|
||||
"name": "FusRock ABS-GF @System",
|
||||
"sub_path": "filament/FusRock/FusRock ABS-GF @System.json"
|
||||
@@ -184,6 +152,14 @@
|
||||
"name": "COEX ASA PRIME @base",
|
||||
"sub_path": "filament/COEX/COEX ASA PRIME @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Elas ASA @base",
|
||||
"sub_path": "filament/Elas/Elas ASA @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Elegoo ASA @base",
|
||||
"sub_path": "filament/Elegoo/Elegoo ASA @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Eolas Prints ASA @System",
|
||||
"sub_path": "filament/Eolas Prints/Eolas Prints ASA @System.json"
|
||||
@@ -336,6 +312,22 @@
|
||||
"name": "COEX PETG @base",
|
||||
"sub_path": "filament/COEX/COEX PETG @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Elas PETG Basic @base",
|
||||
"sub_path": "filament/Elas/Elas PETG Basic @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Elegoo PETG Pro @base",
|
||||
"sub_path": "filament/Elegoo/Elegoo PETG Pro @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Elegoo PETG-CF @base",
|
||||
"sub_path": "filament/Elegoo/Elegoo PETG-CF @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Elegoo Rapid PETG @base",
|
||||
"sub_path": "filament/Elegoo/Elegoo Rapid PETG @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Eolas Prints PETG @System",
|
||||
"sub_path": "filament/Eolas Prints/Eolas Prints PETG @System.json"
|
||||
@@ -480,6 +472,22 @@
|
||||
"name": "COEX PLA PRIME @base",
|
||||
"sub_path": "filament/COEX/COEX PLA PRIME @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Elas PLA Basic @base",
|
||||
"sub_path": "filament/Elas/Elas PLA Basic @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Elas PLA Pro @base",
|
||||
"sub_path": "filament/Elas/Elas PLA Pro @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Elegoo PLA @base",
|
||||
"sub_path": "filament/Elegoo/Elegoo PLA @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Elegoo Rapid PLA+ @base",
|
||||
"sub_path": "filament/Elegoo/Elegoo Rapid PLA+ @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Eolas Prints PLA Antibacterial @System",
|
||||
"sub_path": "filament/Eolas Prints/Eolas Prints PLA Antibacterial @System.json"
|
||||
@@ -780,6 +788,10 @@
|
||||
"name": "COEX TPU 60A @base",
|
||||
"sub_path": "filament/COEX/COEX TPU 60A @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Elegoo TPU 95A @base",
|
||||
"sub_path": "filament/Elegoo/Elegoo TPU 95A @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Eolas Prints TPU D60 UV Resistant @System",
|
||||
"sub_path": "filament/Eolas Prints/Eolas Prints TPU Flex D60 UV Resistant @System.json"
|
||||
@@ -860,6 +872,14 @@
|
||||
"name": "COEX ASA PRIME @System",
|
||||
"sub_path": "filament/COEX/COEX ASA PRIME @System.json"
|
||||
},
|
||||
{
|
||||
"name": "Elas ASA @System",
|
||||
"sub_path": "filament/Elas/Elas ASA @System.json"
|
||||
},
|
||||
{
|
||||
"name": "Elegoo ASA @System",
|
||||
"sub_path": "filament/Elegoo/Elegoo ASA @System.json"
|
||||
},
|
||||
{
|
||||
"name": "Overture ASA @System",
|
||||
"sub_path": "filament/Overture/Overture ASA @System.json"
|
||||
@@ -902,7 +922,7 @@
|
||||
},
|
||||
{
|
||||
"name": "COEX NYLEX PA6-CF @System",
|
||||
"sub_path": "filament/COEX/COEX NYLEX UNFILLED @System.json"
|
||||
"sub_path": "filament/COEX/COEX NYLEX PA6-CF @System.json"
|
||||
},
|
||||
{
|
||||
"name": "Fiberon PA12-CF @System",
|
||||
@@ -968,6 +988,22 @@
|
||||
"name": "COEX PETG @System",
|
||||
"sub_path": "filament/COEX/COEX PETG @System.json"
|
||||
},
|
||||
{
|
||||
"name": "Elas PETG Basic @System",
|
||||
"sub_path": "filament/Elas/Elas PETG Basic @System.json"
|
||||
},
|
||||
{
|
||||
"name": "Elegoo PETG Pro @System",
|
||||
"sub_path": "filament/Elegoo/Elegoo PETG Pro @System.json"
|
||||
},
|
||||
{
|
||||
"name": "Elegoo PETG-CF @System",
|
||||
"sub_path": "filament/Elegoo/Elegoo PETG-CF @System.json"
|
||||
},
|
||||
{
|
||||
"name": "Elegoo Rapid PETG @System",
|
||||
"sub_path": "filament/Elegoo/Elegoo Rapid PETG @System.json"
|
||||
},
|
||||
{
|
||||
"name": "FDplast PETG @System",
|
||||
"sub_path": "filament/FDplast/FDplast PETG @System.json"
|
||||
@@ -1084,6 +1120,22 @@
|
||||
"name": "COEX PLA PRIME @System",
|
||||
"sub_path": "filament/COEX/COEX PLA PRIME @System.json"
|
||||
},
|
||||
{
|
||||
"name": "Elas PLA Basic @System",
|
||||
"sub_path": "filament/Elas/Elas PLA Basic @System.json"
|
||||
},
|
||||
{
|
||||
"name": "Elas PLA Pro @System",
|
||||
"sub_path": "filament/Elas/Elas PLA Pro @System.json"
|
||||
},
|
||||
{
|
||||
"name": "Elegoo PLA @System",
|
||||
"sub_path": "filament/Elegoo/Elegoo PLA @System.json"
|
||||
},
|
||||
{
|
||||
"name": "Elegoo Rapid PLA+ @System",
|
||||
"sub_path": "filament/Elegoo/Elegoo Rapid PLA+ @System.json"
|
||||
},
|
||||
{
|
||||
"name": "FDplast PLA @System",
|
||||
"sub_path": "filament/FDplast/FDplast PLA @System.json"
|
||||
@@ -1308,6 +1360,10 @@
|
||||
"name": "COEX TPU 60A @System",
|
||||
"sub_path": "filament/COEX/COEX TPU 60A @System.json"
|
||||
},
|
||||
{
|
||||
"name": "Elegoo TPU 95A @System",
|
||||
"sub_path": "filament/Elegoo/Elegoo TPU 95A @System.json"
|
||||
},
|
||||
{
|
||||
"name": "FDplast TPU @System",
|
||||
"sub_path": "filament/FDplast/FDplast TPU @System.json"
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
"1.5"
|
||||
],
|
||||
"filament_type": [
|
||||
"ASA-Aero"
|
||||
"ASA-AERO"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Elegoo ASA @System",
|
||||
"inherits": "Elegoo ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "OGFSE06_00",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": []
|
||||
}
|
||||
@@ -0,0 +1,65 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Elegoo ASA @base",
|
||||
"inherits": "fdm_filament_asa",
|
||||
"from": "system",
|
||||
"filament_id": "OGFE06",
|
||||
"instantiation": "false",
|
||||
"filament_cost": [
|
||||
"19.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.07"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Elegoo"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"255"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"280"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"250"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"90"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"95"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"95"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"50"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Elegoo PETG Pro @System",
|
||||
"inherits": "Elegoo PETG Pro @base",
|
||||
"from": "system",
|
||||
"setting_id": "OGFSE02_00",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": []
|
||||
}
|
||||
@@ -0,0 +1,74 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Elegoo PETG Pro @base",
|
||||
"inherits": "fdm_filament_pet",
|
||||
"from": "system",
|
||||
"filament_id": "OGFE02",
|
||||
"instantiation": "false",
|
||||
"filament_cost": [
|
||||
"12.49"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.27"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.8"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"45"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"45"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Elegoo"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"245"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"240"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"230"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"65"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"65"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"75"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"75"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"90"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Elegoo PETG-CF @System",
|
||||
"inherits": "Elegoo PETG-CF @base",
|
||||
"from": "system",
|
||||
"setting_id": "OGFSE03_00",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": []
|
||||
}
|
||||
@@ -0,0 +1,74 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Elegoo PETG-CF @base",
|
||||
"inherits": "fdm_filament_pet",
|
||||
"from": "system",
|
||||
"filament_id": "OGFE03",
|
||||
"instantiation": "false",
|
||||
"filament_cost": [
|
||||
"18.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.29"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.8"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"45"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"45"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Elegoo"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"255"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"250"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"240"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"65"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"65"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"75"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"75"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"90"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Elegoo PLA @System",
|
||||
"inherits": "Elegoo PLA @base",
|
||||
"from": "system",
|
||||
"setting_id": "OGFSE04_00",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": []
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Elegoo PLA @base",
|
||||
"inherits": "fdm_filament_pla",
|
||||
"from": "system",
|
||||
"filament_id": "OGFE04",
|
||||
"instantiation": "false",
|
||||
"filament_cost": [
|
||||
"15.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.24"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Elegoo"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"210"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"210"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"190"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"50"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"50"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"55"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"55"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Elegoo Rapid PETG @System",
|
||||
"inherits": "Elegoo Rapid PETG @base",
|
||||
"from": "system",
|
||||
"setting_id": "OGFSE01_00",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": []
|
||||
}
|
||||
@@ -0,0 +1,74 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Elegoo Rapid PETG @base",
|
||||
"inherits": "fdm_filament_pet",
|
||||
"from": "system",
|
||||
"filament_id": "OGFE01",
|
||||
"instantiation": "false",
|
||||
"filament_cost": [
|
||||
"13.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.28"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.8"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"45"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"45"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Elegoo"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"255"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"250"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"240"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"65"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"65"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"70"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"70"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"90"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Elegoo Rapid PLA+ @System",
|
||||
"inherits": "Elegoo Rapid PLA+ @base",
|
||||
"from": "system",
|
||||
"setting_id": "OGFSE05_00",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": []
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Elegoo Rapid PLA+ @base",
|
||||
"inherits": "fdm_filament_pla",
|
||||
"from": "system",
|
||||
"filament_id": "OGFE05",
|
||||
"instantiation": "false",
|
||||
"filament_cost": [
|
||||
"15.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.24"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Elegoo"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"215"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"210"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"190"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"50"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"50"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"55"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"55"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"6"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Elegoo TPU 95A @System",
|
||||
"inherits": "Elegoo TPU 95A @base",
|
||||
"from": "system",
|
||||
"setting_id": "OGFSE07_00",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": []
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Elegoo TPU 95A @base",
|
||||
"inherits": "fdm_filament_tpu",
|
||||
"from": "system",
|
||||
"filament_id": "OGFE07",
|
||||
"instantiation": "false",
|
||||
"filament_cost": [
|
||||
"19.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.21"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"3.5"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Elegoo"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"230"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"225"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"240"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"220"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"35"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"40"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"40"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"45"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"70"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"50"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.8"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"25"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"25"
|
||||
]
|
||||
}
|
||||
@@ -24,7 +24,7 @@
|
||||
"1.27"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
"10"
|
||||
],
|
||||
"filament_type": [
|
||||
"PETG"
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20"
|
||||
"10"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Peopoly",
|
||||
"version": "02.03.01.10",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "Peopoly configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Phrozen",
|
||||
"version": "02.03.01.11",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "Phrozen configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Positron 3D",
|
||||
"version": "02.03.01.10",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "Positron 3D Printer Profile",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Prusa",
|
||||
"version": "02.03.01.11",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "Prusa configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Qidi",
|
||||
"version": "02.03.01.20",
|
||||
"version": "02.03.02.50",
|
||||
"force_update": "0",
|
||||
"description": "Qidi configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user