mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-07-12 20:07:14 +03:00
Compare commits
56 Commits
feat/plugi
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b1e64dc69c | ||
|
|
3ae7bd04fa | ||
|
|
7e2047aa30 | ||
|
|
c4ea86041b | ||
|
|
bfbf591613 | ||
|
|
e1c0ea0cc4 | ||
|
|
93d5b65852 | ||
|
|
22e121f4e4 | ||
|
|
4b7182b048 | ||
|
|
e56cdd707f | ||
|
|
79d51b31b5 | ||
|
|
05ed2e4dfa | ||
|
|
6fda82476d | ||
|
|
2194037d16 | ||
|
|
7d17400443 | ||
|
|
bc6ffcfb31 | ||
|
|
378843a4da | ||
|
|
20a66fa99b | ||
|
|
da149ee75a | ||
|
|
781ecdc2c1 | ||
|
|
b58025575d | ||
|
|
b37fa41742 | ||
|
|
dec67345be | ||
|
|
cf86f20ae1 | ||
|
|
cab62070b5 | ||
|
|
12b63ebe36 | ||
|
|
1d61962ea7 | ||
|
|
4188ed2e00 | ||
|
|
bec1ce706c | ||
|
|
b2adfb5c13 | ||
|
|
b7d0bb60d9 | ||
|
|
1717c0f263 | ||
|
|
3bee58fcab | ||
|
|
6b7cfd71b1 | ||
|
|
ab6ec672b2 | ||
|
|
29f31b9b38 | ||
|
|
a1ff45284c | ||
|
|
cc89416055 | ||
|
|
fd80ded5a8 | ||
|
|
db2f861a11 | ||
|
|
2860353b9f | ||
|
|
218ec29d74 | ||
|
|
8747605930 | ||
|
|
ee1f4ef1d6 | ||
|
|
5ba5c6672d | ||
|
|
b68cb8b97b | ||
|
|
2d4f7a7437 | ||
|
|
dd99549d20 | ||
|
|
b3a0c8bd40 | ||
|
|
1882861a98 | ||
|
|
65a9e655cf | ||
|
|
61168cdb6f | ||
|
|
a6dd002fe7 | ||
|
|
8309a9e8ee | ||
|
|
5a629c0199 | ||
|
|
db48951c94 |
93
.github/workflows/build_all.yml
vendored
93
.github/workflows/build_all.yml
vendored
@@ -122,54 +122,73 @@ jobs:
|
||||
arch: universal
|
||||
macos-combine-only: true
|
||||
secrets: inherit
|
||||
unit_tests:
|
||||
name: Unit Tests
|
||||
# Tests are built on the aarch64 leg by default (faster GitHub arm runner),
|
||||
# so run them there; self-hosted builds them on the amd64 server instead.
|
||||
runs-on: ${{ vars.SELF_HOSTED && 'orca-lnx-server' || 'ubuntu-24.04-arm' }}
|
||||
# One test job per built arch, on the runner that built it.
|
||||
unit_tests_linux_x86_64:
|
||||
name: Linux x86_64
|
||||
needs: build_linux
|
||||
if: ${{ !cancelled() && success() }}
|
||||
uses: ./.github/workflows/unit_tests.yml
|
||||
with:
|
||||
os: ${{ vars.SELF_HOSTED && 'orca-lnx-server' || 'ubuntu-24.04' }}
|
||||
artifact: ${{ github.sha }}-tests-linux-x86_64
|
||||
unit_tests_linux_aarch64:
|
||||
name: Linux aarch64
|
||||
needs: build_linux
|
||||
if: ${{ !cancelled() && success() }}
|
||||
uses: ./.github/workflows/unit_tests.yml
|
||||
with:
|
||||
os: ubuntu-24.04-arm
|
||||
artifact: ${{ github.sha }}-tests-linux-aarch64
|
||||
unit_tests_windows_x64:
|
||||
name: Windows x64
|
||||
needs: build_windows
|
||||
if: ${{ !cancelled() && success() }}
|
||||
uses: ./.github/workflows/unit_tests.yml
|
||||
with:
|
||||
os: ${{ vars.SELF_HOSTED && 'orca-win-server' || 'windows-latest' }}
|
||||
artifact: ${{ github.sha }}-tests-windows-x64
|
||||
unit_tests_windows_arm64:
|
||||
name: Windows arm64
|
||||
needs: build_windows
|
||||
if: ${{ !cancelled() && success() }}
|
||||
uses: ./.github/workflows/unit_tests.yml
|
||||
with:
|
||||
os: windows-11-arm
|
||||
artifact: ${{ github.sha }}-tests-windows-arm64
|
||||
test-dir: build-arm64/tests
|
||||
unit_tests_macos_arm64:
|
||||
name: macOS arm64
|
||||
needs: build_macos_arch
|
||||
if: ${{ !cancelled() && success() }}
|
||||
uses: ./.github/workflows/unit_tests.yml
|
||||
with:
|
||||
os: ${{ vars.SELF_HOSTED && 'orca-macos-arm64' || 'macos-14' }}
|
||||
artifact: ${{ github.sha }}-tests-macos-arm64
|
||||
test-dir: build/arm64/tests
|
||||
publish_test_results:
|
||||
name: Publish Test Results
|
||||
needs: [unit_tests_linux_x86_64, unit_tests_linux_aarch64, unit_tests_windows_x64, unit_tests_windows_arm64, unit_tests_macos_arm64]
|
||||
if: ${{ !cancelled() }}
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v7
|
||||
with:
|
||||
sparse-checkout: |
|
||||
.github
|
||||
scripts
|
||||
tests
|
||||
- name: Apt-Install Dependencies
|
||||
if: ${{ !vars.SELF_HOSTED }}
|
||||
uses: ./.github/actions/apt-install-deps
|
||||
- name: Restore Test Artifact
|
||||
- name: Download Test Results
|
||||
uses: actions/download-artifact@v8
|
||||
with:
|
||||
name: ${{ github.sha }}-tests
|
||||
- uses: lukka/get-cmake@latest
|
||||
with:
|
||||
cmakeVersion: "~4.3.0" # use most recent 4.3.x version
|
||||
useLocalCache: true # <--= Use the local cache (default is 'false').
|
||||
useCloudCache: true
|
||||
- name: Unpackage and Run Unit Tests
|
||||
timeout-minutes: 20
|
||||
run: |
|
||||
tar -xvf build_tests.tar
|
||||
scripts/run_unit_tests.sh
|
||||
- name: Upload Test Logs
|
||||
uses: actions/upload-artifact@v7
|
||||
if: ${{ failure() }}
|
||||
with:
|
||||
name: unit-test-logs
|
||||
path: build/tests/**/*.log
|
||||
pattern: test-results-*
|
||||
path: test-results
|
||||
# Best-effort: a read-only token (e.g. fork PRs) can't write the check, so
|
||||
# don't let a publish failure fail the run. The test jobs gate correctness.
|
||||
- name: Publish Test Results
|
||||
if: always()
|
||||
continue-on-error: true
|
||||
uses: EnricoMi/publish-unit-test-result-action@v2
|
||||
with:
|
||||
files: "ctest_results.xml"
|
||||
- name: Delete Test Artifact
|
||||
files: "test-results/**/*.xml"
|
||||
- name: Delete Test Results
|
||||
if: success()
|
||||
uses: geekyeggo/delete-artifact@v6
|
||||
with:
|
||||
name: ${{ github.sha }}-tests
|
||||
name: test-results-*
|
||||
failOnError: false
|
||||
flatpak:
|
||||
name: "Flatpak"
|
||||
container:
|
||||
|
||||
55
.github/workflows/build_orca.yml
vendored
55
.github/workflows/build_orca.yml
vendored
@@ -141,8 +141,26 @@ jobs:
|
||||
- name: Build slicer mac
|
||||
if: runner.os == 'macOS' && !inputs.macos-combine-only
|
||||
working-directory: ${{ github.workspace }}
|
||||
# arm64 only: build the tests here; the unit_tests_macos job runs them.
|
||||
env:
|
||||
ORCA_TESTS_BUILD_ONLY: ${{ inputs.arch == 'arm64' && '1' || '' }}
|
||||
run: |
|
||||
./build_release_macos.sh -s -n -x ${{ !vars.SELF_HOSTED && '-1' || '' }} -a ${{ inputs.arch }} -t 10.15
|
||||
./build_release_macos.sh -s -n -x ${{ !vars.SELF_HOSTED && '-1' || '' }} -a ${{ inputs.arch }} -t 10.15 ${{ inputs.arch == 'arm64' && '-T' || '' }}
|
||||
|
||||
- name: Pack unit tests mac
|
||||
if: runner.os == 'macOS' && !inputs.macos-combine-only && inputs.arch == 'arm64'
|
||||
working-directory: ${{ github.workspace }}
|
||||
run: tar -cvf build_tests.tar build/arm64/tests
|
||||
|
||||
- name: Upload Test Artifact mac
|
||||
if: runner.os == 'macOS' && !inputs.macos-combine-only && inputs.arch == 'arm64'
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: ${{ github.sha }}-tests-macos-arm64
|
||||
overwrite: true
|
||||
path: build_tests.tar
|
||||
retention-days: 5
|
||||
if-no-files-found: error
|
||||
|
||||
- name: Pack macOS app bundle ${{ inputs.arch }}
|
||||
if: runner.os == 'macOS' && !inputs.macos-combine-only
|
||||
@@ -335,11 +353,28 @@ jobs:
|
||||
# env:
|
||||
# WindowsSdkDir: 'C:\Program Files (x86)\Windows Kits\10\'
|
||||
# WindowsSDKVersion: '10.0.26100.0\'
|
||||
# "tests" builds the unit tests too; the unit_tests_windows_* jobs run them.
|
||||
run: |
|
||||
$arch = "${{ inputs.arch }}"
|
||||
if ($arch -eq "arm64") { .\build_release_vs.bat slicer arm64 } else { .\build_release_vs.bat slicer }
|
||||
if ($arch -eq "arm64") { .\build_release_vs.bat slicer arm64 tests } else { .\build_release_vs.bat slicer tests }
|
||||
shell: pwsh
|
||||
|
||||
- name: Pack unit tests Win
|
||||
if: runner.os == 'Windows'
|
||||
working-directory: ${{ github.workspace }}
|
||||
shell: pwsh
|
||||
run: tar -cvf build_tests.tar ${{ env.BUILD_DIR }}/tests
|
||||
|
||||
- name: Upload Test Artifact Win
|
||||
if: runner.os == 'Windows'
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: ${{ github.sha }}-tests-windows-${{ inputs.arch }}
|
||||
overwrite: true
|
||||
path: build_tests.tar
|
||||
retention-days: 5
|
||||
if-no-files-found: error
|
||||
|
||||
# NSIS is x86-only; it runs (and the installer it emits runs) under ARM64's
|
||||
# x86 emulation, packaging the native arm64 payload from build-arm64.
|
||||
- name: Create installer Win
|
||||
@@ -452,26 +487,22 @@ jobs:
|
||||
if: runner.os == 'Linux'
|
||||
shell: bash
|
||||
run: |
|
||||
# Build + tar the unit tests (-t) only on the leg that runs them: the
|
||||
# aarch64 leg by default (faster GitHub arm runner), or amd64 when using
|
||||
# self-hosted runners (no arm self-hosted server). unit_tests downloads
|
||||
# this tarball. The profile validator is built with -s, so amd64 keeps it.
|
||||
tests=${{ (!vars.SELF_HOSTED && inputs.arch == 'aarch64') || (vars.SELF_HOSTED && inputs.arch != 'aarch64') }}
|
||||
if $tests; then flags=-istrlL; else flags=-isrlL; fi
|
||||
./build_linux.sh "$flags"
|
||||
# Build + tar the unit tests (-t) on both Linux legs so each arch
|
||||
# (x86_64 + aarch64) gets tested by its own unit_tests_linux_* job.
|
||||
./build_linux.sh -istrlL
|
||||
./scripts/check_appimage_libs.sh ./build/package ./build/package/bin/orca-slicer
|
||||
appimage=./build/OrcaSlicer_Linux_AppImage${{ env.ubuntu-ver-str }}${{ env.arch_suffix }}_${{ env.ver }}.AppImage
|
||||
mv -n ./build/OrcaSlicer_Linux_V${{ env.ver_pure }}.AppImage "$appimage"
|
||||
chmod +x "$appimage"
|
||||
if $tests; then tar -cvpf build_tests.tar build/tests; fi
|
||||
tar -cvf build_tests.tar build/tests
|
||||
|
||||
# Use tar because upload-artifacts won't always preserve directory structure
|
||||
# and doesn't preserve file permissions
|
||||
- name: Upload Test Artifact
|
||||
if: runner.os == 'Linux' && ((!vars.SELF_HOSTED && inputs.arch == 'aarch64') || (vars.SELF_HOSTED && inputs.arch != 'aarch64'))
|
||||
if: runner.os == 'Linux'
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: ${{ github.sha }}-tests
|
||||
name: ${{ github.sha }}-tests-linux-${{ inputs.arch == 'aarch64' && 'aarch64' || 'x86_64' }}
|
||||
overwrite: true
|
||||
path: build_tests.tar
|
||||
retention-days: 5
|
||||
|
||||
29
.github/workflows/check_profiles.yml
vendored
29
.github/workflows/check_profiles.yml
vendored
@@ -41,7 +41,7 @@ jobs:
|
||||
curl -L -o OrcaSlicer_profile_validator https://github.com/OrcaSlicer/OrcaSlicer/releases/download/nightly-builds/OrcaSlicer_profile_validator_Linux_Ubuntu2404_nightly
|
||||
chmod +x ./OrcaSlicer_profile_validator
|
||||
|
||||
# validate profiles
|
||||
# Validate all system profiles.
|
||||
- name: validate system profiles
|
||||
id: validate_system
|
||||
continue-on-error: true
|
||||
@@ -57,20 +57,6 @@ jobs:
|
||||
set +e
|
||||
./OrcaSlicer_profile_validator -p ${{ github.workspace }}/resources/profiles -l 2 -v BBL -f 2>&1 | tee ${{ runner.temp }}/validate_filament_subtypes.log
|
||||
exit ${PIPESTATUS[0]}
|
||||
# Flag inherits/compatible_printers/compatible_prints references that point at a deleted or
|
||||
# renamed preset. Opt-in per vendor for now (via -r); enabled for BBL and Qidi until other
|
||||
# vendors' profiles are cleaned up. Runs before the custom-preset injection below.
|
||||
- name: validate preset references for BBL and Qidi profiles
|
||||
id: validate_preset_references
|
||||
continue-on-error: true
|
||||
run: |
|
||||
set +e
|
||||
rc=0
|
||||
for v in BBL Qidi; do
|
||||
./OrcaSlicer_profile_validator -p ${{ github.workspace }}/resources/profiles -l 2 -v "$v" -r 2>&1 | tee -a ${{ runner.temp }}/validate_preset_references.log
|
||||
[ ${PIPESTATUS[0]} -ne 0 ] && rc=1
|
||||
done
|
||||
exit $rc
|
||||
|
||||
- name: validate custom presets
|
||||
id: validate_custom
|
||||
@@ -180,7 +166,7 @@ jobs:
|
||||
echo "${{ github.event.pull_request.number }}" > ${{ runner.temp }}/profile-check-results/pr_number.txt
|
||||
|
||||
- name: Prepare comment artifact
|
||||
if: ${{ always() && github.event_name == 'pull_request' && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_filament_subtypes.outcome == 'failure' || steps.validate_preset_references.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }}
|
||||
if: ${{ always() && github.event_name == 'pull_request' && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_filament_subtypes.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }}
|
||||
run: |
|
||||
{
|
||||
# Marker matched by check_profiles_comment.yml to delete prior comments.
|
||||
@@ -215,15 +201,6 @@ jobs:
|
||||
echo ""
|
||||
fi
|
||||
|
||||
if [ "${{ steps.validate_preset_references.outcome }}" = "failure" ]; then
|
||||
echo "### BBL/Qidi Preset Reference Validation Failed"
|
||||
echo ""
|
||||
echo '```'
|
||||
head -c 30000 ${{ runner.temp }}/validate_preset_references.log || echo "No output captured"
|
||||
echo '```'
|
||||
echo ""
|
||||
fi
|
||||
|
||||
if [ "${{ steps.validate_custom.outcome }}" = "failure" ]; then
|
||||
echo "### Custom Preset Validation Failed"
|
||||
echo ""
|
||||
@@ -246,7 +223,7 @@ jobs:
|
||||
retention-days: 1
|
||||
|
||||
- name: Fail if any check failed
|
||||
if: ${{ always() && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_filament_subtypes.outcome == 'failure' || steps.validate_preset_references.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }}
|
||||
if: ${{ always() && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_filament_subtypes.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }}
|
||||
run: |
|
||||
echo "One or more profile checks failed. See above for details."
|
||||
exit 1
|
||||
|
||||
2
.github/workflows/dedupe-issues.yml
vendored
2
.github/workflows/dedupe-issues.yml
vendored
@@ -27,7 +27,7 @@ jobs:
|
||||
with:
|
||||
prompt: "/dedupe ${{ github.repository }}/issues/${{ github.event.issue.number || inputs.issue_number }}"
|
||||
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
|
||||
claude_args: "--model claude-sonnet-4-5-20250929"
|
||||
model: "claude-sonnet-4-5-20250929"
|
||||
claude_env: |
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
|
||||
73
.github/workflows/unit_tests.yml
vendored
Normal file
73
.github/workflows/unit_tests.yml
vendored
Normal file
@@ -0,0 +1,73 @@
|
||||
name: Unit Tests
|
||||
|
||||
# Download a platform's test artifact, run ctest, and upload the JUnit
|
||||
# results for aggregation. Called once per arch from build_all.yml.
|
||||
on:
|
||||
workflow_call:
|
||||
inputs:
|
||||
os:
|
||||
required: true
|
||||
type: string
|
||||
artifact:
|
||||
description: Test artifact uploaded by the build leg
|
||||
required: true
|
||||
type: string
|
||||
test-dir:
|
||||
description: Built tests dir; defaults to build/tests, override for arch-separated builds
|
||||
required: false
|
||||
type: string
|
||||
default: build/tests
|
||||
|
||||
jobs:
|
||||
unit_tests:
|
||||
# Static "Unit Tests"; the per-arch label is the caller's job name, so the
|
||||
# graph shows e.g. "Windows x64 / Unit Tests".
|
||||
name: Unit Tests
|
||||
runs-on: ${{ inputs.os }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v7
|
||||
with:
|
||||
# tests/data is referenced by absolute path (TEST_DATA_DIR).
|
||||
sparse-checkout: |
|
||||
.github
|
||||
scripts
|
||||
tests
|
||||
- name: Apt-Install Dependencies
|
||||
if: runner.os == 'Linux' && !vars.SELF_HOSTED
|
||||
uses: ./.github/actions/apt-install-deps
|
||||
- name: Restore Test Artifact
|
||||
uses: actions/download-artifact@v8
|
||||
with:
|
||||
name: ${{ inputs.artifact }}
|
||||
- uses: lukka/get-cmake@latest
|
||||
with:
|
||||
cmakeVersion: "~4.3.0" # use most recent 4.3.x version
|
||||
useLocalCache: true
|
||||
useCloudCache: true
|
||||
- name: Unpackage and Run Unit Tests
|
||||
timeout-minutes: 20
|
||||
shell: bash
|
||||
run: |
|
||||
tar -xvf build_tests.tar
|
||||
# Multi-config generators (Windows/macOS) need a config; Linux is single-config.
|
||||
scripts/run_unit_tests.sh "${{ inputs.test-dir }}" "${{ runner.os != 'Linux' && 'Release' || '' }}"
|
||||
- name: Upload Test Logs
|
||||
if: ${{ failure() }}
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: unit-test-logs-${{ inputs.artifact }}
|
||||
path: ${{ inputs.test-dir }}/**/*.log
|
||||
- name: Upload Test Results
|
||||
if: always()
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: test-results-${{ inputs.artifact }}
|
||||
path: ctest_results.xml
|
||||
retention-days: 5
|
||||
if-no-files-found: warn
|
||||
- name: Delete Test Artifact
|
||||
if: success()
|
||||
uses: geekyeggo/delete-artifact@v6
|
||||
with:
|
||||
name: ${{ inputs.artifact }}
|
||||
@@ -710,7 +710,7 @@ endif ()
|
||||
set(L10N_DIR "${SLIC3R_RESOURCES_DIR}/i18n")
|
||||
set(BBL_L18N_DIR "${CMAKE_CURRENT_SOURCE_DIR}/localization/i18n")
|
||||
add_custom_target(gettext_make_pot
|
||||
COMMAND xgettext --keyword=L --keyword=_L --keyword=_u8L --keyword=L_CONTEXT:1,2c --keyword=_L_PLURAL:1,2 --add-comments=TRN --from-code=UTF-8 --no-location --debug --boost
|
||||
COMMAND xgettext --keyword=L --keyword=_L --keyword=_u8L --keyword=L_CONTEXT:1,2c --keyword=_CTX:1,2c --keyword=_CTX_utf8:1,2c --keyword=_L_PLURAL:1,2 --add-comments=TRN --from-code=UTF-8 --no-location --debug --boost
|
||||
-f "${BBL_L18N_DIR}/list.txt"
|
||||
-o "${BBL_L18N_DIR}/OrcaSlicer.pot"
|
||||
COMMAND hintsToPot ${SLIC3R_RESOURCES_DIR} ${BBL_L18N_DIR}
|
||||
|
||||
@@ -59,7 +59,7 @@ while getopts ":dpa:snt:xbc:i:1Tuh" opt; do
|
||||
echo " -c: Set CMake build configuration, default is Release"
|
||||
echo " -i: Add a prefix to ignore during CMake dependency discovery (repeatable), defaults to /opt/local:/usr/local:/opt/homebrew"
|
||||
echo " -1: Use single job for building"
|
||||
echo " -T: Build and run tests"
|
||||
echo " -T: Build and run tests (set ORCA_TESTS_BUILD_ONLY=1 to build without running)"
|
||||
exit 0
|
||||
;;
|
||||
* )
|
||||
@@ -209,13 +209,10 @@ function build_slicer() {
|
||||
cmake --build . --config "$BUILD_CONFIG" --target "$SLICER_BUILD_TARGET"
|
||||
)
|
||||
|
||||
if [ "1." == "$BUILD_TESTS". ]; then
|
||||
echo "Running tests for $_ARCH..."
|
||||
(
|
||||
set -x
|
||||
cd "$PROJECT_BUILD_DIR"
|
||||
ctest --build-config "$BUILD_CONFIG" --output-on-failure
|
||||
)
|
||||
# -T also runs the tests; ORCA_TESTS_BUILD_ONLY=1 builds them without
|
||||
# running, so CI can build here and run them in a dedicated job.
|
||||
if [ "1." == "$BUILD_TESTS". ] && [ "1." != "$ORCA_TESTS_BUILD_ONLY". ]; then
|
||||
"$PROJECT_DIR/scripts/run_unit_tests.sh" "build/$_ARCH/tests" "$BUILD_CONFIG"
|
||||
fi
|
||||
|
||||
echo "Verify localization with gettext..."
|
||||
|
||||
@@ -20,6 +20,12 @@ for %%a in (%*) do (
|
||||
if "%%a"=="-x" set USE_NINJA=1
|
||||
)
|
||||
|
||||
@REM Check for unit-tests option ("tests")
|
||||
set BUILD_TESTS=OFF
|
||||
for %%a in (%*) do (
|
||||
if /I "%%a"=="tests" set BUILD_TESTS=ON
|
||||
)
|
||||
|
||||
if "%USE_NINJA%"=="1" (
|
||||
echo Using Ninja Multi-Config generator
|
||||
set CMAKE_GENERATOR="Ninja Multi-Config"
|
||||
@@ -145,10 +151,10 @@ cd %build_dir%
|
||||
echo on
|
||||
set CMAKE_POLICY_VERSION_MINIMUM=3.5
|
||||
if "%USE_NINJA%"=="1" (
|
||||
cmake .. -G %CMAKE_GENERATOR% -DORCA_TOOLS=ON %SIG_FLAG% -DCMAKE_BUILD_TYPE=%build_type%
|
||||
cmake .. -G %CMAKE_GENERATOR% -DORCA_TOOLS=ON %SIG_FLAG% -DBUILD_TESTS=%BUILD_TESTS% -DCMAKE_BUILD_TYPE=%build_type%
|
||||
cmake --build . --config %build_type% --target ALL_BUILD
|
||||
) else (
|
||||
cmake .. -G %CMAKE_GENERATOR% -A %arch% -DORCA_TOOLS=ON %SIG_FLAG% -DCMAKE_BUILD_TYPE=%build_type%
|
||||
cmake .. -G %CMAKE_GENERATOR% -A %arch% -DORCA_TOOLS=ON %SIG_FLAG% -DBUILD_TESTS=%BUILD_TESTS% -DCMAKE_BUILD_TYPE=%build_type%
|
||||
cmake --build . --config %build_type% --target ALL_BUILD -- -m
|
||||
)
|
||||
@echo off
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-07-03 14:43+0200\n"
|
||||
"POT-Creation-Date: 2026-07-12 12:27-0300\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"
|
||||
@@ -163,6 +163,12 @@ msgstr ""
|
||||
msgid "Gap Fill"
|
||||
msgstr ""
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr ""
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr ""
|
||||
|
||||
#, possible-boost-format
|
||||
msgid "Allows painting only on facets selected by: \"%1%\""
|
||||
msgstr ""
|
||||
@@ -255,12 +261,6 @@ msgstr ""
|
||||
msgid "Height Range"
|
||||
msgstr ""
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr ""
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr ""
|
||||
|
||||
msgid "Remove painted color"
|
||||
msgstr ""
|
||||
|
||||
@@ -325,6 +325,7 @@ msgstr ""
|
||||
msgid "Optimize orientation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Scale"
|
||||
msgstr ""
|
||||
|
||||
@@ -334,6 +335,7 @@ msgstr ""
|
||||
msgid "Error: Please close all toolbar menus first"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "inches"
|
||||
msgid "in"
|
||||
msgstr ""
|
||||
|
||||
@@ -367,6 +369,9 @@ msgstr ""
|
||||
msgid "Object operations"
|
||||
msgstr ""
|
||||
|
||||
msgid "Scale"
|
||||
msgstr ""
|
||||
|
||||
msgid "Volume operations"
|
||||
msgstr ""
|
||||
|
||||
@@ -388,25 +393,32 @@ msgstr ""
|
||||
msgid "Reset rotation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Object coordinates"
|
||||
msgid "World"
|
||||
msgstr ""
|
||||
|
||||
msgid "World coordinates"
|
||||
msgid "Object"
|
||||
msgstr ""
|
||||
|
||||
msgid "Translate(Relative)"
|
||||
msgid "Part"
|
||||
msgstr ""
|
||||
|
||||
msgid "Relative"
|
||||
msgstr ""
|
||||
|
||||
msgid "Coordinate system used for transform actions."
|
||||
msgstr ""
|
||||
|
||||
msgid "Absolute"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset current rotation to the value when open the rotation tool."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rotate (absolute)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset current rotation to real zeros."
|
||||
msgstr ""
|
||||
|
||||
msgid "Part coordinates"
|
||||
msgctxt "Noun"
|
||||
msgid "Scale"
|
||||
msgstr ""
|
||||
|
||||
#. TRN - Input label. Be short as possible
|
||||
@@ -512,12 +524,6 @@ msgstr ""
|
||||
msgid "Spacing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part"
|
||||
msgstr ""
|
||||
|
||||
msgid "Object"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Click to flip the cut plane\n"
|
||||
"Drag to move the cut plane"
|
||||
@@ -1820,23 +1826,30 @@ msgstr ""
|
||||
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cloud sync conflict:"
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid "Cloud sync conflict for preset \"%s\":"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
|
||||
"This preset has a newer version in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
|
||||
"A preset with this name already exists in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
|
||||
"A preset with the same name was previously deleted from the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
|
||||
"There was an unexpected or unidentified preset conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
@@ -1845,6 +1858,12 @@ msgid ""
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Resolve cloud sync conflict"
|
||||
msgstr ""
|
||||
|
||||
@@ -1912,7 +1931,8 @@ msgstr ""
|
||||
msgid "Sync user presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
@@ -2122,6 +2142,9 @@ msgstr ""
|
||||
msgid "OrcaSliced Combo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Badge"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Tolerance Test"
|
||||
msgstr ""
|
||||
|
||||
@@ -3484,6 +3507,7 @@ msgstr ""
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "Navigation"
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
@@ -4766,6 +4790,7 @@ msgstr ""
|
||||
msgid "Color change"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "Noun"
|
||||
msgid "Print"
|
||||
msgstr ""
|
||||
|
||||
@@ -4921,11 +4946,15 @@ msgstr ""
|
||||
msgid "Align to Y axis"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "Camera View"
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
@@ -5004,6 +5033,9 @@ msgstr ""
|
||||
msgid "Outline"
|
||||
msgstr ""
|
||||
|
||||
msgid "Wireframe"
|
||||
msgstr ""
|
||||
|
||||
msgid "Realistic View"
|
||||
msgstr ""
|
||||
|
||||
@@ -5046,7 +5078,7 @@ msgstr ""
|
||||
msgid "Size:"
|
||||
msgstr ""
|
||||
|
||||
#, possible-boost-format
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
|
||||
msgstr ""
|
||||
|
||||
@@ -5239,6 +5271,10 @@ msgstr ""
|
||||
msgid "Export G-code file"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Print"
|
||||
msgstr ""
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr ""
|
||||
|
||||
@@ -5412,15 +5448,6 @@ msgstr ""
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
@@ -5535,6 +5562,15 @@ msgstr ""
|
||||
msgid "Preset Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr ""
|
||||
|
||||
msgid "Syncing presets from cloud…"
|
||||
msgstr ""
|
||||
|
||||
@@ -7665,6 +7701,35 @@ msgstr ""
|
||||
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: linear deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Linear deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.003 mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: angle deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Angle deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.5."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: Split into multiple objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: disabled."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quality level for Draco export"
|
||||
msgstr ""
|
||||
|
||||
@@ -7677,6 +7742,12 @@ msgid ""
|
||||
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
|
||||
msgstr ""
|
||||
|
||||
msgid "Store full source file paths in projects"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
|
||||
msgstr ""
|
||||
|
||||
msgid "Preset"
|
||||
msgstr ""
|
||||
|
||||
@@ -9780,11 +9851,7 @@ msgstr ""
|
||||
msgid "Successfully synchronized nozzle and AMS number information."
|
||||
msgstr ""
|
||||
|
||||
msgid "Continue to sync filaments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "Sync_Nozzle_AMS"
|
||||
msgid "Cancel"
|
||||
msgid "Do you want to continue to sync filaments?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Successfully synchronized filament color from printer."
|
||||
@@ -11020,7 +11087,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -11034,7 +11101,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -11658,6 +11725,42 @@ msgstr ""
|
||||
msgid "Density of top surface layer. A value of 100% creates a fully solid, smooth top layer. Reducing this value results in a textured top surface, according to the chosen top surface pattern. A value of 0% will result in only the walls on the top layer being created. Intended for aesthetic or functional purposes, not to fix issues such as over-extrusion."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top surface expansion"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Expands the top surfaces by this distance to connect distinct top surfaces and fill gaps.\n"
|
||||
"Useful for cases where the top surface is interrupted by a raised feature, such as text on a plane.Expanding it removes the holes beneath these features and creates a continuous path with a better finish for printing on top.The expansion is applied to the original top surface, before any other processing such as bridging or overhang detection."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion wall margin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Using “Top surface expansion” may cause a surface that did not previously touch the model's outer walls to now do so.\n"
|
||||
"This can cause contraction marks (such as the hull line) on the outer walls.\n"
|
||||
"By adding a small margin, this contraction will not occur directly on the walls, thereby preventing a visible mark."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Direction in which the top surface expansion grows.\n"
|
||||
" - Inward grows into the holes and gaps left by features rising from the middle of a top surface.\n"
|
||||
" - Outward grows the outer edge of the surface, connecting surfaces separated by features that can divide a surface, such as a lattice pattern.\n"
|
||||
" - Inward and Outward does both."
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward and Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom surface pattern"
|
||||
msgstr ""
|
||||
|
||||
@@ -11696,6 +11799,18 @@ msgstr ""
|
||||
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "Small support perimeters"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
|
||||
msgstr ""
|
||||
|
||||
msgid "Small support perimeters threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "Walls printing order"
|
||||
msgstr ""
|
||||
|
||||
@@ -11848,21 +11963,25 @@ msgid ""
|
||||
"3. Enter the triplets of PA values, Flow and Accelerations in the text box here and save your filament profile."
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
msgid "Enable adaptive pressure advance within features (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
|
||||
msgstr ""
|
||||
|
||||
msgid "Pressure advance for bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
|
||||
"\n"
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
|
||||
"\n"
|
||||
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
|
||||
msgstr ""
|
||||
|
||||
msgid "Static pressure advance for bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
|
||||
"equivalent walls (using adaptive settings if enabled).\n"
|
||||
"\n"
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
msgstr ""
|
||||
|
||||
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
|
||||
@@ -12219,6 +12338,22 @@ msgstr ""
|
||||
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the top solid infill and ironing lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the bottom solid infill lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sparse infill density"
|
||||
msgstr ""
|
||||
|
||||
@@ -12226,12 +12361,12 @@ msgstr ""
|
||||
msgid "Density of internal sparse infill, 100% turns all sparse infill into solid infill and internal solid infill pattern will be used."
|
||||
msgstr ""
|
||||
|
||||
msgid "Align infill direction to model"
|
||||
msgid "Align directions to model"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Aligns infill, bridge, ironing and surface fill directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, directions rotate with the model to maintain optimal strength characteristics."
|
||||
"Aligns infill, bridge, ironing, and top/bottom surface directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, these directions rotate together with the model so the printed features keep their intended orientation relative to the part, preserving optimal strength and surface characteristics regardless of how the model is placed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Insert solid layers"
|
||||
@@ -13835,6 +13970,9 @@ msgstr ""
|
||||
msgid "Aligned back"
|
||||
msgstr ""
|
||||
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
msgid "Random"
|
||||
msgstr ""
|
||||
|
||||
@@ -14169,6 +14307,18 @@ msgstr ""
|
||||
msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print."
|
||||
msgstr ""
|
||||
|
||||
msgid "Toolchange ordering"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Determines the order of tool changes on each layer.\n"
|
||||
"- Default: Starts with the last used extruder to minimize tool changes.\n"
|
||||
"- Cyclic: Uses a fixed tool sequence each layer. This sacrifices speed for better surface quality, as the extra toolchanges allow layers more time to cool."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cyclic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice gap closing radius"
|
||||
msgstr ""
|
||||
|
||||
@@ -14572,6 +14722,45 @@ msgstr ""
|
||||
msgid "The number of top solid layers is increased when slicing if the thickness calculated by top shell layers is thinner than this value. This can avoid having too thin a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers."
|
||||
msgstr ""
|
||||
|
||||
msgid "Anisotropic surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Anisotropic patterns on the top and bottom surfaces.\n"
|
||||
"Co-directional printing mode will be applied. For certain patterns, omni-directional filling provides color dispersion when using multi-colored or silk plastics.\n"
|
||||
"This option disable the gap fill.\n"
|
||||
"This option can increase a printing time."
|
||||
msgstr ""
|
||||
|
||||
msgid "Separated infills"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Centers the internal infill of each part on itself, as if it were sliced on its own, instead of on the whole assembly. Parts that touch or overlap are treated as one body and share a center; separate parts (or distinct 3D objects) each get their own.\n"
|
||||
"Useful when an assembly groups several objects that should each keep a consistent, self-centered infill.\n"
|
||||
"Affects line and grid patterns and rotation-template infills.\n"
|
||||
"Patterns locked to global coordinates (Gyroid, Honeycomb, TPMS, ...) are unaffected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Center surface pattern on"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Chooses where the centering point of centered top/bottom surface patterns (Archimedean Chords, Octagram Spiral) is placed.\n"
|
||||
" - Each Surface: centers the pattern on every individual surface region, so each island is symmetric on its own.\n"
|
||||
" - Each Model: centers the pattern on each connected body. Parts that touch or overlap share one center; parts detached from the rest each get their own.\n"
|
||||
" - Each Assembly: uses a single shared center for the whole object or assembly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Surface"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Assembly"
|
||||
msgstr ""
|
||||
|
||||
msgid "This is the speed at which traveling is done."
|
||||
msgstr ""
|
||||
|
||||
@@ -14785,6 +14974,14 @@ msgstr ""
|
||||
msgid "Rotate the polyhole every layer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Maximum Polyhole edge count"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Maximum number of polyhole edges\n"
|
||||
"This setting limits the amount of edges a polyhole can have"
|
||||
msgstr ""
|
||||
|
||||
msgid "G-code thumbnails"
|
||||
msgstr ""
|
||||
|
||||
@@ -17973,6 +18170,12 @@ msgstr ""
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Save these settings as default"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
|
||||
msgstr ""
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-07-03 14:43+0200\n"
|
||||
"POT-Creation-Date: 2026-07-12 12:27-0300\n"
|
||||
"PO-Revision-Date: 2025-03-15 10:55+0100\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -167,6 +167,12 @@ msgstr "Farcir"
|
||||
msgid "Gap Fill"
|
||||
msgstr "Farcir el buit"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr ""
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "Horitzontal"
|
||||
|
||||
#, boost-format
|
||||
msgid "Allows painting only on facets selected by: \"%1%\""
|
||||
msgstr "Permet pintar només les facetes seleccionades per: \"%1%\""
|
||||
@@ -262,12 +268,6 @@ msgstr ""
|
||||
msgid "Height Range"
|
||||
msgstr "Rang d'alçada"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr ""
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "Horitzontal"
|
||||
|
||||
msgid "Remove painted color"
|
||||
msgstr "Elimina el color pintat"
|
||||
|
||||
@@ -332,6 +332,7 @@ msgstr "Gizmo-Rotació"
|
||||
msgid "Optimize orientation"
|
||||
msgstr "Optimitzar l'orientació"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Scale"
|
||||
msgstr "Escalar"
|
||||
|
||||
@@ -341,8 +342,9 @@ msgstr "Gizmo-Escalar"
|
||||
msgid "Error: Please close all toolbar menus first"
|
||||
msgstr "Error: Tanqueu primer tots els menús de la barra d'eines"
|
||||
|
||||
msgctxt "inches"
|
||||
msgid "in"
|
||||
msgstr "polç"
|
||||
msgstr ""
|
||||
|
||||
msgid "mm"
|
||||
msgstr "mm"
|
||||
@@ -375,6 +377,9 @@ msgstr "Ràtios d'escala"
|
||||
msgid "Object operations"
|
||||
msgstr "Operacions amb objectes"
|
||||
|
||||
msgid "Scale"
|
||||
msgstr "Escalar"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Volume operations"
|
||||
msgstr "Operacions de volum"
|
||||
@@ -402,26 +407,33 @@ msgstr "Restableix la Posició"
|
||||
msgid "Reset rotation"
|
||||
msgstr "Reinicialitza la rotació"
|
||||
|
||||
msgid "Object coordinates"
|
||||
msgstr "Coordenades de l'objecte"
|
||||
msgid "World"
|
||||
msgstr ""
|
||||
|
||||
msgid "World coordinates"
|
||||
msgstr "Coordenades cartesianes"
|
||||
msgid "Object"
|
||||
msgstr "Objecte"
|
||||
|
||||
msgid "Translate(Relative)"
|
||||
msgstr "Trasllada (relatiu)"
|
||||
msgid "Part"
|
||||
msgstr "Peça"
|
||||
|
||||
msgid "Relative"
|
||||
msgstr ""
|
||||
|
||||
msgid "Coordinate system used for transform actions."
|
||||
msgstr ""
|
||||
|
||||
msgid "Absolute"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset current rotation to the value when open the rotation tool."
|
||||
msgstr "Restableix la rotació actual al valor d'quan s'ha obert l'eina de rotació."
|
||||
|
||||
msgid "Rotate (absolute)"
|
||||
msgstr "Gira (absolut)"
|
||||
|
||||
msgid "Reset current rotation to real zeros."
|
||||
msgstr "Restableix la rotació actual a zeros reals."
|
||||
|
||||
msgid "Part coordinates"
|
||||
msgstr "Coordenades de la part"
|
||||
msgctxt "Noun"
|
||||
msgid "Scale"
|
||||
msgstr "Escalar"
|
||||
|
||||
#. TRN - Input label. Be short as possible
|
||||
msgid "Size"
|
||||
@@ -526,12 +538,6 @@ msgstr ""
|
||||
msgid "Spacing"
|
||||
msgstr "Espaiat"
|
||||
|
||||
msgid "Part"
|
||||
msgstr "Peça"
|
||||
|
||||
msgid "Object"
|
||||
msgstr "Objecte"
|
||||
|
||||
msgid ""
|
||||
"Click to flip the cut plane\n"
|
||||
"Drag to move the cut plane"
|
||||
@@ -1879,23 +1885,30 @@ msgstr "Obrir Projecte"
|
||||
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
|
||||
msgstr "La versió de l'Orca Slicer és massa antiga i s'ha d'actualitzar a la versió més recent abans que es pugui utilitzar amb normalitat"
|
||||
|
||||
msgid "Cloud sync conflict:"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Cloud sync conflict for preset \"%s\":"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
|
||||
"This preset has a newer version in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
|
||||
"A preset with this name already exists in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
|
||||
"A preset with the same name was previously deleted from the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
|
||||
"There was an unexpected or unidentified preset conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
@@ -1904,6 +1917,12 @@ msgid ""
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Resolve cloud sync conflict"
|
||||
msgstr ""
|
||||
|
||||
@@ -1978,7 +1997,8 @@ msgstr "El nombre de perfils d'usuari emmagatzemats a memòria cau al núvol ha
|
||||
msgid "Sync user presets"
|
||||
msgstr "Sincronitzar perfils d'usuari"
|
||||
|
||||
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
#, c-format, boost-format
|
||||
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
@@ -2200,6 +2220,9 @@ msgstr "Cub d'Orca"
|
||||
msgid "OrcaSliced Combo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Badge"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Tolerance Test"
|
||||
msgstr "Prova de tolerància d'Orca"
|
||||
|
||||
@@ -3637,7 +3660,7 @@ msgstr "Calibratge completat. Trobeu la línia d'extrusió més uniforme al vost
|
||||
msgid "Save"
|
||||
msgstr "Desar"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgctxt "Navigation"
|
||||
msgid "Back"
|
||||
msgstr "Darrera"
|
||||
|
||||
@@ -5020,6 +5043,7 @@ msgstr "Canvis d'eina"
|
||||
msgid "Color change"
|
||||
msgstr "Canvi de color"
|
||||
|
||||
msgctxt "Noun"
|
||||
msgid "Print"
|
||||
msgstr "Imprimir"
|
||||
|
||||
@@ -5183,11 +5207,15 @@ msgstr "Evitar la regió de calibratge d'extrusió"
|
||||
msgid "Align to Y axis"
|
||||
msgstr "Alinear a l'eix Y"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Back"
|
||||
msgstr "Darrera"
|
||||
|
||||
msgctxt "Camera View"
|
||||
msgid "Left"
|
||||
msgstr "Esquerra"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Right"
|
||||
msgstr "Dreta"
|
||||
|
||||
@@ -5266,6 +5294,9 @@ msgstr "Voladissos"
|
||||
msgid "Outline"
|
||||
msgstr "Contorn"
|
||||
|
||||
msgid "Wireframe"
|
||||
msgstr ""
|
||||
|
||||
msgid "Realistic View"
|
||||
msgstr ""
|
||||
|
||||
@@ -5310,7 +5341,7 @@ msgid "Size:"
|
||||
msgstr "Mida:"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
|
||||
msgstr "S'han trobat conflictes de rutes gcode a la capa %d, Z = %.2lfmm. Si us plau, separeu els objectes conflictius més lluny ( %s <-> %s )."
|
||||
|
||||
@@ -5513,6 +5544,10 @@ msgstr "Imprimir placa d'impressió"
|
||||
msgid "Export G-code file"
|
||||
msgstr "Exportar el fitxer del Codi-G"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Print"
|
||||
msgstr "Imprimir"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "Exportar fitxer de la placa laminada"
|
||||
|
||||
@@ -5686,15 +5721,6 @@ msgstr "Exportar la configuració actual a fitxers"
|
||||
msgid "Export"
|
||||
msgstr "Exportar"
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quit"
|
||||
msgstr "Surt"
|
||||
|
||||
@@ -5811,6 +5837,15 @@ msgstr "Vista"
|
||||
msgid "Preset Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr ""
|
||||
|
||||
msgid "Syncing presets from cloud…"
|
||||
msgstr ""
|
||||
|
||||
@@ -8057,6 +8092,35 @@ msgstr "Mostra opcions en importar fitxers STEP"
|
||||
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
|
||||
msgstr "Si s'activa, apareixerà un diàleg de configuració de paràmetres durant la importació de fitxers STEP."
|
||||
|
||||
msgid "STEP importing: linear deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Linear deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.003 mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: angle deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Angle deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.5."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: Split into multiple objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: disabled."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quality level for Draco export"
|
||||
msgstr "Nivell de qualitat per a l'exportació Draco"
|
||||
|
||||
@@ -8072,6 +8136,12 @@ msgstr ""
|
||||
"0 = compressió sense pèrdua (la geometria es preserva a plena precisió). Els valors amb pèrdua vàlids van de 8 a 30.\n"
|
||||
"Valors més baixos produeixen fitxers més petits però perden més detall geomètric; valors més alts preserven més detall a costa de fitxers més grans."
|
||||
|
||||
msgid "Store full source file paths in projects"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
|
||||
msgstr ""
|
||||
|
||||
msgid "Preset"
|
||||
msgstr "Perfil"
|
||||
|
||||
@@ -10276,12 +10346,8 @@ msgstr "Informació del broquet sincronitzada correctament."
|
||||
msgid "Successfully synchronized nozzle and AMS number information."
|
||||
msgstr "Informació del broquet i nombre d'AMS sincronitzats correctament."
|
||||
|
||||
msgid "Continue to sync filaments"
|
||||
msgstr "Continua sincronitzant filaments"
|
||||
|
||||
msgctxt "Sync_Nozzle_AMS"
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel·la"
|
||||
msgid "Do you want to continue to sync filaments?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Successfully synchronized filament color from printer."
|
||||
msgstr "Color del filament sincronitzat correctament de la impressora."
|
||||
@@ -11606,7 +11672,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -11620,7 +11686,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -12352,6 +12418,42 @@ msgstr "Densitat de la superfície superior"
|
||||
msgid "Density of top surface layer. A value of 100% creates a fully solid, smooth top layer. Reducing this value results in a textured top surface, according to the chosen top surface pattern. A value of 0% will result in only the walls on the top layer being created. Intended for aesthetic or functional purposes, not to fix issues such as over-extrusion."
|
||||
msgstr "Densitat de la capa de superfície superior. Un valor del 100% crea una capa superior completament sòlida i llisa. Reduir aquest valor resulta en una superfície superior texturada, segons el patró de superfície superior triat. Un valor del 0% resultarà en la creació de només les parets a la capa superior. Destinat a fins estètics o funcionals, no per solucionar problemes com la sobreextrusió."
|
||||
|
||||
msgid "Top surface expansion"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Expands the top surfaces by this distance to connect distinct top surfaces and fill gaps.\n"
|
||||
"Useful for cases where the top surface is interrupted by a raised feature, such as text on a plane.Expanding it removes the holes beneath these features and creates a continuous path with a better finish for printing on top.The expansion is applied to the original top surface, before any other processing such as bridging or overhang detection."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion wall margin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Using “Top surface expansion” may cause a surface that did not previously touch the model's outer walls to now do so.\n"
|
||||
"This can cause contraction marks (such as the hull line) on the outer walls.\n"
|
||||
"By adding a small margin, this contraction will not occur directly on the walls, thereby preventing a visible mark."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Direction in which the top surface expansion grows.\n"
|
||||
" - Inward grows into the holes and gaps left by features rising from the middle of a top surface.\n"
|
||||
" - Outward grows the outer edge of the surface, connecting surfaces separated by features that can divide a surface, such as a lattice pattern.\n"
|
||||
" - Inward and Outward does both."
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward and Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom surface pattern"
|
||||
msgstr "Patró de superfície inferior"
|
||||
|
||||
@@ -12394,6 +12496,18 @@ msgstr "Llindar de perímetres petits"
|
||||
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
|
||||
msgstr "Això estableix el llindar per a la longitud perimetral petita. El llindar predeterminat és de 0mm"
|
||||
|
||||
msgid "Small support perimeters"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
|
||||
msgstr ""
|
||||
|
||||
msgid "Small support perimeters threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "Walls printing order"
|
||||
msgstr "Ordre d'impressió de perímetres"
|
||||
|
||||
@@ -12579,25 +12693,26 @@ msgstr ""
|
||||
"2. Anoteu el valor de PA òptim per a cada velocitat i acceleració del cabal volumètric. Podeu trobar el número de flux seleccionant el flux al desplegable de l'esquema de colors i moveu el control lliscant horitzontal per sobre de les línies del patró PA. El número ha de ser visible a la part inferior de la pàgina. El valor de PA ideal hauria de ser decreixent com més gran sigui el cabal volumètric. Si no és així, confirmeu que la vostra extrusora funciona correctament. Com més lent i amb menys acceleració imprimiu, més gran serà el rang de valors de PA acceptables. Si no hi ha cap diferència visible, utilitzeu el valor PA de la prova més ràpida.\n"
|
||||
"3. Introduïu els triplets dels valors de PA, flux i acceleracions al quadre de text aquí i deseu el vostre perfil de filament."
|
||||
|
||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
msgstr "Habilita l'avanç de pressió adaptativa per als voladissos (beta)"
|
||||
|
||||
msgid ""
|
||||
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
|
||||
msgid "Enable adaptive pressure advance within features (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pressure advance for bridges"
|
||||
msgstr "Avanç de pressió per als ponts"
|
||||
msgid ""
|
||||
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
|
||||
"\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
|
||||
"\n"
|
||||
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
|
||||
msgstr ""
|
||||
|
||||
msgid "Static pressure advance for bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
|
||||
"equivalent walls (using adaptive settings if enabled).\n"
|
||||
"\n"
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
msgstr ""
|
||||
"Valor d'avanç de pressió per als ponts. Establiu a 0 per desactivar.\n"
|
||||
"\n"
|
||||
" Un valor de PA més baix quan s'imprimeixen ponts ajuda a reduir l'aparició d'una lleugera extrusió immediatament després dels ponts. Això és causat per la caiguda de pressió al broquet quan s'imprimeix a l'aire i un PA més baix ajuda a contrarestar-ho."
|
||||
|
||||
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
|
||||
msgstr "Amplada de línia predeterminada si altres amplades de línia estan definides com a 0. Si s'expressa en %, es calcularà sobre el diàmetre del broquet."
|
||||
@@ -12981,6 +13096,22 @@ msgstr "Direcció de farciment sòlid"
|
||||
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
|
||||
msgstr "Angle per al patró de farciment sòlid, que controla l'inici o la direcció principal de la línia"
|
||||
|
||||
msgid "Top layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the top solid infill and ironing lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the bottom solid infill lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sparse infill density"
|
||||
msgstr "Densitat de farciment poc dens"
|
||||
|
||||
@@ -12988,12 +13119,12 @@ msgstr "Densitat de farciment poc dens"
|
||||
msgid "Density of internal sparse infill, 100% turns all sparse infill into solid infill and internal solid infill pattern will be used."
|
||||
msgstr "Densitat de farciment poc dens, converteix el 100% tu el teu farciment poc dens en farciment sòlid i s'utilitzarà el patró de farciment sòlid intern"
|
||||
|
||||
msgid "Align infill direction to model"
|
||||
msgstr "Alinea la direcció del farciment al model"
|
||||
msgid "Align directions to model"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Aligns infill, bridge, ironing and surface fill directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, directions rotate with the model to maintain optimal strength characteristics."
|
||||
"Aligns infill, bridge, ironing, and top/bottom surface directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, these directions rotate together with the model so the printed features keep their intended orientation relative to the part, preserving optimal strength and surface characteristics regardless of how the model is placed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Insert solid layers"
|
||||
@@ -14726,6 +14857,10 @@ msgstr "Alineat"
|
||||
msgid "Aligned back"
|
||||
msgstr "Alineat al darrere"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Back"
|
||||
msgstr "Darrera"
|
||||
|
||||
msgid "Random"
|
||||
msgstr "Aleatori"
|
||||
|
||||
@@ -15084,6 +15219,18 @@ msgstr "Purgar tots els extrusors d'impressió"
|
||||
msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print."
|
||||
msgstr "Si està habilitat, tots els extrusors d'impressió seran purgats a la vora frontal del llit d'impressió al començament de la impressió."
|
||||
|
||||
msgid "Toolchange ordering"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Determines the order of tool changes on each layer.\n"
|
||||
"- Default: Starts with the last used extruder to minimize tool changes.\n"
|
||||
"- Cyclic: Uses a fixed tool sequence each layer. This sacrifices speed for better surface quality, as the extra toolchanges allow layers more time to cool."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cyclic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice gap closing radius"
|
||||
msgstr "Radi de tancament dels buits en laminar"
|
||||
|
||||
@@ -15530,6 +15677,45 @@ msgstr "Gruix mínim de la carcassa superior"
|
||||
msgid "The number of top solid layers is increased when slicing if the thickness calculated by top shell layers is thinner than this value. This can avoid having too thin a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers."
|
||||
msgstr "El nombre de capes sòlides superiors augmenta quan es tallen si el gruix calculat per les capes de closca superior és més prim que aquest valor. Això pot evitar tenir una closca massa fina quan l'alçada de la capa és petita. 0 significa que aquesta configuració està desactivada i que el gruix de la carcassa superior està absolutament determinat per les capes de la carcassa superior"
|
||||
|
||||
msgid "Anisotropic surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Anisotropic patterns on the top and bottom surfaces.\n"
|
||||
"Co-directional printing mode will be applied. For certain patterns, omni-directional filling provides color dispersion when using multi-colored or silk plastics.\n"
|
||||
"This option disable the gap fill.\n"
|
||||
"This option can increase a printing time."
|
||||
msgstr ""
|
||||
|
||||
msgid "Separated infills"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Centers the internal infill of each part on itself, as if it were sliced on its own, instead of on the whole assembly. Parts that touch or overlap are treated as one body and share a center; separate parts (or distinct 3D objects) each get their own.\n"
|
||||
"Useful when an assembly groups several objects that should each keep a consistent, self-centered infill.\n"
|
||||
"Affects line and grid patterns and rotation-template infills.\n"
|
||||
"Patterns locked to global coordinates (Gyroid, Honeycomb, TPMS, ...) are unaffected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Center surface pattern on"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Chooses where the centering point of centered top/bottom surface patterns (Archimedean Chords, Octagram Spiral) is placed.\n"
|
||||
" - Each Surface: centers the pattern on every individual surface region, so each island is symmetric on its own.\n"
|
||||
" - Each Model: centers the pattern on each connected body. Parts that touch or overlap share one center; parts detached from the rest each get their own.\n"
|
||||
" - Each Assembly: uses a single shared center for the whole object or assembly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Surface"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Assembly"
|
||||
msgstr ""
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "This is the speed at which traveling is done."
|
||||
msgstr "Velocitat de desplaçament més ràpida i sense extrusió"
|
||||
@@ -15778,6 +15964,14 @@ msgstr "Gir del poliforat"
|
||||
msgid "Rotate the polyhole every layer."
|
||||
msgstr "Rotar el poliforat a cada capa."
|
||||
|
||||
msgid "Maximum Polyhole edge count"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Maximum number of polyhole edges\n"
|
||||
"This setting limits the amount of edges a polyhole can have"
|
||||
msgstr ""
|
||||
|
||||
msgid "G-code thumbnails"
|
||||
msgstr "Mida Miniatures al Codi-G"
|
||||
|
||||
@@ -19146,6 +19340,12 @@ msgstr "Nombre de cares triangulars"
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr "Calculant, espereu..."
|
||||
|
||||
msgid "Save these settings as default"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
|
||||
msgstr ""
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
@@ -19551,6 +19751,52 @@ msgstr ""
|
||||
"Evitar la deformació( warping )\n"
|
||||
"Sabíeu que quan imprimiu materials propensos a deformar-se, com ara l'ABS, augmentar adequadament la temperatura del llit pot reduir la probabilitat de deformació?"
|
||||
|
||||
#~ msgid "Continue to sync filaments"
|
||||
#~ msgstr "Continua sincronitzant filaments"
|
||||
|
||||
#~ msgctxt "Sync_Nozzle_AMS"
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Cancel·la"
|
||||
|
||||
#~ msgid "Align infill direction to model"
|
||||
#~ msgstr "Alinea la direcció del farciment al model"
|
||||
|
||||
#~ msgid "Print"
|
||||
#~ msgstr "Imprimir"
|
||||
|
||||
#~ msgid "in"
|
||||
#~ msgstr "polç"
|
||||
|
||||
#~ msgid "Object coordinates"
|
||||
#~ msgstr "Coordenades de l'objecte"
|
||||
|
||||
#~ msgid "World coordinates"
|
||||
#~ msgstr "Coordenades cartesianes"
|
||||
|
||||
#~ msgid "Translate(Relative)"
|
||||
#~ msgstr "Trasllada (relatiu)"
|
||||
|
||||
#~ msgid "Rotate (absolute)"
|
||||
#~ msgstr "Gira (absolut)"
|
||||
|
||||
#~ msgid "Part coordinates"
|
||||
#~ msgstr "Coordenades de la part"
|
||||
|
||||
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
#~ msgstr "Habilita l'avanç de pressió adaptativa per als voladissos (beta)"
|
||||
|
||||
#~ msgid "Pressure advance for bridges"
|
||||
#~ msgstr "Avanç de pressió per als ponts"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
#~ "\n"
|
||||
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
#~ msgstr ""
|
||||
#~ "Valor d'avanç de pressió per als ponts. Establiu a 0 per desactivar.\n"
|
||||
#~ "\n"
|
||||
#~ " Un valor de PA més baix quan s'imprimeixen ponts ajuda a reduir l'aparició d'una lleugera extrusió immediatament després dels ponts. Això és causat per la caiguda de pressió al broquet quan s'imprimeix a l'aire i un PA més baix ajuda a contrarestar-ho."
|
||||
|
||||
#~ msgid "Filament Sync Options"
|
||||
#~ msgstr "Opcions de sincronització de filament"
|
||||
|
||||
@@ -20974,10 +21220,6 @@ msgstr ""
|
||||
#~ msgid "Unselect"
|
||||
#~ msgstr "Desmarcar"
|
||||
|
||||
#~ msgctxt "Verb"
|
||||
#~ msgid "Scale"
|
||||
#~ msgstr "Escalar"
|
||||
|
||||
#~ msgid "Lift Z Enforcement"
|
||||
#~ msgstr "Forçar elevació Z"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-07-03 14:43+0200\n"
|
||||
"POT-Creation-Date: 2026-07-12 12:27-0300\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Jakub Hencl\n"
|
||||
"Language-Team: \n"
|
||||
@@ -162,6 +162,12 @@ msgstr "Výplň"
|
||||
msgid "Gap Fill"
|
||||
msgstr "Vyplnění mezery"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "Vertikální"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "Vodorovně"
|
||||
|
||||
#, boost-format
|
||||
msgid "Allows painting only on facets selected by: \"%1%\""
|
||||
msgstr "Umožňuje malování pouze na plochách vybraných podle: \"%1%\""
|
||||
@@ -257,12 +263,6 @@ msgstr "Trojúhelník"
|
||||
msgid "Height Range"
|
||||
msgstr "Rozsah výšky"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "Vertikální"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "Vodorovně"
|
||||
|
||||
msgid "Remove painted color"
|
||||
msgstr "Odstranit nanesenou barvu"
|
||||
|
||||
@@ -327,6 +327,7 @@ msgstr "Gizmo-Otočit"
|
||||
msgid "Optimize orientation"
|
||||
msgstr "Optimalizovat orientaci"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Scale"
|
||||
msgstr "Měřítko"
|
||||
|
||||
@@ -336,8 +337,9 @@ msgstr "Gizmo-Měřítko"
|
||||
msgid "Error: Please close all toolbar menus first"
|
||||
msgstr "Nejprve prosím zavřete všechna menu nástrojové lišty"
|
||||
|
||||
msgctxt "inches"
|
||||
msgid "in"
|
||||
msgstr "v"
|
||||
msgstr ""
|
||||
|
||||
msgid "mm"
|
||||
msgstr "mm"
|
||||
@@ -370,6 +372,9 @@ msgstr "Poměry měřítka"
|
||||
msgid "Object operations"
|
||||
msgstr "Operace s objektem"
|
||||
|
||||
msgid "Scale"
|
||||
msgstr "Měřítko"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Volume operations"
|
||||
msgstr "Operace s hlasitostí"
|
||||
@@ -397,26 +402,33 @@ msgstr "Obnovit pozici"
|
||||
msgid "Reset rotation"
|
||||
msgstr "Resetovat rotaci"
|
||||
|
||||
msgid "Object coordinates"
|
||||
msgstr "Souřadnice objektu"
|
||||
msgid "World"
|
||||
msgstr ""
|
||||
|
||||
msgid "World coordinates"
|
||||
msgstr "Světové souřadnice"
|
||||
msgid "Object"
|
||||
msgstr "Objekt"
|
||||
|
||||
msgid "Translate(Relative)"
|
||||
msgstr "Přesunout (relativně)"
|
||||
msgid "Part"
|
||||
msgstr "Díl"
|
||||
|
||||
msgid "Relative"
|
||||
msgstr ""
|
||||
|
||||
msgid "Coordinate system used for transform actions."
|
||||
msgstr ""
|
||||
|
||||
msgid "Absolute"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset current rotation to the value when open the rotation tool."
|
||||
msgstr "Obnovit aktuální rotaci na hodnotu při otevření nástroje pro rotaci."
|
||||
|
||||
msgid "Rotate (absolute)"
|
||||
msgstr "Otočit (absolutně)"
|
||||
|
||||
msgid "Reset current rotation to real zeros."
|
||||
msgstr "Obnovit aktuální rotaci na skutečné nuly."
|
||||
|
||||
msgid "Part coordinates"
|
||||
msgstr "Souřadnice části"
|
||||
msgctxt "Noun"
|
||||
msgid "Scale"
|
||||
msgstr "Měřítko"
|
||||
|
||||
#. TRN - Input label. Be short as possible
|
||||
msgid "Size"
|
||||
@@ -521,12 +533,6 @@ msgstr "Mezera"
|
||||
msgid "Spacing"
|
||||
msgstr "Rozestup"
|
||||
|
||||
msgid "Part"
|
||||
msgstr "Díl"
|
||||
|
||||
msgid "Object"
|
||||
msgstr "Objekt"
|
||||
|
||||
msgid ""
|
||||
"Click to flip the cut plane\n"
|
||||
"Drag to move the cut plane"
|
||||
@@ -1871,23 +1877,30 @@ msgstr "Otevřít projekt"
|
||||
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
|
||||
msgstr "Verze Orca Slicer je příliš stará a je nutné ji aktualizovat na nejnovější verzi, aby ji bylo možné používat."
|
||||
|
||||
msgid "Cloud sync conflict:"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Cloud sync conflict for preset \"%s\":"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
|
||||
"This preset has a newer version in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
|
||||
"A preset with this name already exists in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
|
||||
"A preset with the same name was previously deleted from the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
|
||||
"There was an unexpected or unidentified preset conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
@@ -1896,6 +1909,12 @@ msgid ""
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Resolve cloud sync conflict"
|
||||
msgstr ""
|
||||
|
||||
@@ -1976,8 +1995,9 @@ msgstr "Počet uživatelských předvoleb uložených v cloudu překročil povol
|
||||
msgid "Sync user presets"
|
||||
msgstr "Synchronizovat uživatelské předvolby"
|
||||
|
||||
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
msgstr "Obsah předvolby je příliš velký pro synchronizaci do cloudu (přesahuje 1 MB). Zmenšete velikost předvolby odstraněním vlastních nastavení nebo ji používejte pouze lokálně."
|
||||
#, c-format, boost-format
|
||||
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s updated from %s to %s"
|
||||
@@ -2197,6 +2217,9 @@ msgstr ""
|
||||
msgid "OrcaSliced Combo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Badge"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Tolerance Test"
|
||||
msgstr ""
|
||||
|
||||
@@ -3636,7 +3659,7 @@ msgstr "Kalibrace byla dokončena. Najděte na vyhřívané podložce nejrovnom
|
||||
msgid "Save"
|
||||
msgstr "Uložit"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgctxt "Navigation"
|
||||
msgid "Back"
|
||||
msgstr "Zpět"
|
||||
|
||||
@@ -5017,6 +5040,7 @@ msgstr "Výměny nástrojů"
|
||||
msgid "Color change"
|
||||
msgstr "Změna barvy"
|
||||
|
||||
msgctxt "Noun"
|
||||
msgid "Print"
|
||||
msgstr "Tisk"
|
||||
|
||||
@@ -5180,11 +5204,15 @@ msgstr "Vyhněte se kalibrační oblasti extruze"
|
||||
msgid "Align to Y axis"
|
||||
msgstr "Zarovnat na osu Y"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Back"
|
||||
msgstr "Zpět"
|
||||
|
||||
msgctxt "Camera View"
|
||||
msgid "Left"
|
||||
msgstr "Levý"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Right"
|
||||
msgstr "Pravý"
|
||||
|
||||
@@ -5263,6 +5291,9 @@ msgstr "Převisy"
|
||||
msgid "Outline"
|
||||
msgstr "Obrys"
|
||||
|
||||
msgid "Wireframe"
|
||||
msgstr ""
|
||||
|
||||
msgid "Realistic View"
|
||||
msgstr ""
|
||||
|
||||
@@ -5306,7 +5337,7 @@ msgstr "Objem:"
|
||||
msgid "Size:"
|
||||
msgstr "Velikost:"
|
||||
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
|
||||
msgstr "Byly nalezeny konflikty drah G-kódu ve vrstvě %d, Z = %.2lf mm. Oddělte prosím konfliktní objekty více od sebe (%s <-> %s)."
|
||||
|
||||
@@ -5509,6 +5540,10 @@ msgstr "Tisková deska"
|
||||
msgid "Export G-code file"
|
||||
msgstr "Exportovat G-code soubor"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Print"
|
||||
msgstr "Tisk"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "Exportovat nařezaný soubor desky"
|
||||
|
||||
@@ -5682,15 +5717,6 @@ msgstr "Exportovat aktuální konfiguraci do souborů"
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quit"
|
||||
msgstr "Ukončit"
|
||||
|
||||
@@ -5807,6 +5833,15 @@ msgstr "Zobrazit"
|
||||
msgid "Preset Bundle"
|
||||
msgstr "Balík předvoleb"
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr ""
|
||||
|
||||
msgid "Syncing presets from cloud…"
|
||||
msgstr ""
|
||||
|
||||
@@ -8054,6 +8089,35 @@ msgstr "Zobrazit možnosti při importu souboru STEP"
|
||||
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
|
||||
msgstr "Pokud je povoleno, během importu souboru STEP se zobrazí dialog nastavení parametrů."
|
||||
|
||||
msgid "STEP importing: linear deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Linear deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.003 mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: angle deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Angle deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.5."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: Split into multiple objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: disabled."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quality level for Draco export"
|
||||
msgstr "Úroveň kvality pro export Draco"
|
||||
|
||||
@@ -8069,6 +8133,12 @@ msgstr ""
|
||||
"0 = bezztrátová komprese (geometrie je zachována v plné přesnosti). Platné ztrátové hodnoty jsou v rozsahu 8 až 30.\n"
|
||||
"Nižší hodnoty vytvářejí menší soubory, ale ztrácí více geometrických detailů; vyšší hodnoty zachovávají více detailů za cenu větších souborů."
|
||||
|
||||
msgid "Store full source file paths in projects"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
|
||||
msgstr ""
|
||||
|
||||
msgid "Preset"
|
||||
msgstr "Předvolba"
|
||||
|
||||
@@ -10281,11 +10351,7 @@ msgstr ""
|
||||
msgid "Successfully synchronized nozzle and AMS number information."
|
||||
msgstr ""
|
||||
|
||||
msgid "Continue to sync filaments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "Sync_Nozzle_AMS"
|
||||
msgid "Cancel"
|
||||
msgid "Do you want to continue to sync filaments?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Successfully synchronized filament color from printer."
|
||||
@@ -11612,7 +11678,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -11626,7 +11692,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -12356,6 +12422,42 @@ msgstr "Hustota horního povrchu"
|
||||
msgid "Density of top surface layer. A value of 100% creates a fully solid, smooth top layer. Reducing this value results in a textured top surface, according to the chosen top surface pattern. A value of 0% will result in only the walls on the top layer being created. Intended for aesthetic or functional purposes, not to fix issues such as over-extrusion."
|
||||
msgstr "Hustota horní povrchové vrstvy. Hodnota 100 % vytvoří zcela plnou, hladkou horní vrstvu. Snížením této hodnoty vznikne texturovaný horní povrch podle zvoleného vzoru horního povrchu. Hodnota 0 % znamená, že na horní vrstvě budou vytvořeny pouze stěny. Určeno pro estetické nebo funkční účely, nikoli k řešení problémů jako je nadměrná extruze."
|
||||
|
||||
msgid "Top surface expansion"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Expands the top surfaces by this distance to connect distinct top surfaces and fill gaps.\n"
|
||||
"Useful for cases where the top surface is interrupted by a raised feature, such as text on a plane.Expanding it removes the holes beneath these features and creates a continuous path with a better finish for printing on top.The expansion is applied to the original top surface, before any other processing such as bridging or overhang detection."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion wall margin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Using “Top surface expansion” may cause a surface that did not previously touch the model's outer walls to now do so.\n"
|
||||
"This can cause contraction marks (such as the hull line) on the outer walls.\n"
|
||||
"By adding a small margin, this contraction will not occur directly on the walls, thereby preventing a visible mark."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Direction in which the top surface expansion grows.\n"
|
||||
" - Inward grows into the holes and gaps left by features rising from the middle of a top surface.\n"
|
||||
" - Outward grows the outer edge of the surface, connecting surfaces separated by features that can divide a surface, such as a lattice pattern.\n"
|
||||
" - Inward and Outward does both."
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward and Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom surface pattern"
|
||||
msgstr "Vzor spodního povrchu"
|
||||
|
||||
@@ -12398,6 +12500,18 @@ msgstr "Práh malých obvodů"
|
||||
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
|
||||
msgstr "Tímto se nastavuje práh délky malého obvodu. Výchozí práh je 0 mm."
|
||||
|
||||
msgid "Small support perimeters"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
|
||||
msgstr ""
|
||||
|
||||
msgid "Small support perimeters threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "Walls printing order"
|
||||
msgstr "Pořadí tisku stěn"
|
||||
|
||||
@@ -12586,25 +12700,26 @@ msgstr ""
|
||||
"2. Poznamenejte si optimální hodnotu PA pro každou objemovou rychlost průtoku a zrychlení. Hodnotu průtoku zjistíte výběrem „Flow“ v rozbalovací nabídce barevného schématu a posunutím vodorovného posuvníku nad čárami PA vzoru. Číslo by mělo být viditelné dole na stránce. Ideální hodnota PA by měla s rostoucím objemovým průtokem klesat. Pokud tomu tak není, ověřte, že extruder funguje správně. Čím pomaleji a s menším zrychlením tisknete, tím větší je rozsah přijatelných hodnot PA. Pokud není vidět žádný rozdíl, použijte hodnotu PA z rychlejšího testu.\n"
|
||||
"3. Zadejte trojice hodnot PA, průtoku a zrychlení do textového pole zde a uložte profil filamentu."
|
||||
|
||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
msgstr "Povolit adaptivní pressure advance pro převisy (beta)"
|
||||
|
||||
msgid ""
|
||||
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
|
||||
msgid "Enable adaptive pressure advance within features (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pressure advance for bridges"
|
||||
msgstr "Pressure advance pro mosty"
|
||||
msgid ""
|
||||
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
|
||||
"\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
|
||||
"\n"
|
||||
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
|
||||
msgstr ""
|
||||
|
||||
msgid "Static pressure advance for bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
|
||||
"equivalent walls (using adaptive settings if enabled).\n"
|
||||
"\n"
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
msgstr ""
|
||||
"Hodnota Pressure advance pro mosty. Nastavte na 0 pro vypnutí.\n"
|
||||
"\n"
|
||||
"Nižší hodnota PA při tisku mostů pomáhá omezit výskyt mírné podextruze ihned po mostech. To je způsobeno poklesem tlaku v trysce při tisku do vzduchu a nižší PA tomu pomáhá předcházet."
|
||||
|
||||
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
|
||||
msgstr "Výchozí šířka čáry, pokud jsou ostatní šířky čáry nastaveny na 0. Pokud je zadáno v %, bude vypočteno vůči průměru trysky."
|
||||
@@ -12987,6 +13102,22 @@ msgstr "Směr plného vyplnění"
|
||||
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
|
||||
msgstr "Úhel pro vzor plného výplně, který určuje počáteční nebo hlavní směr čáry."
|
||||
|
||||
msgid "Top layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the top solid infill and ironing lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the bottom solid infill lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sparse infill density"
|
||||
msgstr "Hustota řídké výplně"
|
||||
|
||||
@@ -12994,12 +13125,12 @@ msgstr "Hustota řídké výplně"
|
||||
msgid "Density of internal sparse infill, 100% turns all sparse infill into solid infill and internal solid infill pattern will be used."
|
||||
msgstr "Hustota vnitřní řídké výplně, 100 % přemění veškerou řídkou výplň na plnou a použije se vzor vnitřní plné výplně."
|
||||
|
||||
msgid "Align infill direction to model"
|
||||
msgstr "Zarovnat směr výplně podle modelu"
|
||||
msgid "Align directions to model"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Aligns infill, bridge, ironing and surface fill directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, directions rotate with the model to maintain optimal strength characteristics."
|
||||
"Aligns infill, bridge, ironing, and top/bottom surface directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, these directions rotate together with the model so the printed features keep their intended orientation relative to the part, preserving optimal strength and surface characteristics regardless of how the model is placed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Insert solid layers"
|
||||
@@ -14773,6 +14904,10 @@ msgstr "Zarovnáno"
|
||||
msgid "Aligned back"
|
||||
msgstr "Zarovnat zpět"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Back"
|
||||
msgstr "Zpět"
|
||||
|
||||
msgid "Random"
|
||||
msgstr "Náhodně"
|
||||
|
||||
@@ -15133,6 +15268,18 @@ msgstr "Připravit všechny tiskové extrudery"
|
||||
msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print."
|
||||
msgstr "Pokud je povoleno, všechny tiskové extrudery budou na začátku tisku připraveny na předním okraji tiskové podložky."
|
||||
|
||||
msgid "Toolchange ordering"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Determines the order of tool changes on each layer.\n"
|
||||
"- Default: Starts with the last used extruder to minimize tool changes.\n"
|
||||
"- Cyclic: Uses a fixed tool sequence each layer. This sacrifices speed for better surface quality, as the extra toolchanges allow layers more time to cool."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cyclic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice gap closing radius"
|
||||
msgstr "Poloměr uzavření mezery řezu"
|
||||
|
||||
@@ -15572,6 +15719,45 @@ msgstr "Tloušťka horního pláště"
|
||||
msgid "The number of top solid layers is increased when slicing if the thickness calculated by top shell layers is thinner than this value. This can avoid having too thin a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers."
|
||||
msgstr "Počet horních pevných vrstev bude při slicování zvýšen, pokud tloušťka vypočtená podle horních vrstev bude menší než tato hodnota. Tím lze předejít příliš tenké skořepině při malé výšce vrstvy. 0 znamená, že je nastavení vypnuté a tloušťka horní skořepiny je určena pouze počtem horních vrstev."
|
||||
|
||||
msgid "Anisotropic surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Anisotropic patterns on the top and bottom surfaces.\n"
|
||||
"Co-directional printing mode will be applied. For certain patterns, omni-directional filling provides color dispersion when using multi-colored or silk plastics.\n"
|
||||
"This option disable the gap fill.\n"
|
||||
"This option can increase a printing time."
|
||||
msgstr ""
|
||||
|
||||
msgid "Separated infills"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Centers the internal infill of each part on itself, as if it were sliced on its own, instead of on the whole assembly. Parts that touch or overlap are treated as one body and share a center; separate parts (or distinct 3D objects) each get their own.\n"
|
||||
"Useful when an assembly groups several objects that should each keep a consistent, self-centered infill.\n"
|
||||
"Affects line and grid patterns and rotation-template infills.\n"
|
||||
"Patterns locked to global coordinates (Gyroid, Honeycomb, TPMS, ...) are unaffected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Center surface pattern on"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Chooses where the centering point of centered top/bottom surface patterns (Archimedean Chords, Octagram Spiral) is placed.\n"
|
||||
" - Each Surface: centers the pattern on every individual surface region, so each island is symmetric on its own.\n"
|
||||
" - Each Model: centers the pattern on each connected body. Parts that touch or overlap share one center; parts detached from the rest each get their own.\n"
|
||||
" - Each Assembly: uses a single shared center for the whole object or assembly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Surface"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Assembly"
|
||||
msgstr ""
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "This is the speed at which traveling is done."
|
||||
msgstr "Rychlost přejezdu bez extruze."
|
||||
@@ -15819,6 +16005,14 @@ msgstr "Zkroucení polyotvoru"
|
||||
msgid "Rotate the polyhole every layer."
|
||||
msgstr "Otočit polyotvor každou vrstvu."
|
||||
|
||||
msgid "Maximum Polyhole edge count"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Maximum number of polyhole edges\n"
|
||||
"This setting limits the amount of edges a polyhole can have"
|
||||
msgstr ""
|
||||
|
||||
msgid "G-code thumbnails"
|
||||
msgstr "Náhledy G-code"
|
||||
|
||||
@@ -19180,6 +19374,12 @@ msgstr ""
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Save these settings as default"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
|
||||
msgstr ""
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
@@ -19585,6 +19785,48 @@ msgstr ""
|
||||
"Zamezte kroucení\n"
|
||||
"Víte, že při tisku materiálů náchylných ke kroucení, jako je ABS, může vhodné zvýšení teploty vyhřívané desky snížit pravděpodobnost kroucení?"
|
||||
|
||||
#~ msgid "Align infill direction to model"
|
||||
#~ msgstr "Zarovnat směr výplně podle modelu"
|
||||
|
||||
#~ msgid "Print"
|
||||
#~ msgstr "Tisk"
|
||||
|
||||
#~ msgid "in"
|
||||
#~ msgstr "v"
|
||||
|
||||
#~ msgid "Object coordinates"
|
||||
#~ msgstr "Souřadnice objektu"
|
||||
|
||||
#~ msgid "World coordinates"
|
||||
#~ msgstr "Světové souřadnice"
|
||||
|
||||
#~ msgid "Translate(Relative)"
|
||||
#~ msgstr "Přesunout (relativně)"
|
||||
|
||||
#~ msgid "Rotate (absolute)"
|
||||
#~ msgstr "Otočit (absolutně)"
|
||||
|
||||
#~ msgid "Part coordinates"
|
||||
#~ msgstr "Souřadnice části"
|
||||
|
||||
#~ msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
#~ msgstr "Obsah předvolby je příliš velký pro synchronizaci do cloudu (přesahuje 1 MB). Zmenšete velikost předvolby odstraněním vlastních nastavení nebo ji používejte pouze lokálně."
|
||||
|
||||
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
#~ msgstr "Povolit adaptivní pressure advance pro převisy (beta)"
|
||||
|
||||
#~ msgid "Pressure advance for bridges"
|
||||
#~ msgstr "Pressure advance pro mosty"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
#~ "\n"
|
||||
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
#~ msgstr ""
|
||||
#~ "Hodnota Pressure advance pro mosty. Nastavte na 0 pro vypnutí.\n"
|
||||
#~ "\n"
|
||||
#~ "Nižší hodnota PA při tisku mostů pomáhá omezit výskyt mírné podextruze ihned po mostech. To je způsobeno poklesem tlaku v trysce při tisku do vzduchu a nižší PA tomu pomáhá předcházet."
|
||||
|
||||
#~ msgid "Filament Sync Options"
|
||||
#~ msgstr "Možnosti synchronizace filamentů"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-07-03 14:43+0200\n"
|
||||
"POT-Creation-Date: 2026-07-12 12:27-0300\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Heiko Liebscher <hliebschergmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
@@ -162,6 +162,12 @@ msgstr "Ausfüllen"
|
||||
msgid "Gap Fill"
|
||||
msgstr "Lücken füllen"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "Vertikal"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "Horizontal"
|
||||
|
||||
#, boost-format
|
||||
msgid "Allows painting only on facets selected by: \"%1%\""
|
||||
msgstr "Erlaubt das malen nur auf Seiten, welche ausgewählt wurden durch: \"%1%\""
|
||||
@@ -257,12 +263,6 @@ msgstr "Dreieck"
|
||||
msgid "Height Range"
|
||||
msgstr "Höhenbereich"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "Vertikal"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "Horizontal"
|
||||
|
||||
msgid "Remove painted color"
|
||||
msgstr "Gemalte Farbe entfernen"
|
||||
|
||||
@@ -327,6 +327,7 @@ msgstr "Gizmo-Drehen"
|
||||
msgid "Optimize orientation"
|
||||
msgstr "Optimiere Ausrichtung"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Scale"
|
||||
msgstr "Skalieren"
|
||||
|
||||
@@ -336,8 +337,9 @@ msgstr "Gizmo-Skalieren"
|
||||
msgid "Error: Please close all toolbar menus first"
|
||||
msgstr "Fehler: Bitte schließen sie zuerst alle Werkzeugleistenmenüs"
|
||||
|
||||
msgctxt "inches"
|
||||
msgid "in"
|
||||
msgstr "in"
|
||||
msgstr ""
|
||||
|
||||
msgid "mm"
|
||||
msgstr "mm"
|
||||
@@ -370,6 +372,9 @@ msgstr "Skalierungsverhältnisse"
|
||||
msgid "Object operations"
|
||||
msgstr "Objekt-Operationen"
|
||||
|
||||
msgid "Scale"
|
||||
msgstr "Skalieren"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Volume operations"
|
||||
msgstr "Volumen Operationen"
|
||||
@@ -397,26 +402,33 @@ msgstr "Position zurücksetzen"
|
||||
msgid "Reset rotation"
|
||||
msgstr "Rotation zurücksetzen"
|
||||
|
||||
msgid "Object coordinates"
|
||||
msgstr "Objektkoordinaten"
|
||||
msgid "World"
|
||||
msgstr ""
|
||||
|
||||
msgid "World coordinates"
|
||||
msgstr "Weltkoordinaten"
|
||||
msgid "Object"
|
||||
msgstr "Objekt"
|
||||
|
||||
msgid "Translate(Relative)"
|
||||
msgstr "Verschieben (relativ)"
|
||||
msgid "Part"
|
||||
msgstr "Teil"
|
||||
|
||||
msgid "Relative"
|
||||
msgstr ""
|
||||
|
||||
msgid "Coordinate system used for transform actions."
|
||||
msgstr ""
|
||||
|
||||
msgid "Absolute"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset current rotation to the value when open the rotation tool."
|
||||
msgstr "Setze die aktuelle Rotation auf den Wert zurück, als das Rotationswerkzeug geöffnet wurde."
|
||||
|
||||
msgid "Rotate (absolute)"
|
||||
msgstr "Rotation (absolut)"
|
||||
|
||||
msgid "Reset current rotation to real zeros."
|
||||
msgstr "Setze die aktuelle Rotation auf die realen Nullen zurück."
|
||||
|
||||
msgid "Part coordinates"
|
||||
msgstr "Teile Koordinaten"
|
||||
msgctxt "Noun"
|
||||
msgid "Scale"
|
||||
msgstr "Skalieren"
|
||||
|
||||
#. TRN - Input label. Be short as possible
|
||||
msgid "Size"
|
||||
@@ -521,12 +533,6 @@ msgstr "Spalt"
|
||||
msgid "Spacing"
|
||||
msgstr "Abstand"
|
||||
|
||||
msgid "Part"
|
||||
msgstr "Teil"
|
||||
|
||||
msgid "Object"
|
||||
msgstr "Objekt"
|
||||
|
||||
msgid ""
|
||||
"Click to flip the cut plane\n"
|
||||
"Drag to move the cut plane"
|
||||
@@ -1875,33 +1881,32 @@ msgstr "Projekt öffnen"
|
||||
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
|
||||
msgstr "Die Version von Orca Slicer ist veraltet und muss auf die neueste Version aktualisiert werden, bevor sie normal verwendet werden kann"
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgid "Cloud sync conflict:"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Cloud sync conflict for preset \"%s\":"
|
||||
msgstr ""
|
||||
"Cloud-Synchronisationskonflikt: Dieses Profil hat eine neuere Version in OrcaCloud.\n"
|
||||
"Pull lädt die Cloud-Kopie herunter. Force Push überschreibt sie mit Ihrem lokalen Profil."
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
|
||||
"This preset has a newer version in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
"Cloud-Synchronisationskonflikt: Ein Profil mit diesem Namen existiert bereits in OrcaCloud.\n"
|
||||
"Pull lädt die Cloud-Kopie herunter. Force Push überschreibt sie mit Ihrem lokalen Profil."
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
|
||||
"A preset with this name already exists in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"A preset with the same name was previously deleted from the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
"Cloud-Synchronisationskonflikt: Ein Profil mit demselben Namen wurde zuvor aus der Cloud gelöscht.\n"
|
||||
"Delete löscht Ihr lokales Profil. Force Push überschreibt es mit Ihrem lokalen Profil."
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
|
||||
"There was an unexpected or unidentified preset conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
"Cloud-Synchronisationskonflikt: Es gab einen unerwarteten oder nicht identifizierten Profilkonflikt.\n"
|
||||
"Pull lädt die Cloud-Kopie herunter. Force Push überschreibt sie mit Ihrem lokalen Profil."
|
||||
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy with your local preset changes.\n"
|
||||
@@ -1910,6 +1915,12 @@ msgstr ""
|
||||
"Force Push überschreibt die Cloud-Kopie mit Ihren lokalen Profiländerungen.\n"
|
||||
"Möchten Sie fortfahren?"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Resolve cloud sync conflict"
|
||||
msgstr "Cloud-Synchronisationskonflikt lösen"
|
||||
|
||||
@@ -1989,7 +2000,8 @@ msgstr "Die Anzahl der im Cloud-Cache gespeicherten Benutzerprofile hat das Limi
|
||||
msgid "Sync user presets"
|
||||
msgstr "Benutzerprofile synchronisieren"
|
||||
|
||||
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
#, c-format, boost-format
|
||||
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
@@ -2210,6 +2222,9 @@ msgstr "Orca Würfel"
|
||||
msgid "OrcaSliced Combo"
|
||||
msgstr "OrcaSliced Kombination"
|
||||
|
||||
msgid "Orca Badge"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Tolerance Test"
|
||||
msgstr "Orca Toleranz Test"
|
||||
|
||||
@@ -3647,7 +3662,7 @@ msgstr "Kalibrierung abgeschlossen. Bitte suchen Sie die gleichmäßigste Extrus
|
||||
msgid "Save"
|
||||
msgstr "Speichern"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgctxt "Navigation"
|
||||
msgid "Back"
|
||||
msgstr "Zurück"
|
||||
|
||||
@@ -5029,6 +5044,7 @@ msgstr "Werkzeugwechsel"
|
||||
msgid "Color change"
|
||||
msgstr "Farbwechsel"
|
||||
|
||||
msgctxt "Noun"
|
||||
msgid "Print"
|
||||
msgstr "aktuelle Platte drucken"
|
||||
|
||||
@@ -5192,11 +5208,15 @@ msgstr "Vermeiden Sie den Bereich der Extrusionskalibrierung"
|
||||
msgid "Align to Y axis"
|
||||
msgstr "An Y-Achse ausrichten"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Back"
|
||||
msgstr "Zurück"
|
||||
|
||||
msgctxt "Camera View"
|
||||
msgid "Left"
|
||||
msgstr "links"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Right"
|
||||
msgstr "rechts"
|
||||
|
||||
@@ -5275,6 +5295,9 @@ msgstr "Überhänge"
|
||||
msgid "Outline"
|
||||
msgstr "Umriss"
|
||||
|
||||
msgid "Wireframe"
|
||||
msgstr ""
|
||||
|
||||
msgid "Realistic View"
|
||||
msgstr "Realistische Ansicht"
|
||||
|
||||
@@ -5318,7 +5341,7 @@ msgstr "Volumen:"
|
||||
msgid "Size:"
|
||||
msgstr "Größe:"
|
||||
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
|
||||
msgstr "Konflikte von G-Code-Pfaden wurden bei Layer %d, Z = %.2lf mm gefunden.Bitte trennen Sie die konfliktbehafteten Objekte weiter voneinander (%s <-> %s)."
|
||||
|
||||
@@ -5519,6 +5542,10 @@ msgstr "Aktuelle Platte drucken"
|
||||
msgid "Export G-code file"
|
||||
msgstr "G-Code als Datei exportieren"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Print"
|
||||
msgstr "aktuelle Platte drucken"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "Exportiere aktuelle Platte als STL Datei"
|
||||
|
||||
@@ -5692,15 +5719,6 @@ msgstr "Aktuelle Konfiguration in Dateien exportieren"
|
||||
msgid "Export"
|
||||
msgstr "Exportieren"
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr "Presets synchronisieren"
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr "Die neuesten Presets von OrcaCloud abrufen und anwenden"
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr "Sie müssen angemeldet sein, um Presets aus der Cloud zu synchronisieren."
|
||||
|
||||
msgid "Quit"
|
||||
msgstr "Beenden"
|
||||
|
||||
@@ -5817,6 +5835,15 @@ msgstr "Ansicht"
|
||||
msgid "Preset Bundle"
|
||||
msgstr "Vorlagen-Bundle"
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr "Presets synchronisieren"
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr "Die neuesten Presets von OrcaCloud abrufen und anwenden"
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr "Sie müssen angemeldet sein, um Presets aus der Cloud zu synchronisieren."
|
||||
|
||||
msgid "Syncing presets from cloud…"
|
||||
msgstr "Synchronisiere Presets aus der Cloud…"
|
||||
|
||||
@@ -8069,6 +8096,35 @@ msgstr "Optionen beim Importieren von STEP-Dateien anzeigen"
|
||||
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
|
||||
msgstr "Wenn aktiviert, wird während des Imports von STEP-Dateien ein Dialogfeld "
|
||||
|
||||
msgid "STEP importing: linear deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Linear deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.003 mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: angle deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Angle deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.5."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: Split into multiple objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: disabled."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quality level for Draco export"
|
||||
msgstr "Qualitätsstufe für den Draco-Export"
|
||||
|
||||
@@ -8084,6 +8140,12 @@ msgstr ""
|
||||
"0 = verlustfreie Kompression (Geometrie wird mit voller Präzision beibehalten). Gültige verlustbehaftete Werte liegen zwischen 8 und 30.\n"
|
||||
"Niedrigere Werte erzeugen kleinere Dateien, verlieren jedoch mehr geometrische Details; höhere Werte bewahren mehr Details auf Kosten größerer Dateien."
|
||||
|
||||
msgid "Store full source file paths in projects"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
|
||||
msgstr ""
|
||||
|
||||
msgid "Preset"
|
||||
msgstr "Profil"
|
||||
|
||||
@@ -10318,12 +10380,8 @@ msgstr "Düseninformationen erfolgreich synchronisiert."
|
||||
msgid "Successfully synchronized nozzle and AMS number information."
|
||||
msgstr "Düsen und AMS Nummer erfolgreich synchronisiert."
|
||||
|
||||
msgid "Continue to sync filaments"
|
||||
msgstr "Weiter mit dem Synchronisieren der Filamente"
|
||||
|
||||
msgctxt "Sync_Nozzle_AMS"
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
msgid "Do you want to continue to sync filaments?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Successfully synchronized filament color from printer."
|
||||
msgstr "Farbe des Filaments erfolgreich vom Drucker synchronisiert."
|
||||
@@ -11653,19 +11711,11 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
msgstr ""
|
||||
"Externe Brückenwinkelüberschreibung.\n"
|
||||
"Wenn auf Null gelassen, wird der Brückenwinkel automatisch für jede spezifische Brücke berechnet.\n"
|
||||
"Ansonsten wird der angegebene Winkel wie folgt verwendet:\n"
|
||||
" - Die absoluten Koordinaten\n"
|
||||
" - Die absoluten Koordinaten + Modellrotation: Wenn 'Füllrichtung an Modell ausrichten' aktiviert ist\n"
|
||||
" - Der optimale automatische Winkel + dieser Wert: Wenn 'Relativer Brückenwinkel' aktiviert ist\n"
|
||||
"\n"
|
||||
"Verwenden Sie 180° für einen absoluten Winkel von Null."
|
||||
|
||||
msgid "Internal bridge infill direction"
|
||||
msgstr "Interne Brücken Füllrichtung"
|
||||
@@ -11675,19 +11725,11 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
msgstr ""
|
||||
"Interne Brückenwinkelüberschreibung.\n"
|
||||
"Wenn auf Null gelassen, wird der Brückenwinkel automatisch für jede spezifische Brücke berechnet.\n"
|
||||
"Ansonsten wird der angegebene Winkel wie folgt verwendet:\n"
|
||||
" - Die absoluten Koordinaten\n"
|
||||
" - Die absoluten Koordinaten + Modellrotation: Wenn 'Füllrichtung an Modell ausrichten' aktiviert ist\n"
|
||||
" - Der optimale automatische Winkel + dieser Wert: Wenn 'Relativer Brückenwinkel' aktiviert ist\n"
|
||||
"\n"
|
||||
"Verwenden Sie 180° für einen absoluten Winkel von Null."
|
||||
|
||||
msgid "Relative bridge angle"
|
||||
msgstr "Relativer Brückenwinkel"
|
||||
@@ -12470,6 +12512,42 @@ msgstr "Dichte der oberen Oberfläche"
|
||||
msgid "Density of top surface layer. A value of 100% creates a fully solid, smooth top layer. Reducing this value results in a textured top surface, according to the chosen top surface pattern. A value of 0% will result in only the walls on the top layer being created. Intended for aesthetic or functional purposes, not to fix issues such as over-extrusion."
|
||||
msgstr "Dichte der oberen Oberflächenschicht. Ein Wert von 100 % erzeugt eine vollständig massive, glatte obere Schicht. Eine Reduzierung dieses Wertes führt zu einer strukturierten oberen Oberfläche, abhängig vom gewählten Oberflächenmuster. Ein Wert von 0 % führt dazu, dass nur die Wände der oberen Schicht erstellt werden. Diese Einstellung dient ästhetischen oder funktionalen Zwecken und nicht zur Behebung von Problemen wie Überextrusion."
|
||||
|
||||
msgid "Top surface expansion"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Expands the top surfaces by this distance to connect distinct top surfaces and fill gaps.\n"
|
||||
"Useful for cases where the top surface is interrupted by a raised feature, such as text on a plane.Expanding it removes the holes beneath these features and creates a continuous path with a better finish for printing on top.The expansion is applied to the original top surface, before any other processing such as bridging or overhang detection."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion wall margin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Using “Top surface expansion” may cause a surface that did not previously touch the model's outer walls to now do so.\n"
|
||||
"This can cause contraction marks (such as the hull line) on the outer walls.\n"
|
||||
"By adding a small margin, this contraction will not occur directly on the walls, thereby preventing a visible mark."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Direction in which the top surface expansion grows.\n"
|
||||
" - Inward grows into the holes and gaps left by features rising from the middle of a top surface.\n"
|
||||
" - Outward grows the outer edge of the surface, connecting surfaces separated by features that can divide a surface, such as a lattice pattern.\n"
|
||||
" - Inward and Outward does both."
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward and Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom surface pattern"
|
||||
msgstr "Muster der unteren Fläche"
|
||||
|
||||
@@ -12512,6 +12590,18 @@ msgstr "Schwelle für kleine Strukturen"
|
||||
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
|
||||
msgstr "Dies legt die Schwelle für eine kleine Umfangslänge fest. Der Standardwert für die Schwelle beträgt 0 mm."
|
||||
|
||||
msgid "Small support perimeters"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
|
||||
msgstr ""
|
||||
|
||||
msgid "Small support perimeters threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "Walls printing order"
|
||||
msgstr "Anordnung der Wände"
|
||||
|
||||
@@ -12700,27 +12790,26 @@ msgstr ""
|
||||
"2. Notieren Sie den optimalen PA-Wert für jede Volumenfließgeschwindigkeit und Beschleunigung. Sie können die Fließzahl auswählen, indem Sie Fluss ausdem Farbschema-Dropdown auswählen und den horizontalen Schieberegler über den PA-Musterlinien bewegen. Die Zahl sollte am unteren Rand der Seite sichtbar sein. Der ideale PA-Wert sollte abnehmen, je höher die Volumenfließgeschwin-digkeit ist. Wenn dies nicht der Fall ist, bestätigen Sie, dass Ihr Extruder korrekt funktioniert. Je langsamer und mit weniger Beschleunigung Sie drucken, desto größer ist der Bereich der akzeptablen PA-Werte. Wenn kein Unterschied sichtbar ist, verwenden Sie den PA-Wert aus dem schnelleren Test.\n"
|
||||
"3. Geben Sie die Triplets von PA-Werten, Fluss und Beschleunigungen im Textfeld hier ein und speichern Sie Ihr Filamentprofil."
|
||||
|
||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
msgstr "Adaptives PA für Überhänge aktivieren (experimentell)"
|
||||
msgid "Enable adaptive pressure advance within features (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
|
||||
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
|
||||
"\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
|
||||
"\n"
|
||||
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
|
||||
msgstr ""
|
||||
"Aktivieren Sie adaptives PA auch für Überhänge sowie bei Flussänderungen innerhalb desselben Features. Dies ist eine experimentelle Option, da sie bei ungenau eingestelltem PA-Profil zu Uniformitätsproblemen auf den äußeren Oberflächen vor und nach Überhängen führen kann.\n"
|
||||
"Nicht kompatibel mit Prusa-Druckern, da diese pausieren, um PA-Änderungen zu verarbeiten, was zu Verzögerungen und Defekten führt."
|
||||
|
||||
msgid "Pressure advance for bridges"
|
||||
msgstr "Pressure Advance für Brücken"
|
||||
msgid "Static pressure advance for bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
|
||||
"equivalent walls (using adaptive settings if enabled).\n"
|
||||
"\n"
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
msgstr ""
|
||||
"Pressure Advance-Wert für Brücken. Auf 0 setzen, um zu deaktivieren.\n"
|
||||
"\n"
|
||||
"Ein niedrigerer PA-Wert beim Drucken von Brücken hilft, das Auftreten einer leichten Unterextrusion unmittelbar nach Brücken zu reduzieren. Dies wird durch den Druckabfall in der Düse beim Drucken in der Luft verursacht, und ein niedrigerer PA hilft, dem entgegenzuwirken."
|
||||
|
||||
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
|
||||
msgstr "Standardmäßige Linienbreite, wenn andere Linienbreiten auf 0 gesetzt sind. Wenn als Prozentsatz angegeben, wird sie in Bezug auf den Düsendurchmesser berechnet."
|
||||
@@ -13101,6 +13190,22 @@ msgstr "Richtung des massiven Füllmusters"
|
||||
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
|
||||
msgstr "Winkel des massiven Füllmusters, der die Start- oder Hauptrichtung der Linie steuert."
|
||||
|
||||
msgid "Top layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the top solid infill and ironing lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the bottom solid infill lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sparse infill density"
|
||||
msgstr "Fülldichte"
|
||||
|
||||
@@ -13108,15 +13213,13 @@ msgstr "Fülldichte"
|
||||
msgid "Density of internal sparse infill, 100% turns all sparse infill into solid infill and internal solid infill pattern will be used."
|
||||
msgstr "Dichte der internen Füllung, 100% verwandelt alle interne Füllung in massive Füllung und das interne massive Füllmuster wird verwendet."
|
||||
|
||||
msgid "Align infill direction to model"
|
||||
msgstr "Füllrichtung am Modell ausrichten"
|
||||
msgid "Align directions to model"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Aligns infill, bridge, ironing and surface fill directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, directions rotate with the model to maintain optimal strength characteristics."
|
||||
"Aligns infill, bridge, ironing, and top/bottom surface directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, these directions rotate together with the model so the printed features keep their intended orientation relative to the part, preserving optimal strength and surface characteristics regardless of how the model is placed."
|
||||
msgstr ""
|
||||
"Richtet die Richtungen von Füllung, Brücke, Glättung und Oberflächenfüllung so aus, dass sie der Orientierung des Modells auf der Bauplatte folgen.\n"
|
||||
"Wenn aktiviert, drehen sich die Richtungen mit dem Modell, um optimale Festigkeitseigenschaften zu erhalten."
|
||||
|
||||
msgid "Insert solid layers"
|
||||
msgstr "Massive Schichten einfügen"
|
||||
@@ -14890,6 +14993,10 @@ msgstr "Ausgerichtet"
|
||||
msgid "Aligned back"
|
||||
msgstr "Ausgerichtet hinten"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Back"
|
||||
msgstr "Zurück"
|
||||
|
||||
msgid "Random"
|
||||
msgstr "Zufall"
|
||||
|
||||
@@ -15262,6 +15369,18 @@ msgstr "Reinige alle Druckextruder"
|
||||
msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print."
|
||||
msgstr "Wenn aktiviert, werden alle Druckextruder am vorderen Rand des Druckbetts am Anfang des Drucks gereinigt."
|
||||
|
||||
msgid "Toolchange ordering"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Determines the order of tool changes on each layer.\n"
|
||||
"- Default: Starts with the last used extruder to minimize tool changes.\n"
|
||||
"- Cyclic: Uses a fixed tool sequence each layer. This sacrifices speed for better surface quality, as the extra toolchanges allow layers more time to cool."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cyclic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice gap closing radius"
|
||||
msgstr "Slice-Lückenschlussradius"
|
||||
|
||||
@@ -15709,6 +15828,45 @@ msgstr "Dicke der oberen Schale"
|
||||
msgid "The number of top solid layers is increased when slicing if the thickness calculated by top shell layers is thinner than this value. This can avoid having too thin a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers."
|
||||
msgstr "Die Anzahl der oberen festen Schichten wird beim Slicen erhöht, wenn die obere Schalenstärke dünner als dieser Wert ist. Dies kann verhindern, dass die Schale zu dünn wird, wenn eine geringe Schichthöhe verwendet wird. 0 bedeutet, dass diese Einstellung deaktiviert ist und die Dicke der oberen Schale absolut durch die oberen Schalenschichten bestimmt wird."
|
||||
|
||||
msgid "Anisotropic surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Anisotropic patterns on the top and bottom surfaces.\n"
|
||||
"Co-directional printing mode will be applied. For certain patterns, omni-directional filling provides color dispersion when using multi-colored or silk plastics.\n"
|
||||
"This option disable the gap fill.\n"
|
||||
"This option can increase a printing time."
|
||||
msgstr ""
|
||||
|
||||
msgid "Separated infills"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Centers the internal infill of each part on itself, as if it were sliced on its own, instead of on the whole assembly. Parts that touch or overlap are treated as one body and share a center; separate parts (or distinct 3D objects) each get their own.\n"
|
||||
"Useful when an assembly groups several objects that should each keep a consistent, self-centered infill.\n"
|
||||
"Affects line and grid patterns and rotation-template infills.\n"
|
||||
"Patterns locked to global coordinates (Gyroid, Honeycomb, TPMS, ...) are unaffected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Center surface pattern on"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Chooses where the centering point of centered top/bottom surface patterns (Archimedean Chords, Octagram Spiral) is placed.\n"
|
||||
" - Each Surface: centers the pattern on every individual surface region, so each island is symmetric on its own.\n"
|
||||
" - Each Model: centers the pattern on each connected body. Parts that touch or overlap share one center; parts detached from the rest each get their own.\n"
|
||||
" - Each Assembly: uses a single shared center for the whole object or assembly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Surface"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Assembly"
|
||||
msgstr ""
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "This is the speed at which traveling is done."
|
||||
msgstr "Eilgeschwindigkeit, wenn nicht extrudiert wird."
|
||||
@@ -15956,6 +16114,14 @@ msgstr "Polyhole verdrehen"
|
||||
msgid "Rotate the polyhole every layer."
|
||||
msgstr "Polyhole in jeder Schicht drehen."
|
||||
|
||||
msgid "Maximum Polyhole edge count"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Maximum number of polyhole edges\n"
|
||||
"This setting limits the amount of edges a polyhole can have"
|
||||
msgstr ""
|
||||
|
||||
msgid "G-code thumbnails"
|
||||
msgstr "G-Code Vorschaubilder"
|
||||
|
||||
@@ -19326,6 +19492,12 @@ msgstr "Anzahl der dreieckigen Facetten"
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr "Berechnung läuft, bitte warten..."
|
||||
|
||||
msgid "Save these settings as default"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
|
||||
msgstr ""
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr "Preset-Bündel"
|
||||
|
||||
@@ -19736,6 +19908,133 @@ msgstr ""
|
||||
"Verwerfungen vermeiden\n"
|
||||
"Wussten Sie, dass beim Drucken von Materialien, die zu Verwerfungen neigen, wie z.B. ABS, durch eine entsprechende Erhöhung der Heizbetttemperatur die Wahrscheinlichkeit von Verwerfungen verringert werden kann?"
|
||||
|
||||
#~ msgid "Continue to sync filaments"
|
||||
#~ msgstr "Weiter mit dem Synchronisieren der Filamente"
|
||||
|
||||
#~ msgctxt "Sync_Nozzle_AMS"
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Abbrechen"
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
#~ msgid ""
|
||||
#~ "External Bridging angle override.\n"
|
||||
#~ "If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
#~ "Otherwise the provided angle will be used according to:\n"
|
||||
#~ " - The absolute coordinates\n"
|
||||
#~ " - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
#~ " - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
#~ "\n"
|
||||
#~ "Use 180° for zero absolute angle."
|
||||
#~ msgstr ""
|
||||
#~ "Externe Brückenwinkelüberschreibung.\n"
|
||||
#~ "Wenn auf Null gelassen, wird der Brückenwinkel automatisch für jede spezifische Brücke berechnet.\n"
|
||||
#~ "Ansonsten wird der angegebene Winkel wie folgt verwendet:\n"
|
||||
#~ " - Die absoluten Koordinaten\n"
|
||||
#~ " - Die absoluten Koordinaten + Modellrotation: Wenn 'Füllrichtung an Modell ausrichten' aktiviert ist\n"
|
||||
#~ " - Der optimale automatische Winkel + dieser Wert: Wenn 'Relativer Brückenwinkel' aktiviert ist\n"
|
||||
#~ "\n"
|
||||
#~ "Verwenden Sie 180° für einen absoluten Winkel von Null."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Internal Bridging angle override.\n"
|
||||
#~ "If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
#~ "Otherwise the provided angle will be used according to:\n"
|
||||
#~ " - The absolute coordinates\n"
|
||||
#~ " - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
#~ " - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
#~ "\n"
|
||||
#~ "Use 180° for zero absolute angle."
|
||||
#~ msgstr ""
|
||||
#~ "Interne Brückenwinkelüberschreibung.\n"
|
||||
#~ "Wenn auf Null gelassen, wird der Brückenwinkel automatisch für jede spezifische Brücke berechnet.\n"
|
||||
#~ "Ansonsten wird der angegebene Winkel wie folgt verwendet:\n"
|
||||
#~ " - Die absoluten Koordinaten\n"
|
||||
#~ " - Die absoluten Koordinaten + Modellrotation: Wenn 'Füllrichtung an Modell ausrichten' aktiviert ist\n"
|
||||
#~ " - Der optimale automatische Winkel + dieser Wert: Wenn 'Relativer Brückenwinkel' aktiviert ist\n"
|
||||
#~ "\n"
|
||||
#~ "Verwenden Sie 180° für einen absoluten Winkel von Null."
|
||||
|
||||
#~ msgid "Align infill direction to model"
|
||||
#~ msgstr "Füllrichtung am Modell ausrichten"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Aligns infill, bridge, ironing and surface fill directions to follow the model's orientation on the build plate.\n"
|
||||
#~ "When enabled, directions rotate with the model to maintain optimal strength characteristics."
|
||||
#~ msgstr ""
|
||||
#~ "Richtet die Richtungen von Füllung, Brücke, Glättung und Oberflächenfüllung so aus, dass sie der Orientierung des Modells auf der Bauplatte folgen.\n"
|
||||
#~ "Wenn aktiviert, drehen sich die Richtungen mit dem Modell, um optimale Festigkeitseigenschaften zu erhalten."
|
||||
|
||||
#~ msgid "Print"
|
||||
#~ msgstr "aktuelle Platte drucken"
|
||||
|
||||
#~ msgid "in"
|
||||
#~ msgstr "in"
|
||||
|
||||
#~ msgid "Object coordinates"
|
||||
#~ msgstr "Objektkoordinaten"
|
||||
|
||||
#~ msgid "World coordinates"
|
||||
#~ msgstr "Weltkoordinaten"
|
||||
|
||||
#~ msgid "Translate(Relative)"
|
||||
#~ msgstr "Verschieben (relativ)"
|
||||
|
||||
#~ msgid "Rotate (absolute)"
|
||||
#~ msgstr "Rotation (absolut)"
|
||||
|
||||
#~ msgid "Part coordinates"
|
||||
#~ msgstr "Teile Koordinaten"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
|
||||
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
#~ msgstr ""
|
||||
#~ "Cloud-Synchronisationskonflikt: Dieses Profil hat eine neuere Version in OrcaCloud.\n"
|
||||
#~ "Pull lädt die Cloud-Kopie herunter. Force Push überschreibt sie mit Ihrem lokalen Profil."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
|
||||
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
#~ msgstr ""
|
||||
#~ "Cloud-Synchronisationskonflikt: Ein Profil mit diesem Namen existiert bereits in OrcaCloud.\n"
|
||||
#~ "Pull lädt die Cloud-Kopie herunter. Force Push überschreibt sie mit Ihrem lokalen Profil."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
|
||||
#~ "Delete will delete your local preset. Force push overwrites it with your local preset."
|
||||
#~ msgstr ""
|
||||
#~ "Cloud-Synchronisationskonflikt: Ein Profil mit demselben Namen wurde zuvor aus der Cloud gelöscht.\n"
|
||||
#~ "Delete löscht Ihr lokales Profil. Force Push überschreibt es mit Ihrem lokalen Profil."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
|
||||
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
#~ msgstr ""
|
||||
#~ "Cloud-Synchronisationskonflikt: Es gab einen unerwarteten oder nicht identifizierten Profilkonflikt.\n"
|
||||
#~ "Pull lädt die Cloud-Kopie herunter. Force Push überschreibt sie mit Ihrem lokalen Profil."
|
||||
|
||||
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
#~ msgstr "Adaptives PA für Überhänge aktivieren (experimentell)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
|
||||
#~ "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
|
||||
#~ msgstr ""
|
||||
#~ "Aktivieren Sie adaptives PA auch für Überhänge sowie bei Flussänderungen innerhalb desselben Features. Dies ist eine experimentelle Option, da sie bei ungenau eingestelltem PA-Profil zu Uniformitätsproblemen auf den äußeren Oberflächen vor und nach Überhängen führen kann.\n"
|
||||
#~ "Nicht kompatibel mit Prusa-Druckern, da diese pausieren, um PA-Änderungen zu verarbeiten, was zu Verzögerungen und Defekten führt."
|
||||
|
||||
#~ msgid "Pressure advance for bridges"
|
||||
#~ msgstr "Pressure Advance für Brücken"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
#~ "\n"
|
||||
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
#~ msgstr ""
|
||||
#~ "Pressure Advance-Wert für Brücken. Auf 0 setzen, um zu deaktivieren.\n"
|
||||
#~ "\n"
|
||||
#~ "Ein niedrigerer PA-Wert beim Drucken von Brücken hilft, das Auftreten einer leichten Unterextrusion unmittelbar nach Brücken zu reduzieren. Dies wird durch den Druckabfall in der Düse beim Drucken in der Luft verursacht, und ein niedrigerer PA hilft, dem entgegenzuwirken."
|
||||
|
||||
#~ msgid "Filament Sync Options"
|
||||
#~ msgstr "Filament-Synchronisierungsoptionen"
|
||||
|
||||
@@ -21576,10 +21875,6 @@ msgstr ""
|
||||
#~ msgid "Unselect"
|
||||
#~ msgstr "Abwählen"
|
||||
|
||||
#~ msgctxt "Verb"
|
||||
#~ msgid "Scale"
|
||||
#~ msgstr "Skalieren"
|
||||
|
||||
#~ msgid "Lift Z Enforcement"
|
||||
#~ msgstr "Z-Höhe einhalten"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-07-03 14:43+0200\n"
|
||||
"POT-Creation-Date: 2026-07-12 12:27-0300\n"
|
||||
"PO-Revision-Date: 2026-06-17 15:44-0300\n"
|
||||
"Last-Translator: Alexandre Folle de Menezes\n"
|
||||
"Language-Team: \n"
|
||||
@@ -159,6 +159,12 @@ msgstr ""
|
||||
msgid "Gap Fill"
|
||||
msgstr ""
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr ""
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Allows painting only on facets selected by: \"%1%\""
|
||||
msgstr ""
|
||||
@@ -251,12 +257,6 @@ msgstr ""
|
||||
msgid "Height Range"
|
||||
msgstr ""
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr ""
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr ""
|
||||
|
||||
msgid "Remove painted color"
|
||||
msgstr ""
|
||||
|
||||
@@ -321,6 +321,7 @@ msgstr ""
|
||||
msgid "Optimize orientation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Scale"
|
||||
msgstr ""
|
||||
|
||||
@@ -330,6 +331,7 @@ msgstr ""
|
||||
msgid "Error: Please close all toolbar menus first"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "inches"
|
||||
msgid "in"
|
||||
msgstr ""
|
||||
|
||||
@@ -363,6 +365,9 @@ msgstr ""
|
||||
msgid "Object operations"
|
||||
msgstr ""
|
||||
|
||||
msgid "Scale"
|
||||
msgstr ""
|
||||
|
||||
msgid "Volume operations"
|
||||
msgstr ""
|
||||
|
||||
@@ -384,25 +389,32 @@ msgstr ""
|
||||
msgid "Reset rotation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Object coordinates"
|
||||
msgid "World"
|
||||
msgstr ""
|
||||
|
||||
msgid "World coordinates"
|
||||
msgid "Object"
|
||||
msgstr ""
|
||||
|
||||
msgid "Translate(Relative)"
|
||||
msgid "Part"
|
||||
msgstr ""
|
||||
|
||||
msgid "Relative"
|
||||
msgstr ""
|
||||
|
||||
msgid "Coordinate system used for transform actions."
|
||||
msgstr ""
|
||||
|
||||
msgid "Absolute"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset current rotation to the value when open the rotation tool."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rotate (absolute)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset current rotation to real zeros."
|
||||
msgstr ""
|
||||
|
||||
msgid "Part coordinates"
|
||||
msgctxt "Noun"
|
||||
msgid "Scale"
|
||||
msgstr ""
|
||||
|
||||
#. TRN - Input label. Be short as possible
|
||||
@@ -508,12 +520,6 @@ msgstr ""
|
||||
msgid "Spacing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part"
|
||||
msgstr ""
|
||||
|
||||
msgid "Object"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Click to flip the cut plane\n"
|
||||
"Drag to move the cut plane"
|
||||
@@ -1816,23 +1822,30 @@ msgstr ""
|
||||
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cloud sync conflict:"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Cloud sync conflict for preset \"%s\":"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
|
||||
"This preset has a newer version in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
|
||||
"A preset with this name already exists in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
|
||||
"A preset with the same name was previously deleted from the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
|
||||
"There was an unexpected or unidentified preset conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
@@ -1841,6 +1854,12 @@ msgid ""
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Resolve cloud sync conflict"
|
||||
msgstr ""
|
||||
|
||||
@@ -1908,7 +1927,8 @@ msgstr ""
|
||||
msgid "Sync user presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
#, c-format, boost-format
|
||||
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
@@ -2118,6 +2138,9 @@ msgstr ""
|
||||
msgid "OrcaSliced Combo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Badge"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Tolerance Test"
|
||||
msgstr ""
|
||||
|
||||
@@ -3480,6 +3503,7 @@ msgstr ""
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "Navigation"
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
@@ -4762,6 +4786,7 @@ msgstr ""
|
||||
msgid "Color change"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "Noun"
|
||||
msgid "Print"
|
||||
msgstr ""
|
||||
|
||||
@@ -4917,11 +4942,15 @@ msgstr ""
|
||||
msgid "Align to Y axis"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "Camera View"
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
@@ -5000,6 +5029,9 @@ msgstr ""
|
||||
msgid "Outline"
|
||||
msgstr ""
|
||||
|
||||
msgid "Wireframe"
|
||||
msgstr ""
|
||||
|
||||
msgid "Realistic View"
|
||||
msgstr ""
|
||||
|
||||
@@ -5042,7 +5074,7 @@ msgstr ""
|
||||
msgid "Size:"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
|
||||
msgstr ""
|
||||
|
||||
@@ -5235,6 +5267,10 @@ msgstr ""
|
||||
msgid "Export G-code file"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Print"
|
||||
msgstr ""
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr ""
|
||||
|
||||
@@ -5408,15 +5444,6 @@ msgstr ""
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
@@ -5531,6 +5558,15 @@ msgstr ""
|
||||
msgid "Preset Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr ""
|
||||
|
||||
msgid "Syncing presets from cloud…"
|
||||
msgstr ""
|
||||
|
||||
@@ -7661,6 +7697,35 @@ msgstr ""
|
||||
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: linear deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Linear deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.003 mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: angle deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Angle deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.5."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: Split into multiple objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: disabled."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quality level for Draco export"
|
||||
msgstr ""
|
||||
|
||||
@@ -7673,6 +7738,12 @@ msgid ""
|
||||
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
|
||||
msgstr ""
|
||||
|
||||
msgid "Store full source file paths in projects"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
|
||||
msgstr ""
|
||||
|
||||
msgid "Preset"
|
||||
msgstr ""
|
||||
|
||||
@@ -9776,11 +9847,7 @@ msgstr ""
|
||||
msgid "Successfully synchronized nozzle and AMS number information."
|
||||
msgstr ""
|
||||
|
||||
msgid "Continue to sync filaments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "Sync_Nozzle_AMS"
|
||||
msgid "Cancel"
|
||||
msgid "Do you want to continue to sync filaments?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Successfully synchronized filament color from printer."
|
||||
@@ -11016,7 +11083,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -11030,7 +11097,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -11654,6 +11721,42 @@ msgstr ""
|
||||
msgid "Density of top surface layer. A value of 100% creates a fully solid, smooth top layer. Reducing this value results in a textured top surface, according to the chosen top surface pattern. A value of 0% will result in only the walls on the top layer being created. Intended for aesthetic or functional purposes, not to fix issues such as over-extrusion."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top surface expansion"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Expands the top surfaces by this distance to connect distinct top surfaces and fill gaps.\n"
|
||||
"Useful for cases where the top surface is interrupted by a raised feature, such as text on a plane.Expanding it removes the holes beneath these features and creates a continuous path with a better finish for printing on top.The expansion is applied to the original top surface, before any other processing such as bridging or overhang detection."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion wall margin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Using “Top surface expansion” may cause a surface that did not previously touch the model's outer walls to now do so.\n"
|
||||
"This can cause contraction marks (such as the hull line) on the outer walls.\n"
|
||||
"By adding a small margin, this contraction will not occur directly on the walls, thereby preventing a visible mark."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Direction in which the top surface expansion grows.\n"
|
||||
" - Inward grows into the holes and gaps left by features rising from the middle of a top surface.\n"
|
||||
" - Outward grows the outer edge of the surface, connecting surfaces separated by features that can divide a surface, such as a lattice pattern.\n"
|
||||
" - Inward and Outward does both."
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward and Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom surface pattern"
|
||||
msgstr ""
|
||||
|
||||
@@ -11692,6 +11795,18 @@ msgstr ""
|
||||
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "Small support perimeters"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
|
||||
msgstr ""
|
||||
|
||||
msgid "Small support perimeters threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "Walls printing order"
|
||||
msgstr ""
|
||||
|
||||
@@ -11844,21 +11959,25 @@ msgid ""
|
||||
"3. Enter the triplets of PA values, Flow and Accelerations in the text box here and save your filament profile."
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
msgid "Enable adaptive pressure advance within features (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
|
||||
msgstr ""
|
||||
|
||||
msgid "Pressure advance for bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
|
||||
"\n"
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
|
||||
"\n"
|
||||
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
|
||||
msgstr ""
|
||||
|
||||
msgid "Static pressure advance for bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
|
||||
"equivalent walls (using adaptive settings if enabled).\n"
|
||||
"\n"
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
msgstr ""
|
||||
|
||||
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
|
||||
@@ -12215,6 +12334,22 @@ msgstr ""
|
||||
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the top solid infill and ironing lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the bottom solid infill lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sparse infill density"
|
||||
msgstr ""
|
||||
|
||||
@@ -12222,12 +12357,12 @@ msgstr ""
|
||||
msgid "Density of internal sparse infill, 100% turns all sparse infill into solid infill and internal solid infill pattern will be used."
|
||||
msgstr ""
|
||||
|
||||
msgid "Align infill direction to model"
|
||||
msgid "Align directions to model"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Aligns infill, bridge, ironing and surface fill directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, directions rotate with the model to maintain optimal strength characteristics."
|
||||
"Aligns infill, bridge, ironing, and top/bottom surface directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, these directions rotate together with the model so the printed features keep their intended orientation relative to the part, preserving optimal strength and surface characteristics regardless of how the model is placed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Insert solid layers"
|
||||
@@ -13831,6 +13966,9 @@ msgstr ""
|
||||
msgid "Aligned back"
|
||||
msgstr ""
|
||||
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
msgid "Random"
|
||||
msgstr ""
|
||||
|
||||
@@ -14165,6 +14303,18 @@ msgstr ""
|
||||
msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print."
|
||||
msgstr ""
|
||||
|
||||
msgid "Toolchange ordering"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Determines the order of tool changes on each layer.\n"
|
||||
"- Default: Starts with the last used extruder to minimize tool changes.\n"
|
||||
"- Cyclic: Uses a fixed tool sequence each layer. This sacrifices speed for better surface quality, as the extra toolchanges allow layers more time to cool."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cyclic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice gap closing radius"
|
||||
msgstr ""
|
||||
|
||||
@@ -14568,6 +14718,45 @@ msgstr ""
|
||||
msgid "The number of top solid layers is increased when slicing if the thickness calculated by top shell layers is thinner than this value. This can avoid having too thin a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers."
|
||||
msgstr ""
|
||||
|
||||
msgid "Anisotropic surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Anisotropic patterns on the top and bottom surfaces.\n"
|
||||
"Co-directional printing mode will be applied. For certain patterns, omni-directional filling provides color dispersion when using multi-colored or silk plastics.\n"
|
||||
"This option disable the gap fill.\n"
|
||||
"This option can increase a printing time."
|
||||
msgstr ""
|
||||
|
||||
msgid "Separated infills"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Centers the internal infill of each part on itself, as if it were sliced on its own, instead of on the whole assembly. Parts that touch or overlap are treated as one body and share a center; separate parts (or distinct 3D objects) each get their own.\n"
|
||||
"Useful when an assembly groups several objects that should each keep a consistent, self-centered infill.\n"
|
||||
"Affects line and grid patterns and rotation-template infills.\n"
|
||||
"Patterns locked to global coordinates (Gyroid, Honeycomb, TPMS, ...) are unaffected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Center surface pattern on"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Chooses where the centering point of centered top/bottom surface patterns (Archimedean Chords, Octagram Spiral) is placed.\n"
|
||||
" - Each Surface: centers the pattern on every individual surface region, so each island is symmetric on its own.\n"
|
||||
" - Each Model: centers the pattern on each connected body. Parts that touch or overlap share one center; parts detached from the rest each get their own.\n"
|
||||
" - Each Assembly: uses a single shared center for the whole object or assembly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Surface"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Assembly"
|
||||
msgstr ""
|
||||
|
||||
msgid "This is the speed at which traveling is done."
|
||||
msgstr ""
|
||||
|
||||
@@ -14781,6 +14970,14 @@ msgstr ""
|
||||
msgid "Rotate the polyhole every layer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Maximum Polyhole edge count"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Maximum number of polyhole edges\n"
|
||||
"This setting limits the amount of edges a polyhole can have"
|
||||
msgstr ""
|
||||
|
||||
msgid "G-code thumbnails"
|
||||
msgstr ""
|
||||
|
||||
@@ -17969,6 +18166,12 @@ msgstr ""
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Save these settings as default"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
|
||||
msgstr ""
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
|
||||
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-07-03 14:43+0200\n"
|
||||
"POT-Creation-Date: 2026-07-12 12:27-0300\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Guislain Cyril, Thomas Lété\n"
|
||||
@@ -162,6 +162,12 @@ msgstr "Remplir"
|
||||
msgid "Gap Fill"
|
||||
msgstr "Remplissage des espaces"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "Vertical"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "Horizontal"
|
||||
|
||||
#, boost-format
|
||||
msgid "Allows painting only on facets selected by: \"%1%\""
|
||||
msgstr "Permet de peindre uniquement sur les facettes sélectionnées par : \"%1%\""
|
||||
@@ -254,12 +260,6 @@ msgstr "Triangle"
|
||||
msgid "Height Range"
|
||||
msgstr "Plage de hauteur"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "Vertical"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "Horizontal"
|
||||
|
||||
msgid "Remove painted color"
|
||||
msgstr "Supprimer la couleur peinte"
|
||||
|
||||
@@ -324,6 +324,7 @@ msgstr "Gizmo-Pivoter"
|
||||
msgid "Optimize orientation"
|
||||
msgstr "Optimiser l'orientation"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Scale"
|
||||
msgstr "Redimensionner"
|
||||
|
||||
@@ -333,8 +334,9 @@ msgstr "Gizmo-Redimensionner"
|
||||
msgid "Error: Please close all toolbar menus first"
|
||||
msgstr "Erreur : Veuillez d'abord fermer tous les menus de la barre d'outils"
|
||||
|
||||
msgctxt "inches"
|
||||
msgid "in"
|
||||
msgstr "dans"
|
||||
msgstr ""
|
||||
|
||||
msgid "mm"
|
||||
msgstr "mm"
|
||||
@@ -366,6 +368,9 @@ msgstr "Rapports d'échelle"
|
||||
msgid "Object operations"
|
||||
msgstr "Opérations sur les objets"
|
||||
|
||||
msgid "Scale"
|
||||
msgstr "Redimensionner"
|
||||
|
||||
msgid "Volume operations"
|
||||
msgstr "Opérations sur les volumes"
|
||||
|
||||
@@ -387,26 +392,33 @@ msgstr "Réinitialiser la position"
|
||||
msgid "Reset rotation"
|
||||
msgstr "Réinitialiser la rotation"
|
||||
|
||||
msgid "Object coordinates"
|
||||
msgstr "Coordonnées de l’objet"
|
||||
msgid "World"
|
||||
msgstr ""
|
||||
|
||||
msgid "World coordinates"
|
||||
msgstr "Coordonnées"
|
||||
msgid "Object"
|
||||
msgstr "Objet"
|
||||
|
||||
msgid "Translate(Relative)"
|
||||
msgstr "Translation (relative)"
|
||||
msgid "Part"
|
||||
msgstr "Pièce"
|
||||
|
||||
msgid "Relative"
|
||||
msgstr ""
|
||||
|
||||
msgid "Coordinate system used for transform actions."
|
||||
msgstr ""
|
||||
|
||||
msgid "Absolute"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset current rotation to the value when open the rotation tool."
|
||||
msgstr "Réinitialiser la rotation actuelle à la valeur lors de l'ouverture de l'outil de rotation."
|
||||
|
||||
msgid "Rotate (absolute)"
|
||||
msgstr "Rotation (absolue)"
|
||||
|
||||
msgid "Reset current rotation to real zeros."
|
||||
msgstr "Réinitialiser la rotation actuelle à zéro."
|
||||
|
||||
msgid "Part coordinates"
|
||||
msgstr "Coordonnées de la pièce"
|
||||
msgctxt "Noun"
|
||||
msgid "Scale"
|
||||
msgstr "Redimensionner"
|
||||
|
||||
#. TRN - Input label. Be short as possible
|
||||
msgid "Size"
|
||||
@@ -511,12 +523,6 @@ msgstr "Espacement"
|
||||
msgid "Spacing"
|
||||
msgstr "Espacement"
|
||||
|
||||
msgid "Part"
|
||||
msgstr "Pièce"
|
||||
|
||||
msgid "Object"
|
||||
msgstr "Objet"
|
||||
|
||||
msgid ""
|
||||
"Click to flip the cut plane\n"
|
||||
"Drag to move the cut plane"
|
||||
@@ -1855,33 +1861,32 @@ msgstr "Ouvrir un projet"
|
||||
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
|
||||
msgstr "La version de OrcaSlicer est trop ancienne et doit être mise à jour vers la dernière version afin qu’il puisse être utilisé normalement."
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgid "Cloud sync conflict:"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Cloud sync conflict for preset \"%s\":"
|
||||
msgstr ""
|
||||
"Conflit de synchronisation cloud : ce préréglage a une version plus récente dans OrcaCloud.\n"
|
||||
"Récupérer télécharge la copie du cloud. Forcer l’envoi l’écrase avec votre préréglage local."
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
|
||||
"This preset has a newer version in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
"Conflit de synchronisation cloud : un préréglage de ce nom existe déjà dans OrcaCloud.\n"
|
||||
"Récupérer télécharge la copie du cloud. Forcer l’envoi l’écrase avec votre préréglage local."
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
|
||||
"A preset with this name already exists in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"A preset with the same name was previously deleted from the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
"Conflit de synchronisation cloud : un préréglage du même nom a été précédemment supprimé du cloud.\n"
|
||||
"Supprimer effacera votre préréglage local. Forcer l’envoi l’écrase avec votre préréglage local."
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
|
||||
"There was an unexpected or unidentified preset conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
"Conflit de synchronisation cloud : un conflit de préréglage inattendu ou non identifié s’est produit.\n"
|
||||
"Récupérer télécharge la copie du cloud. Forcer l’envoi l’écrase avec votre préréglage local."
|
||||
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy with your local preset changes.\n"
|
||||
@@ -1890,6 +1895,12 @@ msgstr ""
|
||||
"Forcer l’envoi écrasera la copie du cloud avec vos modifications locales du préréglage.\n"
|
||||
"Voulez-vous continuer ?"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Resolve cloud sync conflict"
|
||||
msgstr "Résoudre le conflit de synchronisation cloud"
|
||||
|
||||
@@ -1969,8 +1980,9 @@ msgstr "Le nombre de préréglages utilisateur mis en cache dans le nuage a dép
|
||||
msgid "Sync user presets"
|
||||
msgstr "Synchroniser les réglages prédéfinis de l’utilisateur"
|
||||
|
||||
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
msgstr "Le contenu du préréglage est trop volumineux pour être synchronisé avec le cloud (dépasse 1 Mo). Veuillez réduire la taille du préréglage en supprimant des configurations personnalisées, ou l’utiliser uniquement en local."
|
||||
#, c-format, boost-format
|
||||
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s updated from %s to %s"
|
||||
@@ -2179,6 +2191,9 @@ msgstr "Cube Orca"
|
||||
msgid "OrcaSliced Combo"
|
||||
msgstr "OrcaSliced Combo"
|
||||
|
||||
msgid "Orca Badge"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Tolerance Test"
|
||||
msgstr "Test de tolérance Orca"
|
||||
|
||||
@@ -3562,6 +3577,7 @@ msgstr "Calibrage terminé. Veuillez trouver la ligne d'extrusion la plus unifor
|
||||
msgid "Save"
|
||||
msgstr "Enregistrer"
|
||||
|
||||
msgctxt "Navigation"
|
||||
msgid "Back"
|
||||
msgstr "Arrière"
|
||||
|
||||
@@ -4909,6 +4925,7 @@ msgstr "Changements d’outil"
|
||||
msgid "Color change"
|
||||
msgstr "Changement de couleur"
|
||||
|
||||
msgctxt "Noun"
|
||||
msgid "Print"
|
||||
msgstr "Imprimer"
|
||||
|
||||
@@ -5068,11 +5085,15 @@ msgstr "Éviter la région de calibration de l'extrusion"
|
||||
msgid "Align to Y axis"
|
||||
msgstr "Aligner sur l’axe Y"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Back"
|
||||
msgstr "Arrière"
|
||||
|
||||
msgctxt "Camera View"
|
||||
msgid "Left"
|
||||
msgstr "Gauche"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Right"
|
||||
msgstr "Droite"
|
||||
|
||||
@@ -5151,6 +5172,9 @@ msgstr "Surplombs"
|
||||
msgid "Outline"
|
||||
msgstr "Contour"
|
||||
|
||||
msgid "Wireframe"
|
||||
msgstr ""
|
||||
|
||||
msgid "Realistic View"
|
||||
msgstr "Vue réaliste"
|
||||
|
||||
@@ -5193,7 +5217,7 @@ msgstr "Volume :"
|
||||
msgid "Size:"
|
||||
msgstr "Taille :"
|
||||
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
|
||||
msgstr "Des conflits de chemins G-code ont été trouvés au niveau de la couche %d, z = %.2lfmm. Veuillez séparer davantage les objets en conflit (%s <-> %s)."
|
||||
|
||||
@@ -5392,6 +5416,10 @@ msgstr "Imprimer le plateau"
|
||||
msgid "Export G-code file"
|
||||
msgstr "Exporter le fichier G-code"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Print"
|
||||
msgstr "Imprimer"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "Exporter le fichier découpé du plateau"
|
||||
|
||||
@@ -5565,15 +5593,6 @@ msgstr "Exporter la configuration actuelle vers des fichiers"
|
||||
msgid "Export"
|
||||
msgstr "Exporter"
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr "Synchroniser les préréglages"
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr "Récupérer et appliquer les derniers préréglages depuis OrcaCloud"
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr "Vous devez être connecté pour synchroniser les préréglages depuis le cloud."
|
||||
|
||||
msgid "Quit"
|
||||
msgstr "Quitter"
|
||||
|
||||
@@ -5688,6 +5707,15 @@ msgstr "Affichage"
|
||||
msgid "Preset Bundle"
|
||||
msgstr "Paquet de préréglages"
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr "Synchroniser les préréglages"
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr "Récupérer et appliquer les derniers préréglages depuis OrcaCloud"
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr "Vous devez être connecté pour synchroniser les préréglages depuis le cloud."
|
||||
|
||||
msgid "Syncing presets from cloud…"
|
||||
msgstr "Synchronisation des préréglages depuis le cloud…"
|
||||
|
||||
@@ -7882,6 +7910,35 @@ msgstr "Afficher les options lors de l'importation d'un fichier STEP"
|
||||
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
|
||||
msgstr "Si activé, une boîte de dialogue de paramètres apparaîtra lors de l'importation d'un fichier STEP."
|
||||
|
||||
msgid "STEP importing: linear deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Linear deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.003 mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: angle deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Angle deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.5."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: Split into multiple objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: disabled."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quality level for Draco export"
|
||||
msgstr "Niveau de qualité pour l'exportation Draco"
|
||||
|
||||
@@ -7897,6 +7954,12 @@ msgstr ""
|
||||
"0 = compression sans perte (la géométrie est préservée en pleine précision). Les valeurs avec perte valides vont de 8 à 30.\n"
|
||||
"Des valeurs plus basses produisent des fichiers plus petits mais perdent plus de détails géométriques ; des valeurs plus élevées préservent plus de détails au prix de fichiers plus volumineux."
|
||||
|
||||
msgid "Store full source file paths in projects"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
|
||||
msgstr ""
|
||||
|
||||
msgid "Preset"
|
||||
msgstr "Préréglage"
|
||||
|
||||
@@ -10103,12 +10166,8 @@ msgstr "Informations de buse synchronisées avec succès."
|
||||
msgid "Successfully synchronized nozzle and AMS number information."
|
||||
msgstr "Informations de buse et de nombre d'AMS synchronisées avec succès."
|
||||
|
||||
msgid "Continue to sync filaments"
|
||||
msgstr "Continuer la synchronisation des filaments"
|
||||
|
||||
msgctxt "Sync_Nozzle_AMS"
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
msgid "Do you want to continue to sync filaments?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Successfully synchronized filament color from printer."
|
||||
msgstr "Couleur de filament synchronisée avec succès depuis l'imprimante."
|
||||
@@ -11385,19 +11444,11 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
msgstr ""
|
||||
"Remplacement de l’angle des ponts externes.\n"
|
||||
"Si laissé à zéro, l’angle des ponts est calculé automatiquement pour chaque pont.\n"
|
||||
"Sinon, l’angle fourni est utilisé selon :\n"
|
||||
" - les coordonnées absolues\n"
|
||||
" - les coordonnées absolues + la rotation du modèle : si « Aligner la direction du remplissage sur le modèle » est activé\n"
|
||||
" - l’angle automatique optimal + cette valeur : si « Angle de pont relatif » est activé\n"
|
||||
"\n"
|
||||
"Utilisez 180° pour un angle absolu nul."
|
||||
|
||||
msgid "Internal bridge infill direction"
|
||||
msgstr "Direction du remplissage du pont interne"
|
||||
@@ -11407,19 +11458,11 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
msgstr ""
|
||||
"Remplacement de l’angle des ponts internes.\n"
|
||||
"Si laissé à zéro, l’angle des ponts est calculé automatiquement pour chaque pont.\n"
|
||||
"Sinon, l’angle fourni est utilisé selon :\n"
|
||||
" - les coordonnées absolues\n"
|
||||
" - les coordonnées absolues + la rotation du modèle : si « Aligner la direction du remplissage sur le modèle » est activé\n"
|
||||
" - l’angle automatique optimal + cette valeur : si « Angle de pont relatif » est activé\n"
|
||||
"\n"
|
||||
"Utilisez 180° pour un angle absolu nul."
|
||||
|
||||
msgid "Relative bridge angle"
|
||||
msgstr "Angle de pont relatif"
|
||||
@@ -12189,6 +12232,42 @@ msgstr "Densité de la surface supérieure"
|
||||
msgid "Density of top surface layer. A value of 100% creates a fully solid, smooth top layer. Reducing this value results in a textured top surface, according to the chosen top surface pattern. A value of 0% will result in only the walls on the top layer being created. Intended for aesthetic or functional purposes, not to fix issues such as over-extrusion."
|
||||
msgstr "Densité de la couche de surface supérieure. Une valeur de 100 % crée une couche supérieure entièrement solide et lisse. Réduire cette valeur donne une surface supérieure texturée, selon le motif de surface supérieure choisi. Une valeur de 0 % ne créera que les parois sur la couche supérieure. Destiné à des fins esthétiques ou fonctionnelles, pas pour corriger des problèmes comme la surextrusion."
|
||||
|
||||
msgid "Top surface expansion"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Expands the top surfaces by this distance to connect distinct top surfaces and fill gaps.\n"
|
||||
"Useful for cases where the top surface is interrupted by a raised feature, such as text on a plane.Expanding it removes the holes beneath these features and creates a continuous path with a better finish for printing on top.The expansion is applied to the original top surface, before any other processing such as bridging or overhang detection."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion wall margin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Using “Top surface expansion” may cause a surface that did not previously touch the model's outer walls to now do so.\n"
|
||||
"This can cause contraction marks (such as the hull line) on the outer walls.\n"
|
||||
"By adding a small margin, this contraction will not occur directly on the walls, thereby preventing a visible mark."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Direction in which the top surface expansion grows.\n"
|
||||
" - Inward grows into the holes and gaps left by features rising from the middle of a top surface.\n"
|
||||
" - Outward grows the outer edge of the surface, connecting surfaces separated by features that can divide a surface, such as a lattice pattern.\n"
|
||||
" - Inward and Outward does both."
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward and Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom surface pattern"
|
||||
msgstr "Motif de surface inférieure"
|
||||
|
||||
@@ -12229,6 +12308,18 @@ msgstr "Seuil des petits périmètres"
|
||||
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
|
||||
msgstr "Cela définit le seuil pour une petite longueur de périmètre. Le seuil par défaut est de 0 mm"
|
||||
|
||||
msgid "Small support perimeters"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
|
||||
msgstr ""
|
||||
|
||||
msgid "Small support perimeters threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "Walls printing order"
|
||||
msgstr "Ordre d’impression des parois"
|
||||
|
||||
@@ -12414,27 +12505,26 @@ msgstr ""
|
||||
"2. Notez la valeur optimale de PA pour chaque vitesse de débit volumétrique et accélération. Vous pouvez trouver le numéro de débit en sélectionnant le débit dans le menu déroulant du schéma de couleurs et en déplaçant le curseur horizontal sur les lignes du schéma PA. Le chiffre doit être visible en bas de la page. La valeur idéale du PA devrait diminuer au fur et à mesure que le débit volumétrique augmente. Si ce n’est pas le cas, vérifiez que votre extrudeur fonctionne correctement. Plus vous imprimez lentement et avec peu d’accélération, plus la plage des valeurs PA acceptables est grande. Si aucune différence n’est visible, utilisez la valeur PA du test le plus rapide.\n"
|
||||
"3 Entrez les triplets de valeurs PA, de débit et d’accélérations dans la zone de texte ici et sauvegardez votre profil de filament."
|
||||
|
||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
msgstr "Activation de l’avance de pression adaptative pour les surplombs (beta)"
|
||||
msgid "Enable adaptive pressure advance within features (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
|
||||
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
|
||||
"\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
|
||||
"\n"
|
||||
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
|
||||
msgstr ""
|
||||
"Activez le PA adaptatif pour les surplombs ainsi que lorsque le débit change au sein d’une même structure. Il s’agit d’une option expérimentale : si le profil de PA n’est pas réglé avec précision, elle provoquera des problèmes d’uniformité sur les surfaces externes avant et après les surplombs.\n"
|
||||
"Incompatible avec les imprimantes Prusa, car elles marquent une pause pour traiter les changements de PA, ce qui cause des retards et des défauts."
|
||||
|
||||
msgid "Pressure advance for bridges"
|
||||
msgstr "Avance de pression pour les ponts"
|
||||
msgid "Static pressure advance for bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
|
||||
"equivalent walls (using adaptive settings if enabled).\n"
|
||||
"\n"
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
msgstr ""
|
||||
"Valeur de l’avance de pression pour les ponts. Régler à 0 pour désactiver.\n"
|
||||
"\n"
|
||||
" Une valeur PA plus faible lors de l’impression de ponts permet de réduire l’apparition d’une légère sous-extrusion immédiatement après les ponts. Ce phénomène est dû à la chute de pression dans la buse lors de l’impression dans l’air et une valeur PA plus faible permet d’y remédier."
|
||||
|
||||
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
|
||||
msgstr "Largeur de ligne par défaut si les autres largeurs de ligne sont fixées à 0. Si elle est exprimée en %, elle sera calculée sur le diamètre de la buse."
|
||||
@@ -12806,6 +12896,22 @@ msgstr "Direction du remplissage"
|
||||
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
|
||||
msgstr "Angle pour le motif de remplissage, qui contrôle le début ou la direction principale de la ligne"
|
||||
|
||||
msgid "Top layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the top solid infill and ironing lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the bottom solid infill lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sparse infill density"
|
||||
msgstr "Densité de remplissage"
|
||||
|
||||
@@ -12813,15 +12919,13 @@ msgstr "Densité de remplissage"
|
||||
msgid "Density of internal sparse infill, 100% turns all sparse infill into solid infill and internal solid infill pattern will be used."
|
||||
msgstr "Densité du remplissage interne, 100% transforme tous les remplissages en remplissages pleins et le modèle de remplissage interne sera utilisé"
|
||||
|
||||
msgid "Align infill direction to model"
|
||||
msgstr "Aligner la direction du remplissage sur le modèle"
|
||||
msgid "Align directions to model"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Aligns infill, bridge, ironing and surface fill directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, directions rotate with the model to maintain optimal strength characteristics."
|
||||
"Aligns infill, bridge, ironing, and top/bottom surface directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, these directions rotate together with the model so the printed features keep their intended orientation relative to the part, preserving optimal strength and surface characteristics regardless of how the model is placed."
|
||||
msgstr ""
|
||||
"Aligne les directions du remplissage, des ponts, du lissage et des surfaces sur l’orientation du modèle sur le plateau.\n"
|
||||
"Lorsque cette option est activée, les directions pivotent avec le modèle afin de conserver des caractéristiques de résistance optimales."
|
||||
|
||||
msgid "Insert solid layers"
|
||||
msgstr "Insérer des couches solides"
|
||||
@@ -13022,7 +13126,12 @@ msgid ""
|
||||
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
|
||||
"Only available when \"No cooling for the first\" is 0.\n"
|
||||
"Set to -1 to disable it."
|
||||
msgstr "Définit une vitesse de ventilateur exacte pour la première couche, remplaçant tous les autres réglages de refroidissement. Utile pour protéger les pièces de tête d’impression imprimées en 3D (par exemple les conduits ABS/ASA de type Voron) d’un plateau chaud. Un léger flux d’air refroidit les conduits, sans recourir au refroidissement complet qui, dans certaines conditions, peut nuire à l’adhérence de la première couche.\nÀ partir de la deuxième couche, le refroidissement normal reprend.\nSi « Ventilateur à pleine vitesse à la couche » est également défini, le ventilateur monte progressivement de cette valeur sur la première couche jusqu’à votre cible à la couche choisie.\nDisponible uniquement lorsque « Pas de refroidissement pour » est à 0.\nRéglez sur -1 pour le désactiver."
|
||||
msgstr ""
|
||||
"Définit une vitesse de ventilateur exacte pour la première couche, remplaçant tous les autres réglages de refroidissement. Utile pour protéger les pièces de tête d’impression imprimées en 3D (par exemple les conduits ABS/ASA de type Voron) d’un plateau chaud. Un léger flux d’air refroidit les conduits, sans recourir au refroidissement complet qui, dans certaines conditions, peut nuire à l’adhérence de la première couche.\n"
|
||||
"À partir de la deuxième couche, le refroidissement normal reprend.\n"
|
||||
"Si « Ventilateur à pleine vitesse à la couche » est également défini, le ventilateur monte progressivement de cette valeur sur la première couche jusqu’à votre cible à la couche choisie.\n"
|
||||
"Disponible uniquement lorsque « Pas de refroidissement pour » est à 0.\n"
|
||||
"Réglez sur -1 pour le désactiver."
|
||||
|
||||
msgid "Support interface fan speed"
|
||||
msgstr "Vitesse du ventilateur"
|
||||
@@ -14551,6 +14660,9 @@ msgstr "Alignée"
|
||||
msgid "Aligned back"
|
||||
msgstr "Aligné à l'arrière"
|
||||
|
||||
msgid "Back"
|
||||
msgstr "Arrière"
|
||||
|
||||
msgid "Random"
|
||||
msgstr "Aléatoire"
|
||||
|
||||
@@ -14908,6 +15020,18 @@ msgstr "Amorcer tous les extrudeurs d’impression"
|
||||
msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print."
|
||||
msgstr "Si cette option est activée, tous les extrudeurs d’impression seront amorcés sur le bord avant du plateau au début de l’impression."
|
||||
|
||||
msgid "Toolchange ordering"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Determines the order of tool changes on each layer.\n"
|
||||
"- Default: Starts with the last used extruder to minimize tool changes.\n"
|
||||
"- Cyclic: Uses a fixed tool sequence each layer. This sacrifices speed for better surface quality, as the extra toolchanges allow layers more time to cool."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cyclic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice gap closing radius"
|
||||
msgstr "Rayon de fermeture de l’écart des tranches"
|
||||
|
||||
@@ -15340,6 +15464,45 @@ msgstr "Épaisseur de la coque supérieure"
|
||||
msgid "The number of top solid layers is increased when slicing if the thickness calculated by top shell layers is thinner than this value. This can avoid having too thin a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers."
|
||||
msgstr "Le nombre de couches solides supérieures est augmenté lors du découpage si l'épaisseur calculée par les couches de coque supérieures est inférieure à cette valeur. Cela peut éviter d'avoir une coque trop fine lorsque la hauteur de couche est faible. 0 signifie que ce paramètre est désactivé et que l'épaisseur de la coque supérieure est simplement déterminée par le nombre de couches de coque supérieures."
|
||||
|
||||
msgid "Anisotropic surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Anisotropic patterns on the top and bottom surfaces.\n"
|
||||
"Co-directional printing mode will be applied. For certain patterns, omni-directional filling provides color dispersion when using multi-colored or silk plastics.\n"
|
||||
"This option disable the gap fill.\n"
|
||||
"This option can increase a printing time."
|
||||
msgstr ""
|
||||
|
||||
msgid "Separated infills"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Centers the internal infill of each part on itself, as if it were sliced on its own, instead of on the whole assembly. Parts that touch or overlap are treated as one body and share a center; separate parts (or distinct 3D objects) each get their own.\n"
|
||||
"Useful when an assembly groups several objects that should each keep a consistent, self-centered infill.\n"
|
||||
"Affects line and grid patterns and rotation-template infills.\n"
|
||||
"Patterns locked to global coordinates (Gyroid, Honeycomb, TPMS, ...) are unaffected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Center surface pattern on"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Chooses where the centering point of centered top/bottom surface patterns (Archimedean Chords, Octagram Spiral) is placed.\n"
|
||||
" - Each Surface: centers the pattern on every individual surface region, so each island is symmetric on its own.\n"
|
||||
" - Each Model: centers the pattern on each connected body. Parts that touch or overlap share one center; parts detached from the rest each get their own.\n"
|
||||
" - Each Assembly: uses a single shared center for the whole object or assembly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Surface"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Assembly"
|
||||
msgstr ""
|
||||
|
||||
msgid "This is the speed at which traveling is done."
|
||||
msgstr "Vitesse de déplacement plus rapide et sans extrusion"
|
||||
|
||||
@@ -15576,6 +15739,14 @@ msgstr "Torsion des trous polygones"
|
||||
msgid "Rotate the polyhole every layer."
|
||||
msgstr "Faites pivoter le trou polygone à chaque couche."
|
||||
|
||||
msgid "Maximum Polyhole edge count"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Maximum number of polyhole edges\n"
|
||||
"This setting limits the amount of edges a polyhole can have"
|
||||
msgstr ""
|
||||
|
||||
msgid "G-code thumbnails"
|
||||
msgstr "Vignette G-code"
|
||||
|
||||
@@ -18051,7 +18222,9 @@ msgstr "Choisissez où enregistrer le fichier JSON exporté"
|
||||
msgid ""
|
||||
"Export failed\n"
|
||||
"Please check write permissions or file in use by another application"
|
||||
msgstr "Échec de l’exportation\nVeuillez vérifier les autorisations d’écriture ou si le fichier est utilisé par une autre application"
|
||||
msgstr ""
|
||||
"Échec de l’exportation\n"
|
||||
"Veuillez vérifier les autorisations d’écriture ou si le fichier est utilisé par une autre application"
|
||||
|
||||
msgid "Choose where to save the exported ZIP file"
|
||||
msgstr "Choisissez où enregistrer le fichier ZIP exporté"
|
||||
@@ -18903,6 +19076,12 @@ msgstr "Nombre de facettes triangulaires"
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr "Calcul en cours, veuillez patienter…"
|
||||
|
||||
msgid "Save these settings as default"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
|
||||
msgstr ""
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr "Paquet de préréglages"
|
||||
|
||||
@@ -19304,6 +19483,136 @@ msgstr ""
|
||||
"Éviter la déformation\n"
|
||||
"Saviez-vous que lors de l’impression de matériaux susceptibles de se 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 "Continue to sync filaments"
|
||||
#~ msgstr "Continuer la synchronisation des filaments"
|
||||
|
||||
#~ msgctxt "Sync_Nozzle_AMS"
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Annuler"
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
#~ msgid ""
|
||||
#~ "External Bridging angle override.\n"
|
||||
#~ "If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
#~ "Otherwise the provided angle will be used according to:\n"
|
||||
#~ " - The absolute coordinates\n"
|
||||
#~ " - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
#~ " - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
#~ "\n"
|
||||
#~ "Use 180° for zero absolute angle."
|
||||
#~ msgstr ""
|
||||
#~ "Remplacement de l’angle des ponts externes.\n"
|
||||
#~ "Si laissé à zéro, l’angle des ponts est calculé automatiquement pour chaque pont.\n"
|
||||
#~ "Sinon, l’angle fourni est utilisé selon :\n"
|
||||
#~ " - les coordonnées absolues\n"
|
||||
#~ " - les coordonnées absolues + la rotation du modèle : si « Aligner la direction du remplissage sur le modèle » est activé\n"
|
||||
#~ " - l’angle automatique optimal + cette valeur : si « Angle de pont relatif » est activé\n"
|
||||
#~ "\n"
|
||||
#~ "Utilisez 180° pour un angle absolu nul."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Internal Bridging angle override.\n"
|
||||
#~ "If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
#~ "Otherwise the provided angle will be used according to:\n"
|
||||
#~ " - The absolute coordinates\n"
|
||||
#~ " - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
#~ " - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
#~ "\n"
|
||||
#~ "Use 180° for zero absolute angle."
|
||||
#~ msgstr ""
|
||||
#~ "Remplacement de l’angle des ponts internes.\n"
|
||||
#~ "Si laissé à zéro, l’angle des ponts est calculé automatiquement pour chaque pont.\n"
|
||||
#~ "Sinon, l’angle fourni est utilisé selon :\n"
|
||||
#~ " - les coordonnées absolues\n"
|
||||
#~ " - les coordonnées absolues + la rotation du modèle : si « Aligner la direction du remplissage sur le modèle » est activé\n"
|
||||
#~ " - l’angle automatique optimal + cette valeur : si « Angle de pont relatif » est activé\n"
|
||||
#~ "\n"
|
||||
#~ "Utilisez 180° pour un angle absolu nul."
|
||||
|
||||
#~ msgid "Align infill direction to model"
|
||||
#~ msgstr "Aligner la direction du remplissage sur le modèle"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Aligns infill, bridge, ironing and surface fill directions to follow the model's orientation on the build plate.\n"
|
||||
#~ "When enabled, directions rotate with the model to maintain optimal strength characteristics."
|
||||
#~ msgstr ""
|
||||
#~ "Aligne les directions du remplissage, des ponts, du lissage et des surfaces sur l’orientation du modèle sur le plateau.\n"
|
||||
#~ "Lorsque cette option est activée, les directions pivotent avec le modèle afin de conserver des caractéristiques de résistance optimales."
|
||||
|
||||
#~ msgid "Print"
|
||||
#~ msgstr "Imprimer"
|
||||
|
||||
#~ msgid "in"
|
||||
#~ msgstr "dans"
|
||||
|
||||
#~ msgid "Object coordinates"
|
||||
#~ msgstr "Coordonnées de l’objet"
|
||||
|
||||
#~ msgid "World coordinates"
|
||||
#~ msgstr "Coordonnées"
|
||||
|
||||
#~ msgid "Translate(Relative)"
|
||||
#~ msgstr "Translation (relative)"
|
||||
|
||||
#~ msgid "Rotate (absolute)"
|
||||
#~ msgstr "Rotation (absolue)"
|
||||
|
||||
#~ msgid "Part coordinates"
|
||||
#~ msgstr "Coordonnées de la pièce"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
|
||||
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
#~ msgstr ""
|
||||
#~ "Conflit de synchronisation cloud : ce préréglage a une version plus récente dans OrcaCloud.\n"
|
||||
#~ "Récupérer télécharge la copie du cloud. Forcer l’envoi l’écrase avec votre préréglage local."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
|
||||
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
#~ msgstr ""
|
||||
#~ "Conflit de synchronisation cloud : un préréglage de ce nom existe déjà dans OrcaCloud.\n"
|
||||
#~ "Récupérer télécharge la copie du cloud. Forcer l’envoi l’écrase avec votre préréglage local."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
|
||||
#~ "Delete will delete your local preset. Force push overwrites it with your local preset."
|
||||
#~ msgstr ""
|
||||
#~ "Conflit de synchronisation cloud : un préréglage du même nom a été précédemment supprimé du cloud.\n"
|
||||
#~ "Supprimer effacera votre préréglage local. Forcer l’envoi l’écrase avec votre préréglage local."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
|
||||
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
#~ msgstr ""
|
||||
#~ "Conflit de synchronisation cloud : un conflit de préréglage inattendu ou non identifié s’est produit.\n"
|
||||
#~ "Récupérer télécharge la copie du cloud. Forcer l’envoi l’écrase avec votre préréglage local."
|
||||
|
||||
#~ msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
#~ msgstr "Le contenu du préréglage est trop volumineux pour être synchronisé avec le cloud (dépasse 1 Mo). Veuillez réduire la taille du préréglage en supprimant des configurations personnalisées, ou l’utiliser uniquement en local."
|
||||
|
||||
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
#~ msgstr "Activation de l’avance de pression adaptative pour les surplombs (beta)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
|
||||
#~ "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
|
||||
#~ msgstr ""
|
||||
#~ "Activez le PA adaptatif pour les surplombs ainsi que lorsque le débit change au sein d’une même structure. Il s’agit d’une option expérimentale : si le profil de PA n’est pas réglé avec précision, elle provoquera des problèmes d’uniformité sur les surfaces externes avant et après les surplombs.\n"
|
||||
#~ "Incompatible avec les imprimantes Prusa, car elles marquent une pause pour traiter les changements de PA, ce qui cause des retards et des défauts."
|
||||
|
||||
#~ msgid "Pressure advance for bridges"
|
||||
#~ msgstr "Avance de pression pour les ponts"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
#~ "\n"
|
||||
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
#~ msgstr ""
|
||||
#~ "Valeur de l’avance de pression pour les ponts. Régler à 0 pour désactiver.\n"
|
||||
#~ "\n"
|
||||
#~ " Une valeur PA plus faible lors de l’impression de ponts permet de réduire l’apparition d’une légère sous-extrusion immédiatement après les ponts. Ce phénomène est dû à la chute de pression dans la buse lors de l’impression dans l’air et une valeur PA plus faible permet d’y remédier."
|
||||
|
||||
#~ msgid "Filament Sync Options"
|
||||
#~ msgstr "Options de synchronisation des filaments"
|
||||
|
||||
@@ -20943,10 +21252,6 @@ msgstr ""
|
||||
#~ msgid "Unselect"
|
||||
#~ msgstr "Désélectionner"
|
||||
|
||||
#~ msgctxt "Verb"
|
||||
#~ msgid "Scale"
|
||||
#~ msgstr "Redimensionner"
|
||||
|
||||
#~ msgid "Lift Z Enforcement"
|
||||
#~ msgstr "Exécution du décalage en Z"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-07-03 14:43+0200\n"
|
||||
"POT-Creation-Date: 2026-07-12 12:27-0300\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -159,6 +159,12 @@ msgstr "Kitöltés"
|
||||
msgid "Gap Fill"
|
||||
msgstr "Hézagok kitöltése"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "Függőleges"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "Vízszintes"
|
||||
|
||||
#, boost-format
|
||||
msgid "Allows painting only on facets selected by: \"%1%\""
|
||||
msgstr "Csak a(z) \"%1%\" által kijelölt felületeken történik festés"
|
||||
@@ -254,12 +260,6 @@ msgstr "Háromszög"
|
||||
msgid "Height Range"
|
||||
msgstr "Magasságtartomány"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "Függőleges"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "Vízszintes"
|
||||
|
||||
msgid "Remove painted color"
|
||||
msgstr "Festett szín eltávolítása"
|
||||
|
||||
@@ -324,6 +324,7 @@ msgstr "Gizmo-Forgatás"
|
||||
msgid "Optimize orientation"
|
||||
msgstr "Orientáció optimalizálása"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Scale"
|
||||
msgstr "Átméretezés"
|
||||
|
||||
@@ -333,8 +334,9 @@ msgstr "Gizmo-Átméretezés"
|
||||
msgid "Error: Please close all toolbar menus first"
|
||||
msgstr "Hiba: Kérlek, először zárd be az összes eszköztár menüt"
|
||||
|
||||
msgctxt "inches"
|
||||
msgid "in"
|
||||
msgstr "in"
|
||||
msgstr ""
|
||||
|
||||
msgid "mm"
|
||||
msgstr "mm"
|
||||
@@ -367,6 +369,9 @@ msgstr "Méretarányok"
|
||||
msgid "Object operations"
|
||||
msgstr "Objektum műveletek"
|
||||
|
||||
msgid "Scale"
|
||||
msgstr "Átméretezés"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Volume operations"
|
||||
msgstr "Térfogat műveletek"
|
||||
@@ -394,26 +399,33 @@ msgstr "Pozíció visszaállítása"
|
||||
msgid "Reset rotation"
|
||||
msgstr "Forgatás visszaállítása"
|
||||
|
||||
msgid "Object coordinates"
|
||||
msgstr "Objektum koordináták"
|
||||
msgid "World"
|
||||
msgstr ""
|
||||
|
||||
msgid "World coordinates"
|
||||
msgstr "Világkoordináták"
|
||||
msgid "Object"
|
||||
msgstr "Objektum"
|
||||
|
||||
msgid "Translate(Relative)"
|
||||
msgstr "Eltolás (relatív)"
|
||||
msgid "Part"
|
||||
msgstr "Tárgy"
|
||||
|
||||
msgid "Relative"
|
||||
msgstr ""
|
||||
|
||||
msgid "Coordinate system used for transform actions."
|
||||
msgstr ""
|
||||
|
||||
msgid "Absolute"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset current rotation to the value when open the rotation tool."
|
||||
msgstr "Az aktuális forgatás visszaállítása a forgatás eszköz megnyitásakor érvényes értékre."
|
||||
|
||||
msgid "Rotate (absolute)"
|
||||
msgstr "Forgatás (abszolút)"
|
||||
|
||||
msgid "Reset current rotation to real zeros."
|
||||
msgstr "Az aktuális forgatás visszaállítása valódi nullára."
|
||||
|
||||
msgid "Part coordinates"
|
||||
msgstr "Alkatrész koordináták"
|
||||
msgctxt "Noun"
|
||||
msgid "Scale"
|
||||
msgstr "Átméretezés"
|
||||
|
||||
#. TRN - Input label. Be short as possible
|
||||
msgid "Size"
|
||||
@@ -518,12 +530,6 @@ msgstr "Rés"
|
||||
msgid "Spacing"
|
||||
msgstr "Térköz"
|
||||
|
||||
msgid "Part"
|
||||
msgstr "Tárgy"
|
||||
|
||||
msgid "Object"
|
||||
msgstr "Objektum"
|
||||
|
||||
msgid ""
|
||||
"Click to flip the cut plane\n"
|
||||
"Drag to move the cut plane"
|
||||
@@ -1867,23 +1873,30 @@ msgstr "Projekt megnyitása"
|
||||
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
|
||||
msgstr "A Orca Slicer ezen verziója túl régi és a legfrissebb verzióra kell frissíteni, mielőtt rendesen használható lenne"
|
||||
|
||||
msgid "Cloud sync conflict:"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Cloud sync conflict for preset \"%s\":"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
|
||||
"This preset has a newer version in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
|
||||
"A preset with this name already exists in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
|
||||
"A preset with the same name was previously deleted from the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
|
||||
"There was an unexpected or unidentified preset conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
@@ -1892,6 +1905,12 @@ msgid ""
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Resolve cloud sync conflict"
|
||||
msgstr ""
|
||||
|
||||
@@ -1971,8 +1990,9 @@ msgstr "A felhőben tárolt felhasználói beállítások száma elérte a limit
|
||||
msgid "Sync user presets"
|
||||
msgstr "Felhasználói beállítások szinkronizálása"
|
||||
|
||||
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
msgstr "Az beállítás tartalom túl nagy a cloud-al való szinkronizáláshoz (több mint 1 MB). Csökkentsd a beállítás méretet az egyéni konfigurációk eltávolításával, vagy használd csak helyileg."
|
||||
#, c-format, boost-format
|
||||
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s updated from %s to %s"
|
||||
@@ -2193,6 +2213,9 @@ msgstr "Orca kocka"
|
||||
msgid "OrcaSliced Combo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Badge"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Tolerance Test"
|
||||
msgstr "Orca tolerancia teszt"
|
||||
|
||||
@@ -3630,7 +3653,7 @@ msgstr "A kalibrálás befejeződött. Kérlek, válaszd ki az alábbi képen l
|
||||
msgid "Save"
|
||||
msgstr "Mentés"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgctxt "Navigation"
|
||||
msgid "Back"
|
||||
msgstr "Hátul"
|
||||
|
||||
@@ -5011,6 +5034,7 @@ msgstr "Szerszámváltások"
|
||||
msgid "Color change"
|
||||
msgstr "Színváltás"
|
||||
|
||||
msgctxt "Noun"
|
||||
msgid "Print"
|
||||
msgstr "Nyomtatás"
|
||||
|
||||
@@ -5174,11 +5198,15 @@ msgstr "Extrudáláskalibráció környékének elkerülése"
|
||||
msgid "Align to Y axis"
|
||||
msgstr "Igazítás az Y-tengelyhez"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Back"
|
||||
msgstr "Hátul"
|
||||
|
||||
msgctxt "Camera View"
|
||||
msgid "Left"
|
||||
msgstr "Bal"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Right"
|
||||
msgstr "Jobb"
|
||||
|
||||
@@ -5257,6 +5285,9 @@ msgstr "Túlnyúlások"
|
||||
msgid "Outline"
|
||||
msgstr "Körvonal"
|
||||
|
||||
msgid "Wireframe"
|
||||
msgstr ""
|
||||
|
||||
msgid "Realistic View"
|
||||
msgstr ""
|
||||
|
||||
@@ -5300,7 +5331,7 @@ msgstr "Térfogat:"
|
||||
msgid "Size:"
|
||||
msgstr "Méret:"
|
||||
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
|
||||
msgstr "G-kód útvonalütközés található a(z) %d. rétegen, Z = %.2lfmm. Helyezd távolabb egymástól az ütköző objektumokat (%s <-> %s)."
|
||||
|
||||
@@ -5503,6 +5534,10 @@ msgstr "Nyomtatótálca"
|
||||
msgid "Export G-code file"
|
||||
msgstr "G-kód fájl exportálása"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Print"
|
||||
msgstr "Nyomtatás"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "Szeletelt tálca exportálása"
|
||||
|
||||
@@ -5676,15 +5711,6 @@ msgstr "Aktuális konfiguráció exportálása fájlokba"
|
||||
msgid "Export"
|
||||
msgstr "Exportálás"
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr "Beállítások szinkronizálása"
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr "Hívd le és alkalmazd az OrcaCloud legújabb beállításait"
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr "A beállítások felhőből történő szinkronizálásához be kell jelentkezz."
|
||||
|
||||
msgid "Quit"
|
||||
msgstr "Kilépés"
|
||||
|
||||
@@ -5801,6 +5827,15 @@ msgstr "Nézet"
|
||||
msgid "Preset Bundle"
|
||||
msgstr "Beállításcsomag"
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr "Beállítások szinkronizálása"
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr "Hívd le és alkalmazd az OrcaCloud legújabb beállításait"
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr "A beállítások felhőből történő szinkronizálásához be kell jelentkezz."
|
||||
|
||||
msgid "Syncing presets from cloud…"
|
||||
msgstr "Beállítások szinkronizálása a felhőből…"
|
||||
|
||||
@@ -8040,6 +8075,35 @@ msgstr "Beállítások megjelenítése STEP fájl importálásakor"
|
||||
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
|
||||
msgstr "Ha engedélyezve van, STEP fájl importálásakor paraméterbeállítási párbeszédablak jelenik meg."
|
||||
|
||||
msgid "STEP importing: linear deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Linear deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.003 mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: angle deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Angle deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.5."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: Split into multiple objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: disabled."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quality level for Draco export"
|
||||
msgstr "Minőségi szint Draco exporthoz"
|
||||
|
||||
@@ -8055,6 +8119,12 @@ msgstr ""
|
||||
"0 = veszteségmentes tömörítés (a geometria teljes pontossággal megmarad). Az érvényes veszteséges értékek 8 és 30 között vannak.\n"
|
||||
"Az alacsonyabb értékek kisebb fájlokat eredményeznek, de több geometriai részlet vész el; a magasabb értékek több részletet őriznek meg nagyobb fájlméret árán."
|
||||
|
||||
msgid "Store full source file paths in projects"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
|
||||
msgstr ""
|
||||
|
||||
msgid "Preset"
|
||||
msgstr "Beállítás"
|
||||
|
||||
@@ -10290,12 +10360,8 @@ msgstr "A fúvókainformációk szinkronizálása sikerült."
|
||||
msgid "Successfully synchronized nozzle and AMS number information."
|
||||
msgstr "A fúvóka- és AMS-száminformációk szinkronizálása sikerült."
|
||||
|
||||
msgid "Continue to sync filaments"
|
||||
msgstr "Filamentek szinkronizálásának folytatása"
|
||||
|
||||
msgctxt "Sync_Nozzle_AMS"
|
||||
msgid "Cancel"
|
||||
msgstr "Mégse"
|
||||
msgid "Do you want to continue to sync filaments?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Successfully synchronized filament color from printer."
|
||||
msgstr "A filament színének szinkronizálása a nyomtatóról sikerült."
|
||||
@@ -11624,7 +11690,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -11638,7 +11704,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -12373,6 +12439,42 @@ msgstr "Felső felületi sűrűség"
|
||||
msgid "Density of top surface layer. A value of 100% creates a fully solid, smooth top layer. Reducing this value results in a textured top surface, according to the chosen top surface pattern. A value of 0% will result in only the walls on the top layer being created. Intended for aesthetic or functional purposes, not to fix issues such as over-extrusion."
|
||||
msgstr "A felső felületi réteg sűrűsége. A 100%-os érték teljesen tömör, sima felső réteget hoz létre. Ennek az értéknek a csökkentése a kiválasztott felső felületi mintázatnak megfelelően texturált felső felületet eredményez. A 0%-os érték azt eredményezi, hogy a felső rétegen csak a falak jönnek létre. Esztétikai vagy funkcionális célokra szolgál, nem pedig olyan problémák javítására, mint a túlextrudálás."
|
||||
|
||||
msgid "Top surface expansion"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Expands the top surfaces by this distance to connect distinct top surfaces and fill gaps.\n"
|
||||
"Useful for cases where the top surface is interrupted by a raised feature, such as text on a plane.Expanding it removes the holes beneath these features and creates a continuous path with a better finish for printing on top.The expansion is applied to the original top surface, before any other processing such as bridging or overhang detection."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion wall margin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Using “Top surface expansion” may cause a surface that did not previously touch the model's outer walls to now do so.\n"
|
||||
"This can cause contraction marks (such as the hull line) on the outer walls.\n"
|
||||
"By adding a small margin, this contraction will not occur directly on the walls, thereby preventing a visible mark."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Direction in which the top surface expansion grows.\n"
|
||||
" - Inward grows into the holes and gaps left by features rising from the middle of a top surface.\n"
|
||||
" - Outward grows the outer edge of the surface, connecting surfaces separated by features that can divide a surface, such as a lattice pattern.\n"
|
||||
" - Inward and Outward does both."
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward and Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom surface pattern"
|
||||
msgstr "Alsó felület mintázata"
|
||||
|
||||
@@ -12415,6 +12517,18 @@ msgstr "Kis kerületek küszöbértéke"
|
||||
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
|
||||
msgstr "A kis peremek hosszának küszöbértékét határozza meg. Az alapértelmezett érték 0 mm"
|
||||
|
||||
msgid "Small support perimeters"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
|
||||
msgstr ""
|
||||
|
||||
msgid "Small support perimeters threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "Walls printing order"
|
||||
msgstr "Falak nyomtatási sorrendje"
|
||||
|
||||
@@ -12603,25 +12717,26 @@ msgstr ""
|
||||
"2. Jegyezd fel az optimális PA értéket minden volumetrikus áramlási sebességhez és gyorsuláshoz. Az áramlási számot úgy találhatod meg, hogy a színséma legördülő menüben az áramlást választod, majd a vízszintes csúszkát a PA mintavonalak fölé mozgatod. A számnak az oldal alján kell megjelenjen. Az ideális PA értéknek csökkennie kell a volumetrikus áramlás növekedésével. Ha nem így van, ellenőrizd, hogy az extrudered megfelelően működik-e. Minél lassabban és kisebb gyorsulással nyomtatsz, annál nagyobb az elfogadható PA értékek tartománya. Ha nincs látható különbség, használd a gyorsabb tesztből származó PA értéket\n"
|
||||
"3. Add meg a PA értékek, az áramlás és a gyorsulás hármasait az itt található szövegmezőben, majd mentsd el a filamentprofilt."
|
||||
|
||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
msgstr "Adaptív nyomáselőtolás engedélyezése túlnyúlásokhoz (béta)"
|
||||
|
||||
msgid ""
|
||||
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
|
||||
msgid "Enable adaptive pressure advance within features (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pressure advance for bridges"
|
||||
msgstr "Nyomáselőtolás hidakhoz"
|
||||
msgid ""
|
||||
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
|
||||
"\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
|
||||
"\n"
|
||||
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
|
||||
msgstr ""
|
||||
|
||||
msgid "Static pressure advance for bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
|
||||
"equivalent walls (using adaptive settings if enabled).\n"
|
||||
"\n"
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
msgstr ""
|
||||
"Nyomáselőtolási érték hidakhoz. A kikapcsoláshoz állítsd 0-ra.\n"
|
||||
"\n"
|
||||
"Hidak nyomtatásakor az alacsonyabb PA érték segít csökkenteni a hidak után közvetlenül jelentkező enyhe alulextrudálás megjelenését. Ezt az okozza, hogy a levegőbe nyomtatás során nyomásesés lép fel a fúvókában, amit az alacsonyabb PA részben ellensúlyoz."
|
||||
|
||||
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
|
||||
msgstr "Alapértelmezett vonalszélesség, ha a többi vonalszélesség 0-ra van állítva. Ha százalékban van megadva, a fúvókaátmérő alapján lesz kiszámítva."
|
||||
@@ -13004,6 +13119,22 @@ msgstr "Tömör kitöltés iránya"
|
||||
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
|
||||
msgstr "A tömör kitöltési minta szöge, amely a vonalak kezdő- vagy fő irányát szabályozza."
|
||||
|
||||
msgid "Top layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the top solid infill and ironing lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the bottom solid infill lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sparse infill density"
|
||||
msgstr "Kitöltés sűrűsége"
|
||||
|
||||
@@ -13011,12 +13142,12 @@ msgstr "Kitöltés sűrűsége"
|
||||
msgid "Density of internal sparse infill, 100% turns all sparse infill into solid infill and internal solid infill pattern will be used."
|
||||
msgstr "A belső ritka kitöltés sűrűsége. A 100% minden ritka kitöltést tömör kitöltéssé alakít, és a belső tömör kitöltési minta kerül használatra."
|
||||
|
||||
msgid "Align infill direction to model"
|
||||
msgstr "Kitöltési irány igazítása a modellhez"
|
||||
msgid "Align directions to model"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Aligns infill, bridge, ironing and surface fill directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, directions rotate with the model to maintain optimal strength characteristics."
|
||||
"Aligns infill, bridge, ironing, and top/bottom surface directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, these directions rotate together with the model so the printed features keep their intended orientation relative to the part, preserving optimal strength and surface characteristics regardless of how the model is placed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Insert solid layers"
|
||||
@@ -14798,6 +14929,10 @@ msgstr "Igazított"
|
||||
msgid "Aligned back"
|
||||
msgstr "Hátulra igazítva"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Back"
|
||||
msgstr "Hátul"
|
||||
|
||||
msgid "Random"
|
||||
msgstr "Véletlenszerû"
|
||||
|
||||
@@ -15162,6 +15297,18 @@ msgstr "Az összes nyomtató extruder előkészítése"
|
||||
msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print."
|
||||
msgstr "Ha engedélyezve van, akkor a nyomtatás kezdetén az összes nyomtató extruder előkészítésre kerül a tárgyasztal elülső szélénél."
|
||||
|
||||
msgid "Toolchange ordering"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Determines the order of tool changes on each layer.\n"
|
||||
"- Default: Starts with the last used extruder to minimize tool changes.\n"
|
||||
"- Cyclic: Uses a fixed tool sequence each layer. This sacrifices speed for better surface quality, as the extra toolchanges allow layers more time to cool."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cyclic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice gap closing radius"
|
||||
msgstr "Szeletelési hézag lezárási sugara"
|
||||
|
||||
@@ -15609,6 +15756,45 @@ msgstr "Felső héj vastagság"
|
||||
msgid "The number of top solid layers is increased when slicing if the thickness calculated by top shell layers is thinner than this value. This can avoid having too thin a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers."
|
||||
msgstr "A felső szilárd rétegek száma szeleteléskor megnő, ha a felső héjrétegekből számított vastagság kisebb ennél az értéknél. Ezzel elkerülhető, hogy túl vékony legyen a héj kis rétegmagasságnál. A 0 azt jelenti, hogy ez a beállítás ki van kapcsolva, és a felső héj vastagságát egyszerűen a felső héjrétegek száma határozza meg."
|
||||
|
||||
msgid "Anisotropic surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Anisotropic patterns on the top and bottom surfaces.\n"
|
||||
"Co-directional printing mode will be applied. For certain patterns, omni-directional filling provides color dispersion when using multi-colored or silk plastics.\n"
|
||||
"This option disable the gap fill.\n"
|
||||
"This option can increase a printing time."
|
||||
msgstr ""
|
||||
|
||||
msgid "Separated infills"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Centers the internal infill of each part on itself, as if it were sliced on its own, instead of on the whole assembly. Parts that touch or overlap are treated as one body and share a center; separate parts (or distinct 3D objects) each get their own.\n"
|
||||
"Useful when an assembly groups several objects that should each keep a consistent, self-centered infill.\n"
|
||||
"Affects line and grid patterns and rotation-template infills.\n"
|
||||
"Patterns locked to global coordinates (Gyroid, Honeycomb, TPMS, ...) are unaffected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Center surface pattern on"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Chooses where the centering point of centered top/bottom surface patterns (Archimedean Chords, Octagram Spiral) is placed.\n"
|
||||
" - Each Surface: centers the pattern on every individual surface region, so each island is symmetric on its own.\n"
|
||||
" - Each Model: centers the pattern on each connected body. Parts that touch or overlap share one center; parts detached from the rest each get their own.\n"
|
||||
" - Each Assembly: uses a single shared center for the whole object or assembly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Surface"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Assembly"
|
||||
msgstr ""
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "This is the speed at which traveling is done."
|
||||
msgstr "Mozgási sebesség, amikor nem történik extrudálás"
|
||||
@@ -15857,6 +16043,14 @@ msgstr "Sokszögelt lyuk elforgatása"
|
||||
msgid "Rotate the polyhole every layer."
|
||||
msgstr "A sokszögelt lyuk forgatása rétegenként."
|
||||
|
||||
msgid "Maximum Polyhole edge count"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Maximum number of polyhole edges\n"
|
||||
"This setting limits the amount of edges a polyhole can have"
|
||||
msgstr ""
|
||||
|
||||
msgid "G-code thumbnails"
|
||||
msgstr "G-kód miniatűrök"
|
||||
|
||||
@@ -19208,6 +19402,12 @@ msgstr "Háromszögfelületek száma"
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr "Számítás folyamatban, kérlek várj..."
|
||||
|
||||
msgid "Save these settings as default"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
|
||||
msgstr ""
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
@@ -19616,6 +19816,55 @@ msgstr ""
|
||||
"Kunkorodás elkerülése\n"
|
||||
"Tudtad, hogy a kunkorodásra hajlamos anyagok (például ABS) nyomtatásakor a tárgyasztal hőmérsékletének növelése csökkentheti a kunkorodás valószínűségét?"
|
||||
|
||||
#~ msgid "Continue to sync filaments"
|
||||
#~ msgstr "Filamentek szinkronizálásának folytatása"
|
||||
|
||||
#~ msgctxt "Sync_Nozzle_AMS"
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Mégse"
|
||||
|
||||
#~ msgid "Align infill direction to model"
|
||||
#~ msgstr "Kitöltési irány igazítása a modellhez"
|
||||
|
||||
#~ msgid "Print"
|
||||
#~ msgstr "Nyomtatás"
|
||||
|
||||
#~ msgid "in"
|
||||
#~ msgstr "in"
|
||||
|
||||
#~ msgid "Object coordinates"
|
||||
#~ msgstr "Objektum koordináták"
|
||||
|
||||
#~ msgid "World coordinates"
|
||||
#~ msgstr "Világkoordináták"
|
||||
|
||||
#~ msgid "Translate(Relative)"
|
||||
#~ msgstr "Eltolás (relatív)"
|
||||
|
||||
#~ msgid "Rotate (absolute)"
|
||||
#~ msgstr "Forgatás (abszolút)"
|
||||
|
||||
#~ msgid "Part coordinates"
|
||||
#~ msgstr "Alkatrész koordináták"
|
||||
|
||||
#~ msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
#~ msgstr "Az beállítás tartalom túl nagy a cloud-al való szinkronizáláshoz (több mint 1 MB). Csökkentsd a beállítás méretet az egyéni konfigurációk eltávolításával, vagy használd csak helyileg."
|
||||
|
||||
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
#~ msgstr "Adaptív nyomáselőtolás engedélyezése túlnyúlásokhoz (béta)"
|
||||
|
||||
#~ msgid "Pressure advance for bridges"
|
||||
#~ msgstr "Nyomáselőtolás hidakhoz"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
#~ "\n"
|
||||
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
#~ msgstr ""
|
||||
#~ "Nyomáselőtolási érték hidakhoz. A kikapcsoláshoz állítsd 0-ra.\n"
|
||||
#~ "\n"
|
||||
#~ "Hidak nyomtatásakor az alacsonyabb PA érték segít csökkenteni a hidak után közvetlenül jelentkező enyhe alulextrudálás megjelenését. Ezt az okozza, hogy a levegőbe nyomtatás során nyomásesés lép fel a fúvókában, amit az alacsonyabb PA részben ellensúlyoz."
|
||||
|
||||
#~ msgid "Filament Sync Options"
|
||||
#~ msgstr "Filament szinkronizálási opciók"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-07-03 14:43+0200\n"
|
||||
"POT-Creation-Date: 2026-07-12 12:27-0300\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -162,6 +162,12 @@ msgstr "Riempi"
|
||||
msgid "Gap Fill"
|
||||
msgstr "Riempi spazio vuoto"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "Verticale"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "Orizzontale"
|
||||
|
||||
#, boost-format
|
||||
msgid "Allows painting only on facets selected by: \"%1%\""
|
||||
msgstr "Consente di dipingere solo sulle facce selezionate da: \"%1%\""
|
||||
@@ -257,12 +263,6 @@ msgstr "Triangolo"
|
||||
msgid "Height Range"
|
||||
msgstr "Interv. altezza"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "Verticale"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "Orizzontale"
|
||||
|
||||
msgid "Remove painted color"
|
||||
msgstr "Rimuovi colore dipinto"
|
||||
|
||||
@@ -327,6 +327,7 @@ msgstr "Strumento di rotazione"
|
||||
msgid "Optimize orientation"
|
||||
msgstr "Ottimizza orientamento"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Scale"
|
||||
msgstr "Ridimensiona"
|
||||
|
||||
@@ -336,8 +337,9 @@ msgstr "Strumento di ridimensionamento"
|
||||
msgid "Error: Please close all toolbar menus first"
|
||||
msgstr "Errore: chiudi prima tutti i menu della barra degli strumenti"
|
||||
|
||||
msgctxt "inches"
|
||||
msgid "in"
|
||||
msgstr "in"
|
||||
msgstr ""
|
||||
|
||||
msgid "mm"
|
||||
msgstr "mm"
|
||||
@@ -370,6 +372,9 @@ msgstr "Rapporti di scala"
|
||||
msgid "Object operations"
|
||||
msgstr "Operazioni sugli oggetti"
|
||||
|
||||
msgid "Scale"
|
||||
msgstr "Ridimensiona"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Volume operations"
|
||||
msgstr "Operazioni volume"
|
||||
@@ -397,26 +402,33 @@ msgstr "Ripristina posizione"
|
||||
msgid "Reset rotation"
|
||||
msgstr "Reimposta rotazione"
|
||||
|
||||
msgid "Object coordinates"
|
||||
msgstr "Coordinate oggetto"
|
||||
msgid "World"
|
||||
msgstr ""
|
||||
|
||||
msgid "World coordinates"
|
||||
msgstr "Coordinate reali"
|
||||
msgid "Object"
|
||||
msgstr "Oggetto"
|
||||
|
||||
msgid "Translate(Relative)"
|
||||
msgstr "Trasla (relativo)"
|
||||
msgid "Part"
|
||||
msgstr "Parte"
|
||||
|
||||
msgid "Relative"
|
||||
msgstr ""
|
||||
|
||||
msgid "Coordinate system used for transform actions."
|
||||
msgstr ""
|
||||
|
||||
msgid "Absolute"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset current rotation to the value when open the rotation tool."
|
||||
msgstr "Reimposta la rotazione corrente al valore di apertura dello strumento."
|
||||
|
||||
msgid "Rotate (absolute)"
|
||||
msgstr "Ruota (assoluto)"
|
||||
|
||||
msgid "Reset current rotation to real zeros."
|
||||
msgstr "Reimposta la rotazione corrente a zero reale."
|
||||
|
||||
msgid "Part coordinates"
|
||||
msgstr "Coordinate della parte"
|
||||
msgctxt "Noun"
|
||||
msgid "Scale"
|
||||
msgstr "Ridimensiona"
|
||||
|
||||
#. TRN - Input label. Be short as possible
|
||||
msgid "Size"
|
||||
@@ -521,12 +533,6 @@ msgstr ""
|
||||
msgid "Spacing"
|
||||
msgstr "Spaziatura"
|
||||
|
||||
msgid "Part"
|
||||
msgstr "Parte"
|
||||
|
||||
msgid "Object"
|
||||
msgstr "Oggetto"
|
||||
|
||||
msgid ""
|
||||
"Click to flip the cut plane\n"
|
||||
"Drag to move the cut plane"
|
||||
@@ -1869,23 +1875,30 @@ msgstr "Apri progetto"
|
||||
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
|
||||
msgstr "La versione di OrcaSlicer è obsoleta. Devi aggiornarla all'ultima versione prima di poter utilizzare normalmente il programma."
|
||||
|
||||
msgid "Cloud sync conflict:"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Cloud sync conflict for preset \"%s\":"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
|
||||
"This preset has a newer version in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
|
||||
"A preset with this name already exists in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
|
||||
"A preset with the same name was previously deleted from the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
|
||||
"There was an unexpected or unidentified preset conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
@@ -1894,6 +1907,12 @@ msgid ""
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Resolve cloud sync conflict"
|
||||
msgstr ""
|
||||
|
||||
@@ -1973,8 +1992,9 @@ msgstr "Il numero di profili utente memorizzati nel cloud ha superato il limite
|
||||
msgid "Sync user presets"
|
||||
msgstr "Sincronizza profili utente"
|
||||
|
||||
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
msgstr "Il contenuto del profilo è troppo grande per essere sincronizzato con il cloud (supera 1 MB). Si prega di ridurre le dimensioni del profilo rimuovendo le configurazioni personalizzate oppure utilizzarlo solo in locale."
|
||||
#, c-format, boost-format
|
||||
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s updated from %s to %s"
|
||||
@@ -2195,6 +2215,9 @@ msgstr "Cubo di Orca"
|
||||
msgid "OrcaSliced Combo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Badge"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Tolerance Test"
|
||||
msgstr "Test di tolleranza di OrcaSlicer"
|
||||
|
||||
@@ -3631,7 +3654,7 @@ msgstr "Calibrazione completata. Trova la linea di estrusione più uniforme sul
|
||||
msgid "Save"
|
||||
msgstr "Salva"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgctxt "Navigation"
|
||||
msgid "Back"
|
||||
msgstr "Posteriore"
|
||||
|
||||
@@ -5012,6 +5035,7 @@ msgstr "Cambi testina"
|
||||
msgid "Color change"
|
||||
msgstr "Cambio colore"
|
||||
|
||||
msgctxt "Noun"
|
||||
msgid "Print"
|
||||
msgstr "Stampa"
|
||||
|
||||
@@ -5175,11 +5199,15 @@ msgstr "Evitare la regione di calibrazione dell'estrusione"
|
||||
msgid "Align to Y axis"
|
||||
msgstr "Allinea all'asse Y"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Back"
|
||||
msgstr "Posteriore"
|
||||
|
||||
msgctxt "Camera View"
|
||||
msgid "Left"
|
||||
msgstr "Sinistra"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Right"
|
||||
msgstr "Destra"
|
||||
|
||||
@@ -5258,6 +5286,9 @@ msgstr "Sporgenze"
|
||||
msgid "Outline"
|
||||
msgstr "Contorno"
|
||||
|
||||
msgid "Wireframe"
|
||||
msgstr ""
|
||||
|
||||
msgid "Realistic View"
|
||||
msgstr ""
|
||||
|
||||
@@ -5301,7 +5332,7 @@ msgstr ""
|
||||
msgid "Size:"
|
||||
msgstr "Dimensione:"
|
||||
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
|
||||
msgstr "Sono stati trovati conflitti di percorsi nel G-code sullo strato %d, Z = %.2lfmm. Si prega di separare gli oggetti in conflitto (%s <-> %s)."
|
||||
|
||||
@@ -5504,6 +5535,10 @@ msgstr "Piatto di stampa"
|
||||
msgid "Export G-code file"
|
||||
msgstr "Esporta file G-code"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Print"
|
||||
msgstr "Stampa"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "Esporta il file del piatto elaborato"
|
||||
|
||||
@@ -5677,15 +5712,6 @@ msgstr "Esporta la configurazione corrente in un file"
|
||||
msgid "Export"
|
||||
msgstr "Esporta"
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quit"
|
||||
msgstr "Esci"
|
||||
|
||||
@@ -5802,6 +5828,15 @@ msgstr "Vista"
|
||||
msgid "Preset Bundle"
|
||||
msgstr "Pacchetto profili"
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr ""
|
||||
|
||||
msgid "Syncing presets from cloud…"
|
||||
msgstr ""
|
||||
|
||||
@@ -8047,6 +8082,35 @@ msgstr "Mostra opzioni durante l'importazione di file STEP"
|
||||
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
|
||||
msgstr "Se abilitato, una finestra di dialogo per le impostazioni dei parametri apparirà durante l'importazione di file STEP."
|
||||
|
||||
msgid "STEP importing: linear deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Linear deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.003 mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: angle deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Angle deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.5."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: Split into multiple objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: disabled."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quality level for Draco export"
|
||||
msgstr "Livello di qualità per l'esportazione Draco"
|
||||
|
||||
@@ -8062,6 +8126,12 @@ msgstr ""
|
||||
"0 = compressione senza perdita (la geometria viene preservata a piena precisione). I valori con perdita validi vanno da 8 a 30.\n"
|
||||
"Valori più bassi producono file più piccoli ma perdono più dettagli geometrici; valori più alti preservano più dettagli a costo di file più grandi."
|
||||
|
||||
msgid "Store full source file paths in projects"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
|
||||
msgstr ""
|
||||
|
||||
msgid "Preset"
|
||||
msgstr "Profilo"
|
||||
|
||||
@@ -10272,12 +10342,8 @@ msgstr "Informazioni ugello sincronizzate con successo."
|
||||
msgid "Successfully synchronized nozzle and AMS number information."
|
||||
msgstr "Informazioni ugello e numero AMS sincronizzate con successo."
|
||||
|
||||
msgid "Continue to sync filaments"
|
||||
msgstr "Continua la sincronizzazione dei filamenti"
|
||||
|
||||
msgctxt "Sync_Nozzle_AMS"
|
||||
msgid "Cancel"
|
||||
msgstr "Annulla"
|
||||
msgid "Do you want to continue to sync filaments?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Successfully synchronized filament color from printer."
|
||||
msgstr "Colore del filamento sincronizzato con successo dalla stampante."
|
||||
@@ -11606,7 +11672,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -11620,7 +11686,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -12356,6 +12422,42 @@ msgstr "Densità superficie superiore"
|
||||
msgid "Density of top surface layer. A value of 100% creates a fully solid, smooth top layer. Reducing this value results in a textured top surface, according to the chosen top surface pattern. A value of 0% will result in only the walls on the top layer being created. Intended for aesthetic or functional purposes, not to fix issues such as over-extrusion."
|
||||
msgstr "Densità dello strato superficiale superiore. Un valore del 100% crea uno strato superiore completamente solido e liscio. La riduzione di questo valore produce una superficie superiore texturizzata, secondo il pattern di superficie superiore scelto. Un valore dello 0% risulterà nella creazione delle sole pareti sullo strato superiore. Destinato a scopi estetici o funzionali, non per risolvere problemi come la sovraestrusione."
|
||||
|
||||
msgid "Top surface expansion"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Expands the top surfaces by this distance to connect distinct top surfaces and fill gaps.\n"
|
||||
"Useful for cases where the top surface is interrupted by a raised feature, such as text on a plane.Expanding it removes the holes beneath these features and creates a continuous path with a better finish for printing on top.The expansion is applied to the original top surface, before any other processing such as bridging or overhang detection."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion wall margin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Using “Top surface expansion” may cause a surface that did not previously touch the model's outer walls to now do so.\n"
|
||||
"This can cause contraction marks (such as the hull line) on the outer walls.\n"
|
||||
"By adding a small margin, this contraction will not occur directly on the walls, thereby preventing a visible mark."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Direction in which the top surface expansion grows.\n"
|
||||
" - Inward grows into the holes and gaps left by features rising from the middle of a top surface.\n"
|
||||
" - Outward grows the outer edge of the surface, connecting surfaces separated by features that can divide a surface, such as a lattice pattern.\n"
|
||||
" - Inward and Outward does both."
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward and Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom surface pattern"
|
||||
msgstr "Motivo superficie inferiore"
|
||||
|
||||
@@ -12398,6 +12500,18 @@ msgstr "Soglia perimetri piccoli"
|
||||
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
|
||||
msgstr "Imposta la soglia per la lunghezza dei perimetri piccoli. La soglia predefinita è 0 mm."
|
||||
|
||||
msgid "Small support perimeters"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
|
||||
msgstr ""
|
||||
|
||||
msgid "Small support perimeters threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "Walls printing order"
|
||||
msgstr "Ordine stampa pareti"
|
||||
|
||||
@@ -12586,25 +12700,26 @@ msgstr ""
|
||||
"2. Prendi nota del valore AP ottimale per ogni portata volumetrica e accelerazione. Puoi trovare il numero relativo alla portata volumetrica dal menu a discesa dello schema di colori e spostando il cursore orizzontale sulle linee del modello AP. Il numero dovrebbe essere visibile nella parte inferiore della pagina. Il valore AP ideale dovrebbe decrescere all'aumentare della portata volumetrica. In caso contrario, verifica che l'estrusore funzioni correttamente. Più lentamente e con meno accelerazione stampi, più ampio è l'intervallo di valori AP accettabili. Se non è visibile alcuna differenza, usa il valore AP dal test più veloce\n"
|
||||
"3. Inserisci le triplette dei valori di anticipo di pressione, portata e accelerazione nella casella di testo qui e salva il tuo profilo di filamento."
|
||||
|
||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
msgstr "Abilita anticipo di pressione adattiva per sporgenze (beta)"
|
||||
|
||||
msgid ""
|
||||
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
|
||||
msgid "Enable adaptive pressure advance within features (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pressure advance for bridges"
|
||||
msgstr "Anticipo di pressione per ponti"
|
||||
msgid ""
|
||||
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
|
||||
"\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
|
||||
"\n"
|
||||
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
|
||||
msgstr ""
|
||||
|
||||
msgid "Static pressure advance for bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
|
||||
"equivalent walls (using adaptive settings if enabled).\n"
|
||||
"\n"
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
msgstr ""
|
||||
"Valore di anticipo di pressione per i ponti. Impostare su 0 per disabilitare.\n"
|
||||
"\n"
|
||||
"Un valore AP più basso durante la stampa di ponti aiuta a ridurre la comparsa di una leggera sottoestrusione subito dopo l'estrusione dei ponti. Ciò è causato dalla caduta di pressione nell'ugello durante la stampa in aria e un anticipo di pressione più basso aiuta a contrastarla."
|
||||
|
||||
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
|
||||
msgstr "Larghezza di linea predefinita se le altre larghezze di linea sono impostate su 0. Se espresso come una %, verrà calcolato sul diametro del ugello."
|
||||
@@ -12987,6 +13102,22 @@ msgstr "Direzione riempimento solido"
|
||||
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
|
||||
msgstr "Angolo per il motivo del riempimento solido, che controlla l'inizio o la direzione principale delle linee."
|
||||
|
||||
msgid "Top layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the top solid infill and ironing lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the bottom solid infill lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sparse infill density"
|
||||
msgstr "Densità riempimento sparso"
|
||||
|
||||
@@ -12994,12 +13125,12 @@ msgstr "Densità riempimento sparso"
|
||||
msgid "Density of internal sparse infill, 100% turns all sparse infill into solid infill and internal solid infill pattern will be used."
|
||||
msgstr "Densità del riempimento sparso interno. 100% trasforma il riempimento sparso in riempimento solido e verrà utilizzato il motivo del riempimento solido interno."
|
||||
|
||||
msgid "Align infill direction to model"
|
||||
msgstr "Allinea direzione riempimento al modello"
|
||||
msgid "Align directions to model"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Aligns infill, bridge, ironing and surface fill directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, directions rotate with the model to maintain optimal strength characteristics."
|
||||
"Aligns infill, bridge, ironing, and top/bottom surface directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, these directions rotate together with the model so the printed features keep their intended orientation relative to the part, preserving optimal strength and surface characteristics regardless of how the model is placed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Insert solid layers"
|
||||
@@ -14772,6 +14903,10 @@ msgstr "Allineato"
|
||||
msgid "Aligned back"
|
||||
msgstr "Allineato dietro"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Back"
|
||||
msgstr "Posteriore"
|
||||
|
||||
msgid "Random"
|
||||
msgstr "Casuale"
|
||||
|
||||
@@ -15132,6 +15267,18 @@ msgstr "Prepara tutti gli estrusori di stampa"
|
||||
msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print."
|
||||
msgstr "Se abilitata, tutti gli estrusori di stampa verranno preparati nel bordo frontale del piano di stampa all'inizio della stampa."
|
||||
|
||||
msgid "Toolchange ordering"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Determines the order of tool changes on each layer.\n"
|
||||
"- Default: Starts with the last used extruder to minimize tool changes.\n"
|
||||
"- Cyclic: Uses a fixed tool sequence each layer. This sacrifices speed for better surface quality, as the extra toolchanges allow layers more time to cool."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cyclic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice gap closing radius"
|
||||
msgstr "Raggio di chiusura spazi vuoti"
|
||||
|
||||
@@ -15577,6 +15724,45 @@ msgstr "Spessore guscio superiore"
|
||||
msgid "The number of top solid layers is increased when slicing if the thickness calculated by top shell layers is thinner than this value. This can avoid having too thin a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers."
|
||||
msgstr "Il numero di strati solidi superiori viene aumentato durante l'elaborazione se lo spessore calcolato dagli strati del guscio superiore è più sottile di questo valore. In questo modo si evita di avere un guscio troppo sottile quando l'altezza degli strati è piccola. Il valore 0 indica che questa impostazione è disattivata e che lo spessore del guscio superiore è determinato in modo assoluto dagli strati del guscio superiore."
|
||||
|
||||
msgid "Anisotropic surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Anisotropic patterns on the top and bottom surfaces.\n"
|
||||
"Co-directional printing mode will be applied. For certain patterns, omni-directional filling provides color dispersion when using multi-colored or silk plastics.\n"
|
||||
"This option disable the gap fill.\n"
|
||||
"This option can increase a printing time."
|
||||
msgstr ""
|
||||
|
||||
msgid "Separated infills"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Centers the internal infill of each part on itself, as if it were sliced on its own, instead of on the whole assembly. Parts that touch or overlap are treated as one body and share a center; separate parts (or distinct 3D objects) each get their own.\n"
|
||||
"Useful when an assembly groups several objects that should each keep a consistent, self-centered infill.\n"
|
||||
"Affects line and grid patterns and rotation-template infills.\n"
|
||||
"Patterns locked to global coordinates (Gyroid, Honeycomb, TPMS, ...) are unaffected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Center surface pattern on"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Chooses where the centering point of centered top/bottom surface patterns (Archimedean Chords, Octagram Spiral) is placed.\n"
|
||||
" - Each Surface: centers the pattern on every individual surface region, so each island is symmetric on its own.\n"
|
||||
" - Each Model: centers the pattern on each connected body. Parts that touch or overlap share one center; parts detached from the rest each get their own.\n"
|
||||
" - Each Assembly: uses a single shared center for the whole object or assembly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Surface"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Assembly"
|
||||
msgstr ""
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "This is the speed at which traveling is done."
|
||||
msgstr "Indica la velocità di spostamento più rapida e senza estrusione."
|
||||
@@ -15824,6 +16010,14 @@ msgstr "Torsione poliforo"
|
||||
msgid "Rotate the polyhole every layer."
|
||||
msgstr "Ruota il poliforo in ogni strato."
|
||||
|
||||
msgid "Maximum Polyhole edge count"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Maximum number of polyhole edges\n"
|
||||
"This setting limits the amount of edges a polyhole can have"
|
||||
msgstr ""
|
||||
|
||||
msgid "G-code thumbnails"
|
||||
msgstr "Miniature G-code"
|
||||
|
||||
@@ -19191,6 +19385,12 @@ msgstr "Numero di facce triangolari"
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr "Calcolo in corso, attendere..."
|
||||
|
||||
msgid "Save these settings as default"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
|
||||
msgstr ""
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
@@ -19596,6 +19796,55 @@ msgstr ""
|
||||
"Evita le deformazioni\n"
|
||||
"Sapevi che quando si stampano materiali soggetti a deformazioni come l'ABS, aumentare in modo appropriato la temperatura del piano riscaldato può ridurre la probabilità di deformazione?"
|
||||
|
||||
#~ msgid "Continue to sync filaments"
|
||||
#~ msgstr "Continua la sincronizzazione dei filamenti"
|
||||
|
||||
#~ msgctxt "Sync_Nozzle_AMS"
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Annulla"
|
||||
|
||||
#~ msgid "Align infill direction to model"
|
||||
#~ msgstr "Allinea direzione riempimento al modello"
|
||||
|
||||
#~ msgid "Print"
|
||||
#~ msgstr "Stampa"
|
||||
|
||||
#~ msgid "in"
|
||||
#~ msgstr "in"
|
||||
|
||||
#~ msgid "Object coordinates"
|
||||
#~ msgstr "Coordinate oggetto"
|
||||
|
||||
#~ msgid "World coordinates"
|
||||
#~ msgstr "Coordinate reali"
|
||||
|
||||
#~ msgid "Translate(Relative)"
|
||||
#~ msgstr "Trasla (relativo)"
|
||||
|
||||
#~ msgid "Rotate (absolute)"
|
||||
#~ msgstr "Ruota (assoluto)"
|
||||
|
||||
#~ msgid "Part coordinates"
|
||||
#~ msgstr "Coordinate della parte"
|
||||
|
||||
#~ msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
#~ msgstr "Il contenuto del profilo è troppo grande per essere sincronizzato con il cloud (supera 1 MB). Si prega di ridurre le dimensioni del profilo rimuovendo le configurazioni personalizzate oppure utilizzarlo solo in locale."
|
||||
|
||||
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
#~ msgstr "Abilita anticipo di pressione adattiva per sporgenze (beta)"
|
||||
|
||||
#~ msgid "Pressure advance for bridges"
|
||||
#~ msgstr "Anticipo di pressione per ponti"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
#~ "\n"
|
||||
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
#~ msgstr ""
|
||||
#~ "Valore di anticipo di pressione per i ponti. Impostare su 0 per disabilitare.\n"
|
||||
#~ "\n"
|
||||
#~ "Un valore AP più basso durante la stampa di ponti aiuta a ridurre la comparsa di una leggera sottoestrusione subito dopo l'estrusione dei ponti. Ciò è causato dalla caduta di pressione nell'ugello durante la stampa in aria e un anticipo di pressione più basso aiuta a contrastarla."
|
||||
|
||||
#~ msgid "Filament Sync Options"
|
||||
#~ msgstr "Opzioni sincronizzazione filamento"
|
||||
|
||||
@@ -21076,10 +21325,6 @@ msgstr ""
|
||||
#~ msgid "Unselect"
|
||||
#~ msgstr "Deseleziona"
|
||||
|
||||
#~ msgctxt "Verb"
|
||||
#~ msgid "Scale"
|
||||
#~ msgstr "Ridimensiona"
|
||||
|
||||
#~ msgid "Lift Z Enforcement"
|
||||
#~ msgstr "Applicazione dell'ascensore Z"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-07-03 14:43+0200\n"
|
||||
"POT-Creation-Date: 2026-07-12 12:27-0300\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -162,6 +162,12 @@ msgstr "塗りつぶし"
|
||||
msgid "Gap Fill"
|
||||
msgstr "隙間充填"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "垂直"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "水平"
|
||||
|
||||
#, boost-format
|
||||
msgid "Allows painting only on facets selected by: \"%1%\""
|
||||
msgstr "%1%で選択した面だけをペイントする"
|
||||
@@ -257,12 +263,6 @@ msgstr "三角形"
|
||||
msgid "Height Range"
|
||||
msgstr "高さ範囲"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "垂直"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "水平"
|
||||
|
||||
msgid "Remove painted color"
|
||||
msgstr "塗った色を消去"
|
||||
|
||||
@@ -327,6 +327,7 @@ msgstr "ギズモ-回転"
|
||||
msgid "Optimize orientation"
|
||||
msgstr "向きを最適化"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Scale"
|
||||
msgstr "スケール"
|
||||
|
||||
@@ -336,8 +337,9 @@ msgstr "ギズモ-縮尺"
|
||||
msgid "Error: Please close all toolbar menus first"
|
||||
msgstr "エラー: ツールバーを閉じてください"
|
||||
|
||||
msgctxt "inches"
|
||||
msgid "in"
|
||||
msgstr "に"
|
||||
msgstr ""
|
||||
|
||||
msgid "mm"
|
||||
msgstr "mm"
|
||||
@@ -370,6 +372,9 @@ msgstr "倍率"
|
||||
msgid "Object operations"
|
||||
msgstr "オブジェクト操作"
|
||||
|
||||
msgid "Scale"
|
||||
msgstr "スケール"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Volume operations"
|
||||
msgstr "操作"
|
||||
@@ -397,26 +402,33 @@ msgstr "位置をリセット"
|
||||
msgid "Reset rotation"
|
||||
msgstr "回転をリセット"
|
||||
|
||||
msgid "Object coordinates"
|
||||
msgstr "オブジェクト座標"
|
||||
msgid "World"
|
||||
msgstr ""
|
||||
|
||||
msgid "World coordinates"
|
||||
msgstr "空間座標"
|
||||
msgid "Object"
|
||||
msgstr "OBJ"
|
||||
|
||||
msgid "Translate(Relative)"
|
||||
msgstr "移動(相対)"
|
||||
msgid "Part"
|
||||
msgstr "パーツ"
|
||||
|
||||
msgid "Relative"
|
||||
msgstr ""
|
||||
|
||||
msgid "Coordinate system used for transform actions."
|
||||
msgstr ""
|
||||
|
||||
msgid "Absolute"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset current rotation to the value when open the rotation tool."
|
||||
msgstr "回転ツールを開いた時の値にリセットします。"
|
||||
|
||||
msgid "Rotate (absolute)"
|
||||
msgstr "回転(絶対)"
|
||||
|
||||
msgid "Reset current rotation to real zeros."
|
||||
msgstr "現在の回転を0にリセットします。"
|
||||
|
||||
msgid "Part coordinates"
|
||||
msgstr "パーツ座標"
|
||||
msgctxt "Noun"
|
||||
msgid "Scale"
|
||||
msgstr "スケール"
|
||||
|
||||
#. TRN - Input label. Be short as possible
|
||||
msgid "Size"
|
||||
@@ -521,12 +533,6 @@ msgstr "ギャップ"
|
||||
msgid "Spacing"
|
||||
msgstr "間隔"
|
||||
|
||||
msgid "Part"
|
||||
msgstr "パーツ"
|
||||
|
||||
msgid "Object"
|
||||
msgstr "OBJ"
|
||||
|
||||
msgid ""
|
||||
"Click to flip the cut plane\n"
|
||||
"Drag to move the cut plane"
|
||||
@@ -1868,23 +1874,30 @@ msgstr "プロジェクトを開く"
|
||||
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
|
||||
msgstr "現在のOrca Slicerはバージョンが古いため使用できません、アップデートしてください。"
|
||||
|
||||
msgid "Cloud sync conflict:"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Cloud sync conflict for preset \"%s\":"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
|
||||
"This preset has a newer version in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
|
||||
"A preset with this name already exists in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
|
||||
"A preset with the same name was previously deleted from the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
|
||||
"There was an unexpected or unidentified preset conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
@@ -1893,6 +1906,12 @@ msgid ""
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Resolve cloud sync conflict"
|
||||
msgstr ""
|
||||
|
||||
@@ -1967,7 +1986,8 @@ msgstr "クラウドにキャッシュされたユーザープリセット数が
|
||||
msgid "Sync user presets"
|
||||
msgstr "ユーザープリセットを同期"
|
||||
|
||||
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
#, c-format, boost-format
|
||||
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
@@ -2189,6 +2209,9 @@ msgstr ""
|
||||
msgid "OrcaSliced Combo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Badge"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Tolerance Test"
|
||||
msgstr "Orca公差テスト"
|
||||
|
||||
@@ -3614,7 +3637,7 @@ msgstr "キャリブレーションが完了しました。下の写真のよう
|
||||
msgid "Save"
|
||||
msgstr "保存"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgctxt "Navigation"
|
||||
msgid "Back"
|
||||
msgstr "背面"
|
||||
|
||||
@@ -4985,6 +5008,7 @@ msgstr "ツールチェンジ"
|
||||
msgid "Color change"
|
||||
msgstr "色変更"
|
||||
|
||||
msgctxt "Noun"
|
||||
msgid "Print"
|
||||
msgstr "造形する"
|
||||
|
||||
@@ -5148,11 +5172,15 @@ msgstr "押出しキャリブレーション領域を避ける"
|
||||
msgid "Align to Y axis"
|
||||
msgstr "Y軸に整列"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Back"
|
||||
msgstr "背面"
|
||||
|
||||
msgctxt "Camera View"
|
||||
msgid "Left"
|
||||
msgstr "左"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Right"
|
||||
msgstr "右"
|
||||
|
||||
@@ -5231,6 +5259,9 @@ msgstr "オーバーハング"
|
||||
msgid "Outline"
|
||||
msgstr "アウトライン"
|
||||
|
||||
msgid "Wireframe"
|
||||
msgstr ""
|
||||
|
||||
msgid "Realistic View"
|
||||
msgstr ""
|
||||
|
||||
@@ -5274,7 +5305,7 @@ msgstr "ボリューム"
|
||||
msgid "Size:"
|
||||
msgstr "サイズ:"
|
||||
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
|
||||
msgstr "レイヤー%d、Z = %.2lfmmでG-codeパスの衝突が検出されました。衝突するオブジェクトをもっと離してください(%s <-> %s)。"
|
||||
|
||||
@@ -5471,6 +5502,10 @@ msgstr "造形開始"
|
||||
msgid "Export G-code file"
|
||||
msgstr "G-codeをエクスポート"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Print"
|
||||
msgstr "造形する"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "エクスポート"
|
||||
|
||||
@@ -5644,15 +5679,6 @@ msgstr "現在の構成をエクスポート"
|
||||
msgid "Export"
|
||||
msgstr "エクスポート"
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quit"
|
||||
msgstr "終了"
|
||||
|
||||
@@ -5769,6 +5795,15 @@ msgstr "表示"
|
||||
msgid "Preset Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr ""
|
||||
|
||||
msgid "Syncing presets from cloud…"
|
||||
msgstr ""
|
||||
|
||||
@@ -8005,6 +8040,35 @@ msgstr "STEPファイルインポート時にオプションを表示"
|
||||
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
|
||||
msgstr "有効にすると、STEPファイルインポート時にパラメータ設定ダイアログが表示されます。"
|
||||
|
||||
msgid "STEP importing: linear deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Linear deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.003 mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: angle deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Angle deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.5."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: Split into multiple objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: disabled."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quality level for Draco export"
|
||||
msgstr "Dracoエクスポートの品質レベル"
|
||||
|
||||
@@ -8020,6 +8084,12 @@ msgstr ""
|
||||
"0 = 可逆圧縮(ジオメトリは完全な精度で保持されます)。有効な非可逆値の範囲は8〜30です。\n"
|
||||
"低い値はファイルサイズが小さくなりますがジオメトリの詳細が失われます。高い値はファイルサイズが大きくなりますがより多くの詳細が保持されます。"
|
||||
|
||||
msgid "Store full source file paths in projects"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
|
||||
msgstr ""
|
||||
|
||||
msgid "Preset"
|
||||
msgstr "プリセット"
|
||||
|
||||
@@ -10205,12 +10275,8 @@ msgstr "ノズル情報の同期に成功しました。"
|
||||
msgid "Successfully synchronized nozzle and AMS number information."
|
||||
msgstr "ノズルとAMS数の情報の同期に成功しました。"
|
||||
|
||||
msgid "Continue to sync filaments"
|
||||
msgstr "フィラメントの同期を続行"
|
||||
|
||||
msgctxt "Sync_Nozzle_AMS"
|
||||
msgid "Cancel"
|
||||
msgstr "キャンセル"
|
||||
msgid "Do you want to continue to sync filaments?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Successfully synchronized filament color from printer."
|
||||
msgstr "プリンターからフィラメントの色を正常に同期しました。"
|
||||
@@ -11503,7 +11569,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -11517,7 +11583,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -12161,6 +12227,42 @@ msgstr "上面密度"
|
||||
msgid "Density of top surface layer. A value of 100% creates a fully solid, smooth top layer. Reducing this value results in a textured top surface, according to the chosen top surface pattern. A value of 0% will result in only the walls on the top layer being created. Intended for aesthetic or functional purposes, not to fix issues such as over-extrusion."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top surface expansion"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Expands the top surfaces by this distance to connect distinct top surfaces and fill gaps.\n"
|
||||
"Useful for cases where the top surface is interrupted by a raised feature, such as text on a plane.Expanding it removes the holes beneath these features and creates a continuous path with a better finish for printing on top.The expansion is applied to the original top surface, before any other processing such as bridging or overhang detection."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion wall margin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Using “Top surface expansion” may cause a surface that did not previously touch the model's outer walls to now do so.\n"
|
||||
"This can cause contraction marks (such as the hull line) on the outer walls.\n"
|
||||
"By adding a small margin, this contraction will not occur directly on the walls, thereby preventing a visible mark."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Direction in which the top surface expansion grows.\n"
|
||||
" - Inward grows into the holes and gaps left by features rising from the middle of a top surface.\n"
|
||||
" - Outward grows the outer edge of the surface, connecting surfaces separated by features that can divide a surface, such as a lattice pattern.\n"
|
||||
" - Inward and Outward does both."
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward and Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom surface pattern"
|
||||
msgstr "底面パターン"
|
||||
|
||||
@@ -12201,6 +12303,18 @@ msgstr "小さな外周のしきい値"
|
||||
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "Small support perimeters"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
|
||||
msgstr ""
|
||||
|
||||
msgid "Small support perimeters threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "Walls printing order"
|
||||
msgstr "壁の印刷順序"
|
||||
|
||||
@@ -12356,21 +12470,25 @@ msgid ""
|
||||
"3. Enter the triplets of PA values, Flow and Accelerations in the text box here and save your filament profile."
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
msgid "Enable adaptive pressure advance within features (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
|
||||
msgstr ""
|
||||
|
||||
msgid "Pressure advance for bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
|
||||
"\n"
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
|
||||
"\n"
|
||||
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
|
||||
msgstr ""
|
||||
|
||||
msgid "Static pressure advance for bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
|
||||
"equivalent walls (using adaptive settings if enabled).\n"
|
||||
"\n"
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
msgstr ""
|
||||
|
||||
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
|
||||
@@ -12745,6 +12863,22 @@ msgstr ""
|
||||
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the top solid infill and ironing lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the bottom solid infill lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sparse infill density"
|
||||
msgstr "充填密度"
|
||||
|
||||
@@ -12752,12 +12886,12 @@ msgstr "充填密度"
|
||||
msgid "Density of internal sparse infill, 100% turns all sparse infill into solid infill and internal solid infill pattern will be used."
|
||||
msgstr ""
|
||||
|
||||
msgid "Align infill direction to model"
|
||||
msgstr "インフィル方向をモデルに合わせる"
|
||||
msgid "Align directions to model"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Aligns infill, bridge, ironing and surface fill directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, directions rotate with the model to maintain optimal strength characteristics."
|
||||
"Aligns infill, bridge, ironing, and top/bottom surface directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, these directions rotate together with the model so the printed features keep their intended orientation relative to the part, preserving optimal strength and surface characteristics regardless of how the model is placed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Insert solid layers"
|
||||
@@ -14417,6 +14551,10 @@ msgstr "整列"
|
||||
msgid "Aligned back"
|
||||
msgstr ""
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Back"
|
||||
msgstr "背面"
|
||||
|
||||
msgid "Random"
|
||||
msgstr "ランダム"
|
||||
|
||||
@@ -14759,6 +14897,18 @@ msgstr "全てのエクストルーダーでプライムを実施"
|
||||
msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print."
|
||||
msgstr "有効にすると、すべてのプリントエクストルーダーは、プリント開始時にプリントベッドの前端で準備されます。"
|
||||
|
||||
msgid "Toolchange ordering"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Determines the order of tool changes on each layer.\n"
|
||||
"- Default: Starts with the last used extruder to minimize tool changes.\n"
|
||||
"- Cyclic: Uses a fixed tool sequence each layer. This sacrifices speed for better surface quality, as the extra toolchanges allow layers more time to cool."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cyclic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice gap closing radius"
|
||||
msgstr "隙間充填半径"
|
||||
|
||||
@@ -15187,6 +15337,45 @@ msgstr "トップ面厚さ"
|
||||
msgid "The number of top solid layers is increased when slicing if the thickness calculated by top shell layers is thinner than this value. This can avoid having too thin a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers."
|
||||
msgstr "トップ面の厚さです、トップ面層数で決まった厚みがこの値より小さい場合、層数を増やします。この値が0にする場合、この設定が無効となり、設定した層数で造形します。"
|
||||
|
||||
msgid "Anisotropic surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Anisotropic patterns on the top and bottom surfaces.\n"
|
||||
"Co-directional printing mode will be applied. For certain patterns, omni-directional filling provides color dispersion when using multi-colored or silk plastics.\n"
|
||||
"This option disable the gap fill.\n"
|
||||
"This option can increase a printing time."
|
||||
msgstr ""
|
||||
|
||||
msgid "Separated infills"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Centers the internal infill of each part on itself, as if it were sliced on its own, instead of on the whole assembly. Parts that touch or overlap are treated as one body and share a center; separate parts (or distinct 3D objects) each get their own.\n"
|
||||
"Useful when an assembly groups several objects that should each keep a consistent, self-centered infill.\n"
|
||||
"Affects line and grid patterns and rotation-template infills.\n"
|
||||
"Patterns locked to global coordinates (Gyroid, Honeycomb, TPMS, ...) are unaffected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Center surface pattern on"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Chooses where the centering point of centered top/bottom surface patterns (Archimedean Chords, Octagram Spiral) is placed.\n"
|
||||
" - Each Surface: centers the pattern on every individual surface region, so each island is symmetric on its own.\n"
|
||||
" - Each Model: centers the pattern on each connected body. Parts that touch or overlap share one center; parts detached from the rest each get their own.\n"
|
||||
" - Each Assembly: uses a single shared center for the whole object or assembly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Surface"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Assembly"
|
||||
msgstr ""
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "This is the speed at which traveling is done."
|
||||
msgstr "移動完了時の速度です。"
|
||||
@@ -15410,6 +15599,14 @@ msgstr ""
|
||||
msgid "Rotate the polyhole every layer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Maximum Polyhole edge count"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Maximum number of polyhole edges\n"
|
||||
"This setting limits the amount of edges a polyhole can have"
|
||||
msgstr ""
|
||||
|
||||
msgid "G-code thumbnails"
|
||||
msgstr "Gコードのサムネイル"
|
||||
|
||||
@@ -18679,6 +18876,12 @@ msgstr "三角面の数"
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr "計算中、お待ちください..."
|
||||
|
||||
msgid "Save these settings as default"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
|
||||
msgstr ""
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
@@ -19061,6 +19264,37 @@ msgstr ""
|
||||
"反りを避ける\n"
|
||||
"ABSのような反りやすい素材を印刷する場合、ヒートベッドの温度を適切に上げることで、反りが発生する確率を下げることができることをご存知ですか?"
|
||||
|
||||
#~ msgid "Continue to sync filaments"
|
||||
#~ msgstr "フィラメントの同期を続行"
|
||||
|
||||
#~ msgctxt "Sync_Nozzle_AMS"
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "キャンセル"
|
||||
|
||||
#~ msgid "Align infill direction to model"
|
||||
#~ msgstr "インフィル方向をモデルに合わせる"
|
||||
|
||||
#~ msgid "Print"
|
||||
#~ msgstr "造形する"
|
||||
|
||||
#~ msgid "in"
|
||||
#~ msgstr "に"
|
||||
|
||||
#~ msgid "Object coordinates"
|
||||
#~ msgstr "オブジェクト座標"
|
||||
|
||||
#~ msgid "World coordinates"
|
||||
#~ msgstr "空間座標"
|
||||
|
||||
#~ msgid "Translate(Relative)"
|
||||
#~ msgstr "移動(相対)"
|
||||
|
||||
#~ msgid "Rotate (absolute)"
|
||||
#~ msgstr "回転(絶対)"
|
||||
|
||||
#~ msgid "Part coordinates"
|
||||
#~ msgstr "パーツ座標"
|
||||
|
||||
#~ msgid "Filament Sync Options"
|
||||
#~ msgstr "フィラメント同期オプション"
|
||||
|
||||
@@ -19989,10 +20223,6 @@ msgstr ""
|
||||
#~ msgid "Unselect"
|
||||
#~ msgstr "選択解除"
|
||||
|
||||
#~ msgctxt "Verb"
|
||||
#~ msgid "Scale"
|
||||
#~ msgstr "スケール"
|
||||
|
||||
#~ msgid "Z-hop when retract"
|
||||
#~ msgstr "リトラクト時にZ方向調整"
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-07-03 14:43+0200\n"
|
||||
"POT-Creation-Date: 2026-07-12 12:27-0300\n"
|
||||
"PO-Revision-Date: 2025-06-02 17:12+0900\n"
|
||||
"Last-Translator: crwusiz <crwusiz@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
@@ -166,6 +166,12 @@ msgstr "채우기"
|
||||
msgid "Gap Fill"
|
||||
msgstr "간격 채우기"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "수직"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "수평"
|
||||
|
||||
#, boost-format
|
||||
msgid "Allows painting only on facets selected by: \"%1%\""
|
||||
msgstr "\"%1%\"에서 선택한 영역에만 칠하기 허용"
|
||||
@@ -261,12 +267,6 @@ msgstr "삼각형"
|
||||
msgid "Height Range"
|
||||
msgstr "높이 범위"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "수직"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "수평"
|
||||
|
||||
msgid "Remove painted color"
|
||||
msgstr "칠한 색 제거"
|
||||
|
||||
@@ -331,6 +331,7 @@ msgstr "변형도구 - 회전"
|
||||
msgid "Optimize orientation"
|
||||
msgstr "방향 최적화"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Scale"
|
||||
msgstr "배율"
|
||||
|
||||
@@ -340,8 +341,9 @@ msgstr "변형도구 - 배율"
|
||||
msgid "Error: Please close all toolbar menus first"
|
||||
msgstr "오류: 먼저 모든 도구 모음 메뉴를 닫으십시오."
|
||||
|
||||
msgctxt "inches"
|
||||
msgid "in"
|
||||
msgstr "인치"
|
||||
msgstr ""
|
||||
|
||||
msgid "mm"
|
||||
msgstr "mm"
|
||||
@@ -374,6 +376,9 @@ msgstr "배율비"
|
||||
msgid "Object operations"
|
||||
msgstr "객체 작업"
|
||||
|
||||
msgid "Scale"
|
||||
msgstr "배율"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Volume operations"
|
||||
msgstr "용량 작업"
|
||||
@@ -401,26 +406,33 @@ msgstr "위치 초기화"
|
||||
msgid "Reset rotation"
|
||||
msgstr "회전 재설정"
|
||||
|
||||
msgid "Object coordinates"
|
||||
msgstr "객체 좌표"
|
||||
msgid "World"
|
||||
msgstr ""
|
||||
|
||||
msgid "World coordinates"
|
||||
msgstr "영역 좌표"
|
||||
msgid "Object"
|
||||
msgstr "객체"
|
||||
|
||||
msgid "Translate(Relative)"
|
||||
msgstr "이동(상대)"
|
||||
msgid "Part"
|
||||
msgstr "부품"
|
||||
|
||||
msgid "Relative"
|
||||
msgstr ""
|
||||
|
||||
msgid "Coordinate system used for transform actions."
|
||||
msgstr ""
|
||||
|
||||
msgid "Absolute"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset current rotation to the value when open the rotation tool."
|
||||
msgstr "회전 도구를 열었을 때의 값으로 현재 회전을 초기화합니다."
|
||||
|
||||
msgid "Rotate (absolute)"
|
||||
msgstr "회전 (절대)"
|
||||
|
||||
msgid "Reset current rotation to real zeros."
|
||||
msgstr "현재 회전을 0으로 초기화합니다."
|
||||
|
||||
msgid "Part coordinates"
|
||||
msgstr "파트 좌표"
|
||||
msgctxt "Noun"
|
||||
msgid "Scale"
|
||||
msgstr "배율"
|
||||
|
||||
#. TRN - Input label. Be short as possible
|
||||
msgid "Size"
|
||||
@@ -525,12 +537,6 @@ msgstr "간격"
|
||||
msgid "Spacing"
|
||||
msgstr "간격"
|
||||
|
||||
msgid "Part"
|
||||
msgstr "부품"
|
||||
|
||||
msgid "Object"
|
||||
msgstr "객체"
|
||||
|
||||
msgid ""
|
||||
"Click to flip the cut plane\n"
|
||||
"Drag to move the cut plane"
|
||||
@@ -1874,23 +1880,30 @@ msgstr "프로젝트 열기"
|
||||
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
|
||||
msgstr "Orca Slicer의 버전이 너무 낮아 최신 버전으로 업데이트해야 정상적으로 사용 가능합니다"
|
||||
|
||||
msgid "Cloud sync conflict:"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Cloud sync conflict for preset \"%s\":"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
|
||||
"This preset has a newer version in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
|
||||
"A preset with this name already exists in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
|
||||
"A preset with the same name was previously deleted from the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
|
||||
"There was an unexpected or unidentified preset conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
@@ -1899,6 +1912,12 @@ msgid ""
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Resolve cloud sync conflict"
|
||||
msgstr ""
|
||||
|
||||
@@ -1973,7 +1992,8 @@ msgstr "클라우드에 캐시된 사용자 사전 설정 수가 상한을 초
|
||||
msgid "Sync user presets"
|
||||
msgstr "사용자 사전 설정 동기화"
|
||||
|
||||
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
#, c-format, boost-format
|
||||
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
@@ -2196,6 +2216,9 @@ msgstr "Orca 큐브"
|
||||
msgid "OrcaSliced Combo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Badge"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Tolerance Test"
|
||||
msgstr "Orca 공차 테스트"
|
||||
|
||||
@@ -3629,7 +3652,7 @@ msgstr "교정이 완료되었습니다. 당신의 고온 베드에서 아래
|
||||
msgid "Save"
|
||||
msgstr "저장"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgctxt "Navigation"
|
||||
msgid "Back"
|
||||
msgstr "뒷면"
|
||||
|
||||
@@ -5011,6 +5034,7 @@ msgstr ""
|
||||
msgid "Color change"
|
||||
msgstr "색 변경"
|
||||
|
||||
msgctxt "Noun"
|
||||
msgid "Print"
|
||||
msgstr "출력"
|
||||
|
||||
@@ -5174,11 +5198,15 @@ msgstr "압출 교정 영역을 피하세요"
|
||||
msgid "Align to Y axis"
|
||||
msgstr "Y축에 정렬"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Back"
|
||||
msgstr "뒷면"
|
||||
|
||||
msgctxt "Camera View"
|
||||
msgid "Left"
|
||||
msgstr "왼쪽"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Right"
|
||||
msgstr "오른쪽"
|
||||
|
||||
@@ -5257,6 +5285,9 @@ msgstr "오버행"
|
||||
msgid "Outline"
|
||||
msgstr "외곽선"
|
||||
|
||||
msgid "Wireframe"
|
||||
msgstr ""
|
||||
|
||||
msgid "Realistic View"
|
||||
msgstr ""
|
||||
|
||||
@@ -5300,7 +5331,7 @@ msgstr "용량:"
|
||||
msgid "Size:"
|
||||
msgstr "크기:"
|
||||
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
|
||||
msgstr "레이어 %d, Z = %.2lf mm에서 Gcode 경로 충돌이 발견되었습니다. 충돌하는 객체를 더 멀리 분리하세요 (%s <-> %s)."
|
||||
|
||||
@@ -5499,6 +5530,10 @@ msgstr "플레이트 출력"
|
||||
msgid "Export G-code file"
|
||||
msgstr "Gcode 파일 내보내기"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Print"
|
||||
msgstr "출력"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "플레이트 슬라이스 파일 내보내기"
|
||||
|
||||
@@ -5672,15 +5707,6 @@ msgstr "현재 설정을 파일로 내보내기"
|
||||
msgid "Export"
|
||||
msgstr "내보내기"
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quit"
|
||||
msgstr "종료"
|
||||
|
||||
@@ -5797,6 +5823,15 @@ msgstr "시점"
|
||||
msgid "Preset Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr ""
|
||||
|
||||
msgid "Syncing presets from cloud…"
|
||||
msgstr ""
|
||||
|
||||
@@ -8032,6 +8067,35 @@ msgstr ""
|
||||
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: linear deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Linear deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.003 mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: angle deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Angle deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.5."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: Split into multiple objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: disabled."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quality level for Draco export"
|
||||
msgstr ""
|
||||
|
||||
@@ -8044,6 +8108,12 @@ msgid ""
|
||||
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
|
||||
msgstr ""
|
||||
|
||||
msgid "Store full source file paths in projects"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
|
||||
msgstr ""
|
||||
|
||||
msgid "Preset"
|
||||
msgstr "사전 설정"
|
||||
|
||||
@@ -10238,12 +10308,8 @@ msgstr "노즐 정보를 성공적으로 동기화했습니다."
|
||||
msgid "Successfully synchronized nozzle and AMS number information."
|
||||
msgstr "노즐 및 AMS 번호 정보를 성공적으로 동기화했습니다."
|
||||
|
||||
msgid "Continue to sync filaments"
|
||||
msgstr "필라멘트 동기화 계속하기"
|
||||
|
||||
msgctxt "Sync_Nozzle_AMS"
|
||||
msgid "Cancel"
|
||||
msgstr "취소"
|
||||
msgid "Do you want to continue to sync filaments?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Successfully synchronized filament color from printer."
|
||||
msgstr ""
|
||||
@@ -11565,7 +11631,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -11579,7 +11645,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -12284,6 +12350,42 @@ msgstr "상단 표면 밀도"
|
||||
msgid "Density of top surface layer. A value of 100% creates a fully solid, smooth top layer. Reducing this value results in a textured top surface, according to the chosen top surface pattern. A value of 0% will result in only the walls on the top layer being created. Intended for aesthetic or functional purposes, not to fix issues such as over-extrusion."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top surface expansion"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Expands the top surfaces by this distance to connect distinct top surfaces and fill gaps.\n"
|
||||
"Useful for cases where the top surface is interrupted by a raised feature, such as text on a plane.Expanding it removes the holes beneath these features and creates a continuous path with a better finish for printing on top.The expansion is applied to the original top surface, before any other processing such as bridging or overhang detection."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion wall margin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Using “Top surface expansion” may cause a surface that did not previously touch the model's outer walls to now do so.\n"
|
||||
"This can cause contraction marks (such as the hull line) on the outer walls.\n"
|
||||
"By adding a small margin, this contraction will not occur directly on the walls, thereby preventing a visible mark."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Direction in which the top surface expansion grows.\n"
|
||||
" - Inward grows into the holes and gaps left by features rising from the middle of a top surface.\n"
|
||||
" - Outward grows the outer edge of the surface, connecting surfaces separated by features that can divide a surface, such as a lattice pattern.\n"
|
||||
" - Inward and Outward does both."
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward and Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom surface pattern"
|
||||
msgstr "하단 표면 패턴"
|
||||
|
||||
@@ -12324,6 +12426,18 @@ msgstr "작은 둘레 임계값"
|
||||
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
|
||||
msgstr "작은 둘레 길이에 대한 임계값을 설정합니다. 기본 임계값은 0mm입니다"
|
||||
|
||||
msgid "Small support perimeters"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
|
||||
msgstr ""
|
||||
|
||||
msgid "Small support perimeters threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "Walls printing order"
|
||||
msgstr "벽 출력 순서"
|
||||
|
||||
@@ -12508,25 +12622,26 @@ msgstr ""
|
||||
"2. 각 압출 유속 및 가속도에 대한 최적의 PA 값을 기록해 두십시오. 색상 구성표 드롭다운에서 흐름을 선택하고 PA 패턴 라인 위로 수평 슬라이더를 이동하여 흐름 번호를 찾을 수 있습니다. 페이지 하단에 번호가 표시되어야 합니다. 이상적인 PA 값은 압출 압출량이 높을수록 감소해야 합니다. 그렇지 않은 경우 압출기가 올바르게 작동하는지 확인하십시오. 출력 속도가 느리고 가속도가 낮을수록 허용되는 PA 값의 범위는 더 커집니다. 차이가 보이지 않으면 더 빠른 테스트의 PA 값을 사용하십시오.\n"
|
||||
"3. 여기 텍스트 상자에 PA 값, 흐름 및 가속도의 세 가지 값을 입력하고 필라멘트 프로필을 저장하세요."
|
||||
|
||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
msgstr "오버행에 대한 적응형 PA 활성화(베타)"
|
||||
|
||||
msgid ""
|
||||
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
|
||||
msgid "Enable adaptive pressure advance within features (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pressure advance for bridges"
|
||||
msgstr "브릿지를 위한 PA"
|
||||
msgid ""
|
||||
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
|
||||
"\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
|
||||
"\n"
|
||||
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
|
||||
msgstr ""
|
||||
|
||||
msgid "Static pressure advance for bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
|
||||
"equivalent walls (using adaptive settings if enabled).\n"
|
||||
"\n"
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
msgstr ""
|
||||
"브릿지의 PA 값입니다. 비활성화하려면 0으로 설정합니다.\n"
|
||||
"\n"
|
||||
" 브릿지를 프린팅할 때 PA 값이 낮으면 브릿지 직후에 약간의 언더 압출이 나타나는 것을 줄이는 데 도움이 됩니다. 이는 공중에서 출력할 때 노즐의 압력 강하로 인해 발생하며 PA가 낮을수록 이를 방지하는 데 도움이 됩니다."
|
||||
|
||||
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
|
||||
msgstr "다른 선 너비가 0으로 설정된 경우 기본 선 너비입니다. %로 입력 시 노즐 직경에 대한 비율로 계산됩니다."
|
||||
@@ -12902,6 +13017,22 @@ msgstr "꽉찬 채우기 방향"
|
||||
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
|
||||
msgstr "선의 시작 또는 기본 방향을 제어하는 솔리드 채우기 패턴의 각도"
|
||||
|
||||
msgid "Top layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the top solid infill and ironing lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the bottom solid infill lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sparse infill density"
|
||||
msgstr "드문 채우기 밀도"
|
||||
|
||||
@@ -12909,12 +13040,12 @@ msgstr "드문 채우기 밀도"
|
||||
msgid "Density of internal sparse infill, 100% turns all sparse infill into solid infill and internal solid infill pattern will be used."
|
||||
msgstr "내부 드문 채우기의 밀도, 100%는 모든 드문 채우기를 꽉찬 내부 채우기로 변경하고 채우기에는 패턴이 사용됩니다"
|
||||
|
||||
msgid "Align infill direction to model"
|
||||
msgid "Align directions to model"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Aligns infill, bridge, ironing and surface fill directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, directions rotate with the model to maintain optimal strength characteristics."
|
||||
"Aligns infill, bridge, ironing, and top/bottom surface directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, these directions rotate together with the model so the printed features keep their intended orientation relative to the part, preserving optimal strength and surface characteristics regardless of how the model is placed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Insert solid layers"
|
||||
@@ -14638,6 +14769,10 @@ msgstr "정렬"
|
||||
msgid "Aligned back"
|
||||
msgstr ""
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Back"
|
||||
msgstr "뒷면"
|
||||
|
||||
msgid "Random"
|
||||
msgstr "무작위"
|
||||
|
||||
@@ -15000,6 +15135,18 @@ msgstr "모든 활성화된 압출기 프라이밍"
|
||||
msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print."
|
||||
msgstr "활성화되면 모든 활성화된 압출기는 출력 시작 시 출력 베드의 앞쪽 가장자리에서 프라이밍합니다."
|
||||
|
||||
msgid "Toolchange ordering"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Determines the order of tool changes on each layer.\n"
|
||||
"- Default: Starts with the last used extruder to minimize tool changes.\n"
|
||||
"- Cyclic: Uses a fixed tool sequence each layer. This sacrifices speed for better surface quality, as the extra toolchanges allow layers more time to cool."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cyclic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice gap closing radius"
|
||||
msgstr "슬라이스 간격 폐쇄 반경"
|
||||
|
||||
@@ -15439,6 +15586,45 @@ msgstr "상단 쉘 두께"
|
||||
msgid "The number of top solid layers is increased when slicing if the thickness calculated by top shell layers is thinner than this value. This can avoid having too thin a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers."
|
||||
msgstr "상단 쉘 레이어로 계산된 두께가 이 값보다 얇은 경우 슬라이싱할 때 상단 꽉찬 레이어의 수가 증가합니다. 이렇게 하면 레이어 높이가 작을 때 쉘이 너무 얇아지는 것을 방지할 수 있습니다. 0은 이 설정이 비활성화되고 상단 쉘의 두께가 절대적으로 상단 쉘 레이어에 의해 결정됨을 의미합니다"
|
||||
|
||||
msgid "Anisotropic surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Anisotropic patterns on the top and bottom surfaces.\n"
|
||||
"Co-directional printing mode will be applied. For certain patterns, omni-directional filling provides color dispersion when using multi-colored or silk plastics.\n"
|
||||
"This option disable the gap fill.\n"
|
||||
"This option can increase a printing time."
|
||||
msgstr ""
|
||||
|
||||
msgid "Separated infills"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Centers the internal infill of each part on itself, as if it were sliced on its own, instead of on the whole assembly. Parts that touch or overlap are treated as one body and share a center; separate parts (or distinct 3D objects) each get their own.\n"
|
||||
"Useful when an assembly groups several objects that should each keep a consistent, self-centered infill.\n"
|
||||
"Affects line and grid patterns and rotation-template infills.\n"
|
||||
"Patterns locked to global coordinates (Gyroid, Honeycomb, TPMS, ...) are unaffected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Center surface pattern on"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Chooses where the centering point of centered top/bottom surface patterns (Archimedean Chords, Octagram Spiral) is placed.\n"
|
||||
" - Each Surface: centers the pattern on every individual surface region, so each island is symmetric on its own.\n"
|
||||
" - Each Model: centers the pattern on each connected body. Parts that touch or overlap share one center; parts detached from the rest each get their own.\n"
|
||||
" - Each Assembly: uses a single shared center for the whole object or assembly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Surface"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Assembly"
|
||||
msgstr ""
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "This is the speed at which traveling is done."
|
||||
msgstr "압출이 없을 때의 이동 속도"
|
||||
@@ -15682,6 +15868,14 @@ msgstr "폴리홀 회전"
|
||||
msgid "Rotate the polyhole every layer."
|
||||
msgstr "레이어마다 폴리홀을 회전시킵니다."
|
||||
|
||||
msgid "Maximum Polyhole edge count"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Maximum number of polyhole edges\n"
|
||||
"This setting limits the amount of edges a polyhole can have"
|
||||
msgstr ""
|
||||
|
||||
msgid "G-code thumbnails"
|
||||
msgstr "Gcode 미리보기"
|
||||
|
||||
@@ -19027,6 +19221,12 @@ msgstr "삼각형 패싯 수"
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr "계산 중, 잠시만 기다려주세요..."
|
||||
|
||||
msgid "Save these settings as default"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
|
||||
msgstr ""
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
@@ -19432,6 +19632,49 @@ msgstr ""
|
||||
"뒤틀림 방지\n"
|
||||
"ABS와 같이 뒤틀림이 발생하기 쉬운 소재를 출력할 때, 히트베드 온도를 적절하게 높이면 뒤틀림 가능성을 줄일 수 있다는 사실을 알고 계셨나요?"
|
||||
|
||||
#~ msgid "Continue to sync filaments"
|
||||
#~ msgstr "필라멘트 동기화 계속하기"
|
||||
|
||||
#~ msgctxt "Sync_Nozzle_AMS"
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "취소"
|
||||
|
||||
#~ msgid "Print"
|
||||
#~ msgstr "출력"
|
||||
|
||||
#~ msgid "in"
|
||||
#~ msgstr "인치"
|
||||
|
||||
#~ msgid "Object coordinates"
|
||||
#~ msgstr "객체 좌표"
|
||||
|
||||
#~ msgid "World coordinates"
|
||||
#~ msgstr "영역 좌표"
|
||||
|
||||
#~ msgid "Translate(Relative)"
|
||||
#~ msgstr "이동(상대)"
|
||||
|
||||
#~ msgid "Rotate (absolute)"
|
||||
#~ msgstr "회전 (절대)"
|
||||
|
||||
#~ msgid "Part coordinates"
|
||||
#~ msgstr "파트 좌표"
|
||||
|
||||
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
#~ msgstr "오버행에 대한 적응형 PA 활성화(베타)"
|
||||
|
||||
#~ msgid "Pressure advance for bridges"
|
||||
#~ msgstr "브릿지를 위한 PA"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
#~ "\n"
|
||||
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
#~ msgstr ""
|
||||
#~ "브릿지의 PA 값입니다. 비활성화하려면 0으로 설정합니다.\n"
|
||||
#~ "\n"
|
||||
#~ " 브릿지를 프린팅할 때 PA 값이 낮으면 브릿지 직후에 약간의 언더 압출이 나타나는 것을 줄이는 데 도움이 됩니다. 이는 공중에서 출력할 때 노즐의 압력 강하로 인해 발생하며 PA가 낮을수록 이를 방지하는 데 도움이 됩니다."
|
||||
|
||||
#~ msgid "View control settings"
|
||||
#~ msgstr "시점 컨트롤 설정"
|
||||
|
||||
@@ -20890,10 +21133,6 @@ msgstr ""
|
||||
#~ msgid "Unselect"
|
||||
#~ msgstr "선택 취소"
|
||||
|
||||
#~ msgctxt "Verb"
|
||||
#~ msgid "Scale"
|
||||
#~ msgstr "규모"
|
||||
|
||||
#~ msgid "Lift Z Enforcement"
|
||||
#~ msgstr "강제 Z 올리기"
|
||||
|
||||
|
||||
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-07-03 14:43+0200\n"
|
||||
"POT-Creation-Date: 2026-07-12 12:27-0300\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -162,6 +162,12 @@ msgstr "Vullen"
|
||||
msgid "Gap Fill"
|
||||
msgstr "Gatvulling"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "Verticaal"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "Horizontaal"
|
||||
|
||||
#, boost-format
|
||||
msgid "Allows painting only on facets selected by: \"%1%\""
|
||||
msgstr "Staat alleen schilderen toe op facetten geselecteerd met: \"%1%\""
|
||||
@@ -257,12 +263,6 @@ msgstr "Driehoek"
|
||||
msgid "Height Range"
|
||||
msgstr "Hoogtebereik"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "Verticaal"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "Horizontaal"
|
||||
|
||||
msgid "Remove painted color"
|
||||
msgstr "Geschilderd kleur verwijderen"
|
||||
|
||||
@@ -327,6 +327,7 @@ msgstr "Roteren"
|
||||
msgid "Optimize orientation"
|
||||
msgstr "Oriëntatie optimaliseren"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Scale"
|
||||
msgstr "Schalen"
|
||||
|
||||
@@ -336,8 +337,9 @@ msgstr "Verschalen"
|
||||
msgid "Error: Please close all toolbar menus first"
|
||||
msgstr "Fout: sluit eerst alle openstaande hulpmiddelmenu's"
|
||||
|
||||
msgctxt "inches"
|
||||
msgid "in"
|
||||
msgstr "in"
|
||||
msgstr ""
|
||||
|
||||
msgid "mm"
|
||||
msgstr "mm"
|
||||
@@ -370,6 +372,9 @@ msgstr "Schaalverhoudingen"
|
||||
msgid "Object operations"
|
||||
msgstr "Objectbewerkingen"
|
||||
|
||||
msgid "Scale"
|
||||
msgstr "Schalen"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Volume operations"
|
||||
msgstr "Volumebewerkingen"
|
||||
@@ -397,26 +402,33 @@ msgstr "Positie herstellen"
|
||||
msgid "Reset rotation"
|
||||
msgstr "Reset rotatie"
|
||||
|
||||
msgid "Object coordinates"
|
||||
msgstr "Objectcoördinaten"
|
||||
msgid "World"
|
||||
msgstr ""
|
||||
|
||||
msgid "World coordinates"
|
||||
msgstr "Wereldcoördinaten"
|
||||
msgid "Object"
|
||||
msgstr "Voorwerp"
|
||||
|
||||
msgid "Translate(Relative)"
|
||||
msgid "Part"
|
||||
msgstr "Onderdeel"
|
||||
|
||||
msgid "Relative"
|
||||
msgstr ""
|
||||
|
||||
msgid "Coordinate system used for transform actions."
|
||||
msgstr ""
|
||||
|
||||
msgid "Absolute"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset current rotation to the value when open the rotation tool."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rotate (absolute)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset current rotation to real zeros."
|
||||
msgstr ""
|
||||
|
||||
msgid "Part coordinates"
|
||||
msgstr ""
|
||||
msgctxt "Noun"
|
||||
msgid "Scale"
|
||||
msgstr "Schalen"
|
||||
|
||||
#. TRN - Input label. Be short as possible
|
||||
msgid "Size"
|
||||
@@ -521,12 +533,6 @@ msgstr "Kloof"
|
||||
msgid "Spacing"
|
||||
msgstr "Uitlijning"
|
||||
|
||||
msgid "Part"
|
||||
msgstr "Onderdeel"
|
||||
|
||||
msgid "Object"
|
||||
msgstr "Voorwerp"
|
||||
|
||||
msgid ""
|
||||
"Click to flip the cut plane\n"
|
||||
"Drag to move the cut plane"
|
||||
@@ -1852,23 +1858,30 @@ msgstr "Project openen"
|
||||
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
|
||||
msgstr "De versie van Orca Slicer is te oud en dient te worden bijgewerkt naar de nieuwste versie voordat deze normaal kan worden gebruikt"
|
||||
|
||||
msgid "Cloud sync conflict:"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Cloud sync conflict for preset \"%s\":"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
|
||||
"This preset has a newer version in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
|
||||
"A preset with this name already exists in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
|
||||
"A preset with the same name was previously deleted from the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
|
||||
"There was an unexpected or unidentified preset conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
@@ -1877,6 +1890,12 @@ msgid ""
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Resolve cloud sync conflict"
|
||||
msgstr ""
|
||||
|
||||
@@ -1944,7 +1963,8 @@ msgstr "Het aantal gebruikersvoorinstellingen dat in de cloud is opgeslagen, hee
|
||||
msgid "Sync user presets"
|
||||
msgstr "Synchroniseer gebruikersvoorinstellingen"
|
||||
|
||||
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
#, c-format, boost-format
|
||||
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
@@ -2166,6 +2186,9 @@ msgstr "Orca-kubus"
|
||||
msgid "OrcaSliced Combo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Badge"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Tolerance Test"
|
||||
msgstr ""
|
||||
|
||||
@@ -3596,7 +3619,7 @@ msgstr "Kalibratie voltooid. Zoek de meest uniforme extrusielijn op uw hotbed, z
|
||||
msgid "Save"
|
||||
msgstr "Bewaar"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgctxt "Navigation"
|
||||
msgid "Back"
|
||||
msgstr "Achterzijde"
|
||||
|
||||
@@ -4956,6 +4979,7 @@ msgstr "Toolwisselingen"
|
||||
msgid "Color change"
|
||||
msgstr "Kleur veranderen"
|
||||
|
||||
msgctxt "Noun"
|
||||
msgid "Print"
|
||||
msgstr ""
|
||||
|
||||
@@ -5114,11 +5138,15 @@ msgstr "Vermijd het extrusie kalibratie gebied"
|
||||
msgid "Align to Y axis"
|
||||
msgstr "Uitlijnen op Y-as"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Back"
|
||||
msgstr "Achterzijde"
|
||||
|
||||
msgctxt "Camera View"
|
||||
msgid "Left"
|
||||
msgstr "Links"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Right"
|
||||
msgstr "Rechts"
|
||||
|
||||
@@ -5197,6 +5225,9 @@ msgstr "Overhangen"
|
||||
msgid "Outline"
|
||||
msgstr "Omtrek"
|
||||
|
||||
msgid "Wireframe"
|
||||
msgstr ""
|
||||
|
||||
msgid "Realistic View"
|
||||
msgstr ""
|
||||
|
||||
@@ -5240,7 +5271,7 @@ msgstr ""
|
||||
msgid "Size:"
|
||||
msgstr "Maat:"
|
||||
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
|
||||
msgstr ""
|
||||
|
||||
@@ -5439,6 +5470,10 @@ msgstr "Printplaat"
|
||||
msgid "Export G-code file"
|
||||
msgstr "G-codebestand exporteren"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Print"
|
||||
msgstr ""
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "Exporteer plate sliced bestand"
|
||||
|
||||
@@ -5612,15 +5647,6 @@ msgstr "Huidige configuratie exporteren naar bestanden"
|
||||
msgid "Export"
|
||||
msgstr "Exporteren"
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quit"
|
||||
msgstr "Stop"
|
||||
|
||||
@@ -5737,6 +5763,15 @@ msgstr "Weergave"
|
||||
msgid "Preset Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr ""
|
||||
|
||||
msgid "Syncing presets from cloud…"
|
||||
msgstr ""
|
||||
|
||||
@@ -7949,6 +7984,35 @@ msgstr ""
|
||||
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: linear deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Linear deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.003 mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: angle deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Angle deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.5."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: Split into multiple objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: disabled."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quality level for Draco export"
|
||||
msgstr ""
|
||||
|
||||
@@ -7961,6 +8025,12 @@ msgid ""
|
||||
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
|
||||
msgstr ""
|
||||
|
||||
msgid "Store full source file paths in projects"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
|
||||
msgstr ""
|
||||
|
||||
msgid "Preset"
|
||||
msgstr "Voorinstelling"
|
||||
|
||||
@@ -10132,13 +10202,9 @@ msgstr ""
|
||||
msgid "Successfully synchronized nozzle and AMS number information."
|
||||
msgstr ""
|
||||
|
||||
msgid "Continue to sync filaments"
|
||||
msgid "Do you want to continue to sync filaments?"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "Sync_Nozzle_AMS"
|
||||
msgid "Cancel"
|
||||
msgstr "Annuleren"
|
||||
|
||||
msgid "Successfully synchronized filament color from printer."
|
||||
msgstr ""
|
||||
|
||||
@@ -11435,7 +11501,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -11449,7 +11515,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -12093,6 +12159,42 @@ msgstr ""
|
||||
msgid "Density of top surface layer. A value of 100% creates a fully solid, smooth top layer. Reducing this value results in a textured top surface, according to the chosen top surface pattern. A value of 0% will result in only the walls on the top layer being created. Intended for aesthetic or functional purposes, not to fix issues such as over-extrusion."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top surface expansion"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Expands the top surfaces by this distance to connect distinct top surfaces and fill gaps.\n"
|
||||
"Useful for cases where the top surface is interrupted by a raised feature, such as text on a plane.Expanding it removes the holes beneath these features and creates a continuous path with a better finish for printing on top.The expansion is applied to the original top surface, before any other processing such as bridging or overhang detection."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion wall margin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Using “Top surface expansion” may cause a surface that did not previously touch the model's outer walls to now do so.\n"
|
||||
"This can cause contraction marks (such as the hull line) on the outer walls.\n"
|
||||
"By adding a small margin, this contraction will not occur directly on the walls, thereby preventing a visible mark."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Direction in which the top surface expansion grows.\n"
|
||||
" - Inward grows into the holes and gaps left by features rising from the middle of a top surface.\n"
|
||||
" - Outward grows the outer edge of the surface, connecting surfaces separated by features that can divide a surface, such as a lattice pattern.\n"
|
||||
" - Inward and Outward does both."
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward and Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom surface pattern"
|
||||
msgstr "Bodem oppvlakte patroon"
|
||||
|
||||
@@ -12133,6 +12235,18 @@ msgstr ""
|
||||
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
|
||||
msgstr "Dit stelt de drempel voor kleine omtreklengte in. De standaarddrempel is 0 mm"
|
||||
|
||||
msgid "Small support perimeters"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
|
||||
msgstr ""
|
||||
|
||||
msgid "Small support perimeters threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "Walls printing order"
|
||||
msgstr ""
|
||||
|
||||
@@ -12288,21 +12402,25 @@ msgid ""
|
||||
"3. Enter the triplets of PA values, Flow and Accelerations in the text box here and save your filament profile."
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
msgid "Enable adaptive pressure advance within features (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
|
||||
msgstr ""
|
||||
|
||||
msgid "Pressure advance for bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
|
||||
"\n"
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
|
||||
"\n"
|
||||
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
|
||||
msgstr ""
|
||||
|
||||
msgid "Static pressure advance for bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
|
||||
"equivalent walls (using adaptive settings if enabled).\n"
|
||||
"\n"
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
msgstr ""
|
||||
|
||||
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
|
||||
@@ -12670,6 +12788,22 @@ msgstr ""
|
||||
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the top solid infill and ironing lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the bottom solid infill lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sparse infill density"
|
||||
msgstr "Vulling percentage"
|
||||
|
||||
@@ -12677,12 +12811,12 @@ msgstr "Vulling percentage"
|
||||
msgid "Density of internal sparse infill, 100% turns all sparse infill into solid infill and internal solid infill pattern will be used."
|
||||
msgstr ""
|
||||
|
||||
msgid "Align infill direction to model"
|
||||
msgid "Align directions to model"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Aligns infill, bridge, ironing and surface fill directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, directions rotate with the model to maintain optimal strength characteristics."
|
||||
"Aligns infill, bridge, ironing, and top/bottom surface directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, these directions rotate together with the model so the printed features keep their intended orientation relative to the part, preserving optimal strength and surface characteristics regardless of how the model is placed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Insert solid layers"
|
||||
@@ -14342,6 +14476,10 @@ msgstr "Uitgelijnd"
|
||||
msgid "Aligned back"
|
||||
msgstr ""
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Back"
|
||||
msgstr "Achterzijde"
|
||||
|
||||
msgid "Random"
|
||||
msgstr "Willekeurig"
|
||||
|
||||
@@ -14685,6 +14823,18 @@ msgstr "Veeg alle printextruders af"
|
||||
msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print."
|
||||
msgstr "Alle extruders worden afgeveegd aan de voorzijde van het printbed aan het begin van de print als dit is ingeschakeld."
|
||||
|
||||
msgid "Toolchange ordering"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Determines the order of tool changes on each layer.\n"
|
||||
"- Default: Starts with the last used extruder to minimize tool changes.\n"
|
||||
"- Cyclic: Uses a fixed tool sequence each layer. This sacrifices speed for better surface quality, as the extra toolchanges allow layers more time to cool."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cyclic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice gap closing radius"
|
||||
msgstr "Sluitingsradius van de gap"
|
||||
|
||||
@@ -15114,6 +15264,45 @@ msgstr "Dikte bovenkant"
|
||||
msgid "The number of top solid layers is increased when slicing if the thickness calculated by top shell layers is thinner than this value. This can avoid having too thin a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers."
|
||||
msgstr "Het aantal bovenste solide lagen wordt verhoogd tijdens het slicen als de totale dikte van de bovenste lagen lager is dan deze waarde. Dit zorgt ervoor dat de schaal niet te dun is bij een lage laaghoogte. 0 betekend dat deze instelling niet actief is en dat de dikte van de bovenkant bepaald wordt door het aantal bodem lagen."
|
||||
|
||||
msgid "Anisotropic surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Anisotropic patterns on the top and bottom surfaces.\n"
|
||||
"Co-directional printing mode will be applied. For certain patterns, omni-directional filling provides color dispersion when using multi-colored or silk plastics.\n"
|
||||
"This option disable the gap fill.\n"
|
||||
"This option can increase a printing time."
|
||||
msgstr ""
|
||||
|
||||
msgid "Separated infills"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Centers the internal infill of each part on itself, as if it were sliced on its own, instead of on the whole assembly. Parts that touch or overlap are treated as one body and share a center; separate parts (or distinct 3D objects) each get their own.\n"
|
||||
"Useful when an assembly groups several objects that should each keep a consistent, self-centered infill.\n"
|
||||
"Affects line and grid patterns and rotation-template infills.\n"
|
||||
"Patterns locked to global coordinates (Gyroid, Honeycomb, TPMS, ...) are unaffected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Center surface pattern on"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Chooses where the centering point of centered top/bottom surface patterns (Archimedean Chords, Octagram Spiral) is placed.\n"
|
||||
" - Each Surface: centers the pattern on every individual surface region, so each island is symmetric on its own.\n"
|
||||
" - Each Model: centers the pattern on each connected body. Parts that touch or overlap share one center; parts detached from the rest each get their own.\n"
|
||||
" - Each Assembly: uses a single shared center for the whole object or assembly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Surface"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Assembly"
|
||||
msgstr ""
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "This is the speed at which traveling is done."
|
||||
msgstr "Dit is de snelheid waarmee verplaatsingen zullen worden gedaan."
|
||||
@@ -15338,6 +15527,14 @@ msgstr ""
|
||||
msgid "Rotate the polyhole every layer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Maximum Polyhole edge count"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Maximum number of polyhole edges\n"
|
||||
"This setting limits the amount of edges a polyhole can have"
|
||||
msgstr ""
|
||||
|
||||
msgid "G-code thumbnails"
|
||||
msgstr "G-code miniaturen"
|
||||
|
||||
@@ -18611,6 +18808,12 @@ msgstr ""
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Save these settings as default"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
|
||||
msgstr ""
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
@@ -19016,6 +19219,19 @@ msgstr ""
|
||||
"Kromtrekken voorkomen\n"
|
||||
"Wist je dat bij het printen van materialen die gevoelig zijn voor kromtrekken, zoals ABS, een juiste verhoging van de temperatuur van het warmtebed de kans op kromtrekken kan verkleinen?"
|
||||
|
||||
#~ msgctxt "Sync_Nozzle_AMS"
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Annuleren"
|
||||
|
||||
#~ msgid "in"
|
||||
#~ msgstr "in"
|
||||
|
||||
#~ msgid "Object coordinates"
|
||||
#~ msgstr "Objectcoördinaten"
|
||||
|
||||
#~ msgid "World coordinates"
|
||||
#~ msgstr "Wereldcoördinaten"
|
||||
|
||||
#~ msgid "View control settings"
|
||||
#~ msgstr "Besturing instellingen weergeven"
|
||||
|
||||
@@ -20213,10 +20429,6 @@ msgstr ""
|
||||
#~ msgid "Thick bridges"
|
||||
#~ msgstr "Dikke bruggen"
|
||||
|
||||
#~ msgctxt "Verb"
|
||||
#~ msgid "Scale"
|
||||
#~ msgstr "Schalen"
|
||||
|
||||
#~ msgid "Z-hop when retract"
|
||||
#~ msgstr "Z-hop tijdens terugtrekken (retraction)"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OrcaSlicer 2.3.0-rc\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-07-03 14:43+0200\n"
|
||||
"POT-Creation-Date: 2026-07-12 12:27-0300\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Krzysztof Morga <<tlumaczeniebs@gmail.com>>\n"
|
||||
"Language-Team: \n"
|
||||
@@ -163,6 +163,13 @@ msgstr "Wypełnienie"
|
||||
msgid "Gap Fill"
|
||||
msgstr "Wypełnienie szczelin"
|
||||
|
||||
# +++++++++++++++++++++
|
||||
msgid "Vertical"
|
||||
msgstr "Pionowa linia"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "Pozioma linia"
|
||||
|
||||
#, boost-format
|
||||
msgid "Allows painting only on facets selected by: \"%1%\""
|
||||
msgstr "Pozwala malować tylko na wybranych powierzchniach za pomocą: „%1%”"
|
||||
@@ -258,13 +265,6 @@ msgstr "Trójkąt"
|
||||
msgid "Height Range"
|
||||
msgstr "Przedział"
|
||||
|
||||
# +++++++++++++++++++++
|
||||
msgid "Vertical"
|
||||
msgstr "Pionowa linia"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "Pozioma linia"
|
||||
|
||||
msgid "Remove painted color"
|
||||
msgstr "Usuń pomalowany kolor"
|
||||
|
||||
@@ -329,6 +329,7 @@ msgstr "Uchwyt-Obróć"
|
||||
msgid "Optimize orientation"
|
||||
msgstr "Optymalizuj orientację"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Scale"
|
||||
msgstr "Skaluj"
|
||||
|
||||
@@ -338,8 +339,9 @@ msgstr "Uchwyt-Skaluj"
|
||||
msgid "Error: Please close all toolbar menus first"
|
||||
msgstr "Błąd: Proszę najpierw zamknąć wszystkie paski narzędziowe"
|
||||
|
||||
msgctxt "inches"
|
||||
msgid "in"
|
||||
msgstr "cal"
|
||||
msgstr ""
|
||||
|
||||
msgid "mm"
|
||||
msgstr "mm"
|
||||
@@ -372,6 +374,9 @@ msgstr "Współczynniki skali"
|
||||
msgid "Object operations"
|
||||
msgstr "Operacje na obiekcie"
|
||||
|
||||
msgid "Scale"
|
||||
msgstr "Skaluj"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Volume operations"
|
||||
msgstr "Operacje na objętości"
|
||||
@@ -399,26 +404,33 @@ msgstr "Zresetuj pozycję"
|
||||
msgid "Reset rotation"
|
||||
msgstr "Zresetuj obrót"
|
||||
|
||||
msgid "Object coordinates"
|
||||
msgstr "Koordynaty obiektu"
|
||||
msgid "World"
|
||||
msgstr ""
|
||||
|
||||
msgid "World coordinates"
|
||||
msgstr "Współrzędne"
|
||||
msgid "Object"
|
||||
msgstr "Obiekt"
|
||||
|
||||
msgid "Translate(Relative)"
|
||||
msgstr "Przesunięcie równoległe (Względne)"
|
||||
msgid "Part"
|
||||
msgstr "Część"
|
||||
|
||||
msgid "Relative"
|
||||
msgstr ""
|
||||
|
||||
msgid "Coordinate system used for transform actions."
|
||||
msgstr ""
|
||||
|
||||
msgid "Absolute"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset current rotation to the value when open the rotation tool."
|
||||
msgstr "Zresetuj bieżący obrót do wartości ustawionej przy otwarciu narzędzia obrotu."
|
||||
|
||||
msgid "Rotate (absolute)"
|
||||
msgstr "Obrót (bezwzględny)"
|
||||
|
||||
msgid "Reset current rotation to real zeros."
|
||||
msgstr "Zresetuj bieżący obrót do wartości zerowej."
|
||||
|
||||
msgid "Part coordinates"
|
||||
msgstr "Koordynaty części"
|
||||
msgctxt "Noun"
|
||||
msgid "Scale"
|
||||
msgstr "Skaluj"
|
||||
|
||||
#. TRN - Input label. Be short as possible
|
||||
msgid "Size"
|
||||
@@ -523,12 +535,6 @@ msgstr "Szczelina"
|
||||
msgid "Spacing"
|
||||
msgstr "Rozstaw"
|
||||
|
||||
msgid "Part"
|
||||
msgstr "Część"
|
||||
|
||||
msgid "Object"
|
||||
msgstr "Obiekt"
|
||||
|
||||
msgid ""
|
||||
"Click to flip the cut plane\n"
|
||||
"Drag to move the cut plane"
|
||||
@@ -1875,23 +1881,30 @@ msgstr "Otwórz projekt"
|
||||
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
|
||||
msgstr "Wersja Orca Slicer jest przestarzała i musi zostać uaktualniona do najnowszej wersji, aby działać normalnie"
|
||||
|
||||
msgid "Cloud sync conflict:"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Cloud sync conflict for preset \"%s\":"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
|
||||
"This preset has a newer version in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
|
||||
"A preset with this name already exists in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
|
||||
"A preset with the same name was previously deleted from the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
|
||||
"There was an unexpected or unidentified preset conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
@@ -1900,6 +1913,12 @@ msgid ""
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Resolve cloud sync conflict"
|
||||
msgstr ""
|
||||
|
||||
@@ -1967,7 +1986,8 @@ msgstr "Liczba zapisanych w chmurze ustawień użytkownika przekroczyła maksyma
|
||||
msgid "Sync user presets"
|
||||
msgstr "Synchronizuj ustawienia użytkownika"
|
||||
|
||||
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
#, c-format, boost-format
|
||||
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
@@ -2189,6 +2209,9 @@ msgstr "Sześcian Orca"
|
||||
msgid "OrcaSliced Combo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Badge"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Tolerance Test"
|
||||
msgstr "Test tolerancji Orca"
|
||||
|
||||
@@ -3634,7 +3657,7 @@ msgstr "Kalibracja zakończona. Proszę znaleźć na płycie roboczej, linie eks
|
||||
msgid "Save"
|
||||
msgstr "Zapisz"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgctxt "Navigation"
|
||||
msgid "Back"
|
||||
msgstr "Tył"
|
||||
|
||||
@@ -5008,6 +5031,7 @@ msgstr "Zmiany narzędzi"
|
||||
msgid "Color change"
|
||||
msgstr "Zmiana koloru"
|
||||
|
||||
msgctxt "Noun"
|
||||
msgid "Print"
|
||||
msgstr "Drukuj"
|
||||
|
||||
@@ -5171,11 +5195,15 @@ msgstr "Unikaj obszaru kalibracji ekstruzji"
|
||||
msgid "Align to Y axis"
|
||||
msgstr "Wyrównaj do osi Y"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Back"
|
||||
msgstr "Tył"
|
||||
|
||||
msgctxt "Camera View"
|
||||
msgid "Left"
|
||||
msgstr "Lewy"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Right"
|
||||
msgstr "Prawy"
|
||||
|
||||
@@ -5254,6 +5282,9 @@ msgstr "Nawisy"
|
||||
msgid "Outline"
|
||||
msgstr "kontur"
|
||||
|
||||
msgid "Wireframe"
|
||||
msgstr ""
|
||||
|
||||
msgid "Realistic View"
|
||||
msgstr ""
|
||||
|
||||
@@ -5297,7 +5328,7 @@ msgstr "Objętość:"
|
||||
msgid "Size:"
|
||||
msgstr "Rozmiar:"
|
||||
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
|
||||
msgstr "Wykryto konflikty ścieżek G-code na warstwie %d, Z = %.2lfmm. Proszę oddalić od siebie obiekty będące w konflikcie (%s <-> %s)."
|
||||
|
||||
@@ -5500,6 +5531,10 @@ msgstr "Drukuj aktualną płytę"
|
||||
msgid "Export G-code file"
|
||||
msgstr "Eksportuj plik G-code"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Print"
|
||||
msgstr "Drukuj"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "Eksportuj plik pociętej płyty"
|
||||
|
||||
@@ -5673,15 +5708,6 @@ msgstr "Eksportuj bieżącą konfigurację do plików"
|
||||
msgid "Export"
|
||||
msgstr "Eksportuj"
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quit"
|
||||
msgstr "Zakończ"
|
||||
|
||||
@@ -5798,6 +5824,15 @@ msgstr "Widok"
|
||||
msgid "Preset Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr ""
|
||||
|
||||
msgid "Syncing presets from cloud…"
|
||||
msgstr ""
|
||||
|
||||
@@ -8042,6 +8077,35 @@ msgstr ""
|
||||
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: linear deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Linear deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.003 mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: angle deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Angle deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.5."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: Split into multiple objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: disabled."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quality level for Draco export"
|
||||
msgstr ""
|
||||
|
||||
@@ -8054,6 +8118,12 @@ msgid ""
|
||||
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
|
||||
msgstr ""
|
||||
|
||||
msgid "Store full source file paths in projects"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
|
||||
msgstr ""
|
||||
|
||||
msgid "Preset"
|
||||
msgstr "Profil"
|
||||
|
||||
@@ -10255,12 +10325,8 @@ msgstr "Pomyślnie zsynchronizowano informacje o dyszy."
|
||||
msgid "Successfully synchronized nozzle and AMS number information."
|
||||
msgstr "Pomyślnie zsynchronizowano dyszę z informacjami numeru AMS."
|
||||
|
||||
msgid "Continue to sync filaments"
|
||||
msgstr "Kontynuuj aby zsynchronizować filamenty"
|
||||
|
||||
msgctxt "Sync_Nozzle_AMS"
|
||||
msgid "Cancel"
|
||||
msgstr "Anuluj"
|
||||
msgid "Do you want to continue to sync filaments?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Successfully synchronized filament color from printer."
|
||||
msgstr ""
|
||||
@@ -11580,7 +11646,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -11594,7 +11660,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -12303,6 +12369,42 @@ msgstr "Gęstość górnej powierzchni"
|
||||
msgid "Density of top surface layer. A value of 100% creates a fully solid, smooth top layer. Reducing this value results in a textured top surface, according to the chosen top surface pattern. A value of 0% will result in only the walls on the top layer being created. Intended for aesthetic or functional purposes, not to fix issues such as over-extrusion."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top surface expansion"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Expands the top surfaces by this distance to connect distinct top surfaces and fill gaps.\n"
|
||||
"Useful for cases where the top surface is interrupted by a raised feature, such as text on a plane.Expanding it removes the holes beneath these features and creates a continuous path with a better finish for printing on top.The expansion is applied to the original top surface, before any other processing such as bridging or overhang detection."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion wall margin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Using “Top surface expansion” may cause a surface that did not previously touch the model's outer walls to now do so.\n"
|
||||
"This can cause contraction marks (such as the hull line) on the outer walls.\n"
|
||||
"By adding a small margin, this contraction will not occur directly on the walls, thereby preventing a visible mark."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Direction in which the top surface expansion grows.\n"
|
||||
" - Inward grows into the holes and gaps left by features rising from the middle of a top surface.\n"
|
||||
" - Outward grows the outer edge of the surface, connecting surfaces separated by features that can divide a surface, such as a lattice pattern.\n"
|
||||
" - Inward and Outward does both."
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward and Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom surface pattern"
|
||||
msgstr "Wzór dolnej powierzchni"
|
||||
|
||||
@@ -12343,6 +12445,18 @@ msgstr "Próg małego obrysu"
|
||||
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
|
||||
msgstr "To ustawia próg długości małych obrysów. Domyślny próg to 0 mm"
|
||||
|
||||
msgid "Small support perimeters"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
|
||||
msgstr ""
|
||||
|
||||
msgid "Small support perimeters threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "Walls printing order"
|
||||
msgstr "Kolejność drukowania ścian"
|
||||
|
||||
@@ -12523,25 +12637,26 @@ msgstr ""
|
||||
"2. Zwróć uwagę na optymalną wartość PA dla każdej wolumetrycznej prędkości przepływu i przyspieszenia. Możesz znaleźć numer przepływu, wybierając przepływ z rozwijanego schematu kolorów i przesuwając poziomy suwak nad liniami wzoru PA. Numer powinien być widoczny na dole strony. Idealna wartość PA powinna maleć, im większy jest przepływ objętościowy. Jeśli tak nie jest, potwierdź, że ekstruder działa poprawnie. Im wolniej i z mniejszym przyspieszeniu drukujesz, tym jest większy zakres dopuszczalnych wartości PA. Jeśli różnica nie jest widoczna, należy użyć wartości PA z szybszego testu.\n"
|
||||
"3. Wprowadź trójki wartości PA, przepływu i przyspieszenia w polu tekstowym tutaj i zapisz swój profil filamentu."
|
||||
|
||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
msgstr "Włącz adaptacyjny wzrost ciśnienia dla nawisów (beta)"
|
||||
|
||||
msgid ""
|
||||
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
|
||||
msgid "Enable adaptive pressure advance within features (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pressure advance for bridges"
|
||||
msgstr "Wzrost ciśnienia (PA) dla mostów"
|
||||
msgid ""
|
||||
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
|
||||
"\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
|
||||
"\n"
|
||||
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
|
||||
msgstr ""
|
||||
|
||||
msgid "Static pressure advance for bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
|
||||
"equivalent walls (using adaptive settings if enabled).\n"
|
||||
"\n"
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
msgstr ""
|
||||
"Wartość wzrostu ciśnienia dla mostów. Ustaw na 0, aby wyłączyć.\n"
|
||||
"\n"
|
||||
"Niższa wartość PA podczas drukowania mostów pomaga zredukować widoczność lekkiego niedoboru materiału, który może wystąpić bezpośrednio po ich wydruku. Jest to spowodowane spadkiem ciśnienia w dyszy podczas drukowania w powietrzu, a niższy PA pomaga temu przeciwdziałać."
|
||||
|
||||
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
|
||||
msgstr "Domyślna szerokość linii, jeśli inne szerokości linii są ustawione na 0. Jeśli wyrażona w %, zostanie obliczona na podstawie średnicy dyszy."
|
||||
@@ -12917,6 +13032,22 @@ msgstr "Kierunek wzoru pełnego wypełnienia"
|
||||
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
|
||||
msgstr "Kąt wyznaczający główny kierunek linii dla wzoru pełnego wypełnienia"
|
||||
|
||||
msgid "Top layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the top solid infill and ironing lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the bottom solid infill lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sparse infill density"
|
||||
msgstr "Gęstość wypełnienia"
|
||||
|
||||
@@ -12924,12 +13055,12 @@ msgstr "Gęstość wypełnienia"
|
||||
msgid "Density of internal sparse infill, 100% turns all sparse infill into solid infill and internal solid infill pattern will be used."
|
||||
msgstr "Gęstość wewnętrznego rzadkiego wypełnienia, 100% przekształca całe rzadkie wypełnienie w wypełnienie pełne, a użyty zostanie wzór wewnętrznego pełnego wypełnienia"
|
||||
|
||||
msgid "Align infill direction to model"
|
||||
msgid "Align directions to model"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Aligns infill, bridge, ironing and surface fill directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, directions rotate with the model to maintain optimal strength characteristics."
|
||||
"Aligns infill, bridge, ironing, and top/bottom surface directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, these directions rotate together with the model so the printed features keep their intended orientation relative to the part, preserving optimal strength and surface characteristics regardless of how the model is placed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Insert solid layers"
|
||||
@@ -14656,6 +14787,10 @@ msgstr "Wyrównany"
|
||||
msgid "Aligned back"
|
||||
msgstr ""
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Back"
|
||||
msgstr "Tył"
|
||||
|
||||
msgid "Random"
|
||||
msgstr "Losowo"
|
||||
|
||||
@@ -15018,6 +15153,18 @@ msgstr "Wyczyść wszystkie używane ekstrudery"
|
||||
msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print."
|
||||
msgstr "Jeśli włączone, wszystkie extrudery do drukowania będą przygotowane na przedniej krawędzi stołu drukującego na początku druku."
|
||||
|
||||
msgid "Toolchange ordering"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Determines the order of tool changes on each layer.\n"
|
||||
"- Default: Starts with the last used extruder to minimize tool changes.\n"
|
||||
"- Cyclic: Uses a fixed tool sequence each layer. This sacrifices speed for better surface quality, as the extra toolchanges allow layers more time to cool."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cyclic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice gap closing radius"
|
||||
msgstr "Promień zamykania szpar"
|
||||
|
||||
@@ -15456,6 +15603,45 @@ msgstr "Grubość górnej powłoki"
|
||||
msgid "The number of top solid layers is increased when slicing if the thickness calculated by top shell layers is thinner than this value. This can avoid having too thin a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers."
|
||||
msgstr "Liczba górnych zwartych warstw jest zwiększana podczas cięcia, jeśli grubość obliczona przez górną warstwe powłoki jest cieńsza niż ta wartość. Można w ten sposób uniknąć zbyt cienkiej powłoki, gdy wysokość warstwy jest mała. 0 oznacza, że to ustawienie jest wyłączone, a grubość górnej powłoki jest absolutnie określona przez górne warstwy powłoki"
|
||||
|
||||
msgid "Anisotropic surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Anisotropic patterns on the top and bottom surfaces.\n"
|
||||
"Co-directional printing mode will be applied. For certain patterns, omni-directional filling provides color dispersion when using multi-colored or silk plastics.\n"
|
||||
"This option disable the gap fill.\n"
|
||||
"This option can increase a printing time."
|
||||
msgstr ""
|
||||
|
||||
msgid "Separated infills"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Centers the internal infill of each part on itself, as if it were sliced on its own, instead of on the whole assembly. Parts that touch or overlap are treated as one body and share a center; separate parts (or distinct 3D objects) each get their own.\n"
|
||||
"Useful when an assembly groups several objects that should each keep a consistent, self-centered infill.\n"
|
||||
"Affects line and grid patterns and rotation-template infills.\n"
|
||||
"Patterns locked to global coordinates (Gyroid, Honeycomb, TPMS, ...) are unaffected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Center surface pattern on"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Chooses where the centering point of centered top/bottom surface patterns (Archimedean Chords, Octagram Spiral) is placed.\n"
|
||||
" - Each Surface: centers the pattern on every individual surface region, so each island is symmetric on its own.\n"
|
||||
" - Each Model: centers the pattern on each connected body. Parts that touch or overlap share one center; parts detached from the rest each get their own.\n"
|
||||
" - Each Assembly: uses a single shared center for the whole object or assembly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Surface"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Assembly"
|
||||
msgstr ""
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "This is the speed at which traveling is done."
|
||||
msgstr "Prędkość przemieszczania, która jest szybsza i bez ekstruzji"
|
||||
@@ -15698,6 +15884,14 @@ msgstr "Skręt poliotworu"
|
||||
msgid "Rotate the polyhole every layer."
|
||||
msgstr "Obracaj poliotwor co warstwę."
|
||||
|
||||
msgid "Maximum Polyhole edge count"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Maximum number of polyhole edges\n"
|
||||
"This setting limits the amount of edges a polyhole can have"
|
||||
msgstr ""
|
||||
|
||||
msgid "G-code thumbnails"
|
||||
msgstr "Miniatury G-code"
|
||||
|
||||
@@ -19038,6 +19232,12 @@ msgstr "Liczba trójkątnych faset"
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr "Obliczanie, proszę czekać..."
|
||||
|
||||
msgid "Save these settings as default"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
|
||||
msgstr ""
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
@@ -19446,6 +19646,49 @@ msgstr ""
|
||||
"Unikaj odkształceń\n"
|
||||
"Czy wiesz, że podczas drukowania filamentami podatnymi na odkształcenia, takimi jak ABS, odpowiednie zwiększenie temperatury podgrzewanej płyty może zmniejszyć prawdopodobieństwo odkształceń?"
|
||||
|
||||
#~ msgid "Continue to sync filaments"
|
||||
#~ msgstr "Kontynuuj aby zsynchronizować filamenty"
|
||||
|
||||
#~ msgctxt "Sync_Nozzle_AMS"
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Anuluj"
|
||||
|
||||
#~ msgid "Print"
|
||||
#~ msgstr "Drukuj"
|
||||
|
||||
#~ msgid "in"
|
||||
#~ msgstr "cal"
|
||||
|
||||
#~ msgid "Object coordinates"
|
||||
#~ msgstr "Koordynaty obiektu"
|
||||
|
||||
#~ msgid "World coordinates"
|
||||
#~ msgstr "Współrzędne"
|
||||
|
||||
#~ msgid "Translate(Relative)"
|
||||
#~ msgstr "Przesunięcie równoległe (Względne)"
|
||||
|
||||
#~ msgid "Rotate (absolute)"
|
||||
#~ msgstr "Obrót (bezwzględny)"
|
||||
|
||||
#~ msgid "Part coordinates"
|
||||
#~ msgstr "Koordynaty części"
|
||||
|
||||
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
#~ msgstr "Włącz adaptacyjny wzrost ciśnienia dla nawisów (beta)"
|
||||
|
||||
#~ msgid "Pressure advance for bridges"
|
||||
#~ msgstr "Wzrost ciśnienia (PA) dla mostów"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
#~ "\n"
|
||||
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
#~ msgstr ""
|
||||
#~ "Wartość wzrostu ciśnienia dla mostów. Ustaw na 0, aby wyłączyć.\n"
|
||||
#~ "\n"
|
||||
#~ "Niższa wartość PA podczas drukowania mostów pomaga zredukować widoczność lekkiego niedoboru materiału, który może wystąpić bezpośrednio po ich wydruku. Jest to spowodowane spadkiem ciśnienia w dyszy podczas drukowania w powietrzu, a niższy PA pomaga temu przeciwdziałać."
|
||||
|
||||
#~ msgid "View control settings"
|
||||
#~ msgstr "Ustawienia kontrolowania widoku"
|
||||
|
||||
@@ -20871,10 +21114,6 @@ msgstr ""
|
||||
#~ msgid "Unselect"
|
||||
#~ msgstr "Odznacz"
|
||||
|
||||
#~ msgctxt "Verb"
|
||||
#~ msgid "Scale"
|
||||
#~ msgstr "Skala"
|
||||
|
||||
#~ msgid "Lift Z Enforcement"
|
||||
#~ msgstr "Wymuszenie podniesienia osi Z"
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OrcaSlicer V2.5.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-07-03 14:43+0200\n"
|
||||
"POT-Creation-Date: 2026-07-12 12:27-0300\n"
|
||||
"PO-Revision-Date: 2026-02-25 13:38+0300\n"
|
||||
"Last-Translator: Felix14_v2\n"
|
||||
"Language-Team: Felix14_v2 (ДС/ТГ: @felix14_v2, почта: aleks111001@list.ru), Andylg <andylg@yandex.ru>\n"
|
||||
@@ -173,6 +173,12 @@ msgstr "Заливка"
|
||||
msgid "Gap Fill"
|
||||
msgstr "Заливка вкраплений"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "Вертикальная линия"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "Горизонтальная линия"
|
||||
|
||||
#, boost-format
|
||||
msgid "Allows painting only on facets selected by: \"%1%\""
|
||||
msgstr "Ограничить область работы инструмента настройкой «%1%»"
|
||||
@@ -267,12 +273,6 @@ msgstr "Треугольник"
|
||||
msgid "Height Range"
|
||||
msgstr "Диапазон высот"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "Вертикальная линия"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "Горизонтальная линия"
|
||||
|
||||
msgid "Remove painted color"
|
||||
msgstr "Удаление окрашенного участка"
|
||||
|
||||
@@ -337,6 +337,7 @@ msgstr "Инструмент вращения"
|
||||
msgid "Optimize orientation"
|
||||
msgstr "Оптимизация положения модели"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Scale"
|
||||
msgstr "Масштаб"
|
||||
|
||||
@@ -346,8 +347,9 @@ msgstr "Инструмент изменения размера"
|
||||
msgid "Error: Please close all toolbar menus first"
|
||||
msgstr "Ошибка: сначала закройте текущий инструмент."
|
||||
|
||||
msgctxt "inches"
|
||||
msgid "in"
|
||||
msgstr "дюйм"
|
||||
msgstr ""
|
||||
|
||||
msgid "mm"
|
||||
msgstr "мм"
|
||||
@@ -379,6 +381,9 @@ msgstr "Коэф. масштаба"
|
||||
msgid "Object operations"
|
||||
msgstr "Операции с моделями"
|
||||
|
||||
msgid "Scale"
|
||||
msgstr "Масштаб"
|
||||
|
||||
msgid "Volume operations"
|
||||
msgstr "Булевы операции с телами"
|
||||
|
||||
@@ -400,26 +405,33 @@ msgstr "Сброс позиции"
|
||||
msgid "Reset rotation"
|
||||
msgstr "Сброс вращения"
|
||||
|
||||
msgid "Object coordinates"
|
||||
msgstr "Относительно модели"
|
||||
msgid "World"
|
||||
msgstr ""
|
||||
|
||||
msgid "World coordinates"
|
||||
msgstr "Относительно стола"
|
||||
msgid "Object"
|
||||
msgstr "Модель"
|
||||
|
||||
msgid "Translate(Relative)"
|
||||
msgstr "Перемещение (относительное)"
|
||||
msgid "Part"
|
||||
msgstr "Часть"
|
||||
|
||||
msgid "Relative"
|
||||
msgstr ""
|
||||
|
||||
msgid "Coordinate system used for transform actions."
|
||||
msgstr ""
|
||||
|
||||
msgid "Absolute"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset current rotation to the value when open the rotation tool."
|
||||
msgstr "Сбросить последние изменения ориентации"
|
||||
|
||||
msgid "Rotate (absolute)"
|
||||
msgstr "Поворот"
|
||||
|
||||
msgid "Reset current rotation to real zeros."
|
||||
msgstr "Сбросить ориентацию до изначальной"
|
||||
|
||||
msgid "Part coordinates"
|
||||
msgstr "Относительно части"
|
||||
msgctxt "Noun"
|
||||
msgid "Scale"
|
||||
msgstr "Масштаб"
|
||||
|
||||
#. TRN - Input label. Be short as possible
|
||||
msgid "Size"
|
||||
@@ -527,12 +539,6 @@ msgstr "Зазор"
|
||||
msgid "Spacing"
|
||||
msgstr "Отступ"
|
||||
|
||||
msgid "Part"
|
||||
msgstr "Часть"
|
||||
|
||||
msgid "Object"
|
||||
msgstr "Модель"
|
||||
|
||||
msgid ""
|
||||
"Click to flip the cut plane\n"
|
||||
"Drag to move the cut plane"
|
||||
@@ -1907,23 +1913,30 @@ msgstr "Открыть проект"
|
||||
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
|
||||
msgstr "Слишком старая версия Orca Slicer. Для корректной работы обновите программу до последней версии."
|
||||
|
||||
msgid "Cloud sync conflict:"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Cloud sync conflict for preset \"%s\":"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
|
||||
"This preset has a newer version in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
|
||||
"A preset with this name already exists in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
|
||||
"A preset with the same name was previously deleted from the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
|
||||
"There was an unexpected or unidentified preset conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
@@ -1932,6 +1945,12 @@ msgid ""
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Resolve cloud sync conflict"
|
||||
msgstr ""
|
||||
|
||||
@@ -2007,7 +2026,8 @@ msgstr "Количество пользовательских профилей,
|
||||
msgid "Sync user presets"
|
||||
msgstr "Синхронизировать пользовательские профили"
|
||||
|
||||
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
#, c-format, boost-format
|
||||
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
@@ -2217,6 +2237,9 @@ msgstr "Куб Orca"
|
||||
msgid "OrcaSliced Combo"
|
||||
msgstr "Нарезанная Orca"
|
||||
|
||||
msgid "Orca Badge"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Tolerance Test"
|
||||
msgstr "Тест точности Orca"
|
||||
|
||||
@@ -3642,9 +3665,9 @@ msgstr "Калибровка завершена. Теперь найдите н
|
||||
msgid "Save"
|
||||
msgstr "Сохранить"
|
||||
|
||||
# Используется в нескольких местах: в 2 местах в значении расположения (шва и камеры), в одном – на кнопке "назад" (калибровка бамбу)
|
||||
msgctxt "Navigation"
|
||||
msgid "Back"
|
||||
msgstr "Сзади"
|
||||
msgstr "Назад"
|
||||
|
||||
msgid "Example"
|
||||
msgstr "Пример"
|
||||
@@ -5050,6 +5073,7 @@ msgstr "Смена инструмента"
|
||||
msgid "Color change"
|
||||
msgstr "Смена цвета"
|
||||
|
||||
msgctxt "Noun"
|
||||
msgid "Print"
|
||||
msgstr "Печать"
|
||||
|
||||
@@ -5212,11 +5236,15 @@ msgstr "Избегать зону калибровки экструзии"
|
||||
msgid "Align to Y axis"
|
||||
msgstr "Выравнивать по оси Y"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Back"
|
||||
msgstr "Сзади"
|
||||
|
||||
msgctxt "Camera View"
|
||||
msgid "Left"
|
||||
msgstr "Слева"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Right"
|
||||
msgstr "Справа"
|
||||
|
||||
@@ -5299,6 +5327,9 @@ msgstr "Нависания"
|
||||
msgid "Outline"
|
||||
msgstr "Обводка выбранного"
|
||||
|
||||
msgid "Wireframe"
|
||||
msgstr ""
|
||||
|
||||
msgid "Realistic View"
|
||||
msgstr ""
|
||||
|
||||
@@ -5341,7 +5372,7 @@ msgstr "Объём:"
|
||||
msgid "Size:"
|
||||
msgstr "Размер:"
|
||||
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
|
||||
msgstr "В G-коде на %d слое (z = %.2lf мм) обнаружен конфликт путей. Пожалуйста, разместите конфликтующие модели дальше друг от друга (%s <-> %s)."
|
||||
|
||||
@@ -5571,6 +5602,10 @@ msgstr "Распечатать стол"
|
||||
msgid "Export G-code file"
|
||||
msgstr "Экспорт в G-код"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Print"
|
||||
msgstr "Печать"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "Экспорт стола в файл проекта"
|
||||
|
||||
@@ -5746,15 +5781,6 @@ msgstr "Экспортировать текущую конфигурацию в
|
||||
msgid "Export"
|
||||
msgstr "Экспорт"
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quit"
|
||||
msgstr "Выход"
|
||||
|
||||
@@ -5869,6 +5895,15 @@ msgstr "Вид"
|
||||
msgid "Preset Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr ""
|
||||
|
||||
msgid "Syncing presets from cloud…"
|
||||
msgstr ""
|
||||
|
||||
@@ -8117,6 +8152,35 @@ msgstr "Показывать настройки импорта STEP"
|
||||
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
|
||||
msgstr "Если включено, во время импорта STEP файла появится диалоговое окно настроек параметров импорта."
|
||||
|
||||
msgid "STEP importing: linear deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Linear deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.003 mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: angle deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Angle deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.5."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: Split into multiple objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: disabled."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quality level for Draco export"
|
||||
msgstr "Качество при экспорте в DRC"
|
||||
|
||||
@@ -8132,6 +8196,12 @@ msgstr ""
|
||||
"Чем меньше глубина, тем ниже качество и размер файла. Допустимый диапазон – от 8 до 30.\n"
|
||||
"0 – сжатие без потерь (представление с максимальной точностью)."
|
||||
|
||||
msgid "Store full source file paths in projects"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
|
||||
msgstr ""
|
||||
|
||||
msgid "Preset"
|
||||
msgstr "Профиль"
|
||||
|
||||
@@ -10372,12 +10442,8 @@ msgstr "Информация о сопле успешно синхронизир
|
||||
msgid "Successfully synchronized nozzle and AMS number information."
|
||||
msgstr "Информация о сопле и количестве AMS успешно синхронизирована."
|
||||
|
||||
msgid "Continue to sync filaments"
|
||||
msgstr "Продолжить синхронизацию филаментов"
|
||||
|
||||
msgctxt "Sync_Nozzle_AMS"
|
||||
msgid "Cancel"
|
||||
msgstr "Отмена"
|
||||
msgid "Do you want to continue to sync filaments?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Successfully synchronized filament color from printer."
|
||||
msgstr "Цвет материала успешно синхронизирован с принтером."
|
||||
@@ -11666,7 +11732,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -11680,7 +11746,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -12437,6 +12503,42 @@ msgstr "Плотность верхней поверхности"
|
||||
msgid "Density of top surface layer. A value of 100% creates a fully solid, smooth top layer. Reducing this value results in a textured top surface, according to the chosen top surface pattern. A value of 0% will result in only the walls on the top layer being created. Intended for aesthetic or functional purposes, not to fix issues such as over-extrusion."
|
||||
msgstr "Плотность верхней поверхности. Если установить 100%, поверхность будет сплошной и гладкой. Уменьшение этого параметра создаст текстурированную поверхность в соответствии с выбранным шаблоном заполнения верхней поверхности. При значении 0% останутся только стенки верхнего слоя. Эта функция предназначена для улучшения внешнего вида или функциональности объекта, но не для решения проблем, таких как чрезмерная экструзия."
|
||||
|
||||
msgid "Top surface expansion"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Expands the top surfaces by this distance to connect distinct top surfaces and fill gaps.\n"
|
||||
"Useful for cases where the top surface is interrupted by a raised feature, such as text on a plane.Expanding it removes the holes beneath these features and creates a continuous path with a better finish for printing on top.The expansion is applied to the original top surface, before any other processing such as bridging or overhang detection."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion wall margin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Using “Top surface expansion” may cause a surface that did not previously touch the model's outer walls to now do so.\n"
|
||||
"This can cause contraction marks (such as the hull line) on the outer walls.\n"
|
||||
"By adding a small margin, this contraction will not occur directly on the walls, thereby preventing a visible mark."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Direction in which the top surface expansion grows.\n"
|
||||
" - Inward grows into the holes and gaps left by features rising from the middle of a top surface.\n"
|
||||
" - Outward grows the outer edge of the surface, connecting surfaces separated by features that can divide a surface, such as a lattice pattern.\n"
|
||||
" - Inward and Outward does both."
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward and Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom surface pattern"
|
||||
msgstr "Шаблон заполнения нижней поверхности"
|
||||
|
||||
@@ -12509,6 +12611,18 @@ msgstr "Порог коротких периметров"
|
||||
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
|
||||
msgstr "Пороговое значение (радиус) для расчёта длины коротких периметров (по формуле длины окружности). Значение по умолчанию – 0 мм."
|
||||
|
||||
msgid "Small support perimeters"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
|
||||
msgstr ""
|
||||
|
||||
msgid "Small support perimeters threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "Walls printing order"
|
||||
msgstr "Порядок печати периметров"
|
||||
|
||||
@@ -12718,27 +12832,26 @@ msgstr ""
|
||||
"\n"
|
||||
"3. Проверьте порядок введённых значений (PA, расход, ускорения) и сохраните профиль материала."
|
||||
|
||||
# Тут речь о коэффициенте PA (адаптивный коэффициент PA), а не об адаптивном
|
||||
# алгоритме
|
||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
msgstr "Адаптивный PA на нависаниях (beta)"
|
||||
|
||||
msgid ""
|
||||
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
|
||||
msgid "Enable adaptive pressure advance within features (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pressure advance for bridges"
|
||||
msgstr "Коэффициент PA на мостах"
|
||||
msgid ""
|
||||
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
|
||||
"\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
|
||||
"\n"
|
||||
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
|
||||
msgstr ""
|
||||
|
||||
msgid "Static pressure advance for bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
|
||||
"equivalent walls (using adaptive settings if enabled).\n"
|
||||
"\n"
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
msgstr ""
|
||||
"Коэффициент Pressure Advance для мостов. Установите значение 0, если хотите отключить функцию.\n"
|
||||
"\n"
|
||||
"Более низкое значение PA при печати мостов помогает уменьшить появление небольшой недоэкструзии сразу после мостов. Это вызвано падением давления в сопле при печати в воздухе, и более низкое значение PA помогает предотвратить это."
|
||||
|
||||
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
|
||||
msgstr "Стандартная ширина линии для отключённых (установленных на 0) значений ниже. Можно указать процент от диаметра сопла."
|
||||
@@ -13125,6 +13238,22 @@ msgstr "Угол шаблона сплошного заполнения"
|
||||
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
|
||||
msgstr "Угол ориентации шаблона сплошного заполнения, который определяет начало или основное направление линий."
|
||||
|
||||
msgid "Top layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the top solid infill and ironing lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the bottom solid infill lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sparse infill density"
|
||||
msgstr "Плотность заполнения"
|
||||
|
||||
@@ -13132,12 +13261,12 @@ msgstr "Плотность заполнения"
|
||||
msgid "Density of internal sparse infill, 100% turns all sparse infill into solid infill and internal solid infill pattern will be used."
|
||||
msgstr "Плотность внутреннего заполнения, выраженная в процентах. 100% означает сплошное заполнение."
|
||||
|
||||
msgid "Align infill direction to model"
|
||||
msgstr "Вращать заполнение с моделью"
|
||||
msgid "Align directions to model"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Aligns infill, bridge, ironing and surface fill directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, directions rotate with the model to maintain optimal strength characteristics."
|
||||
"Aligns infill, bridge, ironing, and top/bottom surface directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, these directions rotate together with the model so the printed features keep their intended orientation relative to the part, preserving optimal strength and surface characteristics regardless of how the model is placed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Insert solid layers"
|
||||
@@ -15006,6 +15135,10 @@ msgstr "В углах"
|
||||
msgid "Aligned back"
|
||||
msgstr "В углах сзади"
|
||||
|
||||
# Используется в нескольких местах: в 2 местах в значении расположения (шва и камеры), в одном – на кнопке "назад" (калибровка бамбу)
|
||||
msgid "Back"
|
||||
msgstr "Сзади"
|
||||
|
||||
msgid "Random"
|
||||
msgstr "Случайная"
|
||||
|
||||
@@ -15407,6 +15540,18 @@ msgstr "Подготовка всех печатающих экструдеро
|
||||
msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print."
|
||||
msgstr "Если этот параметр включён, все печатающие экструдеры в начале печати будут подготавливаться на переднем крае стола."
|
||||
|
||||
msgid "Toolchange ordering"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Determines the order of tool changes on each layer.\n"
|
||||
"- Default: Starts with the last used extruder to minimize tool changes.\n"
|
||||
"- Cyclic: Uses a fixed tool sequence each layer. This sacrifices speed for better surface quality, as the extra toolchanges allow layers more time to cool."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cyclic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice gap closing radius"
|
||||
msgstr "Радиус закрытия зазоров полигональной сетки"
|
||||
|
||||
@@ -15890,6 +16035,45 @@ msgstr "Толщина оболочки сверху"
|
||||
msgid "The number of top solid layers is increased when slicing if the thickness calculated by top shell layers is thinner than this value. This can avoid having too thin a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers."
|
||||
msgstr "Минимальная толщина оболочки сверху в мм. Если толщина оболочки, рассчитанная по количеству сплошных слоёв сверху, меньше этого значения, количество сплошных слоёв сверху будет автоматически увеличено при нарезке, для удовлетворения минимальной толщины оболочки. Это позволяет избежать слишком тонкой оболочки при небольшой высоте слоя. 0 означает, что этот параметр отключён, а толщина оболочки сверху задаётся количеством сплошных слоёв сверху."
|
||||
|
||||
msgid "Anisotropic surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Anisotropic patterns on the top and bottom surfaces.\n"
|
||||
"Co-directional printing mode will be applied. For certain patterns, omni-directional filling provides color dispersion when using multi-colored or silk plastics.\n"
|
||||
"This option disable the gap fill.\n"
|
||||
"This option can increase a printing time."
|
||||
msgstr ""
|
||||
|
||||
msgid "Separated infills"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Centers the internal infill of each part on itself, as if it were sliced on its own, instead of on the whole assembly. Parts that touch or overlap are treated as one body and share a center; separate parts (or distinct 3D objects) each get their own.\n"
|
||||
"Useful when an assembly groups several objects that should each keep a consistent, self-centered infill.\n"
|
||||
"Affects line and grid patterns and rotation-template infills.\n"
|
||||
"Patterns locked to global coordinates (Gyroid, Honeycomb, TPMS, ...) are unaffected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Center surface pattern on"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Chooses where the centering point of centered top/bottom surface patterns (Archimedean Chords, Octagram Spiral) is placed.\n"
|
||||
" - Each Surface: centers the pattern on every individual surface region, so each island is symmetric on its own.\n"
|
||||
" - Each Model: centers the pattern on each connected body. Parts that touch or overlap share one center; parts detached from the rest each get their own.\n"
|
||||
" - Each Assembly: uses a single shared center for the whole object or assembly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Surface"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Assembly"
|
||||
msgstr ""
|
||||
|
||||
msgid "This is the speed at which traveling is done."
|
||||
msgstr "Ограничение скорости холостых перемещений печатающей головы."
|
||||
|
||||
@@ -16159,6 +16343,14 @@ msgstr "Скручивание многогранника"
|
||||
msgid "Rotate the polyhole every layer."
|
||||
msgstr "Вращение многогранного отверстия на каждом слое."
|
||||
|
||||
msgid "Maximum Polyhole edge count"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Maximum number of polyhole edges\n"
|
||||
"This setting limits the amount of edges a polyhole can have"
|
||||
msgstr ""
|
||||
|
||||
msgid "G-code thumbnails"
|
||||
msgstr "Эскизы в G-коде"
|
||||
|
||||
@@ -19594,6 +19786,12 @@ msgstr "Количество треугольников"
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr "Расчёт, подождите..."
|
||||
|
||||
msgid "Save these settings as default"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
|
||||
msgstr ""
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
@@ -20002,6 +20200,54 @@ msgstr ""
|
||||
"Предотвращение коробления материала\n"
|
||||
"Знаете ли вы, что при печати материалами, склонными к короблению, таких как ABS, повышение температуры подогреваемого стола может снизить эту вероятность?"
|
||||
|
||||
#~ msgid "Continue to sync filaments"
|
||||
#~ msgstr "Продолжить синхронизацию филаментов"
|
||||
|
||||
#~ msgctxt "Sync_Nozzle_AMS"
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Отмена"
|
||||
|
||||
#~ msgid "Align infill direction to model"
|
||||
#~ msgstr "Вращать заполнение с моделью"
|
||||
|
||||
#~ msgid "Print"
|
||||
#~ msgstr "Печать"
|
||||
|
||||
#~ msgid "in"
|
||||
#~ msgstr "дюйм"
|
||||
|
||||
#~ msgid "Object coordinates"
|
||||
#~ msgstr "Относительно модели"
|
||||
|
||||
#~ msgid "World coordinates"
|
||||
#~ msgstr "Относительно стола"
|
||||
|
||||
#~ msgid "Translate(Relative)"
|
||||
#~ msgstr "Перемещение (относительное)"
|
||||
|
||||
#~ msgid "Rotate (absolute)"
|
||||
#~ msgstr "Поворот"
|
||||
|
||||
#~ msgid "Part coordinates"
|
||||
#~ msgstr "Относительно части"
|
||||
|
||||
# Тут речь о коэффициенте PA (адаптивный коэффициент PA), а не об адаптивном
|
||||
# алгоритме
|
||||
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
#~ msgstr "Адаптивный PA на нависаниях (beta)"
|
||||
|
||||
#~ msgid "Pressure advance for bridges"
|
||||
#~ msgstr "Коэффициент PA на мостах"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
#~ "\n"
|
||||
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
#~ msgstr ""
|
||||
#~ "Коэффициент Pressure Advance для мостов. Установите значение 0, если хотите отключить функцию.\n"
|
||||
#~ "\n"
|
||||
#~ "Более низкое значение PA при печати мостов помогает уменьшить появление небольшой недоэкструзии сразу после мостов. Это вызвано падением давления в сопле при печати в воздухе, и более низкое значение PA помогает предотвратить это."
|
||||
|
||||
#~ msgid "Filament Sync Options"
|
||||
#~ msgstr "Настройки синхронизации"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-07-03 14:43+0200\n"
|
||||
"POT-Creation-Date: 2026-07-12 12:27-0300\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -159,6 +159,12 @@ msgstr "Fyll"
|
||||
msgid "Gap Fill"
|
||||
msgstr "Gap Fyllning"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "Vertikal"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "Horisontell"
|
||||
|
||||
#, boost-format
|
||||
msgid "Allows painting only on facets selected by: \"%1%\""
|
||||
msgstr "Tillåter målning endast på fasetter som valts av: ”%1%”"
|
||||
@@ -254,12 +260,6 @@ msgstr "Triangel"
|
||||
msgid "Height Range"
|
||||
msgstr "Höjd intervall"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "Vertikal"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "Horisontell"
|
||||
|
||||
msgid "Remove painted color"
|
||||
msgstr "Ta bort färgläggning"
|
||||
|
||||
@@ -324,6 +324,7 @@ msgstr ""
|
||||
msgid "Optimize orientation"
|
||||
msgstr "Optimisera placering"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Scale"
|
||||
msgstr "Skala"
|
||||
|
||||
@@ -333,8 +334,9 @@ msgstr ""
|
||||
msgid "Error: Please close all toolbar menus first"
|
||||
msgstr "FEL: Stäng alla verktygsmenyer först"
|
||||
|
||||
msgctxt "inches"
|
||||
msgid "in"
|
||||
msgstr "i"
|
||||
msgstr ""
|
||||
|
||||
msgid "mm"
|
||||
msgstr "mm"
|
||||
@@ -367,6 +369,9 @@ msgstr "Skalnings förhållande"
|
||||
msgid "Object operations"
|
||||
msgstr "Objekt Åtgärder"
|
||||
|
||||
msgid "Scale"
|
||||
msgstr "Skala"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Volume operations"
|
||||
msgstr "Volym Åtgärder"
|
||||
@@ -393,26 +398,33 @@ msgstr "Återställ Position"
|
||||
msgid "Reset rotation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Object coordinates"
|
||||
msgid "World"
|
||||
msgstr ""
|
||||
|
||||
msgid "World coordinates"
|
||||
msgstr "Världskoordinater"
|
||||
msgid "Object"
|
||||
msgstr "Objekt"
|
||||
|
||||
msgid "Translate(Relative)"
|
||||
msgid "Part"
|
||||
msgstr "Del"
|
||||
|
||||
msgid "Relative"
|
||||
msgstr ""
|
||||
|
||||
msgid "Coordinate system used for transform actions."
|
||||
msgstr ""
|
||||
|
||||
msgid "Absolute"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset current rotation to the value when open the rotation tool."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rotate (absolute)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset current rotation to real zeros."
|
||||
msgstr ""
|
||||
|
||||
msgid "Part coordinates"
|
||||
msgstr ""
|
||||
msgctxt "Noun"
|
||||
msgid "Scale"
|
||||
msgstr "Skala"
|
||||
|
||||
#. TRN - Input label. Be short as possible
|
||||
msgid "Size"
|
||||
@@ -517,12 +529,6 @@ msgstr "Glipa"
|
||||
msgid "Spacing"
|
||||
msgstr "Mellanrum"
|
||||
|
||||
msgid "Part"
|
||||
msgstr "Del"
|
||||
|
||||
msgid "Object"
|
||||
msgstr "Objekt"
|
||||
|
||||
msgid ""
|
||||
"Click to flip the cut plane\n"
|
||||
"Drag to move the cut plane"
|
||||
@@ -1841,23 +1847,30 @@ msgstr "Öppna Projekt"
|
||||
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
|
||||
msgstr "Versionen av Orca Slicer är för låg och behöver uppdateras till den senaste versionen innan den kan användas normalt"
|
||||
|
||||
msgid "Cloud sync conflict:"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Cloud sync conflict for preset \"%s\":"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
|
||||
"This preset has a newer version in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
|
||||
"A preset with this name already exists in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
|
||||
"A preset with the same name was previously deleted from the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
|
||||
"There was an unexpected or unidentified preset conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
@@ -1866,6 +1879,12 @@ msgid ""
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Resolve cloud sync conflict"
|
||||
msgstr ""
|
||||
|
||||
@@ -1933,7 +1952,8 @@ msgstr "Antalet användar inställningar som cachats i molnet har överskridit d
|
||||
msgid "Sync user presets"
|
||||
msgstr "Synkronisera användar inställningar"
|
||||
|
||||
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
#, c-format, boost-format
|
||||
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
@@ -2155,6 +2175,9 @@ msgstr ""
|
||||
msgid "OrcaSliced Combo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Badge"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Tolerance Test"
|
||||
msgstr ""
|
||||
|
||||
@@ -3588,7 +3611,7 @@ msgstr "Kalibreringen klar. Vänligen hitta den mest enhetliga extruderingslinje
|
||||
msgid "Save"
|
||||
msgstr "Spara"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgctxt "Navigation"
|
||||
msgid "Back"
|
||||
msgstr "Tillbaka"
|
||||
|
||||
@@ -4946,6 +4969,7 @@ msgstr ""
|
||||
msgid "Color change"
|
||||
msgstr "Färg byte"
|
||||
|
||||
msgctxt "Noun"
|
||||
msgid "Print"
|
||||
msgstr "Skriv ut"
|
||||
|
||||
@@ -5105,11 +5129,15 @@ msgstr "Undvik kalibrerings området"
|
||||
msgid "Align to Y axis"
|
||||
msgstr "Justera mot Y-axeln"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Back"
|
||||
msgstr "Tillbaka"
|
||||
|
||||
msgctxt "Camera View"
|
||||
msgid "Left"
|
||||
msgstr "Vänster"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Right"
|
||||
msgstr "Höger"
|
||||
|
||||
@@ -5188,6 +5216,9 @@ msgstr ""
|
||||
msgid "Outline"
|
||||
msgstr "Kontur"
|
||||
|
||||
msgid "Wireframe"
|
||||
msgstr ""
|
||||
|
||||
msgid "Realistic View"
|
||||
msgstr ""
|
||||
|
||||
@@ -5231,7 +5262,7 @@ msgstr "Volym:"
|
||||
msgid "Size:"
|
||||
msgstr "Storlek:"
|
||||
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
|
||||
msgstr ""
|
||||
|
||||
@@ -5430,6 +5461,10 @@ msgstr "Skriv ut byggplattan"
|
||||
msgid "Export G-code file"
|
||||
msgstr "Exportera G-kod filen"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Print"
|
||||
msgstr "Skriv ut"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "Exportera byggplattans beredda fil"
|
||||
|
||||
@@ -5603,15 +5638,6 @@ msgstr "Exportera aktuell konfiguration till filer"
|
||||
msgid "Export"
|
||||
msgstr "Exportera"
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quit"
|
||||
msgstr "Avsluta"
|
||||
|
||||
@@ -5728,6 +5754,15 @@ msgstr "Vy"
|
||||
msgid "Preset Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr ""
|
||||
|
||||
msgid "Syncing presets from cloud…"
|
||||
msgstr ""
|
||||
|
||||
@@ -7938,6 +7973,35 @@ msgstr ""
|
||||
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: linear deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Linear deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.003 mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: angle deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Angle deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.5."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: Split into multiple objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: disabled."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quality level for Draco export"
|
||||
msgstr ""
|
||||
|
||||
@@ -7950,6 +8014,12 @@ msgid ""
|
||||
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
|
||||
msgstr ""
|
||||
|
||||
msgid "Store full source file paths in projects"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
|
||||
msgstr ""
|
||||
|
||||
msgid "Preset"
|
||||
msgstr "Förinställd"
|
||||
|
||||
@@ -10111,13 +10181,9 @@ msgstr ""
|
||||
msgid "Successfully synchronized nozzle and AMS number information."
|
||||
msgstr ""
|
||||
|
||||
msgid "Continue to sync filaments"
|
||||
msgid "Do you want to continue to sync filaments?"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "Sync_Nozzle_AMS"
|
||||
msgid "Cancel"
|
||||
msgstr "Avbryt"
|
||||
|
||||
msgid "Successfully synchronized filament color from printer."
|
||||
msgstr ""
|
||||
|
||||
@@ -11411,7 +11477,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -11425,7 +11491,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -12067,6 +12133,42 @@ msgstr ""
|
||||
msgid "Density of top surface layer. A value of 100% creates a fully solid, smooth top layer. Reducing this value results in a textured top surface, according to the chosen top surface pattern. A value of 0% will result in only the walls on the top layer being created. Intended for aesthetic or functional purposes, not to fix issues such as over-extrusion."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top surface expansion"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Expands the top surfaces by this distance to connect distinct top surfaces and fill gaps.\n"
|
||||
"Useful for cases where the top surface is interrupted by a raised feature, such as text on a plane.Expanding it removes the holes beneath these features and creates a continuous path with a better finish for printing on top.The expansion is applied to the original top surface, before any other processing such as bridging or overhang detection."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion wall margin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Using “Top surface expansion” may cause a surface that did not previously touch the model's outer walls to now do so.\n"
|
||||
"This can cause contraction marks (such as the hull line) on the outer walls.\n"
|
||||
"By adding a small margin, this contraction will not occur directly on the walls, thereby preventing a visible mark."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Direction in which the top surface expansion grows.\n"
|
||||
" - Inward grows into the holes and gaps left by features rising from the middle of a top surface.\n"
|
||||
" - Outward grows the outer edge of the surface, connecting surfaces separated by features that can divide a surface, such as a lattice pattern.\n"
|
||||
" - Inward and Outward does both."
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward and Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom surface pattern"
|
||||
msgstr "Botten ytans mönster"
|
||||
|
||||
@@ -12107,6 +12209,18 @@ msgstr ""
|
||||
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
|
||||
msgstr "Detta ställer in tröskelvärdet för liten perimeterlängd. Standardgränsen är 0mm"
|
||||
|
||||
msgid "Small support perimeters"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
|
||||
msgstr ""
|
||||
|
||||
msgid "Small support perimeters threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "Walls printing order"
|
||||
msgstr ""
|
||||
|
||||
@@ -12262,21 +12376,25 @@ msgid ""
|
||||
"3. Enter the triplets of PA values, Flow and Accelerations in the text box here and save your filament profile."
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
msgid "Enable adaptive pressure advance within features (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
|
||||
msgstr ""
|
||||
|
||||
msgid "Pressure advance for bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
|
||||
"\n"
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
|
||||
"\n"
|
||||
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
|
||||
msgstr ""
|
||||
|
||||
msgid "Static pressure advance for bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
|
||||
"equivalent walls (using adaptive settings if enabled).\n"
|
||||
"\n"
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
msgstr ""
|
||||
|
||||
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
|
||||
@@ -12643,6 +12761,22 @@ msgstr ""
|
||||
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the top solid infill and ironing lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the bottom solid infill lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sparse infill density"
|
||||
msgstr "Sparsam ifyllnads densitet"
|
||||
|
||||
@@ -12650,12 +12784,12 @@ msgstr "Sparsam ifyllnads densitet"
|
||||
msgid "Density of internal sparse infill, 100% turns all sparse infill into solid infill and internal solid infill pattern will be used."
|
||||
msgstr ""
|
||||
|
||||
msgid "Align infill direction to model"
|
||||
msgid "Align directions to model"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Aligns infill, bridge, ironing and surface fill directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, directions rotate with the model to maintain optimal strength characteristics."
|
||||
"Aligns infill, bridge, ironing, and top/bottom surface directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, these directions rotate together with the model so the printed features keep their intended orientation relative to the part, preserving optimal strength and surface characteristics regardless of how the model is placed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Insert solid layers"
|
||||
@@ -14315,6 +14449,10 @@ msgstr "Linjerad"
|
||||
msgid "Aligned back"
|
||||
msgstr ""
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Back"
|
||||
msgstr "Tillbaka"
|
||||
|
||||
msgid "Random"
|
||||
msgstr "Slumpmässig"
|
||||
|
||||
@@ -14658,6 +14796,18 @@ msgstr ""
|
||||
msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print."
|
||||
msgstr ""
|
||||
|
||||
msgid "Toolchange ordering"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Determines the order of tool changes on each layer.\n"
|
||||
"- Default: Starts with the last used extruder to minimize tool changes.\n"
|
||||
"- Cyclic: Uses a fixed tool sequence each layer. This sacrifices speed for better surface quality, as the extra toolchanges allow layers more time to cool."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cyclic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice gap closing radius"
|
||||
msgstr "Bered spaltens stängningsradie"
|
||||
|
||||
@@ -15085,6 +15235,45 @@ msgstr "Övre skalets tjocklek"
|
||||
msgid "The number of top solid layers is increased when slicing if the thickness calculated by top shell layers is thinner than this value. This can avoid having too thin a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers."
|
||||
msgstr "Antal solida övre lager ökas när tjockleken kalkyleras och övre skalet är tunnare än detta värde. Detta kan undvika att ha för tunt skal när lagerhöjden är liten. 0 betyder att den här inställningen är inaktiverad och tjockleken på det övre skalet bestäms av de övre skal lagerna"
|
||||
|
||||
msgid "Anisotropic surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Anisotropic patterns on the top and bottom surfaces.\n"
|
||||
"Co-directional printing mode will be applied. For certain patterns, omni-directional filling provides color dispersion when using multi-colored or silk plastics.\n"
|
||||
"This option disable the gap fill.\n"
|
||||
"This option can increase a printing time."
|
||||
msgstr ""
|
||||
|
||||
msgid "Separated infills"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Centers the internal infill of each part on itself, as if it were sliced on its own, instead of on the whole assembly. Parts that touch or overlap are treated as one body and share a center; separate parts (or distinct 3D objects) each get their own.\n"
|
||||
"Useful when an assembly groups several objects that should each keep a consistent, self-centered infill.\n"
|
||||
"Affects line and grid patterns and rotation-template infills.\n"
|
||||
"Patterns locked to global coordinates (Gyroid, Honeycomb, TPMS, ...) are unaffected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Center surface pattern on"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Chooses where the centering point of centered top/bottom surface patterns (Archimedean Chords, Octagram Spiral) is placed.\n"
|
||||
" - Each Surface: centers the pattern on every individual surface region, so each island is symmetric on its own.\n"
|
||||
" - Each Model: centers the pattern on each connected body. Parts that touch or overlap share one center; parts detached from the rest each get their own.\n"
|
||||
" - Each Assembly: uses a single shared center for the whole object or assembly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Surface"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Assembly"
|
||||
msgstr ""
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "This is the speed at which traveling is done."
|
||||
msgstr "Förflyttnings hastighet"
|
||||
@@ -15309,6 +15498,14 @@ msgstr ""
|
||||
msgid "Rotate the polyhole every layer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Maximum Polyhole edge count"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Maximum number of polyhole edges\n"
|
||||
"This setting limits the amount of edges a polyhole can have"
|
||||
msgstr ""
|
||||
|
||||
msgid "G-code thumbnails"
|
||||
msgstr ""
|
||||
|
||||
@@ -18578,6 +18775,12 @@ msgstr ""
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Save these settings as default"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
|
||||
msgstr ""
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
@@ -18956,6 +19159,19 @@ msgstr ""
|
||||
"Undvik vridning\n"
|
||||
"Visste du att när du skriver ut material som är benägna att vrida, såsom ABS, kan en lämplig ökning av värmebäddens temperatur minska sannolikheten för vridning?"
|
||||
|
||||
#~ msgctxt "Sync_Nozzle_AMS"
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Avbryt"
|
||||
|
||||
#~ msgid "Print"
|
||||
#~ msgstr "Skriv ut"
|
||||
|
||||
#~ msgid "in"
|
||||
#~ msgstr "i"
|
||||
|
||||
#~ msgid "World coordinates"
|
||||
#~ msgstr "Världskoordinater"
|
||||
|
||||
#~ msgid "View control settings"
|
||||
#~ msgstr "Kontroll inställningar"
|
||||
|
||||
@@ -20123,10 +20339,6 @@ msgstr ""
|
||||
#~ msgid "Thick bridges"
|
||||
#~ msgstr "Tjocka bridges"
|
||||
|
||||
#~ msgctxt "Verb"
|
||||
#~ msgid "Scale"
|
||||
#~ msgstr "Skala"
|
||||
|
||||
#~ msgid "Z-hop when retract"
|
||||
#~ msgstr "Z-hopp vid retraktion"
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-07-03 14:43+0200\n"
|
||||
"POT-Creation-Date: 2026-07-12 12:27-0300\n"
|
||||
"PO-Revision-Date: 2026-06-19 13:40+0700\n"
|
||||
"Last-Translator: Icezaza\n"
|
||||
"Language-Team: Thai\n"
|
||||
@@ -162,6 +162,12 @@ msgstr "เติม"
|
||||
msgid "Gap Fill"
|
||||
msgstr "เติมช่องว่าง"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "แนวตั้ง"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "แนวนอน"
|
||||
|
||||
#, boost-format
|
||||
msgid "Allows painting only on facets selected by: \"%1%\""
|
||||
msgstr "อนุญาตให้วาดภาพเฉพาะด้านที่เลือกโดย: \"%1%\""
|
||||
@@ -254,12 +260,6 @@ msgstr "สามเหลี่ยม"
|
||||
msgid "Height Range"
|
||||
msgstr "ช่วงความสูง"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "แนวตั้ง"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "แนวนอน"
|
||||
|
||||
msgid "Remove painted color"
|
||||
msgstr "ลบสีที่ทาสี"
|
||||
|
||||
@@ -324,6 +324,7 @@ msgstr "Gizmo-หมุน"
|
||||
msgid "Optimize orientation"
|
||||
msgstr "ปรับการวางแนวให้เหมาะสม"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Scale"
|
||||
msgstr "ปรับขนาด"
|
||||
|
||||
@@ -333,8 +334,9 @@ msgstr "Gizmo-ขนาด"
|
||||
msgid "Error: Please close all toolbar menus first"
|
||||
msgstr "ข้อผิดพลาด: โปรดปิดเมนูแถบเครื่องมือทั้งหมดก่อน"
|
||||
|
||||
msgctxt "inches"
|
||||
msgid "in"
|
||||
msgstr "นิ้ว"
|
||||
msgstr ""
|
||||
|
||||
msgid "mm"
|
||||
msgstr "มม."
|
||||
@@ -366,6 +368,9 @@ msgstr "อัตราส่วนการปรับขนาด"
|
||||
msgid "Object operations"
|
||||
msgstr "การทำงานกับวัตถุ"
|
||||
|
||||
msgid "Scale"
|
||||
msgstr "ปรับขนาด"
|
||||
|
||||
msgid "Volume operations"
|
||||
msgstr "การทำงานกับวอลลุ่ม"
|
||||
|
||||
@@ -387,26 +392,33 @@ msgstr "รีเซ็ตตำแหน่ง"
|
||||
msgid "Reset rotation"
|
||||
msgstr "รีเซ็ตการหมุน"
|
||||
|
||||
msgid "Object coordinates"
|
||||
msgstr "พิกัดวัตถุ"
|
||||
msgid "World"
|
||||
msgstr ""
|
||||
|
||||
msgid "World coordinates"
|
||||
msgstr "พิกัดโลก"
|
||||
msgid "Object"
|
||||
msgstr "วัตถุ"
|
||||
|
||||
msgid "Translate(Relative)"
|
||||
msgstr "เลื่อนตำแหน่ง (แบบสัมพันธ์)"
|
||||
msgid "Part"
|
||||
msgstr "ชิ้นส่วน"
|
||||
|
||||
msgid "Relative"
|
||||
msgstr ""
|
||||
|
||||
msgid "Coordinate system used for transform actions."
|
||||
msgstr ""
|
||||
|
||||
msgid "Absolute"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset current rotation to the value when open the rotation tool."
|
||||
msgstr "รีเซ็ตการหมุนปัจจุบันเป็นค่าเมื่อเปิดเครื่องมือการหมุน"
|
||||
|
||||
msgid "Rotate (absolute)"
|
||||
msgstr "หมุน (สัมบูรณ์)"
|
||||
|
||||
msgid "Reset current rotation to real zeros."
|
||||
msgstr "รีเซ็ตการหมุนปัจจุบันให้เป็นศูนย์จริง"
|
||||
|
||||
msgid "Part coordinates"
|
||||
msgstr "พิกัดส่วน"
|
||||
msgctxt "Noun"
|
||||
msgid "Scale"
|
||||
msgstr "ปรับขนาด"
|
||||
|
||||
#. TRN - Input label. Be short as possible
|
||||
msgid "Size"
|
||||
@@ -511,12 +523,6 @@ msgstr "ช่องว่าง"
|
||||
msgid "Spacing"
|
||||
msgstr "ระยะห่าง"
|
||||
|
||||
msgid "Part"
|
||||
msgstr "ชิ้นส่วน"
|
||||
|
||||
msgid "Object"
|
||||
msgstr "วัตถุ"
|
||||
|
||||
msgid ""
|
||||
"Click to flip the cut plane\n"
|
||||
"Drag to move the cut plane"
|
||||
@@ -1850,33 +1856,32 @@ msgstr "เปิดโปรเจกต์"
|
||||
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
|
||||
msgstr "Orca Slicer เวอร์ชันต่ำเกินไปและจำเป็นต้องอัปเดตเป็นเวอร์ชันล่าสุดก่อนจึงจะสามารถใช้งานได้ตามปกติ"
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgid "Cloud sync conflict:"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Cloud sync conflict for preset \"%s\":"
|
||||
msgstr ""
|
||||
"ความขัดแย้งในการซิงก์ Cloud: ค่าที่ตั้งไว้ล่วงหน้านี้มีเวอร์ชันใหม่กว่าใน Orca Cloud\n"
|
||||
"ดึงข้อมูลจะดาวน์โหลดสำเนาจากคลาวด์ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ"
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
|
||||
"This preset has a newer version in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
"ความขัดแย้งในการซิงก์ Cloud: มีค่าที่ตั้งไว้ล่วงหน้าชื่อนี้อยู่ใน Orca Cloud แล้ว\n"
|
||||
"ดึงข้อมูลจะดาวน์โหลดสำเนาจากคลาวด์ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ"
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
|
||||
"A preset with this name already exists in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"A preset with the same name was previously deleted from the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
"ความขัดแย้งในการซิงก์ Cloud: ค่าที่ตั้งไว้ล่วงหน้าชื่อเดียวกันเคยถูกลบจากคลาวด์แล้ว\n"
|
||||
"ลบจะลบค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ"
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
|
||||
"There was an unexpected or unidentified preset conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
"ความขัดแย้งในการซิงก์ Cloud: พบความขัดแย้งของค่าที่ตั้งไว้ล่วงหน้าที่ไม่คาดคิดหรือระบุไม่ได้\n"
|
||||
"ดึงข้อมูลจะดาวน์โหลดสำเนาจากคลาวด์ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ"
|
||||
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy with your local preset changes.\n"
|
||||
@@ -1885,6 +1890,12 @@ msgstr ""
|
||||
"การบังคับส่งจะเขียนทับสำเนาบนคลาวด์ด้วยการเปลี่ยนแปลงค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ\n"
|
||||
"คุณต้องการดำเนินการต่อหรือไม่?"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Resolve cloud sync conflict"
|
||||
msgstr "แก้ไขความขัดแย้งการซิงค์คลาวด์"
|
||||
|
||||
@@ -1964,8 +1975,9 @@ msgstr "จำนวนค่าที่ตั้งไว้ล่วงหน
|
||||
msgid "Sync user presets"
|
||||
msgstr "ซิงค์การตั้งค่าล่วงหน้าของผู้ใช้"
|
||||
|
||||
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
msgstr "เนื้อหาที่ตั้งไว้ล่วงหน้ามีขนาดใหญ่เกินกว่าจะซิงค์กับระบบคลาวด์ (เกิน 1MB) โปรดลดขนาดที่กำหนดไว้ล่วงหน้าโดยการลบการกำหนดค่าที่กำหนดเองออกหรือใช้เฉพาะในเครื่องเท่านั้น"
|
||||
#, c-format, boost-format
|
||||
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s updated from %s to %s"
|
||||
@@ -2174,6 +2186,9 @@ msgstr "ออร์ก้าคิวบ์"
|
||||
msgid "OrcaSliced Combo"
|
||||
msgstr "OrcaSliced Combo"
|
||||
|
||||
msgid "Orca Badge"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Tolerance Test"
|
||||
msgstr "การทดสอบค่าความเผื่อ Orca"
|
||||
|
||||
@@ -3552,6 +3567,7 @@ msgstr "การสอบเทียบเสร็จสิ้น โปร
|
||||
msgid "Save"
|
||||
msgstr "บันทึก"
|
||||
|
||||
msgctxt "Navigation"
|
||||
msgid "Back"
|
||||
msgstr "กลับ"
|
||||
|
||||
@@ -4900,6 +4916,7 @@ msgstr "การเปลี่ยนแปลงเครื่องมือ
|
||||
msgid "Color change"
|
||||
msgstr "เปลี่ยนสี"
|
||||
|
||||
msgctxt "Noun"
|
||||
msgid "Print"
|
||||
msgstr "พิมพ์"
|
||||
|
||||
@@ -5059,11 +5076,15 @@ msgstr "หลีกเลี่ยงบริเวณการสอบเท
|
||||
msgid "Align to Y axis"
|
||||
msgstr "จัดแนวตามแกน Y"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Back"
|
||||
msgstr "กลับ"
|
||||
|
||||
msgctxt "Camera View"
|
||||
msgid "Left"
|
||||
msgstr "ซ้าย"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Right"
|
||||
msgstr "ขวา"
|
||||
|
||||
@@ -5142,6 +5163,9 @@ msgstr "ส่วนยื่น"
|
||||
msgid "Outline"
|
||||
msgstr "เส้นขอบ"
|
||||
|
||||
msgid "Wireframe"
|
||||
msgstr ""
|
||||
|
||||
msgid "Realistic View"
|
||||
msgstr "มุมมองสมจริง"
|
||||
|
||||
@@ -5184,7 +5208,7 @@ msgstr "ปริมาณ:"
|
||||
msgid "Size:"
|
||||
msgstr "ขนาด:"
|
||||
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
|
||||
msgstr "พบความขัดแย้งของเส้นทางรหัส G ที่เลเยอร์ %d, Z = %.2lfmm โปรดแยกวัตถุที่ขัดแย้งกันให้ไกลออกไป (%s <-> %s)"
|
||||
|
||||
@@ -5383,6 +5407,10 @@ msgstr "พิมพ์ฐานพิมพ์"
|
||||
msgid "Export G-code file"
|
||||
msgstr "ส่งออกไฟล์ G-code"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Print"
|
||||
msgstr "พิมพ์"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "ส่งออกไฟล์แผ่นสไลซ์บาง ๆ"
|
||||
|
||||
@@ -5556,15 +5584,6 @@ msgstr "ส่งออกการกำหนดค่าปัจจุบั
|
||||
msgid "Export"
|
||||
msgstr "ส่งออก"
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr "ซิงค์พรีเซ็ต"
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr "ดึงและใช้ค่าที่ตั้งล่วงหน้าล่าสุดจาก OrcaCloud"
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr "คุณต้องเข้าสู่ระบบเพื่อซิงค์ค่าที่ตั้งล่วงหน้าจากคลาวด์"
|
||||
|
||||
msgid "Quit"
|
||||
msgstr "ออก"
|
||||
|
||||
@@ -5679,6 +5698,15 @@ msgstr "มุมมอง"
|
||||
msgid "Preset Bundle"
|
||||
msgstr "ชุดที่ตั้งไว้ล่วงหน้า"
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr "ซิงค์พรีเซ็ต"
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr "ดึงและใช้ค่าที่ตั้งล่วงหน้าล่าสุดจาก OrcaCloud"
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr "คุณต้องเข้าสู่ระบบเพื่อซิงค์ค่าที่ตั้งล่วงหน้าจากคลาวด์"
|
||||
|
||||
msgid "Syncing presets from cloud…"
|
||||
msgstr "กำลังซิงค์ค่าที่ตั้งล่วงหน้าจากคลาวด์..."
|
||||
|
||||
@@ -7863,6 +7891,35 @@ msgstr "แสดงตัวเลือกเมื่อนำเข้าไ
|
||||
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
|
||||
msgstr "หากเปิดใช้งาน กล่องโต้ตอบการตั้งค่าพารามิเตอร์จะปรากฏขึ้นระหว่างการนำเข้าไฟล์ STEP"
|
||||
|
||||
msgid "STEP importing: linear deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Linear deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.003 mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: angle deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Angle deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.5."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: Split into multiple objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: disabled."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quality level for Draco export"
|
||||
msgstr "ระดับคุณภาพสำหรับการส่งออกของ Draco"
|
||||
|
||||
@@ -7878,6 +7935,12 @@ msgstr ""
|
||||
"0 = การบีบอัดแบบไม่สูญเสีย (รูปทรงเรขาคณิตจะถูกรักษาไว้อย่างแม่นยำเต็มที่) ค่าการสูญเสียที่ถูกต้องมีตั้งแต่ 8 ถึง 30\n"
|
||||
"ค่าที่ต่ำกว่าจะทำให้ไฟล์มีขนาดเล็กลง แต่สูญเสียรายละเอียดทางเรขาคณิตมากขึ้น ค่าที่สูงกว่าจะรักษารายละเอียดได้มากขึ้นโดยที่ไฟล์มีขนาดใหญ่กว่า"
|
||||
|
||||
msgid "Store full source file paths in projects"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
|
||||
msgstr ""
|
||||
|
||||
msgid "Preset"
|
||||
msgstr "พรีเซ็ต"
|
||||
|
||||
@@ -10078,12 +10141,8 @@ msgstr "ซิงโครไนซ์ข้อมูลหัวฉีดสำ
|
||||
msgid "Successfully synchronized nozzle and AMS number information."
|
||||
msgstr "ซิงโครไนซ์ข้อมูลหัวฉีดและหมายเลข AMS เรียบร้อยแล้ว"
|
||||
|
||||
msgid "Continue to sync filaments"
|
||||
msgstr "ทำการซิงค์ฟิลาเมนต์ต่อไป"
|
||||
|
||||
msgctxt "Sync_Nozzle_AMS"
|
||||
msgid "Cancel"
|
||||
msgstr "ยกเลิก"
|
||||
msgid "Do you want to continue to sync filaments?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Successfully synchronized filament color from printer."
|
||||
msgstr "ซิงโครไนซ์สีฟิลาเมนต์จากเครื่องพิมพ์สำเร็จแล้ว"
|
||||
@@ -11355,19 +11414,11 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
msgstr ""
|
||||
"แทนที่มุมสะพานด้านนอก\n"
|
||||
"หากปล่อยเป็นศูนย์ มุมสะพานจะคำนวณอัตโนมัติสำหรับสะพานแต่ละจุด\n"
|
||||
"มิฉะนั้นจะใช้มุมที่กำหนดตาม:\n"
|
||||
" - พิกัดสัมบูรณ์\n"
|
||||
" - พิกัดสัมบูรณ์ + การหมุนโมเดล: หากเปิดใช้งานจัดทิศทางไส้ในให้สอดคล้องกับโมเดล\n"
|
||||
" - มุมอัตโนมัติที่เหมาะสม + ค่านี้: หากเปิดใช้งาน 'มุมสะพานแบบสัมพันธ์'\n"
|
||||
"\n"
|
||||
"ใช้ 180° สำหรับมุมสัมบูรณ์ศูนย์"
|
||||
|
||||
msgid "Internal bridge infill direction"
|
||||
msgstr "ทิศทางไส้ในสะพานภายใน"
|
||||
@@ -11377,19 +11428,11 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
msgstr ""
|
||||
"แทนที่มุมสะพานด้านใน\n"
|
||||
"หากปล่อยเป็นศูนย์ มุมสะพานจะคำนวณอัตโนมัติสำหรับสะพานแต่ละจุด\n"
|
||||
"มิฉะนั้นจะใช้มุมที่กำหนดตาม:\n"
|
||||
" - พิกัดสัมบูรณ์\n"
|
||||
" - พิกัดสัมบูรณ์ + การหมุนโมเดล: หากเปิดใช้งานจัดทิศทางไส้ในให้สอดคล้องกับโมเดล\n"
|
||||
" - มุมอัตโนมัติที่เหมาะสม + ค่านี้: หากเปิดใช้งาน 'มุมสะพานแบบสัมพันธ์'\n"
|
||||
"\n"
|
||||
"ใช้ 180° สำหรับมุมสัมบูรณ์ศูนย์"
|
||||
|
||||
msgid "Relative bridge angle"
|
||||
msgstr "มุมสะพานแบบสัมพันธ์"
|
||||
@@ -12159,6 +12202,42 @@ msgstr "ความหนาแน่นผิวด้านบน"
|
||||
msgid "Density of top surface layer. A value of 100% creates a fully solid, smooth top layer. Reducing this value results in a textured top surface, according to the chosen top surface pattern. A value of 0% will result in only the walls on the top layer being created. Intended for aesthetic or functional purposes, not to fix issues such as over-extrusion."
|
||||
msgstr "ความหนาแน่นของชั้นผิวด้านบน ค่า 100% จะสร้างชั้นบนสุดที่เรียบและแข็งเต็มที่ การลดค่านี้ส่งผลให้พื้นผิวด้านบนมีพื้นผิวตามรูปแบบพื้นผิวด้านบนที่เลือก ค่า 0% จะส่งผลให้มีการสร้างเฉพาะผนังชั้นบนสุดเท่านั้น มีวัตถุประสงค์เพื่อความสวยงามหรือการใช้งาน ไม่ใช่เพื่อแก้ไขปัญหา เช่น การอัดขึ้นรูปมากเกินไป"
|
||||
|
||||
msgid "Top surface expansion"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Expands the top surfaces by this distance to connect distinct top surfaces and fill gaps.\n"
|
||||
"Useful for cases where the top surface is interrupted by a raised feature, such as text on a plane.Expanding it removes the holes beneath these features and creates a continuous path with a better finish for printing on top.The expansion is applied to the original top surface, before any other processing such as bridging or overhang detection."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion wall margin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Using “Top surface expansion” may cause a surface that did not previously touch the model's outer walls to now do so.\n"
|
||||
"This can cause contraction marks (such as the hull line) on the outer walls.\n"
|
||||
"By adding a small margin, this contraction will not occur directly on the walls, thereby preventing a visible mark."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Direction in which the top surface expansion grows.\n"
|
||||
" - Inward grows into the holes and gaps left by features rising from the middle of a top surface.\n"
|
||||
" - Outward grows the outer edge of the surface, connecting surfaces separated by features that can divide a surface, such as a lattice pattern.\n"
|
||||
" - Inward and Outward does both."
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward and Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom surface pattern"
|
||||
msgstr "รูปแบบผิวด้านล่าง"
|
||||
|
||||
@@ -12199,6 +12278,18 @@ msgstr "เกณฑ์ขอบเขตขนาดเล็ก"
|
||||
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
|
||||
msgstr "นี่เป็นการกำหนดเกณฑ์สำหรับความยาวเส้นรอบวงเล็กน้อย เกณฑ์เริ่มต้นคือ 0 มม."
|
||||
|
||||
msgid "Small support perimeters"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
|
||||
msgstr ""
|
||||
|
||||
msgid "Small support perimeters threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "Walls printing order"
|
||||
msgstr "สั่งพิมพ์ผนัง"
|
||||
|
||||
@@ -12383,27 +12474,26 @@ msgstr ""
|
||||
"2. จดบันทึกค่า PA ที่เหมาะสมที่สุดสำหรับความเร็วการไหลและความเร่งตามปริมาตรแต่ละรายการ คุณสามารถค้นหาหมายเลขโฟลว์ได้โดยเลือกโฟลว์จากรายการสีแบบเลื่อนลง และเลื่อนแถบเลื่อนแนวนอนไปเหนือเส้นรูปแบบ PA หมายเลขควรปรากฏที่ด้านล่างของหน้า ค่า PA ในอุดมคติควรลดลงตามอัตราการไหลตามปริมาตรที่สูงขึ้น หากไม่เป็นเช่นนั้น ให้ยืนยันว่าชุดดันเส้นของคุณทำงานอย่างถูกต้อง ยิ่งคุณพิมพ์ช้าลงและเร่งความเร็วน้อยลง ช่วงของค่า PA ที่ยอมรับได้ก็จะยิ่งมากขึ้นเท่านั้น หากไม่เห็นความแตกต่าง ให้ใช้ค่า PA จากการทดสอบที่เร็วกว่า\n"
|
||||
"3. ป้อนค่า PA, การไหล และความเร่งสามเท่าในกล่องข้อความที่นี่ และบันทึกโปรไฟล์เส้นพลาสติกของคุณ"
|
||||
|
||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
msgstr "เปิดใช้งานการปรับPressure Advanceสำหรับระยะยื่น (เบต้า)"
|
||||
msgid "Enable adaptive pressure advance within features (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
|
||||
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
|
||||
"\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
|
||||
"\n"
|
||||
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
|
||||
msgstr ""
|
||||
"เปิดใช้งาน PA แบบปรับตัวสำหรับส่วนยื่นและเมื่ออัตราการไหลเปลี่ยนภายในฟีเจอร์เดียวกัน เป็นตัวเลือกทดลอง หากโปรไฟล์ PA ไม่แม่นยำ จะทำให้ผิวด้านนอกไม่สม่ำเสมอก่อนและหลังส่วนยื่น\n"
|
||||
"ไม่รองรับเครื่องพิมพ์ Prusa เพราะจะหยุดชั่วคราวเพื่อประมวลผลการเปลี่ยน PA ทำให้เกิดความล่าช้าและข้อบกพร่อง"
|
||||
|
||||
msgid "Pressure advance for bridges"
|
||||
msgstr "แรงดันล่วงหน้า (Pressure Advance)สำหรับสะพาน"
|
||||
msgid "Static pressure advance for bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
|
||||
"equivalent walls (using adaptive settings if enabled).\n"
|
||||
"\n"
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
msgstr ""
|
||||
"ค่าPressure Advanceสำหรับสะพาน ตั้งค่าเป็น 0 เพื่อปิดใช้งาน\n"
|
||||
"\n"
|
||||
"ค่า PA ที่ต่ำลงเมื่อพิมพ์บริดจ์จะช่วยลดลักษณะที่ปรากฏเล็กน้อยจากการอัดขึ้นรูปทันทีหลังจากบริดจ์ สาเหตุนี้เกิดจากแรงดันตกในหัวฉีดเมื่อพิมพ์ในอากาศ และค่า PA ที่ต่ำกว่าจะช่วยแก้ปัญหานี้ได้"
|
||||
|
||||
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
|
||||
msgstr "ความกว้างของเส้นเริ่มต้นหากความกว้างของเส้นอื่นตั้งค่าเป็น 0 หากแสดงเป็น % ระบบจะคำนวณตามเส้นผ่านศูนย์กลางของหัวฉีด"
|
||||
@@ -12775,6 +12865,22 @@ msgstr "ทิศทางไส้ในแบบทึบ"
|
||||
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
|
||||
msgstr "มุมสำหรับรูปแบบไส้ในแบบทึบ ซึ่งควบคุมจุดเริ่มต้นหรือทิศทางหลักของเส้น"
|
||||
|
||||
msgid "Top layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the top solid infill and ironing lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the bottom solid infill lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sparse infill density"
|
||||
msgstr "ความหนาแน่นไส้ในแบบโปร่ง"
|
||||
|
||||
@@ -12782,15 +12888,13 @@ msgstr "ความหนาแน่นไส้ในแบบโปร่ง
|
||||
msgid "Density of internal sparse infill, 100% turns all sparse infill into solid infill and internal solid infill pattern will be used."
|
||||
msgstr "ความหนาแน่นของไส้ในแบบโปร่งภายใน 100% จะเปลี่ยนไส้ในแบบโปร่งทั้งหมดให้เป็นไส้ในแบบทึบ และจะใช้รูปแบบไส้ในแบบทึบภายใน"
|
||||
|
||||
msgid "Align infill direction to model"
|
||||
msgstr "จัดทิศทาง ไส้ใน ให้ตรงกับโมเดล"
|
||||
msgid "Align directions to model"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Aligns infill, bridge, ironing and surface fill directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, directions rotate with the model to maintain optimal strength characteristics."
|
||||
"Aligns infill, bridge, ironing, and top/bottom surface directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, these directions rotate together with the model so the printed features keep their intended orientation relative to the part, preserving optimal strength and surface characteristics regardless of how the model is placed."
|
||||
msgstr ""
|
||||
"จัดทิศทางไส้ใน สะพาน การรีดเรียบ และการเติมผิวให้สอดคล้องกับการวางแนวของโมเดลบนฐานรองพิมพ์\n"
|
||||
"เมื่อเปิดใช้งาน ทิศทางจะหมุนตามโมเดลเพื่อรักษาคุณสมบัติความแข็งแรงที่เหมาะสม"
|
||||
|
||||
msgid "Insert solid layers"
|
||||
msgstr "แทรกชั้นทึบ"
|
||||
@@ -14519,6 +14623,9 @@ msgstr "จัดตำแหน่ง"
|
||||
msgid "Aligned back"
|
||||
msgstr "จัดแนวกลับ"
|
||||
|
||||
msgid "Back"
|
||||
msgstr "กลับ"
|
||||
|
||||
msgid "Random"
|
||||
msgstr "สุ่ม"
|
||||
|
||||
@@ -14876,6 +14983,18 @@ msgstr "ใช้ชุดดันเส้นการพิมพ์ทั้
|
||||
msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print."
|
||||
msgstr "หากเปิดใช้งาน ชุดดันเส้นการพิมพ์ทั้งหมดจะถูกลงสีพื้นที่ขอบด้านหน้าของฐานพิมพ์เมื่อเริ่มต้นการพิมพ์"
|
||||
|
||||
msgid "Toolchange ordering"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Determines the order of tool changes on each layer.\n"
|
||||
"- Default: Starts with the last used extruder to minimize tool changes.\n"
|
||||
"- Cyclic: Uses a fixed tool sequence each layer. This sacrifices speed for better surface quality, as the extra toolchanges allow layers more time to cool."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cyclic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice gap closing radius"
|
||||
msgstr "รัศมีการปิดช่องว่างของ Slice"
|
||||
|
||||
@@ -15299,6 +15418,45 @@ msgstr "ความหนาผนังด้านบน"
|
||||
msgid "The number of top solid layers is increased when slicing if the thickness calculated by top shell layers is thinner than this value. This can avoid having too thin a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers."
|
||||
msgstr "จำนวนชั้นทึบด้านบนจะเพิ่มขึ้นเมื่อสไลซ์หากความหนาที่คำนวณโดยชั้นเปลือกด้านบนบางกว่าค่านี้ วิธีนี้สามารถหลีกเลี่ยงไม่ให้เปลือกบางเกินไปเมื่อชั้นมีความสูงน้อย 0 หมายความว่าการตั้งค่านี้ถูกปิดใช้งาน และความหนาของเปลือกด้านบนถูกกำหนดโดยชั้นเปลือกด้านบนอย่างแน่นอน"
|
||||
|
||||
msgid "Anisotropic surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Anisotropic patterns on the top and bottom surfaces.\n"
|
||||
"Co-directional printing mode will be applied. For certain patterns, omni-directional filling provides color dispersion when using multi-colored or silk plastics.\n"
|
||||
"This option disable the gap fill.\n"
|
||||
"This option can increase a printing time."
|
||||
msgstr ""
|
||||
|
||||
msgid "Separated infills"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Centers the internal infill of each part on itself, as if it were sliced on its own, instead of on the whole assembly. Parts that touch or overlap are treated as one body and share a center; separate parts (or distinct 3D objects) each get their own.\n"
|
||||
"Useful when an assembly groups several objects that should each keep a consistent, self-centered infill.\n"
|
||||
"Affects line and grid patterns and rotation-template infills.\n"
|
||||
"Patterns locked to global coordinates (Gyroid, Honeycomb, TPMS, ...) are unaffected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Center surface pattern on"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Chooses where the centering point of centered top/bottom surface patterns (Archimedean Chords, Octagram Spiral) is placed.\n"
|
||||
" - Each Surface: centers the pattern on every individual surface region, so each island is symmetric on its own.\n"
|
||||
" - Each Model: centers the pattern on each connected body. Parts that touch or overlap share one center; parts detached from the rest each get their own.\n"
|
||||
" - Each Assembly: uses a single shared center for the whole object or assembly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Surface"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Assembly"
|
||||
msgstr ""
|
||||
|
||||
msgid "This is the speed at which traveling is done."
|
||||
msgstr "ความเร็วที่ใช้ในการเคลื่อนที่แบบไม่อัดเส้น"
|
||||
|
||||
@@ -15535,6 +15693,14 @@ msgstr "บิดรูหลายรู"
|
||||
msgid "Rotate the polyhole every layer."
|
||||
msgstr "หมุนโพลีโฮลทุกชั้น"
|
||||
|
||||
msgid "Maximum Polyhole edge count"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Maximum number of polyhole edges\n"
|
||||
"This setting limits the amount of edges a polyhole can have"
|
||||
msgstr ""
|
||||
|
||||
msgid "G-code thumbnails"
|
||||
msgstr "ภาพขนาดย่อ G-code"
|
||||
|
||||
@@ -18858,6 +19024,12 @@ msgstr "จำนวนด้านสามเหลี่ยม"
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr "กำลังคำนวณ โปรดรอสักครู่..."
|
||||
|
||||
msgid "Save these settings as default"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
|
||||
msgstr ""
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr "ชุดค่าที่ตั้งไว้ล่วงหน้า"
|
||||
|
||||
@@ -19259,6 +19431,136 @@ msgstr ""
|
||||
"หลีกเลี่ยงการบิดเบี้ยว\n"
|
||||
"คุณรู้หรือไม่ว่าเมื่อพิมพ์วัสดุที่มีแนวโน้มที่จะเกิดการบิดเบี้ยว เช่น ABS การเพิ่มอุณหภูมิฐานพิมพ์อย่างเหมาะสมสามารถลดความน่าจะเป็นของการบิดเบี้ยวได้"
|
||||
|
||||
#~ msgid "Continue to sync filaments"
|
||||
#~ msgstr "ทำการซิงค์ฟิลาเมนต์ต่อไป"
|
||||
|
||||
#~ msgctxt "Sync_Nozzle_AMS"
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "ยกเลิก"
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
#~ msgid ""
|
||||
#~ "External Bridging angle override.\n"
|
||||
#~ "If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
#~ "Otherwise the provided angle will be used according to:\n"
|
||||
#~ " - The absolute coordinates\n"
|
||||
#~ " - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
#~ " - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
#~ "\n"
|
||||
#~ "Use 180° for zero absolute angle."
|
||||
#~ msgstr ""
|
||||
#~ "แทนที่มุมสะพานด้านนอก\n"
|
||||
#~ "หากปล่อยเป็นศูนย์ มุมสะพานจะคำนวณอัตโนมัติสำหรับสะพานแต่ละจุด\n"
|
||||
#~ "มิฉะนั้นจะใช้มุมที่กำหนดตาม:\n"
|
||||
#~ " - พิกัดสัมบูรณ์\n"
|
||||
#~ " - พิกัดสัมบูรณ์ + การหมุนโมเดล: หากเปิดใช้งานจัดทิศทางไส้ในให้สอดคล้องกับโมเดล\n"
|
||||
#~ " - มุมอัตโนมัติที่เหมาะสม + ค่านี้: หากเปิดใช้งาน 'มุมสะพานแบบสัมพันธ์'\n"
|
||||
#~ "\n"
|
||||
#~ "ใช้ 180° สำหรับมุมสัมบูรณ์ศูนย์"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Internal Bridging angle override.\n"
|
||||
#~ "If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
#~ "Otherwise the provided angle will be used according to:\n"
|
||||
#~ " - The absolute coordinates\n"
|
||||
#~ " - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
#~ " - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
#~ "\n"
|
||||
#~ "Use 180° for zero absolute angle."
|
||||
#~ msgstr ""
|
||||
#~ "แทนที่มุมสะพานด้านใน\n"
|
||||
#~ "หากปล่อยเป็นศูนย์ มุมสะพานจะคำนวณอัตโนมัติสำหรับสะพานแต่ละจุด\n"
|
||||
#~ "มิฉะนั้นจะใช้มุมที่กำหนดตาม:\n"
|
||||
#~ " - พิกัดสัมบูรณ์\n"
|
||||
#~ " - พิกัดสัมบูรณ์ + การหมุนโมเดล: หากเปิดใช้งานจัดทิศทางไส้ในให้สอดคล้องกับโมเดล\n"
|
||||
#~ " - มุมอัตโนมัติที่เหมาะสม + ค่านี้: หากเปิดใช้งาน 'มุมสะพานแบบสัมพันธ์'\n"
|
||||
#~ "\n"
|
||||
#~ "ใช้ 180° สำหรับมุมสัมบูรณ์ศูนย์"
|
||||
|
||||
#~ msgid "Align infill direction to model"
|
||||
#~ msgstr "จัดทิศทาง ไส้ใน ให้ตรงกับโมเดล"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Aligns infill, bridge, ironing and surface fill directions to follow the model's orientation on the build plate.\n"
|
||||
#~ "When enabled, directions rotate with the model to maintain optimal strength characteristics."
|
||||
#~ msgstr ""
|
||||
#~ "จัดทิศทางไส้ใน สะพาน การรีดเรียบ และการเติมผิวให้สอดคล้องกับการวางแนวของโมเดลบนฐานรองพิมพ์\n"
|
||||
#~ "เมื่อเปิดใช้งาน ทิศทางจะหมุนตามโมเดลเพื่อรักษาคุณสมบัติความแข็งแรงที่เหมาะสม"
|
||||
|
||||
#~ msgid "Print"
|
||||
#~ msgstr "พิมพ์"
|
||||
|
||||
#~ msgid "in"
|
||||
#~ msgstr "นิ้ว"
|
||||
|
||||
#~ msgid "Object coordinates"
|
||||
#~ msgstr "พิกัดวัตถุ"
|
||||
|
||||
#~ msgid "World coordinates"
|
||||
#~ msgstr "พิกัดโลก"
|
||||
|
||||
#~ msgid "Translate(Relative)"
|
||||
#~ msgstr "เลื่อนตำแหน่ง (แบบสัมพันธ์)"
|
||||
|
||||
#~ msgid "Rotate (absolute)"
|
||||
#~ msgstr "หมุน (สัมบูรณ์)"
|
||||
|
||||
#~ msgid "Part coordinates"
|
||||
#~ msgstr "พิกัดส่วน"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
|
||||
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
#~ msgstr ""
|
||||
#~ "ความขัดแย้งในการซิงก์ Cloud: ค่าที่ตั้งไว้ล่วงหน้านี้มีเวอร์ชันใหม่กว่าใน Orca Cloud\n"
|
||||
#~ "ดึงข้อมูลจะดาวน์โหลดสำเนาจากคลาวด์ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
|
||||
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
#~ msgstr ""
|
||||
#~ "ความขัดแย้งในการซิงก์ Cloud: มีค่าที่ตั้งไว้ล่วงหน้าชื่อนี้อยู่ใน Orca Cloud แล้ว\n"
|
||||
#~ "ดึงข้อมูลจะดาวน์โหลดสำเนาจากคลาวด์ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
|
||||
#~ "Delete will delete your local preset. Force push overwrites it with your local preset."
|
||||
#~ msgstr ""
|
||||
#~ "ความขัดแย้งในการซิงก์ Cloud: ค่าที่ตั้งไว้ล่วงหน้าชื่อเดียวกันเคยถูกลบจากคลาวด์แล้ว\n"
|
||||
#~ "ลบจะลบค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
|
||||
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
#~ msgstr ""
|
||||
#~ "ความขัดแย้งในการซิงก์ Cloud: พบความขัดแย้งของค่าที่ตั้งไว้ล่วงหน้าที่ไม่คาดคิดหรือระบุไม่ได้\n"
|
||||
#~ "ดึงข้อมูลจะดาวน์โหลดสำเนาจากคลาวด์ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ"
|
||||
|
||||
#~ msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
#~ msgstr "เนื้อหาที่ตั้งไว้ล่วงหน้ามีขนาดใหญ่เกินกว่าจะซิงค์กับระบบคลาวด์ (เกิน 1MB) โปรดลดขนาดที่กำหนดไว้ล่วงหน้าโดยการลบการกำหนดค่าที่กำหนดเองออกหรือใช้เฉพาะในเครื่องเท่านั้น"
|
||||
|
||||
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
#~ msgstr "เปิดใช้งานการปรับPressure Advanceสำหรับระยะยื่น (เบต้า)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
|
||||
#~ "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
|
||||
#~ msgstr ""
|
||||
#~ "เปิดใช้งาน PA แบบปรับตัวสำหรับส่วนยื่นและเมื่ออัตราการไหลเปลี่ยนภายในฟีเจอร์เดียวกัน เป็นตัวเลือกทดลอง หากโปรไฟล์ PA ไม่แม่นยำ จะทำให้ผิวด้านนอกไม่สม่ำเสมอก่อนและหลังส่วนยื่น\n"
|
||||
#~ "ไม่รองรับเครื่องพิมพ์ Prusa เพราะจะหยุดชั่วคราวเพื่อประมวลผลการเปลี่ยน PA ทำให้เกิดความล่าช้าและข้อบกพร่อง"
|
||||
|
||||
#~ msgid "Pressure advance for bridges"
|
||||
#~ msgstr "แรงดันล่วงหน้า (Pressure Advance)สำหรับสะพาน"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
#~ "\n"
|
||||
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
#~ msgstr ""
|
||||
#~ "ค่าPressure Advanceสำหรับสะพาน ตั้งค่าเป็น 0 เพื่อปิดใช้งาน\n"
|
||||
#~ "\n"
|
||||
#~ "ค่า PA ที่ต่ำลงเมื่อพิมพ์บริดจ์จะช่วยลดลักษณะที่ปรากฏเล็กน้อยจากการอัดขึ้นรูปทันทีหลังจากบริดจ์ สาเหตุนี้เกิดจากแรงดันตกในหัวฉีดเมื่อพิมพ์ในอากาศ และค่า PA ที่ต่ำกว่าจะช่วยแก้ปัญหานี้ได้"
|
||||
|
||||
#~ msgid "Filament Sync Options"
|
||||
#~ msgstr "ตัวเลือกการซิงค์ฟิลาเมนต์"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-07-03 14:43+0200\n"
|
||||
"POT-Creation-Date: 2026-07-12 12:27-0300\n"
|
||||
"PO-Revision-Date: 2026-04-08 23:59+0300\n"
|
||||
"Last-Translator: GlauTech\n"
|
||||
"Language-Team: \n"
|
||||
@@ -162,6 +162,12 @@ msgstr "Doldur"
|
||||
msgid "Gap Fill"
|
||||
msgstr "Boşluk doldurma"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "Dikey"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "Yatay"
|
||||
|
||||
#, boost-format
|
||||
msgid "Allows painting only on facets selected by: \"%1%\""
|
||||
msgstr "Yalnızca şu kişi tarafından seçilen yüzeylerde boyamaya izin verir: \"%1%\""
|
||||
@@ -257,12 +263,6 @@ msgstr "Üçgen"
|
||||
msgid "Height Range"
|
||||
msgstr "Yükseklik Aralığı"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "Dikey"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "Yatay"
|
||||
|
||||
msgid "Remove painted color"
|
||||
msgstr "Boyalı rengi kaldır"
|
||||
|
||||
@@ -327,6 +327,7 @@ msgstr "Gizmo-Döndür"
|
||||
msgid "Optimize orientation"
|
||||
msgstr "Yönü optimize edin"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Scale"
|
||||
msgstr "Ölçeklendir"
|
||||
|
||||
@@ -336,8 +337,9 @@ msgstr "Gizmo-Ölçeklendir"
|
||||
msgid "Error: Please close all toolbar menus first"
|
||||
msgstr "Hata: Lütfen önce tüm araç çubuğu menülerini kapatın"
|
||||
|
||||
msgctxt "inches"
|
||||
msgid "in"
|
||||
msgstr "in"
|
||||
msgstr ""
|
||||
|
||||
msgid "mm"
|
||||
msgstr "mm"
|
||||
@@ -370,6 +372,9 @@ msgstr "Ölçek oranları"
|
||||
msgid "Object operations"
|
||||
msgstr "Nesne İşlemleri"
|
||||
|
||||
msgid "Scale"
|
||||
msgstr "Ölçeklendir"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Volume operations"
|
||||
msgstr "Hacim İşlemleri"
|
||||
@@ -397,26 +402,33 @@ msgstr "Konumu Sıfırla"
|
||||
msgid "Reset rotation"
|
||||
msgstr "Döndürmeyi sıfırla"
|
||||
|
||||
msgid "Object coordinates"
|
||||
msgstr "Nesne koordinatları"
|
||||
msgid "World"
|
||||
msgstr ""
|
||||
|
||||
msgid "World coordinates"
|
||||
msgstr "Dünya koordinatları"
|
||||
msgid "Object"
|
||||
msgstr "Nesne"
|
||||
|
||||
msgid "Translate(Relative)"
|
||||
msgstr "Çevir(Göreceli)"
|
||||
msgid "Part"
|
||||
msgstr "Parça"
|
||||
|
||||
msgid "Relative"
|
||||
msgstr ""
|
||||
|
||||
msgid "Coordinate system used for transform actions."
|
||||
msgstr ""
|
||||
|
||||
msgid "Absolute"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset current rotation to the value when open the rotation tool."
|
||||
msgstr "Döndürme aracını açtığınızda mevcut döndürme değerini sıfırlayın."
|
||||
|
||||
msgid "Rotate (absolute)"
|
||||
msgstr "Döndür (mutlak)"
|
||||
|
||||
msgid "Reset current rotation to real zeros."
|
||||
msgstr "Mevcut dönüşü gerçek sıfırlara sıfırla."
|
||||
|
||||
msgid "Part coordinates"
|
||||
msgstr "Parça koordinatları"
|
||||
msgctxt "Noun"
|
||||
msgid "Scale"
|
||||
msgstr "Ölçeklendir"
|
||||
|
||||
#. TRN - Input label. Be short as possible
|
||||
msgid "Size"
|
||||
@@ -521,12 +533,6 @@ msgstr "Boşluk"
|
||||
msgid "Spacing"
|
||||
msgstr "Boşluk"
|
||||
|
||||
msgid "Part"
|
||||
msgstr "Parça"
|
||||
|
||||
msgid "Object"
|
||||
msgstr "Nesne"
|
||||
|
||||
msgid ""
|
||||
"Click to flip the cut plane\n"
|
||||
"Drag to move the cut plane"
|
||||
@@ -1871,23 +1877,30 @@ msgstr "Projeyi Aç"
|
||||
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
|
||||
msgstr "Orca Slicer'ın sürümü çok düşük ve normal şekilde kullanılabilmesi için en son sürüme güncellenmesi gerekiyor."
|
||||
|
||||
msgid "Cloud sync conflict:"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Cloud sync conflict for preset \"%s\":"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
|
||||
"This preset has a newer version in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
|
||||
"A preset with this name already exists in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
|
||||
"A preset with the same name was previously deleted from the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
|
||||
"There was an unexpected or unidentified preset conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
@@ -1896,6 +1909,12 @@ msgid ""
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Resolve cloud sync conflict"
|
||||
msgstr ""
|
||||
|
||||
@@ -1970,7 +1989,8 @@ msgstr "Bulutta önbelleğe alınan kullanıcı ön ayarlarının sayısı üst
|
||||
msgid "Sync user presets"
|
||||
msgstr "Kullanıcı ön ayarlarını senkronize edin"
|
||||
|
||||
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
#, c-format, boost-format
|
||||
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
@@ -2192,6 +2212,9 @@ msgstr "Orca Küpü"
|
||||
msgid "OrcaSliced Combo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Badge"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Tolerance Test"
|
||||
msgstr "Orca tolerans testi"
|
||||
|
||||
@@ -3629,7 +3652,7 @@ msgstr "Kalibrasyon tamamlandı. Lütfen sıcak yatağınızdaki en düzgün eks
|
||||
msgid "Save"
|
||||
msgstr "Kaydet"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgctxt "Navigation"
|
||||
msgid "Back"
|
||||
msgstr "Arka"
|
||||
|
||||
@@ -5012,6 +5035,7 @@ msgstr "Takım değişiklikleri"
|
||||
msgid "Color change"
|
||||
msgstr "Renk değişimi"
|
||||
|
||||
msgctxt "Noun"
|
||||
msgid "Print"
|
||||
msgstr "Yazdır"
|
||||
|
||||
@@ -5175,11 +5199,15 @@ msgstr "Ekstrüzyon kalibrasyon bölgesinden kaçın"
|
||||
msgid "Align to Y axis"
|
||||
msgstr "Y eksenine hizala"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Back"
|
||||
msgstr "Arka"
|
||||
|
||||
msgctxt "Camera View"
|
||||
msgid "Left"
|
||||
msgstr "Sol"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Right"
|
||||
msgstr "Sağ"
|
||||
|
||||
@@ -5258,6 +5286,9 @@ msgstr "Çıkıntılar"
|
||||
msgid "Outline"
|
||||
msgstr "Taslak"
|
||||
|
||||
msgid "Wireframe"
|
||||
msgstr ""
|
||||
|
||||
msgid "Realistic View"
|
||||
msgstr ""
|
||||
|
||||
@@ -5301,7 +5332,7 @@ msgstr "Hacim:"
|
||||
msgid "Size:"
|
||||
msgstr "Boyut:"
|
||||
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
|
||||
msgstr "%d katmanında gcode yollarında çakışmalar bulundu, Z = %.2lfmm. Lütfen çakışan nesneleri daha uzağa ayırın (%s <-> %s)."
|
||||
|
||||
@@ -5504,6 +5535,10 @@ msgstr "Plakayı Yazdır"
|
||||
msgid "Export G-code file"
|
||||
msgstr "G-kod dosyasını dışa aktar"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Print"
|
||||
msgstr "Yazdır"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "Dilimlenmiş plaka dosyasını dışa aktar"
|
||||
|
||||
@@ -5677,15 +5712,6 @@ msgstr "Geçerli yapılandırmayı dosyalara aktar"
|
||||
msgid "Export"
|
||||
msgstr "Dışa Aktar"
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quit"
|
||||
msgstr "Çıkış"
|
||||
|
||||
@@ -5802,6 +5828,15 @@ msgstr "Görünüm"
|
||||
msgid "Preset Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr ""
|
||||
|
||||
msgid "Syncing presets from cloud…"
|
||||
msgstr ""
|
||||
|
||||
@@ -8040,6 +8075,35 @@ msgstr "STEP dosyasını içe aktarırken seçenekleri göster"
|
||||
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
|
||||
msgstr "Etkinleştirilirse, STEP dosyası içe aktarılırken bir parametre ayarları iletişim kutusu görüntülenir."
|
||||
|
||||
msgid "STEP importing: linear deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Linear deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.003 mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: angle deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Angle deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.5."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: Split into multiple objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: disabled."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quality level for Draco export"
|
||||
msgstr "Draco dışa aktarımı için kalite düzeyi"
|
||||
|
||||
@@ -8055,6 +8119,12 @@ msgstr ""
|
||||
"0 = kayıpsız sıkıştırma (geometri tam hassasiyetle korunur). Geçerli kayıplı değerler 8 ile 30 arasında değişir.\n"
|
||||
"Daha düşük değerler daha küçük dosyalar oluşturur ancak daha fazla geometrik ayrıntıyı kaybeder; daha yüksek değerler, daha büyük dosyalar pahasına daha fazla ayrıntıyı korur."
|
||||
|
||||
msgid "Store full source file paths in projects"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
|
||||
msgstr ""
|
||||
|
||||
msgid "Preset"
|
||||
msgstr "Ön ayar"
|
||||
|
||||
@@ -10255,12 +10325,8 @@ msgstr "Püskürtme ucu bilgileri başarıyla senkronize edildi."
|
||||
msgid "Successfully synchronized nozzle and AMS number information."
|
||||
msgstr "Nozul ve AMS numarası bilgileri başarıyla senkronize edildi."
|
||||
|
||||
msgid "Continue to sync filaments"
|
||||
msgstr "Filamentleri senkronize etmeye devam edin"
|
||||
|
||||
msgctxt "Sync_Nozzle_AMS"
|
||||
msgid "Cancel"
|
||||
msgstr "İptal etmek"
|
||||
msgid "Do you want to continue to sync filaments?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Successfully synchronized filament color from printer."
|
||||
msgstr "Filament rengi yazıcıdan başarıyla senkronize edildi."
|
||||
@@ -11585,7 +11651,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -11599,7 +11665,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -12325,6 +12391,42 @@ msgstr "Üst yüzey yoğunluğu"
|
||||
msgid "Density of top surface layer. A value of 100% creates a fully solid, smooth top layer. Reducing this value results in a textured top surface, according to the chosen top surface pattern. A value of 0% will result in only the walls on the top layer being created. Intended for aesthetic or functional purposes, not to fix issues such as over-extrusion."
|
||||
msgstr "Üst yüzey katmanının yoğunluğu. %100 değeri, tamamen sağlam ve pürüzsüz bir üst katman oluşturur. Bu değerin düşürülmesi, seçilen üst yüzey desenine göre dokulu bir üst yüzey elde edilmesini sağlar. %0 değeri ise yalnızca üst katmandaki duvarların oluşturulmasını sağlar. Estetik veya işlevsel amaçlar için tasarlanmıştır, aşırı ekstrüzyon gibi sorunları gidermek için değildir."
|
||||
|
||||
msgid "Top surface expansion"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Expands the top surfaces by this distance to connect distinct top surfaces and fill gaps.\n"
|
||||
"Useful for cases where the top surface is interrupted by a raised feature, such as text on a plane.Expanding it removes the holes beneath these features and creates a continuous path with a better finish for printing on top.The expansion is applied to the original top surface, before any other processing such as bridging or overhang detection."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion wall margin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Using “Top surface expansion” may cause a surface that did not previously touch the model's outer walls to now do so.\n"
|
||||
"This can cause contraction marks (such as the hull line) on the outer walls.\n"
|
||||
"By adding a small margin, this contraction will not occur directly on the walls, thereby preventing a visible mark."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Direction in which the top surface expansion grows.\n"
|
||||
" - Inward grows into the holes and gaps left by features rising from the middle of a top surface.\n"
|
||||
" - Outward grows the outer edge of the surface, connecting surfaces separated by features that can divide a surface, such as a lattice pattern.\n"
|
||||
" - Inward and Outward does both."
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward and Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom surface pattern"
|
||||
msgstr "Alt yüzey deseni"
|
||||
|
||||
@@ -12367,6 +12469,18 @@ msgstr "Küçük çevre (perimeter) eşiği"
|
||||
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
|
||||
msgstr "Bu, küçük çevre uzunluğu için eşiği belirler. Varsayılan eşik 0 mm'dir."
|
||||
|
||||
msgid "Small support perimeters"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
|
||||
msgstr ""
|
||||
|
||||
msgid "Small support perimeters threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "Walls printing order"
|
||||
msgstr "Duvar baskı sırası"
|
||||
|
||||
@@ -12550,25 +12664,26 @@ msgstr ""
|
||||
"2. Her hacimsel akış hızı ve ivme için en uygun PA değerini not edin. Renk şeması açılır menüsünden akışı seçerek ve yatay kaydırıcıyı PA desen çizgileri üzerinde hareket ettirerek akış numarasını bulabilirsiniz. Numara sayfanın altında görünmelidir. İdeal PA değeri hacimsel akış ne kadar yüksek olursa o kadar azalmalıdır. Değilse, ekstruderinizin doğru şekilde çalıştığını doğrulayın. Ne kadar yavaş ve daha az ivmeyle yazdırırsanız, kabul edilebilir PA değerleri aralığı o kadar geniş olur. Hiçbir fark görünmüyorsa, daha hızlı olan testteki PA değerini kullanın.\n"
|
||||
"3. Buradaki metin kutusuna PA değerleri, Akış ve Hızlanma üçlüsünü girin ve filament profilinizi kaydedin."
|
||||
|
||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
msgstr "Çıkıntılar için uyarlanabilir basınç ilerlemesini etkinleştirin (beta)"
|
||||
|
||||
msgid ""
|
||||
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
|
||||
msgid "Enable adaptive pressure advance within features (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pressure advance for bridges"
|
||||
msgstr "Köprüler için basınç ilerlemesi"
|
||||
msgid ""
|
||||
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
|
||||
"\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
|
||||
"\n"
|
||||
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
|
||||
msgstr ""
|
||||
|
||||
msgid "Static pressure advance for bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
|
||||
"equivalent walls (using adaptive settings if enabled).\n"
|
||||
"\n"
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
msgstr ""
|
||||
"Köprüler için basınç ilerleme değeri. Devre dışı bırakmak için 0’a ayarlayın.\n"
|
||||
"\n"
|
||||
" Köprüleri yazdırırken daha düşük bir basınç değeri, köprülerden hemen sonra hafif ekstrüzyon görünümünün azaltılmasına yardımcı olur. Bunun nedeni, havada yazdırma sırasında nozuldaki basınç düşüşüdür ve daha düşük bir basınç, bunu önlemeye yardımcı olur."
|
||||
|
||||
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
|
||||
msgstr "Diğer çizgi genişlikleri 0'a ayarlanmışsa varsayılan çizgi genişliği. % olarak ifade edilirse nozul çapı üzerinden hesaplanacaktır."
|
||||
@@ -12951,6 +13066,22 @@ msgstr "Katı dolgu yönü"
|
||||
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
|
||||
msgstr "Hattın başlangıcını veya ana yönünü kontrol eden katı dolgu deseni açısı."
|
||||
|
||||
msgid "Top layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the top solid infill and ironing lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the bottom solid infill lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sparse infill density"
|
||||
msgstr "Dolgu yoğunluğu"
|
||||
|
||||
@@ -12958,12 +13089,12 @@ msgstr "Dolgu yoğunluğu"
|
||||
msgid "Density of internal sparse infill, 100% turns all sparse infill into solid infill and internal solid infill pattern will be used."
|
||||
msgstr "İç seyrek dolgunun yoğunluğu, %100 tüm seyrek dolguyu katı dolguya dönüştürür ve iç katı dolgu modeli kullanılacaktır."
|
||||
|
||||
msgid "Align infill direction to model"
|
||||
msgstr "Dolgu yönünü modele hizalayın"
|
||||
msgid "Align directions to model"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Aligns infill, bridge, ironing and surface fill directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, directions rotate with the model to maintain optimal strength characteristics."
|
||||
"Aligns infill, bridge, ironing, and top/bottom surface directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, these directions rotate together with the model so the printed features keep their intended orientation relative to the part, preserving optimal strength and surface characteristics regardless of how the model is placed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Insert solid layers"
|
||||
@@ -14694,6 +14825,10 @@ msgstr "Hizalı"
|
||||
msgid "Aligned back"
|
||||
msgstr "Arkaya hizalı"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Back"
|
||||
msgstr "Arka"
|
||||
|
||||
msgid "Random"
|
||||
msgstr "Rastgele"
|
||||
|
||||
@@ -15054,6 +15189,18 @@ msgstr "Tüm ekstruderleri temizle"
|
||||
msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print."
|
||||
msgstr "Etkinleştirilirse, tüm baskı ekstruderleri baskının başlangıcında baskı yatağının ön kenarında temizlenecektir."
|
||||
|
||||
msgid "Toolchange ordering"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Determines the order of tool changes on each layer.\n"
|
||||
"- Default: Starts with the last used extruder to minimize tool changes.\n"
|
||||
"- Cyclic: Uses a fixed tool sequence each layer. This sacrifices speed for better surface quality, as the extra toolchanges allow layers more time to cool."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cyclic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice gap closing radius"
|
||||
msgstr "Dilim aralığı kapanma yarıçapı"
|
||||
|
||||
@@ -15499,6 +15646,45 @@ msgstr "Üst katman kalınlığı"
|
||||
msgid "The number of top solid layers is increased when slicing if the thickness calculated by top shell layers is thinner than this value. This can avoid having too thin a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers."
|
||||
msgstr "Üst kabuk katmanları tarafından hesaplanan kalınlık bu değerden daha ince ise dilimleme sırasında üst katı katmanların sayısı artırılır. Bu, katman yüksekliği küçük olduğunda kabuğun çok ince olmasını önleyebilir. 0, bu ayarın devre dışı olduğu ve üst kabuğun kalınlığının kesinlikle üst kabuk katmanları tarafından belirlendiği anlamına gelir."
|
||||
|
||||
msgid "Anisotropic surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Anisotropic patterns on the top and bottom surfaces.\n"
|
||||
"Co-directional printing mode will be applied. For certain patterns, omni-directional filling provides color dispersion when using multi-colored or silk plastics.\n"
|
||||
"This option disable the gap fill.\n"
|
||||
"This option can increase a printing time."
|
||||
msgstr ""
|
||||
|
||||
msgid "Separated infills"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Centers the internal infill of each part on itself, as if it were sliced on its own, instead of on the whole assembly. Parts that touch or overlap are treated as one body and share a center; separate parts (or distinct 3D objects) each get their own.\n"
|
||||
"Useful when an assembly groups several objects that should each keep a consistent, self-centered infill.\n"
|
||||
"Affects line and grid patterns and rotation-template infills.\n"
|
||||
"Patterns locked to global coordinates (Gyroid, Honeycomb, TPMS, ...) are unaffected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Center surface pattern on"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Chooses where the centering point of centered top/bottom surface patterns (Archimedean Chords, Octagram Spiral) is placed.\n"
|
||||
" - Each Surface: centers the pattern on every individual surface region, so each island is symmetric on its own.\n"
|
||||
" - Each Model: centers the pattern on each connected body. Parts that touch or overlap share one center; parts detached from the rest each get their own.\n"
|
||||
" - Each Assembly: uses a single shared center for the whole object or assembly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Surface"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Assembly"
|
||||
msgstr ""
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "This is the speed at which traveling is done."
|
||||
msgstr "Daha hızlı ve ekstrüzyonsuz seyahat hızı."
|
||||
@@ -15746,6 +15932,14 @@ msgstr "Çokgen delik eğrisi"
|
||||
msgid "Rotate the polyhole every layer."
|
||||
msgstr "Çokgeni her katmanda döndürün."
|
||||
|
||||
msgid "Maximum Polyhole edge count"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Maximum number of polyhole edges\n"
|
||||
"This setting limits the amount of edges a polyhole can have"
|
||||
msgstr ""
|
||||
|
||||
msgid "G-code thumbnails"
|
||||
msgstr "G-code önizleme resimleri"
|
||||
|
||||
@@ -19109,6 +19303,12 @@ msgstr "Üçgen yüzeylerin sayısı"
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr "Hesaplanıyor, lütfen bekleyin..."
|
||||
|
||||
msgid "Save these settings as default"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
|
||||
msgstr ""
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
@@ -19514,6 +19714,52 @@ msgstr ""
|
||||
"Eğilmeyi önleyin\n"
|
||||
"ABS gibi bükülmeye yatkın malzemelere baskı yaparken, ısıtma yatağı sıcaklığının uygun şekilde arttırılmasının bükülme olasılığını azaltabileceğini biliyor muydunuz?"
|
||||
|
||||
#~ msgid "Continue to sync filaments"
|
||||
#~ msgstr "Filamentleri senkronize etmeye devam edin"
|
||||
|
||||
#~ msgctxt "Sync_Nozzle_AMS"
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "İptal etmek"
|
||||
|
||||
#~ msgid "Align infill direction to model"
|
||||
#~ msgstr "Dolgu yönünü modele hizalayın"
|
||||
|
||||
#~ msgid "Print"
|
||||
#~ msgstr "Yazdır"
|
||||
|
||||
#~ msgid "in"
|
||||
#~ msgstr "in"
|
||||
|
||||
#~ msgid "Object coordinates"
|
||||
#~ msgstr "Nesne koordinatları"
|
||||
|
||||
#~ msgid "World coordinates"
|
||||
#~ msgstr "Dünya koordinatları"
|
||||
|
||||
#~ msgid "Translate(Relative)"
|
||||
#~ msgstr "Çevir(Göreceli)"
|
||||
|
||||
#~ msgid "Rotate (absolute)"
|
||||
#~ msgstr "Döndür (mutlak)"
|
||||
|
||||
#~ msgid "Part coordinates"
|
||||
#~ msgstr "Parça koordinatları"
|
||||
|
||||
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
#~ msgstr "Çıkıntılar için uyarlanabilir basınç ilerlemesini etkinleştirin (beta)"
|
||||
|
||||
#~ msgid "Pressure advance for bridges"
|
||||
#~ msgstr "Köprüler için basınç ilerlemesi"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
#~ "\n"
|
||||
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
#~ msgstr ""
|
||||
#~ "Köprüler için basınç ilerleme değeri. Devre dışı bırakmak için 0’a ayarlayın.\n"
|
||||
#~ "\n"
|
||||
#~ " Köprüleri yazdırırken daha düşük bir basınç değeri, köprülerden hemen sonra hafif ekstrüzyon görünümünün azaltılmasına yardımcı olur. Bunun nedeni, havada yazdırma sırasında nozuldaki basınç düşüşüdür ve daha düşük bir basınç, bunu önlemeye yardımcı olur."
|
||||
|
||||
#~ msgid "Filament Sync Options"
|
||||
#~ msgstr "Filament Senkronizasyon Seçenekleri"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: orcaslicerua\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-07-03 14:43+0200\n"
|
||||
"POT-Creation-Date: 2026-07-12 12:27-0300\n"
|
||||
"PO-Revision-Date: 2025-03-07 09:30+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Ukrainian\n"
|
||||
@@ -167,6 +167,12 @@ msgstr "Заповнення"
|
||||
msgid "Gap Fill"
|
||||
msgstr "Заповнення прогалин"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "Вертикальний"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "Горизонтальний"
|
||||
|
||||
#, boost-format
|
||||
msgid "Allows painting only on facets selected by: \"%1%\""
|
||||
msgstr "Малювання лише на вибраних гранях: \"%1%\""
|
||||
@@ -262,12 +268,6 @@ msgstr "Трикутник"
|
||||
msgid "Height Range"
|
||||
msgstr "Діапазон висот"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "Вертикальний"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "Горизонтальний"
|
||||
|
||||
msgid "Remove painted color"
|
||||
msgstr "Видалити зафарбований колір"
|
||||
|
||||
@@ -332,6 +332,7 @@ msgstr "Gizmo обертання"
|
||||
msgid "Optimize orientation"
|
||||
msgstr "Оптимізувати орієнтацію"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Scale"
|
||||
msgstr "Масштаб"
|
||||
|
||||
@@ -341,8 +342,9 @@ msgstr "Gizmo масштабування"
|
||||
msgid "Error: Please close all toolbar menus first"
|
||||
msgstr "Помилка: будь ласка, спочатку закрийте все меню панелі інструментів"
|
||||
|
||||
msgctxt "inches"
|
||||
msgid "in"
|
||||
msgstr "в"
|
||||
msgstr ""
|
||||
|
||||
msgid "mm"
|
||||
msgstr "мм"
|
||||
@@ -375,6 +377,9 @@ msgstr "Коефіцієнти масштабування"
|
||||
msgid "Object operations"
|
||||
msgstr "Операції з об'єктами"
|
||||
|
||||
msgid "Scale"
|
||||
msgstr "Масштаб"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Volume operations"
|
||||
msgstr "Операції з об’ємом"
|
||||
@@ -402,26 +407,33 @@ msgstr "Скинути позицію"
|
||||
msgid "Reset rotation"
|
||||
msgstr "Скинути обертання"
|
||||
|
||||
msgid "Object coordinates"
|
||||
msgstr "Координати об'єкта"
|
||||
msgid "World"
|
||||
msgstr ""
|
||||
|
||||
msgid "World coordinates"
|
||||
msgstr "Глобальні координати"
|
||||
msgid "Object"
|
||||
msgstr "Об'єкт"
|
||||
|
||||
msgid "Translate(Relative)"
|
||||
msgid "Part"
|
||||
msgstr "Частина"
|
||||
|
||||
msgid "Relative"
|
||||
msgstr ""
|
||||
|
||||
msgid "Coordinate system used for transform actions."
|
||||
msgstr ""
|
||||
|
||||
msgid "Absolute"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset current rotation to the value when open the rotation tool."
|
||||
msgstr "Скинути поточне обертання до значення при відкритті інструмента обертання."
|
||||
|
||||
msgid "Rotate (absolute)"
|
||||
msgstr "Обертання (абсолютне)"
|
||||
|
||||
msgid "Reset current rotation to real zeros."
|
||||
msgstr "Скинути поточне обертання до нульових значень."
|
||||
|
||||
msgid "Part coordinates"
|
||||
msgstr "Координати частини"
|
||||
msgctxt "Noun"
|
||||
msgid "Scale"
|
||||
msgstr "Масштаб"
|
||||
|
||||
#. TRN - Input label. Be short as possible
|
||||
msgid "Size"
|
||||
@@ -526,12 +538,6 @@ msgstr "Проміжок"
|
||||
msgid "Spacing"
|
||||
msgstr "Відстань"
|
||||
|
||||
msgid "Part"
|
||||
msgstr "Частина"
|
||||
|
||||
msgid "Object"
|
||||
msgstr "Об'єкт"
|
||||
|
||||
msgid ""
|
||||
"Click to flip the cut plane\n"
|
||||
"Drag to move the cut plane"
|
||||
@@ -1878,23 +1884,30 @@ msgstr "Відкрити проєкт"
|
||||
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
|
||||
msgstr "Версія студії Bambu надто низька, її необхідно оновити до останньоїверсії, перш ніж її можна буде використовувати у звичайному режимі"
|
||||
|
||||
msgid "Cloud sync conflict:"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Cloud sync conflict for preset \"%s\":"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
|
||||
"This preset has a newer version in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
|
||||
"A preset with this name already exists in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
|
||||
"A preset with the same name was previously deleted from the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
|
||||
"There was an unexpected or unidentified preset conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
@@ -1903,6 +1916,12 @@ msgid ""
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Resolve cloud sync conflict"
|
||||
msgstr ""
|
||||
|
||||
@@ -1970,7 +1989,8 @@ msgstr "Кількість налаштувань користувача, збе
|
||||
msgid "Sync user presets"
|
||||
msgstr "Синхронізувати налаштування користувача"
|
||||
|
||||
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
#, c-format, boost-format
|
||||
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
@@ -2192,6 +2212,9 @@ msgstr "Orca Куб"
|
||||
msgid "OrcaSliced Combo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Badge"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Tolerance Test"
|
||||
msgstr "Тест на допуски ORCA"
|
||||
|
||||
@@ -3645,7 +3668,7 @@ msgstr "Калібрування завершено. Тепер знайдіть
|
||||
msgid "Save"
|
||||
msgstr "Зберегти"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgctxt "Navigation"
|
||||
msgid "Back"
|
||||
msgstr "Ззаду"
|
||||
|
||||
@@ -5015,6 +5038,7 @@ msgstr "Зміна інструменту"
|
||||
msgid "Color change"
|
||||
msgstr "Зміна кольору"
|
||||
|
||||
msgctxt "Noun"
|
||||
msgid "Print"
|
||||
msgstr "Друк"
|
||||
|
||||
@@ -5176,11 +5200,15 @@ msgstr "Уникайте області калібрування екструз
|
||||
msgid "Align to Y axis"
|
||||
msgstr "Розташувати вздовж осі Y"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Back"
|
||||
msgstr "Ззаду"
|
||||
|
||||
msgctxt "Camera View"
|
||||
msgid "Left"
|
||||
msgstr "Ліво"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Right"
|
||||
msgstr "Право"
|
||||
|
||||
@@ -5259,6 +5287,9 @@ msgstr "Нависання"
|
||||
msgid "Outline"
|
||||
msgstr "Контур"
|
||||
|
||||
msgid "Wireframe"
|
||||
msgstr ""
|
||||
|
||||
msgid "Realistic View"
|
||||
msgstr ""
|
||||
|
||||
@@ -5303,7 +5334,7 @@ msgid "Size:"
|
||||
msgstr "Розмір:"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
|
||||
msgstr ""
|
||||
"Виявлено конфлікти шляхів gcode на рівні %d, Z = %.2lf мм. Будь ласка \n"
|
||||
@@ -5505,6 +5536,10 @@ msgstr "Друкувати пластину"
|
||||
msgid "Export G-code file"
|
||||
msgstr "Експорт файлу G-коду"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Print"
|
||||
msgstr "Друк"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "Експортувати файл нарізки пластини"
|
||||
|
||||
@@ -5678,15 +5713,6 @@ msgstr "Експорт поточної конфігурації до файлі
|
||||
msgid "Export"
|
||||
msgstr "Експорт"
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quit"
|
||||
msgstr "Вихід"
|
||||
|
||||
@@ -5803,6 +5829,15 @@ msgstr "Вид"
|
||||
msgid "Preset Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr ""
|
||||
|
||||
msgid "Syncing presets from cloud…"
|
||||
msgstr ""
|
||||
|
||||
@@ -8054,6 +8089,35 @@ msgstr ""
|
||||
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: linear deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Linear deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.003 mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: angle deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Angle deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.5."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: Split into multiple objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: disabled."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quality level for Draco export"
|
||||
msgstr ""
|
||||
|
||||
@@ -8066,6 +8130,12 @@ msgid ""
|
||||
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
|
||||
msgstr ""
|
||||
|
||||
msgid "Store full source file paths in projects"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
|
||||
msgstr ""
|
||||
|
||||
msgid "Preset"
|
||||
msgstr "Шаблон"
|
||||
|
||||
@@ -10261,13 +10331,9 @@ msgstr ""
|
||||
msgid "Successfully synchronized nozzle and AMS number information."
|
||||
msgstr ""
|
||||
|
||||
msgid "Continue to sync filaments"
|
||||
msgid "Do you want to continue to sync filaments?"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "Sync_Nozzle_AMS"
|
||||
msgid "Cancel"
|
||||
msgstr "Скасувати"
|
||||
|
||||
msgid "Successfully synchronized filament color from printer."
|
||||
msgstr ""
|
||||
|
||||
@@ -11595,7 +11661,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -11609,7 +11675,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -12310,6 +12376,42 @@ msgstr ""
|
||||
msgid "Density of top surface layer. A value of 100% creates a fully solid, smooth top layer. Reducing this value results in a textured top surface, according to the chosen top surface pattern. A value of 0% will result in only the walls on the top layer being created. Intended for aesthetic or functional purposes, not to fix issues such as over-extrusion."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top surface expansion"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Expands the top surfaces by this distance to connect distinct top surfaces and fill gaps.\n"
|
||||
"Useful for cases where the top surface is interrupted by a raised feature, such as text on a plane.Expanding it removes the holes beneath these features and creates a continuous path with a better finish for printing on top.The expansion is applied to the original top surface, before any other processing such as bridging or overhang detection."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion wall margin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Using “Top surface expansion” may cause a surface that did not previously touch the model's outer walls to now do so.\n"
|
||||
"This can cause contraction marks (such as the hull line) on the outer walls.\n"
|
||||
"By adding a small margin, this contraction will not occur directly on the walls, thereby preventing a visible mark."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Direction in which the top surface expansion grows.\n"
|
||||
" - Inward grows into the holes and gaps left by features rising from the middle of a top surface.\n"
|
||||
" - Outward grows the outer edge of the surface, connecting surfaces separated by features that can divide a surface, such as a lattice pattern.\n"
|
||||
" - Inward and Outward does both."
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward and Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom surface pattern"
|
||||
msgstr "Шаблон нижньої поверхні"
|
||||
|
||||
@@ -12350,6 +12452,18 @@ msgstr "Поріг малих периметрів"
|
||||
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
|
||||
msgstr "При цьому встановлюється поріг для невеликої довжини периметра. Порігове за замовчуванням - 0 мм"
|
||||
|
||||
msgid "Small support perimeters"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
|
||||
msgstr ""
|
||||
|
||||
msgid "Small support perimeters threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "Walls printing order"
|
||||
msgstr "Послідовність друку стінок"
|
||||
|
||||
@@ -12537,25 +12651,26 @@ msgstr ""
|
||||
"2. Запишіть оптимальне значення PA для кожної об'ємної швидкості подачі та прискорення. Ви можете знайти значення подачі, вибравши \"Flow\" у випадаючому списку колірної схеми та пересуваючи горизонтальний повзунок по лініях шаблону PA. Значення повинне відображатися внизу сторінки. Ідеальне значення PA має зменшуватися зі збільшенням об'ємної швидкості подачі. Якщо це не так, переконайтеся, що ваш екструдер працює коректно. Чим повільніше друкуєте і з меншим прискоренням, тим ширший діапазон допустимих значень PA. Якщо різниця не помітна, використовуйте значення PA із швидшого тесту.\n"
|
||||
"3. Введіть трійки значень PA, Flow і Acceleration у це текстове поле та збережіть профіль філамента."
|
||||
|
||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
msgstr "Увімкнути адаптивне випередження тиску для нависань (бета)"
|
||||
|
||||
msgid ""
|
||||
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
|
||||
msgid "Enable adaptive pressure advance within features (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pressure advance for bridges"
|
||||
msgstr "Випередження тиску для мостів"
|
||||
msgid ""
|
||||
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
|
||||
"\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
|
||||
"\n"
|
||||
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
|
||||
msgstr ""
|
||||
|
||||
msgid "Static pressure advance for bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
|
||||
"equivalent walls (using adaptive settings if enabled).\n"
|
||||
"\n"
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
msgstr ""
|
||||
"Значення випередження тиску для мостів. Встановіть 0, щоб вимкнути.\n"
|
||||
"\n"
|
||||
"Нижче значення випередження тиску при друкуванні мостів допомагає зменшити прояви незначної недоекструзії одразу після друку мостів. Це спричинено падінням тиску в соплі під час друку в повітрі, і зменшене значення випередження тиску допомагає це компенсувати."
|
||||
|
||||
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
|
||||
msgstr "Ширина лінії за замовчуванням, якщо інші ширини ліній встановлено на 0. Якщо виражено у %, вона буде розрахована за діаметром сопла."
|
||||
@@ -12933,6 +13048,22 @@ msgstr "Напрямок cуцільного заповнення"
|
||||
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
|
||||
msgstr "Кут шаблону суцільного заповнення, який контролює початок або основний напрямок лінії"
|
||||
|
||||
msgid "Top layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the top solid infill and ironing lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the bottom solid infill lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sparse infill density"
|
||||
msgstr "Щільність часткового заповнення"
|
||||
|
||||
@@ -12940,12 +13071,12 @@ msgstr "Щільність часткового заповнення"
|
||||
msgid "Density of internal sparse infill, 100% turns all sparse infill into solid infill and internal solid infill pattern will be used."
|
||||
msgstr "Щільність внутрішнього часткового заповнення, 100% перетворює все часткове заповнення на суцільне заповнення, і буде застосовано шаблон внутрішнього суцільного заповнення"
|
||||
|
||||
msgid "Align infill direction to model"
|
||||
msgid "Align directions to model"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Aligns infill, bridge, ironing and surface fill directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, directions rotate with the model to maintain optimal strength characteristics."
|
||||
"Aligns infill, bridge, ironing, and top/bottom surface directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, these directions rotate together with the model so the printed features keep their intended orientation relative to the part, preserving optimal strength and surface characteristics regardless of how the model is placed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Insert solid layers"
|
||||
@@ -14671,6 +14802,10 @@ msgstr "Вирівняне"
|
||||
msgid "Aligned back"
|
||||
msgstr ""
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Back"
|
||||
msgstr "Ззаду"
|
||||
|
||||
msgid "Random"
|
||||
msgstr "Випадкове"
|
||||
|
||||
@@ -15035,6 +15170,18 @@ msgstr "Підготовка всіх друкуючих екструдерів"
|
||||
msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print."
|
||||
msgstr "Якщо увімкнено, усі друкуючі екструдери будуть отестовані на передньому краї друкарського столу перед початком друку."
|
||||
|
||||
msgid "Toolchange ordering"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Determines the order of tool changes on each layer.\n"
|
||||
"- Default: Starts with the last used extruder to minimize tool changes.\n"
|
||||
"- Cyclic: Uses a fixed tool sequence each layer. This sacrifices speed for better surface quality, as the extra toolchanges allow layers more time to cool."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cyclic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice gap closing radius"
|
||||
msgstr "Радіус закриття пробілів під час нарізування"
|
||||
|
||||
@@ -15476,6 +15623,45 @@ msgstr "Товщина верхньої оболонки"
|
||||
msgid "The number of top solid layers is increased when slicing if the thickness calculated by top shell layers is thinner than this value. This can avoid having too thin a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers."
|
||||
msgstr "Кількість верхніх суцільних шарів збільшується при розрізанні, якщо товщина, обчислена шарами верхньої оболонки, тонша за це значення. Це дозволяє уникнути занадто тонкої оболонки при невеликій висоті шару. 0 означає, що це налаштування вимкнено і товщина верхньої оболонки повністюобмежена верхніми шарами оболонки"
|
||||
|
||||
msgid "Anisotropic surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Anisotropic patterns on the top and bottom surfaces.\n"
|
||||
"Co-directional printing mode will be applied. For certain patterns, omni-directional filling provides color dispersion when using multi-colored or silk plastics.\n"
|
||||
"This option disable the gap fill.\n"
|
||||
"This option can increase a printing time."
|
||||
msgstr ""
|
||||
|
||||
msgid "Separated infills"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Centers the internal infill of each part on itself, as if it were sliced on its own, instead of on the whole assembly. Parts that touch or overlap are treated as one body and share a center; separate parts (or distinct 3D objects) each get their own.\n"
|
||||
"Useful when an assembly groups several objects that should each keep a consistent, self-centered infill.\n"
|
||||
"Affects line and grid patterns and rotation-template infills.\n"
|
||||
"Patterns locked to global coordinates (Gyroid, Honeycomb, TPMS, ...) are unaffected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Center surface pattern on"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Chooses where the centering point of centered top/bottom surface patterns (Archimedean Chords, Octagram Spiral) is placed.\n"
|
||||
" - Each Surface: centers the pattern on every individual surface region, so each island is symmetric on its own.\n"
|
||||
" - Each Model: centers the pattern on each connected body. Parts that touch or overlap share one center; parts detached from the rest each get their own.\n"
|
||||
" - Each Assembly: uses a single shared center for the whole object or assembly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Surface"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Assembly"
|
||||
msgstr ""
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "This is the speed at which traveling is done."
|
||||
msgstr "Швидкість переміщення, яка є швидше і без екструзії"
|
||||
@@ -15719,6 +15905,14 @@ msgstr "Скручування полігонів"
|
||||
msgid "Rotate the polyhole every layer."
|
||||
msgstr "Повертайте полігон кожен шар."
|
||||
|
||||
msgid "Maximum Polyhole edge count"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Maximum number of polyhole edges\n"
|
||||
"This setting limits the amount of edges a polyhole can have"
|
||||
msgstr ""
|
||||
|
||||
msgid "G-code thumbnails"
|
||||
msgstr "Мініатюри G-code"
|
||||
|
||||
@@ -19053,6 +19247,12 @@ msgstr "Кількість трикутних граней"
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr "Розрахунок, будь ласка, зачекайте…"
|
||||
|
||||
msgid "Save these settings as default"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
|
||||
msgstr ""
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
@@ -19458,6 +19658,43 @@ msgstr ""
|
||||
"Уникнення деформації\n"
|
||||
"Чи знаєте ви, що при друку матеріалами, схильними до деформації, такими як ABS, відповідне підвищення температури гарячого ліжка може зменшити ймовірність деформації?"
|
||||
|
||||
#~ msgctxt "Sync_Nozzle_AMS"
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Скасувати"
|
||||
|
||||
#~ msgid "Print"
|
||||
#~ msgstr "Друк"
|
||||
|
||||
#~ msgid "in"
|
||||
#~ msgstr "в"
|
||||
|
||||
#~ msgid "Object coordinates"
|
||||
#~ msgstr "Координати об'єкта"
|
||||
|
||||
#~ msgid "World coordinates"
|
||||
#~ msgstr "Глобальні координати"
|
||||
|
||||
#~ msgid "Rotate (absolute)"
|
||||
#~ msgstr "Обертання (абсолютне)"
|
||||
|
||||
#~ msgid "Part coordinates"
|
||||
#~ msgstr "Координати частини"
|
||||
|
||||
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
#~ msgstr "Увімкнути адаптивне випередження тиску для нависань (бета)"
|
||||
|
||||
#~ msgid "Pressure advance for bridges"
|
||||
#~ msgstr "Випередження тиску для мостів"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
#~ "\n"
|
||||
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
#~ msgstr ""
|
||||
#~ "Значення випередження тиску для мостів. Встановіть 0, щоб вимкнути.\n"
|
||||
#~ "\n"
|
||||
#~ "Нижче значення випередження тиску при друкуванні мостів допомагає зменшити прояви незначної недоекструзії одразу після друку мостів. Це спричинено падінням тиску в соплі під час друку в повітрі, і зменшене значення випередження тиску допомагає це компенсувати."
|
||||
|
||||
#~ msgid "View control settings"
|
||||
#~ msgstr "Перегляд параметрів керування"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-07-03 14:43+0200\n"
|
||||
"POT-Creation-Date: 2026-07-12 12:27-0300\n"
|
||||
"PO-Revision-Date: 2025-10-02 17:43+0700\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: hainguyen.ts13@gmail.com\n"
|
||||
@@ -163,6 +163,12 @@ msgstr "Tô"
|
||||
msgid "Gap Fill"
|
||||
msgstr "Lấp khe"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "Dọc"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "Ngang"
|
||||
|
||||
#, boost-format
|
||||
msgid "Allows painting only on facets selected by: \"%1%\""
|
||||
msgstr "Chỉ cho phép vẽ trên mặt được chọn bởi: \"%1%\""
|
||||
@@ -258,12 +264,6 @@ msgstr "Tam giác"
|
||||
msgid "Height Range"
|
||||
msgstr "Phạm vi chiều cao"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "Dọc"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "Ngang"
|
||||
|
||||
msgid "Remove painted color"
|
||||
msgstr "Xóa màu đã vẽ"
|
||||
|
||||
@@ -328,6 +328,7 @@ msgstr "Gizmo - Xoay"
|
||||
msgid "Optimize orientation"
|
||||
msgstr "Tối ưu định hướng"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Scale"
|
||||
msgstr "Tỷ lệ"
|
||||
|
||||
@@ -337,8 +338,9 @@ msgstr "Gizmo - Tỷ lệ"
|
||||
msgid "Error: Please close all toolbar menus first"
|
||||
msgstr "Lỗi: Vui lòng đóng tất cả menu thanh công cụ trước"
|
||||
|
||||
msgctxt "inches"
|
||||
msgid "in"
|
||||
msgstr "in"
|
||||
msgstr ""
|
||||
|
||||
msgid "mm"
|
||||
msgstr "mm"
|
||||
@@ -371,6 +373,9 @@ msgstr "Tỷ lệ co giãn"
|
||||
msgid "Object operations"
|
||||
msgstr "Thao tác vật thể"
|
||||
|
||||
msgid "Scale"
|
||||
msgstr "Tỷ lệ"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Volume operations"
|
||||
msgstr "Thao tác thể tích"
|
||||
@@ -398,26 +403,33 @@ msgstr "Đặt lại vị trí"
|
||||
msgid "Reset rotation"
|
||||
msgstr "Đặt lại xoay"
|
||||
|
||||
msgid "Object coordinates"
|
||||
msgstr "Tọa độ vật thể"
|
||||
msgid "World"
|
||||
msgstr ""
|
||||
|
||||
msgid "World coordinates"
|
||||
msgstr "Tọa độ thế giới"
|
||||
msgid "Object"
|
||||
msgstr "Vật thể"
|
||||
|
||||
msgid "Translate(Relative)"
|
||||
msgid "Part"
|
||||
msgstr "Phần"
|
||||
|
||||
msgid "Relative"
|
||||
msgstr ""
|
||||
|
||||
msgid "Coordinate system used for transform actions."
|
||||
msgstr ""
|
||||
|
||||
msgid "Absolute"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset current rotation to the value when open the rotation tool."
|
||||
msgstr "Đặt lại xoay hiện tại về giá trị khi mở công cụ xoay."
|
||||
|
||||
msgid "Rotate (absolute)"
|
||||
msgstr "Xoay (tuyệt đối)"
|
||||
|
||||
msgid "Reset current rotation to real zeros."
|
||||
msgstr "Đặt lại xoay hiện tại về số không thực."
|
||||
|
||||
msgid "Part coordinates"
|
||||
msgstr "Tọa độ phần"
|
||||
msgctxt "Noun"
|
||||
msgid "Scale"
|
||||
msgstr "Tỷ lệ"
|
||||
|
||||
#. TRN - Input label. Be short as possible
|
||||
msgid "Size"
|
||||
@@ -522,12 +534,6 @@ msgstr ""
|
||||
msgid "Spacing"
|
||||
msgstr "Khoảng cách"
|
||||
|
||||
msgid "Part"
|
||||
msgstr "Phần"
|
||||
|
||||
msgid "Object"
|
||||
msgstr "Vật thể"
|
||||
|
||||
msgid ""
|
||||
"Click to flip the cut plane\n"
|
||||
"Drag to move the cut plane"
|
||||
@@ -1871,23 +1877,30 @@ msgstr "Mở dự án"
|
||||
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
|
||||
msgstr "Phiên bản Orca Slicer quá cũ và cần được cập nhật lên phiên bản mới nhất trước khi có thể sử dụng bình thường."
|
||||
|
||||
msgid "Cloud sync conflict:"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Cloud sync conflict for preset \"%s\":"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
|
||||
"This preset has a newer version in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
|
||||
"A preset with this name already exists in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
|
||||
"A preset with the same name was previously deleted from the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
|
||||
"There was an unexpected or unidentified preset conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
@@ -1896,6 +1909,12 @@ msgid ""
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Resolve cloud sync conflict"
|
||||
msgstr ""
|
||||
|
||||
@@ -1963,7 +1982,8 @@ msgstr "Số lượng preset người dùng đã lưu trong cloud vượt quá g
|
||||
msgid "Sync user presets"
|
||||
msgstr "Đồng bộ preset người dùng"
|
||||
|
||||
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
#, c-format, boost-format
|
||||
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
@@ -2184,6 +2204,9 @@ msgstr ""
|
||||
msgid "OrcaSliced Combo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Badge"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Tolerance Test"
|
||||
msgstr ""
|
||||
|
||||
@@ -3615,7 +3638,7 @@ msgstr "Hiệu chỉnh hoàn tất. Vui lòng tìm đường đùn đồng đề
|
||||
msgid "Save"
|
||||
msgstr "Lưu"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgctxt "Navigation"
|
||||
msgid "Back"
|
||||
msgstr "Sau"
|
||||
|
||||
@@ -4986,6 +5009,7 @@ msgstr ""
|
||||
msgid "Color change"
|
||||
msgstr "Đổi màu"
|
||||
|
||||
msgctxt "Noun"
|
||||
msgid "Print"
|
||||
msgstr "In"
|
||||
|
||||
@@ -5147,11 +5171,15 @@ msgstr "Tránh vùng hiệu chỉnh đùn"
|
||||
msgid "Align to Y axis"
|
||||
msgstr "Căn theo trục Y"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Back"
|
||||
msgstr "Sau"
|
||||
|
||||
msgctxt "Camera View"
|
||||
msgid "Left"
|
||||
msgstr "Trái"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Right"
|
||||
msgstr "Phải"
|
||||
|
||||
@@ -5230,6 +5258,9 @@ msgstr "Phần nhô"
|
||||
msgid "Outline"
|
||||
msgstr ""
|
||||
|
||||
msgid "Wireframe"
|
||||
msgstr ""
|
||||
|
||||
msgid "Realistic View"
|
||||
msgstr ""
|
||||
|
||||
@@ -5273,7 +5304,7 @@ msgstr "Thể tích:"
|
||||
msgid "Size:"
|
||||
msgstr "Kích thước:"
|
||||
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
|
||||
msgstr "Đã tìm thấy xung đột đường đi G-code tại lớp %d, Z = %.2lfmm. Vui lòng tách các vật thể xung đột ra xa hơn (%s <-> %s)."
|
||||
|
||||
@@ -5472,6 +5503,10 @@ msgstr "In plate"
|
||||
msgid "Export G-code file"
|
||||
msgstr "Xuất file G-code"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Print"
|
||||
msgstr "In"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "Xuất file plate đã slice"
|
||||
|
||||
@@ -5645,15 +5680,6 @@ msgstr "Xuất cấu hình hiện tại ra file"
|
||||
msgid "Export"
|
||||
msgstr "Xuất"
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quit"
|
||||
msgstr "Thoát"
|
||||
|
||||
@@ -5770,6 +5796,15 @@ msgstr "Xem"
|
||||
msgid "Preset Bundle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr ""
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr ""
|
||||
|
||||
msgid "Syncing presets from cloud…"
|
||||
msgstr ""
|
||||
|
||||
@@ -7992,6 +8027,35 @@ msgstr ""
|
||||
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
|
||||
msgstr "Nếu được bật, hộp thoại cài đặt tham số sẽ xuất hiện trong quá trình nhập file STEP."
|
||||
|
||||
msgid "STEP importing: linear deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Linear deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.003 mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: angle deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Angle deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.5."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: Split into multiple objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: disabled."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quality level for Draco export"
|
||||
msgstr ""
|
||||
|
||||
@@ -8004,6 +8068,12 @@ msgid ""
|
||||
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
|
||||
msgstr ""
|
||||
|
||||
msgid "Store full source file paths in projects"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
|
||||
msgstr ""
|
||||
|
||||
msgid "Preset"
|
||||
msgstr "Cài đặt sẵn"
|
||||
|
||||
@@ -10178,13 +10248,9 @@ msgstr ""
|
||||
msgid "Successfully synchronized nozzle and AMS number information."
|
||||
msgstr ""
|
||||
|
||||
msgid "Continue to sync filaments"
|
||||
msgid "Do you want to continue to sync filaments?"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "Sync_Nozzle_AMS"
|
||||
msgid "Cancel"
|
||||
msgstr "Hủy"
|
||||
|
||||
msgid "Successfully synchronized filament color from printer."
|
||||
msgstr ""
|
||||
|
||||
@@ -11508,7 +11574,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -11522,7 +11588,7 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
@@ -12221,6 +12287,42 @@ msgstr "Mật độ bề mặt trên"
|
||||
msgid "Density of top surface layer. A value of 100% creates a fully solid, smooth top layer. Reducing this value results in a textured top surface, according to the chosen top surface pattern. A value of 0% will result in only the walls on the top layer being created. Intended for aesthetic or functional purposes, not to fix issues such as over-extrusion."
|
||||
msgstr "Mật độ lớp bề mặt trên. Giá trị 100% tạo ra lớp trên hoàn toàn đặc, mịn . Giảm giá trị này dẫn đến bề mặt trên có kết cấu, theo mẫu bề mặt trên được chọn. Giá trị 0% sẽ dẫn đến chỉ thành trên lớp trên được tạo. Dành cho mục đích thẩm mỹ hoặc chức năng , không phải để sửa các vấn đề như đùn dư."
|
||||
|
||||
msgid "Top surface expansion"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Expands the top surfaces by this distance to connect distinct top surfaces and fill gaps.\n"
|
||||
"Useful for cases where the top surface is interrupted by a raised feature, such as text on a plane.Expanding it removes the holes beneath these features and creates a continuous path with a better finish for printing on top.The expansion is applied to the original top surface, before any other processing such as bridging or overhang detection."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion wall margin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Using “Top surface expansion” may cause a surface that did not previously touch the model's outer walls to now do so.\n"
|
||||
"This can cause contraction marks (such as the hull line) on the outer walls.\n"
|
||||
"By adding a small margin, this contraction will not occur directly on the walls, thereby preventing a visible mark."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Direction in which the top surface expansion grows.\n"
|
||||
" - Inward grows into the holes and gaps left by features rising from the middle of a top surface.\n"
|
||||
" - Outward grows the outer edge of the surface, connecting surfaces separated by features that can divide a surface, such as a lattice pattern.\n"
|
||||
" - Inward and Outward does both."
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward and Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom surface pattern"
|
||||
msgstr "Mẫu bề mặt dưới"
|
||||
|
||||
@@ -12263,6 +12365,18 @@ msgstr "Ngưỡng chu vi nhỏ"
|
||||
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
|
||||
msgstr "Điều này đặt ngưỡng cho độ dài chu vi nhỏ. Ngưỡng mặc định là 0mm."
|
||||
|
||||
msgid "Small support perimeters"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
|
||||
msgstr ""
|
||||
|
||||
msgid "Small support perimeters threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "Walls printing order"
|
||||
msgstr "Thứ tự in thành"
|
||||
|
||||
@@ -12447,25 +12561,26 @@ msgstr ""
|
||||
"2. Ghi chú giá trị PA tối ưu cho mỗi tốc độ lưu lượng thể tích và gia tốc. Bạn có thể tìm số lưu lượng bằng cách chọn lưu lượng từ menu thả xuống sơ đồ màu và di chuyển thanh trượt ngang qua các đường mẫu PA. Số nên hiển thị ở cuối trang. Giá trị PA lý tưởng nên giảm xuống khi lưu lượng thể tích càng cao. Nếu không, hãy xác nhận rằng extruder của bạn đang hoạt động chính xác. Càng chậm và với gia tốc ít hơn bạn in, phạm vi giá trị PA chấp nhận được càng lớn. Nếu không thấy sự khác biệt, hãy sử dụng giá trị PA từ kiểm tra nhanh hơn\n"
|
||||
"3. Nhập bộ ba giá trị PA, Lưu lượng và Gia tốc vào hộp văn bản ở đây và lưu hồ sơ filament của bạn."
|
||||
|
||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
msgstr "Bật áp suất nâng cao thích ứng cho phần nhô (beta)"
|
||||
|
||||
msgid ""
|
||||
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
|
||||
msgid "Enable adaptive pressure advance within features (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pressure advance for bridges"
|
||||
msgstr "Áp suất nâng cao cho cầu"
|
||||
msgid ""
|
||||
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
|
||||
"\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
|
||||
"\n"
|
||||
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
|
||||
msgstr ""
|
||||
|
||||
msgid "Static pressure advance for bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
|
||||
"equivalent walls (using adaptive settings if enabled).\n"
|
||||
"\n"
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
msgstr ""
|
||||
"Giá trị áp suất nâng cao cho cầu. Đặt thành 0 để tắt.\n"
|
||||
"\n"
|
||||
"Giá trị PA thấp hơn khi in cầu giúp giảm sự xuất hiện của đùn thiếu nhỏ ngay sau cầu. Điều này được gây ra bởi áp suất giảm trong đầu phun khi in trong không khí và PA thấp hơn giúp chống lại điều này."
|
||||
|
||||
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
|
||||
msgstr "Độ rộng đường mặc định nếu độ rộng đường khác được đặt thành 0. Nếu được biểu thị dưới dạng %, nó sẽ được tính trên đường kính đầu phun."
|
||||
@@ -12845,6 +12960,22 @@ msgstr "Hướng infill đặc"
|
||||
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
|
||||
msgstr "Góc cho mẫu infill đặc, điều khiển hướng bắt đầu hoặc chính của đường."
|
||||
|
||||
msgid "Top layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the top solid infill and ironing lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the bottom solid infill lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sparse infill density"
|
||||
msgstr "Mật độ infill thưa"
|
||||
|
||||
@@ -12852,12 +12983,12 @@ msgstr "Mật độ infill thưa"
|
||||
msgid "Density of internal sparse infill, 100% turns all sparse infill into solid infill and internal solid infill pattern will be used."
|
||||
msgstr "Mật độ của infill thưa bên trong, 100% biến tất cả infill thưa thành infill đặc và mẫu infill đặc bên trong sẽ được sử dụng."
|
||||
|
||||
msgid "Align infill direction to model"
|
||||
msgstr "Căn chỉnh hướng infill với model"
|
||||
msgid "Align directions to model"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Aligns infill, bridge, ironing and surface fill directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, directions rotate with the model to maintain optimal strength characteristics."
|
||||
"Aligns infill, bridge, ironing, and top/bottom surface directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, these directions rotate together with the model so the printed features keep their intended orientation relative to the part, preserving optimal strength and surface characteristics regardless of how the model is placed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Insert solid layers"
|
||||
@@ -14586,6 +14717,10 @@ msgstr "Căn chỉnh"
|
||||
msgid "Aligned back"
|
||||
msgstr "Căn chỉnh sau"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Back"
|
||||
msgstr "Sau"
|
||||
|
||||
msgid "Random"
|
||||
msgstr "Ngẫu nhiên"
|
||||
|
||||
@@ -14946,6 +15081,18 @@ msgstr "Nạp tất cả extruder in"
|
||||
msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print."
|
||||
msgstr "Nếu được bật, tất cả extruder in sẽ được nạp ở mép trước của bàn in lúc bắt đầu in."
|
||||
|
||||
msgid "Toolchange ordering"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Determines the order of tool changes on each layer.\n"
|
||||
"- Default: Starts with the last used extruder to minimize tool changes.\n"
|
||||
"- Cyclic: Uses a fixed tool sequence each layer. This sacrifices speed for better surface quality, as the extra toolchanges allow layers more time to cool."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cyclic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice gap closing radius"
|
||||
msgstr "Bán kính đóng khe slice"
|
||||
|
||||
@@ -15387,6 +15534,45 @@ msgstr "Độ dày vỏ trên"
|
||||
msgid "The number of top solid layers is increased when slicing if the thickness calculated by top shell layers is thinner than this value. This can avoid having too thin a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers."
|
||||
msgstr "Số lượng lớp đặc trên được tăng lên khi slice nếu độ dày được tính bởi lớp vỏ trên mỏng hơn giá trị này. Điều này có thể tránh vỏ quá mỏng khi chiều cao lớp nhỏ. 0 có nghĩa là cài đặt này bị tắt và độ dày vỏ trên được xác định tuyệt đối bởi lớp vỏ trên."
|
||||
|
||||
msgid "Anisotropic surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Anisotropic patterns on the top and bottom surfaces.\n"
|
||||
"Co-directional printing mode will be applied. For certain patterns, omni-directional filling provides color dispersion when using multi-colored or silk plastics.\n"
|
||||
"This option disable the gap fill.\n"
|
||||
"This option can increase a printing time."
|
||||
msgstr ""
|
||||
|
||||
msgid "Separated infills"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Centers the internal infill of each part on itself, as if it were sliced on its own, instead of on the whole assembly. Parts that touch or overlap are treated as one body and share a center; separate parts (or distinct 3D objects) each get their own.\n"
|
||||
"Useful when an assembly groups several objects that should each keep a consistent, self-centered infill.\n"
|
||||
"Affects line and grid patterns and rotation-template infills.\n"
|
||||
"Patterns locked to global coordinates (Gyroid, Honeycomb, TPMS, ...) are unaffected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Center surface pattern on"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Chooses where the centering point of centered top/bottom surface patterns (Archimedean Chords, Octagram Spiral) is placed.\n"
|
||||
" - Each Surface: centers the pattern on every individual surface region, so each island is symmetric on its own.\n"
|
||||
" - Each Model: centers the pattern on each connected body. Parts that touch or overlap share one center; parts detached from the rest each get their own.\n"
|
||||
" - Each Assembly: uses a single shared center for the whole object or assembly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Surface"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Assembly"
|
||||
msgstr ""
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "This is the speed at which traveling is done."
|
||||
msgstr "Tốc độ di chuyển nhanh hơn và không có đùn."
|
||||
@@ -15634,6 +15820,14 @@ msgstr "Xoắn polyhole"
|
||||
msgid "Rotate the polyhole every layer."
|
||||
msgstr "Xoay polyhole mỗi lớp."
|
||||
|
||||
msgid "Maximum Polyhole edge count"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Maximum number of polyhole edges\n"
|
||||
"This setting limits the amount of edges a polyhole can have"
|
||||
msgstr ""
|
||||
|
||||
msgid "G-code thumbnails"
|
||||
msgstr "Hình thu nhỏ G-code"
|
||||
|
||||
@@ -18974,6 +19168,12 @@ msgstr ""
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Save these settings as default"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
|
||||
msgstr ""
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr ""
|
||||
|
||||
@@ -19379,6 +19579,46 @@ msgstr ""
|
||||
"Tránh cong vênh\n"
|
||||
"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?"
|
||||
|
||||
#~ msgctxt "Sync_Nozzle_AMS"
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "Hủy"
|
||||
|
||||
#~ msgid "Align infill direction to model"
|
||||
#~ msgstr "Căn chỉnh hướng infill với model"
|
||||
|
||||
#~ msgid "Print"
|
||||
#~ msgstr "In"
|
||||
|
||||
#~ msgid "in"
|
||||
#~ msgstr "in"
|
||||
|
||||
#~ msgid "Object coordinates"
|
||||
#~ msgstr "Tọa độ vật thể"
|
||||
|
||||
#~ msgid "World coordinates"
|
||||
#~ msgstr "Tọa độ thế giới"
|
||||
|
||||
#~ msgid "Rotate (absolute)"
|
||||
#~ msgstr "Xoay (tuyệt đối)"
|
||||
|
||||
#~ msgid "Part coordinates"
|
||||
#~ msgstr "Tọa độ phần"
|
||||
|
||||
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
#~ msgstr "Bật áp suất nâng cao thích ứng cho phần nhô (beta)"
|
||||
|
||||
#~ msgid "Pressure advance for bridges"
|
||||
#~ msgstr "Áp suất nâng cao cho cầu"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
#~ "\n"
|
||||
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
#~ msgstr ""
|
||||
#~ "Giá trị áp suất nâng cao cho cầu. Đặt thành 0 để tắt.\n"
|
||||
#~ "\n"
|
||||
#~ "Giá trị PA thấp hơn khi in cầu giúp giảm sự xuất hiện của đùn thiếu nhỏ ngay sau cầu. Điều này được gây ra bởi áp suất giảm trong đầu phun khi in trong không khí và PA thấp hơn giúp chống lại điều này."
|
||||
|
||||
#~ msgid "View control settings"
|
||||
#~ msgstr "Cài đặt điều khiển chế độ xem"
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Slic3rPE\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-07-03 14:43+0200\n"
|
||||
"POT-Creation-Date: 2026-07-12 12:27-0300\n"
|
||||
"PO-Revision-Date: 2026-06-11 12:37-0300\n"
|
||||
"Last-Translator: Handle <mail@bysb.net>\n"
|
||||
"Language-Team: \n"
|
||||
@@ -165,6 +165,12 @@ msgstr "填充"
|
||||
msgid "Gap Fill"
|
||||
msgstr "缝隙填充"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "垂直"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "水平"
|
||||
|
||||
#, boost-format
|
||||
msgid "Allows painting only on facets selected by: \"%1%\""
|
||||
msgstr "绘制仅对由%1%选中的面片生效"
|
||||
@@ -260,12 +266,6 @@ msgstr "三角形"
|
||||
msgid "Height Range"
|
||||
msgstr "高度范围"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "垂直"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "水平"
|
||||
|
||||
msgid "Remove painted color"
|
||||
msgstr "移除已绘制的颜色"
|
||||
|
||||
@@ -330,6 +330,7 @@ msgstr "Gizmo-旋转"
|
||||
msgid "Optimize orientation"
|
||||
msgstr "优化朝向"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Scale"
|
||||
msgstr "缩放"
|
||||
|
||||
@@ -339,8 +340,9 @@ msgstr "缩放工具"
|
||||
msgid "Error: Please close all toolbar menus first"
|
||||
msgstr "错误:请先关闭所有工具栏菜单"
|
||||
|
||||
msgctxt "inches"
|
||||
msgid "in"
|
||||
msgstr "在"
|
||||
msgstr ""
|
||||
|
||||
msgid "mm"
|
||||
msgstr "mm"
|
||||
@@ -373,6 +375,9 @@ msgstr "缩放比例"
|
||||
msgid "Object operations"
|
||||
msgstr "对象操作"
|
||||
|
||||
msgid "Scale"
|
||||
msgstr "缩放"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Volume operations"
|
||||
msgstr "零件操作"
|
||||
@@ -400,26 +405,33 @@ msgstr "重置位置"
|
||||
msgid "Reset rotation"
|
||||
msgstr "重置旋转"
|
||||
|
||||
msgid "Object coordinates"
|
||||
msgstr "物体坐标"
|
||||
msgid "World"
|
||||
msgstr ""
|
||||
|
||||
msgid "World coordinates"
|
||||
msgstr "世界坐标"
|
||||
msgid "Object"
|
||||
msgstr "对象"
|
||||
|
||||
msgid "Translate(Relative)"
|
||||
msgstr "转换(相对)"
|
||||
msgid "Part"
|
||||
msgstr "零件"
|
||||
|
||||
msgid "Relative"
|
||||
msgstr ""
|
||||
|
||||
msgid "Coordinate system used for transform actions."
|
||||
msgstr ""
|
||||
|
||||
msgid "Absolute"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset current rotation to the value when open the rotation tool."
|
||||
msgstr "重置当前旋转为打开旋转工具时的值"
|
||||
|
||||
msgid "Rotate (absolute)"
|
||||
msgstr "旋转(绝对)"
|
||||
|
||||
msgid "Reset current rotation to real zeros."
|
||||
msgstr "重置当前旋转为真实零位"
|
||||
|
||||
msgid "Part coordinates"
|
||||
msgstr "零件坐标"
|
||||
msgctxt "Noun"
|
||||
msgid "Scale"
|
||||
msgstr "缩放"
|
||||
|
||||
#. TRN - Input label. Be short as possible
|
||||
msgid "Size"
|
||||
@@ -524,12 +536,6 @@ msgstr "间隙"
|
||||
msgid "Spacing"
|
||||
msgstr "间距"
|
||||
|
||||
msgid "Part"
|
||||
msgstr "零件"
|
||||
|
||||
msgid "Object"
|
||||
msgstr "对象"
|
||||
|
||||
msgid ""
|
||||
"Click to flip the cut plane\n"
|
||||
"Drag to move the cut plane"
|
||||
@@ -1869,33 +1875,32 @@ msgstr "打开项目"
|
||||
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
|
||||
msgstr "此逆戟鲸切片器的版本过低,需更新至最新版本方可正常使用"
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgid "Cloud sync conflict:"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Cloud sync conflict for preset \"%s\":"
|
||||
msgstr ""
|
||||
"云同步冲突:此预设在 OrcaCloud 中存在更新的版本。\n"
|
||||
"拉取将下载云端副本。强制推送将用您的本地预设覆盖它。"
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
|
||||
"This preset has a newer version in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
"云同步冲突:OrcaCloud 中已存在同名预设。\n"
|
||||
"拉取将下载云端副本。强制推送将用您的本地预设覆盖它。"
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
|
||||
"A preset with this name already exists in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"A preset with the same name was previously deleted from the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
"云同步冲突:之前已从云端删除了同名预设。\n"
|
||||
"“删除”将删除您的本地预设。“强制推送”将用您的本地预设覆盖它。"
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
|
||||
"There was an unexpected or unidentified preset conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
"云同步冲突:发生了意外或无法识别的预设冲突。\n"
|
||||
"“拉取”将下载云端副本。“强制推送”将用您的本地预设覆盖它。"
|
||||
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy with your local preset changes.\n"
|
||||
@@ -1904,6 +1909,12 @@ msgstr ""
|
||||
"强制推送将用您本地的预设更改覆盖云端副本。\n"
|
||||
"是否继续?"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Resolve cloud sync conflict"
|
||||
msgstr "解决云同步冲突"
|
||||
|
||||
@@ -1983,8 +1994,9 @@ msgstr "云端缓存的用户预设数量已超过上限,新创建的用户预
|
||||
msgid "Sync user presets"
|
||||
msgstr "同步用户预设"
|
||||
|
||||
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
msgstr "预设内容过大,无法同步到云端(超过 1MB)。请通过移除自定义配置来缩减预设大小,或仅在本地使用。"
|
||||
#, c-format, boost-format
|
||||
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s updated from %s to %s"
|
||||
@@ -2205,6 +2217,9 @@ msgstr "Orca方块"
|
||||
msgid "OrcaSliced Combo"
|
||||
msgstr "OrcaSliced 复合模型"
|
||||
|
||||
msgid "Orca Badge"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Tolerance Test"
|
||||
msgstr "Orca误差测试"
|
||||
|
||||
@@ -3632,7 +3647,7 @@ msgstr "校准完成。如下图中的示例,请在您的热床上找到最均
|
||||
msgid "Save"
|
||||
msgstr "保存"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgctxt "Navigation"
|
||||
msgid "Back"
|
||||
msgstr "背面"
|
||||
|
||||
@@ -5007,6 +5022,7 @@ msgstr "工具更换"
|
||||
msgid "Color change"
|
||||
msgstr "颜色更换"
|
||||
|
||||
msgctxt "Noun"
|
||||
msgid "Print"
|
||||
msgstr "打印"
|
||||
|
||||
@@ -5171,11 +5187,15 @@ msgstr "避开挤出校准区域"
|
||||
msgid "Align to Y axis"
|
||||
msgstr "对齐到Y轴"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Back"
|
||||
msgstr "背面"
|
||||
|
||||
msgctxt "Camera View"
|
||||
msgid "Left"
|
||||
msgstr "左"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Right"
|
||||
msgstr "右"
|
||||
|
||||
@@ -5254,6 +5274,9 @@ msgstr "悬垂"
|
||||
msgid "Outline"
|
||||
msgstr "轮廓线"
|
||||
|
||||
msgid "Wireframe"
|
||||
msgstr ""
|
||||
|
||||
msgid "Realistic View"
|
||||
msgstr "写实渲染"
|
||||
|
||||
@@ -5297,7 +5320,7 @@ msgstr "体积:"
|
||||
msgid "Size:"
|
||||
msgstr "尺寸:"
|
||||
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
|
||||
msgstr "发现G-code路径在层%d,高度为%.2lf mm处有冲突。请将有冲突的对象分离得更远(%s <-> %s)。"
|
||||
|
||||
@@ -5500,6 +5523,10 @@ msgstr "打印单盘"
|
||||
msgid "Export G-code file"
|
||||
msgstr "导出G-code文件"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Print"
|
||||
msgstr "打印"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "导出单盘切片文件"
|
||||
|
||||
@@ -5673,15 +5700,6 @@ msgstr "导出当前选择的预设"
|
||||
msgid "Export"
|
||||
msgstr "导出"
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr "同步预设"
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr "从 OrcaCloud 拉取并应用最新的预设"
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr "您必须登录后才能从云端同步预设。"
|
||||
|
||||
msgid "Quit"
|
||||
msgstr "退出程序"
|
||||
|
||||
@@ -5798,6 +5816,15 @@ msgstr "视图"
|
||||
msgid "Preset Bundle"
|
||||
msgstr "预设包"
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr "同步预设"
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr "从 OrcaCloud 拉取并应用最新的预设"
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr "您必须登录后才能从云端同步预设。"
|
||||
|
||||
msgid "Syncing presets from cloud…"
|
||||
msgstr "正在从云端同步预设…"
|
||||
|
||||
@@ -8015,6 +8042,35 @@ msgstr "显示STEP网格参数设置对话框"
|
||||
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
|
||||
msgstr "如果启用,在导入STEP文件时将出现参数设置对话框"
|
||||
|
||||
msgid "STEP importing: linear deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Linear deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.003 mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: angle deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Angle deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.5."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: Split into multiple objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: disabled."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quality level for Draco export"
|
||||
msgstr "Draco 导出的模型质量"
|
||||
|
||||
@@ -8030,6 +8086,12 @@ msgstr ""
|
||||
"0 = 无损压缩(以全精度保留几何形状)。有效有损值范围为 8 到 30。\n"
|
||||
"较低的值会生成较小的文件,但会丢失更多的几何细节;较高的值可保留更多细节,但代价是文件较大。"
|
||||
|
||||
msgid "Store full source file paths in projects"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
|
||||
msgstr ""
|
||||
|
||||
msgid "Preset"
|
||||
msgstr "预设"
|
||||
|
||||
@@ -10266,12 +10328,8 @@ msgstr "成功同步喷嘴信息。"
|
||||
msgid "Successfully synchronized nozzle and AMS number information."
|
||||
msgstr "已成功同步喷嘴和 AMS 编号信息。"
|
||||
|
||||
msgid "Continue to sync filaments"
|
||||
msgstr "继续同步耗材丝"
|
||||
|
||||
msgctxt "Sync_Nozzle_AMS"
|
||||
msgid "Cancel"
|
||||
msgstr "取消"
|
||||
msgid "Do you want to continue to sync filaments?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Successfully synchronized filament color from printer."
|
||||
msgstr "已成功同步打印机的耗材丝颜色。"
|
||||
@@ -11599,19 +11657,11 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
msgstr ""
|
||||
"外部桥接角度覆盖。\n"
|
||||
"如果保持为零,每个具体桥接的桥接角度都会自动计算。\n"
|
||||
"否则将按以下方式使用所提供的角度:\n"
|
||||
" - 绝对坐标\n"
|
||||
" - 绝对坐标 + 模型旋转:如果启用了“对齐填充方向到模型”\n"
|
||||
" - 最佳自动角度 + 此值:如果启用了“相对桥接角度”\n"
|
||||
"\n"
|
||||
"使用 180° 表示绝对角度为零。"
|
||||
|
||||
msgid "Internal bridge infill direction"
|
||||
msgstr "内部桥接填充方向"
|
||||
@@ -11621,19 +11671,11 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
msgstr ""
|
||||
"内部桥接角度覆盖。\n"
|
||||
"如果保持为零,每个具体桥接的桥接角度都会自动计算。\n"
|
||||
"否则将按以下方式使用所提供的角度:\n"
|
||||
" - 绝对坐标\n"
|
||||
" - 绝对坐标 + 模型旋转:如果启用了“对齐填充方向到模型”\n"
|
||||
" - 最佳自动角度 + 此值:如果启用了“相对桥接角度”\n"
|
||||
"\n"
|
||||
"使用 180° 表示绝对角度为零。"
|
||||
|
||||
msgid "Relative bridge angle"
|
||||
msgstr "相对桥接角度"
|
||||
@@ -12392,6 +12434,42 @@ msgstr ""
|
||||
"100% 的值会创建一个完全实心、平滑的顶面。降低此值会根据所选的顶面图案生成有纹理的顶面。0% 的值将只生成顶层的墙。\n"
|
||||
"此选项仅为美观或功能性目的,而不是为了解决过量挤出等问题。"
|
||||
|
||||
msgid "Top surface expansion"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Expands the top surfaces by this distance to connect distinct top surfaces and fill gaps.\n"
|
||||
"Useful for cases where the top surface is interrupted by a raised feature, such as text on a plane.Expanding it removes the holes beneath these features and creates a continuous path with a better finish for printing on top.The expansion is applied to the original top surface, before any other processing such as bridging or overhang detection."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion wall margin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Using “Top surface expansion” may cause a surface that did not previously touch the model's outer walls to now do so.\n"
|
||||
"This can cause contraction marks (such as the hull line) on the outer walls.\n"
|
||||
"By adding a small margin, this contraction will not occur directly on the walls, thereby preventing a visible mark."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Direction in which the top surface expansion grows.\n"
|
||||
" - Inward grows into the holes and gaps left by features rising from the middle of a top surface.\n"
|
||||
" - Outward grows the outer edge of the surface, connecting surfaces separated by features that can divide a surface, such as a lattice pattern.\n"
|
||||
" - Inward and Outward does both."
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward and Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom surface pattern"
|
||||
msgstr "底面图案"
|
||||
|
||||
@@ -12435,6 +12513,18 @@ msgstr "微小部位周长阈值"
|
||||
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
|
||||
msgstr "这将设置微小部位周长的阈值。默认阈值为0mm"
|
||||
|
||||
msgid "Small support perimeters"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
|
||||
msgstr ""
|
||||
|
||||
msgid "Small support perimeters threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "Walls printing order"
|
||||
msgstr "墙顺序"
|
||||
|
||||
@@ -12615,24 +12705,26 @@ msgstr ""
|
||||
"2. 记下每个体积流速和加速度的最佳 PA 值。您可以通过从配色方案下拉列表中选择流量并将水平滑块移动到 PA 图案线上来找到流量编号。该数字应该在页面底部可见。理想的 PA 值应该随着体积流量的增加而减小。如果不是,请确认您的挤出机运行正常。打印速度越慢且加速度越小,可接受的 PA 值范围就越大。如果没有明显差异,请使用更快测试中的 PA 值\n"
|
||||
"3. 在此处的文本框中输入 PA 值、流量和加速度的三元组并保存耗材丝配置文件"
|
||||
|
||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
msgstr "为悬垂启用自适应压力提前(试验)"
|
||||
|
||||
msgid ""
|
||||
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
|
||||
msgid "Enable adaptive pressure advance within features (beta)"
|
||||
msgstr ""
|
||||
"针对悬垂以及同一特征内的流量变化启用自适应 PA。这是一个实验性选项,因为如果未准确设置 PA 配置文件,将导致悬垂前后外表面出现均匀性问题。\n"
|
||||
"与 Prusa 打印机不兼容,因为它们会暂停以处理 PA 变化,从而导致延迟和瑕疵。"
|
||||
|
||||
msgid "Pressure advance for bridges"
|
||||
msgstr "为搭桥启用压力提前"
|
||||
|
||||
msgid ""
|
||||
"Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
|
||||
"\n"
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
msgstr "桥梁的压力提前值。设置为 0 以禁用。 打印桥接时较低的 PA 值有助于减少桥接后立即出现的轻微挤压不足现象。这是由在空气中打印时喷嘴中的压力下降引起的,较低的 PA 有助于抵消这种情况。"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
|
||||
"\n"
|
||||
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
|
||||
msgstr ""
|
||||
|
||||
msgid "Static pressure advance for bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
|
||||
"equivalent walls (using adaptive settings if enabled).\n"
|
||||
"\n"
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
msgstr ""
|
||||
|
||||
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
|
||||
msgstr "当线宽设置为0时走线的默认线宽。如果以%表示,它将基于喷嘴直径来计算。"
|
||||
@@ -13028,6 +13120,22 @@ msgstr "实心填充方向"
|
||||
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
|
||||
msgstr "实心填充图案的角度,决定走线的开始或整体方向。"
|
||||
|
||||
msgid "Top layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the top solid infill and ironing lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the bottom solid infill lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sparse infill density"
|
||||
msgstr "稀疏填充密度"
|
||||
|
||||
@@ -13035,15 +13143,13 @@ msgstr "稀疏填充密度"
|
||||
msgid "Density of internal sparse infill, 100% turns all sparse infill into solid infill and internal solid infill pattern will be used."
|
||||
msgstr "内部稀疏填充的密度,100%会将所有稀疏填充变为实心填充,并将使用内部实心填充图案。"
|
||||
|
||||
msgid "Align infill direction to model"
|
||||
msgstr "对齐填充方向到模型"
|
||||
msgid "Align directions to model"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Aligns infill, bridge, ironing and surface fill directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, directions rotate with the model to maintain optimal strength characteristics."
|
||||
"Aligns infill, bridge, ironing, and top/bottom surface directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, these directions rotate together with the model so the printed features keep their intended orientation relative to the part, preserving optimal strength and surface characteristics regardless of how the model is placed."
|
||||
msgstr ""
|
||||
"使填充、桥接、熨烫和表面填充的方向跟随模型在打印板上的朝向。\n"
|
||||
"启用后,这些方向会随模型一起旋转,以保持最佳的强度特性。"
|
||||
|
||||
msgid "Insert solid layers"
|
||||
msgstr "插入实心层"
|
||||
@@ -14821,6 +14927,10 @@ msgstr "对齐"
|
||||
msgid "Aligned back"
|
||||
msgstr "背部对齐"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Back"
|
||||
msgstr "背面"
|
||||
|
||||
msgid "Random"
|
||||
msgstr "随机"
|
||||
|
||||
@@ -15187,6 +15297,18 @@ msgstr "所有挤出机画线"
|
||||
msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print."
|
||||
msgstr "如果启用,所有挤出机将在打印开始时在床前画线"
|
||||
|
||||
msgid "Toolchange ordering"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Determines the order of tool changes on each layer.\n"
|
||||
"- Default: Starts with the last used extruder to minimize tool changes.\n"
|
||||
"- Cyclic: Uses a fixed tool sequence each layer. This sacrifices speed for better surface quality, as the extra toolchanges allow layers more time to cool."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cyclic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice gap closing radius"
|
||||
msgstr "切片间隙闭合半径"
|
||||
|
||||
@@ -15629,6 +15751,45 @@ msgstr "顶部壳体厚度"
|
||||
msgid "The number of top solid layers is increased when slicing if the thickness calculated by top shell layers is thinner than this value. This can avoid having too thin a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers."
|
||||
msgstr "如果由顶部壳体层数算出的厚度小于这个数值,那么切片时将自动增加顶部壳体层数。这能够避免当层高很小时,顶部壳体过薄。0 表示关闭这个设置,同时顶部壳体的厚度完全由顶部壳体层数决定"
|
||||
|
||||
msgid "Anisotropic surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Anisotropic patterns on the top and bottom surfaces.\n"
|
||||
"Co-directional printing mode will be applied. For certain patterns, omni-directional filling provides color dispersion when using multi-colored or silk plastics.\n"
|
||||
"This option disable the gap fill.\n"
|
||||
"This option can increase a printing time."
|
||||
msgstr ""
|
||||
|
||||
msgid "Separated infills"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Centers the internal infill of each part on itself, as if it were sliced on its own, instead of on the whole assembly. Parts that touch or overlap are treated as one body and share a center; separate parts (or distinct 3D objects) each get their own.\n"
|
||||
"Useful when an assembly groups several objects that should each keep a consistent, self-centered infill.\n"
|
||||
"Affects line and grid patterns and rotation-template infills.\n"
|
||||
"Patterns locked to global coordinates (Gyroid, Honeycomb, TPMS, ...) are unaffected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Center surface pattern on"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Chooses where the centering point of centered top/bottom surface patterns (Archimedean Chords, Octagram Spiral) is placed.\n"
|
||||
" - Each Surface: centers the pattern on every individual surface region, so each island is symmetric on its own.\n"
|
||||
" - Each Model: centers the pattern on each connected body. Parts that touch or overlap share one center; parts detached from the rest each get their own.\n"
|
||||
" - Each Assembly: uses a single shared center for the whole object or assembly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Surface"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Assembly"
|
||||
msgstr ""
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "This is the speed at which traveling is done."
|
||||
msgstr "空驶的速度。空驶是无挤出量的快速移动。"
|
||||
@@ -15877,6 +16038,14 @@ msgstr "扭曲多边型孔"
|
||||
msgid "Rotate the polyhole every layer."
|
||||
msgstr "按层旋转多边形孔。"
|
||||
|
||||
msgid "Maximum Polyhole edge count"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Maximum number of polyhole edges\n"
|
||||
"This setting limits the amount of edges a polyhole can have"
|
||||
msgstr ""
|
||||
|
||||
msgid "G-code thumbnails"
|
||||
msgstr "G-code缩略图尺寸"
|
||||
|
||||
@@ -19238,6 +19407,12 @@ msgstr "三角面片数量"
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr "正在计算,请稍候..."
|
||||
|
||||
msgid "Save these settings as default"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
|
||||
msgstr ""
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr "预设包"
|
||||
|
||||
@@ -19648,6 +19823,133 @@ msgstr ""
|
||||
"避免翘曲\n"
|
||||
"您知道吗?打印ABS这类易翘曲材料时,适当提高热床温度可以降低翘曲的概率。"
|
||||
|
||||
#~ msgid "Continue to sync filaments"
|
||||
#~ msgstr "继续同步耗材丝"
|
||||
|
||||
#~ msgctxt "Sync_Nozzle_AMS"
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "取消"
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
#~ msgid ""
|
||||
#~ "External Bridging angle override.\n"
|
||||
#~ "If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
#~ "Otherwise the provided angle will be used according to:\n"
|
||||
#~ " - The absolute coordinates\n"
|
||||
#~ " - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
#~ " - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
#~ "\n"
|
||||
#~ "Use 180° for zero absolute angle."
|
||||
#~ msgstr ""
|
||||
#~ "外部桥接角度覆盖。\n"
|
||||
#~ "如果保持为零,每个具体桥接的桥接角度都会自动计算。\n"
|
||||
#~ "否则将按以下方式使用所提供的角度:\n"
|
||||
#~ " - 绝对坐标\n"
|
||||
#~ " - 绝对坐标 + 模型旋转:如果启用了“对齐填充方向到模型”\n"
|
||||
#~ " - 最佳自动角度 + 此值:如果启用了“相对桥接角度”\n"
|
||||
#~ "\n"
|
||||
#~ "使用 180° 表示绝对角度为零。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Internal Bridging angle override.\n"
|
||||
#~ "If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
#~ "Otherwise the provided angle will be used according to:\n"
|
||||
#~ " - The absolute coordinates\n"
|
||||
#~ " - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
#~ " - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
#~ "\n"
|
||||
#~ "Use 180° for zero absolute angle."
|
||||
#~ msgstr ""
|
||||
#~ "内部桥接角度覆盖。\n"
|
||||
#~ "如果保持为零,每个具体桥接的桥接角度都会自动计算。\n"
|
||||
#~ "否则将按以下方式使用所提供的角度:\n"
|
||||
#~ " - 绝对坐标\n"
|
||||
#~ " - 绝对坐标 + 模型旋转:如果启用了“对齐填充方向到模型”\n"
|
||||
#~ " - 最佳自动角度 + 此值:如果启用了“相对桥接角度”\n"
|
||||
#~ "\n"
|
||||
#~ "使用 180° 表示绝对角度为零。"
|
||||
|
||||
#~ msgid "Align infill direction to model"
|
||||
#~ msgstr "对齐填充方向到模型"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Aligns infill, bridge, ironing and surface fill directions to follow the model's orientation on the build plate.\n"
|
||||
#~ "When enabled, directions rotate with the model to maintain optimal strength characteristics."
|
||||
#~ msgstr ""
|
||||
#~ "使填充、桥接、熨烫和表面填充的方向跟随模型在打印板上的朝向。\n"
|
||||
#~ "启用后,这些方向会随模型一起旋转,以保持最佳的强度特性。"
|
||||
|
||||
#~ msgid "Print"
|
||||
#~ msgstr "打印"
|
||||
|
||||
#~ msgid "in"
|
||||
#~ msgstr "在"
|
||||
|
||||
#~ msgid "Object coordinates"
|
||||
#~ msgstr "物体坐标"
|
||||
|
||||
#~ msgid "World coordinates"
|
||||
#~ msgstr "世界坐标"
|
||||
|
||||
#~ msgid "Translate(Relative)"
|
||||
#~ msgstr "转换(相对)"
|
||||
|
||||
#~ msgid "Rotate (absolute)"
|
||||
#~ msgstr "旋转(绝对)"
|
||||
|
||||
#~ msgid "Part coordinates"
|
||||
#~ msgstr "零件坐标"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
|
||||
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
#~ msgstr ""
|
||||
#~ "云同步冲突:此预设在 OrcaCloud 中存在更新的版本。\n"
|
||||
#~ "拉取将下载云端副本。强制推送将用您的本地预设覆盖它。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
|
||||
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
#~ msgstr ""
|
||||
#~ "云同步冲突:OrcaCloud 中已存在同名预设。\n"
|
||||
#~ "拉取将下载云端副本。强制推送将用您的本地预设覆盖它。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
|
||||
#~ "Delete will delete your local preset. Force push overwrites it with your local preset."
|
||||
#~ msgstr ""
|
||||
#~ "云同步冲突:之前已从云端删除了同名预设。\n"
|
||||
#~ "“删除”将删除您的本地预设。“强制推送”将用您的本地预设覆盖它。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
|
||||
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
#~ msgstr ""
|
||||
#~ "云同步冲突:发生了意外或无法识别的预设冲突。\n"
|
||||
#~ "“拉取”将下载云端副本。“强制推送”将用您的本地预设覆盖它。"
|
||||
|
||||
#~ msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
#~ msgstr "预设内容过大,无法同步到云端(超过 1MB)。请通过移除自定义配置来缩减预设大小,或仅在本地使用。"
|
||||
|
||||
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
#~ msgstr "为悬垂启用自适应压力提前(试验)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
|
||||
#~ "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
|
||||
#~ msgstr ""
|
||||
#~ "针对悬垂以及同一特征内的流量变化启用自适应 PA。这是一个实验性选项,因为如果未准确设置 PA 配置文件,将导致悬垂前后外表面出现均匀性问题。\n"
|
||||
#~ "与 Prusa 打印机不兼容,因为它们会暂停以处理 PA 变化,从而导致延迟和瑕疵。"
|
||||
|
||||
#~ msgid "Pressure advance for bridges"
|
||||
#~ msgstr "为搭桥启用压力提前"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
#~ "\n"
|
||||
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
#~ msgstr "桥梁的压力提前值。设置为 0 以禁用。 打印桥接时较低的 PA 值有助于减少桥接后立即出现的轻微挤压不足现象。这是由在空气中打印时喷嘴中的压力下降引起的,较低的 PA 有助于抵消这种情况。"
|
||||
|
||||
#~ msgid "Filament Sync Options"
|
||||
#~ msgstr "耗材丝同步选项"
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-07-03 14:43+0200\n"
|
||||
"POT-Creation-Date: 2026-07-12 12:27-0300\n"
|
||||
"PO-Revision-Date: 2025-11-28 13:48-0600\n"
|
||||
"Last-Translator: tntchn <15895303+tntchn@users.noreply.github.com>\n"
|
||||
"Language-Team: \n"
|
||||
@@ -168,6 +168,12 @@ msgstr "填充"
|
||||
msgid "Gap Fill"
|
||||
msgstr "縫隙填充"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "垂直"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "水平"
|
||||
|
||||
#, boost-format
|
||||
msgid "Allows painting only on facets selected by: \"%1%\""
|
||||
msgstr "僅允許在由以下條件選擇的平面上進行繪製:「%1%」"
|
||||
@@ -263,12 +269,6 @@ msgstr "三角形"
|
||||
msgid "Height Range"
|
||||
msgstr "高度範圍"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "垂直"
|
||||
|
||||
msgid "Horizontal"
|
||||
msgstr "水平"
|
||||
|
||||
msgid "Remove painted color"
|
||||
msgstr "移除已繪製的顏色"
|
||||
|
||||
@@ -333,6 +333,7 @@ msgstr "Gizmo-旋轉"
|
||||
msgid "Optimize orientation"
|
||||
msgstr "最佳化方向"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Scale"
|
||||
msgstr "縮放"
|
||||
|
||||
@@ -342,8 +343,9 @@ msgstr "Gizmo 比例"
|
||||
msgid "Error: Please close all toolbar menus first"
|
||||
msgstr "錯誤:請先關閉所有工具欄選單"
|
||||
|
||||
msgctxt "inches"
|
||||
msgid "in"
|
||||
msgstr "在"
|
||||
msgstr ""
|
||||
|
||||
msgid "mm"
|
||||
msgstr "mm"
|
||||
@@ -376,6 +378,9 @@ msgstr "縮放比例"
|
||||
msgid "Object operations"
|
||||
msgstr "物件操作"
|
||||
|
||||
msgid "Scale"
|
||||
msgstr "縮放"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Volume operations"
|
||||
msgstr "零件操作"
|
||||
@@ -403,26 +408,33 @@ msgstr "重設位置"
|
||||
msgid "Reset rotation"
|
||||
msgstr "重設旋轉"
|
||||
|
||||
msgid "Object coordinates"
|
||||
msgstr "物件座標"
|
||||
msgid "World"
|
||||
msgstr ""
|
||||
|
||||
msgid "World coordinates"
|
||||
msgstr "世界座標"
|
||||
msgid "Object"
|
||||
msgstr "物件"
|
||||
|
||||
msgid "Translate(Relative)"
|
||||
msgstr "平移(相對)"
|
||||
msgid "Part"
|
||||
msgstr "零件"
|
||||
|
||||
msgid "Relative"
|
||||
msgstr ""
|
||||
|
||||
msgid "Coordinate system used for transform actions."
|
||||
msgstr ""
|
||||
|
||||
msgid "Absolute"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reset current rotation to the value when open the rotation tool."
|
||||
msgstr "重設旋轉角度為開啟旋轉工具時的狀態。"
|
||||
|
||||
msgid "Rotate (absolute)"
|
||||
msgstr "旋轉(絕對)"
|
||||
|
||||
msgid "Reset current rotation to real zeros."
|
||||
msgstr "將旋轉角度歸零"
|
||||
|
||||
msgid "Part coordinates"
|
||||
msgstr "零件座標"
|
||||
msgctxt "Noun"
|
||||
msgid "Scale"
|
||||
msgstr "縮放"
|
||||
|
||||
#. TRN - Input label. Be short as possible
|
||||
msgid "Size"
|
||||
@@ -527,12 +539,6 @@ msgstr "間隙"
|
||||
msgid "Spacing"
|
||||
msgstr "間距"
|
||||
|
||||
msgid "Part"
|
||||
msgstr "零件"
|
||||
|
||||
msgid "Object"
|
||||
msgstr "物件"
|
||||
|
||||
msgid ""
|
||||
"Click to flip the cut plane\n"
|
||||
"Drag to move the cut plane"
|
||||
@@ -1871,33 +1877,32 @@ msgstr "打開專案"
|
||||
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
|
||||
msgstr "Orca Slicer 版本過舊,需要更新到最新版本才能正常使用"
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgid "Cloud sync conflict:"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Cloud sync conflict for preset \"%s\":"
|
||||
msgstr ""
|
||||
"雲端同步衝突:此預設在 OrcaCloud 中有較新的版本。\n"
|
||||
"拉取會下載雲端副本。強制推送會以您的本機預設覆寫雲端版本。"
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
|
||||
"This preset has a newer version in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
"雲端同步衝突:OrcaCloud 中已有同名的預設。\n"
|
||||
"拉取會下載雲端副本。強制推送會以您的本機預設覆寫它。"
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
|
||||
"A preset with this name already exists in OrcaCloud.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"A preset with the same name was previously deleted from the cloud.\n"
|
||||
"Delete will delete your local preset. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
"雲端同步衝突:先前已從雲端刪除同名的預設。\n"
|
||||
"「刪除」將刪除您的本機預設。「強制推送」會以您的本機預設覆寫它。"
|
||||
|
||||
msgid ""
|
||||
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
|
||||
"There was an unexpected or unidentified preset conflict.\n"
|
||||
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
msgstr ""
|
||||
"雲端同步衝突:發生了未預期或無法識別的預設衝突。\n"
|
||||
"拉取會下載雲端副本。強制推送會以您的本機預設覆寫它。"
|
||||
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy with your local preset changes.\n"
|
||||
@@ -1906,6 +1911,12 @@ msgstr ""
|
||||
"強制推送會以您本機的預設變更覆寫雲端副本。\n"
|
||||
"您要繼續嗎?"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Resolve cloud sync conflict"
|
||||
msgstr "解決雲端同步衝突"
|
||||
|
||||
@@ -1985,8 +1996,9 @@ msgstr "雲端儲存的使用者預設數量已超過上限,新的使用者預
|
||||
msgid "Sync user presets"
|
||||
msgstr "同步使用者預設"
|
||||
|
||||
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
msgstr "預設內容過大,無法同步至雲端(超過 1MB)。請移除自訂設定以減少預設大小,或僅在本機使用。"
|
||||
#, c-format, boost-format
|
||||
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s updated from %s to %s"
|
||||
@@ -2207,6 +2219,9 @@ msgstr "Orca 立方體"
|
||||
msgid "OrcaSliced Combo"
|
||||
msgstr "OrcaSliced 複合模型"
|
||||
|
||||
msgid "Orca Badge"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Tolerance Test"
|
||||
msgstr "Orca 誤差測試"
|
||||
|
||||
@@ -3643,7 +3658,7 @@ msgstr "校正完成。如下圖中的範例,請在您的熱床上找到最均
|
||||
msgid "Save"
|
||||
msgstr "儲存"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgctxt "Navigation"
|
||||
msgid "Back"
|
||||
msgstr "背面"
|
||||
|
||||
@@ -5049,6 +5064,7 @@ msgstr "取代工具"
|
||||
msgid "Color change"
|
||||
msgstr "顏色更換"
|
||||
|
||||
msgctxt "Noun"
|
||||
msgid "Print"
|
||||
msgstr "列印"
|
||||
|
||||
@@ -5213,11 +5229,15 @@ msgstr "避開擠出校正區域"
|
||||
msgid "Align to Y axis"
|
||||
msgstr "與 Y 軸對齊"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Back"
|
||||
msgstr "背面"
|
||||
|
||||
msgctxt "Camera View"
|
||||
msgid "Left"
|
||||
msgstr "左"
|
||||
|
||||
msgctxt "Camera"
|
||||
msgctxt "Camera View"
|
||||
msgid "Right"
|
||||
msgstr "右"
|
||||
|
||||
@@ -5296,6 +5316,9 @@ msgstr "懸空"
|
||||
msgid "Outline"
|
||||
msgstr "輪廓線"
|
||||
|
||||
msgid "Wireframe"
|
||||
msgstr ""
|
||||
|
||||
msgid "Realistic View"
|
||||
msgstr "擬真檢視"
|
||||
|
||||
@@ -5339,7 +5362,7 @@ msgstr "體積:"
|
||||
msgid "Size:"
|
||||
msgstr "尺寸:"
|
||||
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
|
||||
msgstr "發現 G-code 路徑在 %d 層,Z = %.2lf mm 處的衝突。請將有衝突的物件分離得更遠(%s <-> %s)。"
|
||||
|
||||
@@ -5543,6 +5566,10 @@ msgstr "列印單一列印板"
|
||||
msgid "Export G-code file"
|
||||
msgstr "匯出 G-code 檔案"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Print"
|
||||
msgstr "列印"
|
||||
|
||||
msgid "Export plate sliced file"
|
||||
msgstr "匯出單一列印板切片檔案"
|
||||
|
||||
@@ -5716,15 +5743,6 @@ msgstr "匯出目前選擇的設定檔"
|
||||
msgid "Export"
|
||||
msgstr "匯出"
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr "同步預設"
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr "從 OrcaCloud 拉取並套用最新的預設"
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr "您必須登入才能從雲端同步預設。"
|
||||
|
||||
msgid "Quit"
|
||||
msgstr "結束"
|
||||
|
||||
@@ -5841,6 +5859,15 @@ msgstr "視角"
|
||||
msgid "Preset Bundle"
|
||||
msgstr "設定檔組"
|
||||
|
||||
msgid "Sync Presets"
|
||||
msgstr "同步預設"
|
||||
|
||||
msgid "Pull and apply the latest presets from OrcaCloud"
|
||||
msgstr "從 OrcaCloud 拉取並套用最新的預設"
|
||||
|
||||
msgid "You must be logged in to sync presets from cloud."
|
||||
msgstr "您必須登入才能從雲端同步預設。"
|
||||
|
||||
msgid "Syncing presets from cloud…"
|
||||
msgstr "正在從雲端同步預設…"
|
||||
|
||||
@@ -8077,6 +8104,35 @@ msgstr "顯示 STEP 網格參數設定視窗。"
|
||||
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
|
||||
msgstr "啟用後,匯入 STEP 檔案時會顯示參數設定視窗。"
|
||||
|
||||
msgid "STEP importing: linear deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Linear deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.003 mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: angle deflection"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Angle deflection used when meshing imported STEP files.\n"
|
||||
"Smaller values produce higher-quality meshes but increase processing time.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: 0.5."
|
||||
msgstr ""
|
||||
|
||||
msgid "STEP importing: Split into multiple objects"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
|
||||
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
|
||||
"Default: disabled."
|
||||
msgstr ""
|
||||
|
||||
msgid "Quality level for Draco export"
|
||||
msgstr "Draco 匯出品質等級"
|
||||
|
||||
@@ -8092,6 +8148,12 @@ msgstr ""
|
||||
"0 = 無損壓縮(幾何資料以完整精度保留)。有效的有損值範圍為 8 至 30。\n"
|
||||
"較低的值會產生較小的檔案但損失更多幾何細節;較高的值會保留更多細節但檔案較大。"
|
||||
|
||||
msgid "Store full source file paths in projects"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
|
||||
msgstr ""
|
||||
|
||||
msgid "Preset"
|
||||
msgstr "預設"
|
||||
|
||||
@@ -10330,12 +10392,8 @@ msgstr "成功同步噴嘴資訊。"
|
||||
msgid "Successfully synchronized nozzle and AMS number information."
|
||||
msgstr "成功同步噴嘴和 AMS 數量資訊。"
|
||||
|
||||
msgid "Continue to sync filaments"
|
||||
msgstr "繼續同步線材"
|
||||
|
||||
msgctxt "Sync_Nozzle_AMS"
|
||||
msgid "Cancel"
|
||||
msgstr "取消"
|
||||
msgid "Do you want to continue to sync filaments?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Successfully synchronized filament color from printer."
|
||||
msgstr "成功從列印設備同步線材顏色。"
|
||||
@@ -11666,19 +11724,11 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
msgstr ""
|
||||
"外部橋接角度覆蓋。\n"
|
||||
"若保持為零,將為每個特定橋接自動計算橋接角度。\n"
|
||||
"否則將依下列方式使用所提供的角度:\n"
|
||||
" - 絕對座標\n"
|
||||
" - 絕對座標 + 模型旋轉:若已啟用「對齊填充方向至模型」\n"
|
||||
" - 最佳自動角度 + 此數值:若已啟用「相對橋接角度」\n"
|
||||
"\n"
|
||||
"若要設定絕對角度為零,請使用 180°。"
|
||||
|
||||
msgid "Internal bridge infill direction"
|
||||
msgstr "內部橋接結構的填充方向"
|
||||
@@ -11688,19 +11738,11 @@ msgid ""
|
||||
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
"Otherwise the provided angle will be used according to:\n"
|
||||
" - The absolute coordinates\n"
|
||||
" - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
" - The absolute coordinates + Model rotation: If Align directions to model is enabled\n"
|
||||
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
"\n"
|
||||
"Use 180° for zero absolute angle."
|
||||
msgstr ""
|
||||
"內部橋接角度覆寫。\n"
|
||||
"若保持為零,將為每個特定橋接自動計算橋接角度。\n"
|
||||
"否則將依照下列方式使用所提供的角度:\n"
|
||||
" - 絕對座標\n"
|
||||
" - 絕對座標 + 模型旋轉:若啟用「將填充方向對齊模型」\n"
|
||||
" - 最佳自動角度 + 此值:若啟用「相對橋接角度」\n"
|
||||
"\n"
|
||||
"使用 180° 表示零絕對角度。"
|
||||
|
||||
msgid "Relative bridge angle"
|
||||
msgstr "相對橋接角度"
|
||||
@@ -12459,6 +12501,42 @@ msgstr "頂面密度"
|
||||
msgid "Density of top surface layer. A value of 100% creates a fully solid, smooth top layer. Reducing this value results in a textured top surface, according to the chosen top surface pattern. A value of 0% will result in only the walls on the top layer being created. Intended for aesthetic or functional purposes, not to fix issues such as over-extrusion."
|
||||
msgstr "頂面層的密度。100% 將建立完全實心且平滑的頂層。降低此數值會根據所選的頂面圖案產生紋理表面。0% 則只會建立頂層的牆體。此功能旨在實現美觀或功能需求,而非修正過擠等問題"
|
||||
|
||||
msgid "Top surface expansion"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Expands the top surfaces by this distance to connect distinct top surfaces and fill gaps.\n"
|
||||
"Useful for cases where the top surface is interrupted by a raised feature, such as text on a plane.Expanding it removes the holes beneath these features and creates a continuous path with a better finish for printing on top.The expansion is applied to the original top surface, before any other processing such as bridging or overhang detection."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion wall margin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Using “Top surface expansion” may cause a surface that did not previously touch the model's outer walls to now do so.\n"
|
||||
"This can cause contraction marks (such as the hull line) on the outer walls.\n"
|
||||
"By adding a small margin, this contraction will not occur directly on the walls, thereby preventing a visible mark."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top expansion direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Direction in which the top surface expansion grows.\n"
|
||||
" - Inward grows into the holes and gaps left by features rising from the middle of a top surface.\n"
|
||||
" - Outward grows the outer edge of the surface, connecting surfaces separated by features that can divide a surface, such as a lattice pattern.\n"
|
||||
" - Inward and Outward does both."
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward and Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Inward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Outward"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom surface pattern"
|
||||
msgstr "底面圖案"
|
||||
|
||||
@@ -12501,6 +12579,18 @@ msgstr "微小部位周長臨界值"
|
||||
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
|
||||
msgstr "這設定了微小部位周長的臨界值。 預設臨界值是 0mm"
|
||||
|
||||
msgid "Small support perimeters"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
|
||||
msgstr ""
|
||||
|
||||
msgid "Small support perimeters threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
|
||||
msgstr ""
|
||||
|
||||
msgid "Walls printing order"
|
||||
msgstr "牆列印順序"
|
||||
|
||||
@@ -12683,24 +12773,26 @@ msgstr ""
|
||||
"2. 記錄每個體積流速和加速度的最佳壓力補償 (PA) 值。您可以通過從顏色方案下拉選單中選擇流量,並將水平滑桿移動到 PA 測試線的圖案來找到流量數值。該數值應顯示在頁面底部。理想的 PA 值應隨著體積流速的增加而減小。如果不是,請檢查您的擠出機是否正常工作。當列印速度較慢且加速度較低時,可接受的 PA 值範圍會更大。如果看不出差異,請採用最快測試的 PA 值。\n"
|
||||
"3. 將 PA 值、流量和加速度的三組資料輸入到此文字框中,然後保存您的線材設定檔"
|
||||
|
||||
msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
msgstr "啟用懸挑自適應壓力補償 (beta)"
|
||||
|
||||
msgid ""
|
||||
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
|
||||
msgid "Enable adaptive pressure advance within features (beta)"
|
||||
msgstr ""
|
||||
"針對懸空以及同一特徵內的流量變化啟用自適應壓力補償 (PA)。這是一個實驗性選項,因為若 PA 設定檔設定不準確,將會導致懸空前後的外表面出現均勻性問題。\n"
|
||||
"與 Prusa 印表機不相容,因為它們會暫停以處理 PA 變更,進而導致延遲與瑕疵。"
|
||||
|
||||
msgid "Pressure advance for bridges"
|
||||
msgstr "橋接的壓力補償"
|
||||
|
||||
msgid ""
|
||||
"Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
|
||||
"\n"
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
msgstr "橋接的壓力補償值。設為 0 以停用此功能。降低橋接時的壓力補償值有助於減少橋接結束後立即出現的輕微欠擠出現象。這種現象是由於在空中列印時噴嘴內壓力下降引起的,而降低壓力補償值有助於抵消這一影響。"
|
||||
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
|
||||
"\n"
|
||||
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
|
||||
msgstr ""
|
||||
|
||||
msgid "Static pressure advance for bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
|
||||
"equivalent walls (using adaptive settings if enabled).\n"
|
||||
"\n"
|
||||
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
msgstr ""
|
||||
|
||||
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
|
||||
msgstr "當線寬設定為 0 時走線的預設線寬。如果以 % 表示,將以噴嘴直徑為基準來計算。"
|
||||
@@ -13082,6 +13174,22 @@ msgstr "實心填充方向"
|
||||
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
|
||||
msgstr "實心填充圖案的角度設定,用於決定線條的起始方向或主要列印方向"
|
||||
|
||||
msgid "Top layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the top solid infill and ironing lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom layer direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fixed angle for the bottom solid infill lines.\n"
|
||||
"Set to -1 to follow the default solid infill direction."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sparse infill density"
|
||||
msgstr "稀疏填充密度"
|
||||
|
||||
@@ -13089,15 +13197,13 @@ msgstr "稀疏填充密度"
|
||||
msgid "Density of internal sparse infill, 100% turns all sparse infill into solid infill and internal solid infill pattern will be used."
|
||||
msgstr "設定內部稀疏填充的密度,當密度為 100% 時,所有稀疏填充將變為實心填充,並套用內部實心填充的圖案"
|
||||
|
||||
msgid "Align infill direction to model"
|
||||
msgstr "對齊填充方向至模型"
|
||||
msgid "Align directions to model"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Aligns infill, bridge, ironing and surface fill directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, directions rotate with the model to maintain optimal strength characteristics."
|
||||
"Aligns infill, bridge, ironing, and top/bottom surface directions to follow the model's orientation on the build plate.\n"
|
||||
"When enabled, these directions rotate together with the model so the printed features keep their intended orientation relative to the part, preserving optimal strength and surface characteristics regardless of how the model is placed."
|
||||
msgstr ""
|
||||
"使填充、橋接、熨燙與表面填充的方向對齊,以跟隨模型在列印板上的方向。\n"
|
||||
"啟用後,方向會隨模型一同旋轉,以維持最佳的強度特性。"
|
||||
|
||||
msgid "Insert solid layers"
|
||||
msgstr "插入實心層"
|
||||
@@ -14882,6 +14988,10 @@ msgstr "對齊"
|
||||
msgid "Aligned back"
|
||||
msgstr "背部對齊"
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "Back"
|
||||
msgstr "背面"
|
||||
|
||||
msgid "Random"
|
||||
msgstr "隨機"
|
||||
|
||||
@@ -15237,6 +15347,18 @@ msgstr "所有擠出機畫線"
|
||||
msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print."
|
||||
msgstr "如果啟用,所有擠出機將在列印開始時在列印板前方畫線。"
|
||||
|
||||
msgid "Toolchange ordering"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Determines the order of tool changes on each layer.\n"
|
||||
"- Default: Starts with the last used extruder to minimize tool changes.\n"
|
||||
"- Cyclic: Uses a fixed tool sequence each layer. This sacrifices speed for better surface quality, as the extra toolchanges allow layers more time to cool."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cyclic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slice gap closing radius"
|
||||
msgstr "切片間隙閉合半徑"
|
||||
|
||||
@@ -15677,6 +15799,45 @@ msgstr "頂部外殼厚度"
|
||||
msgid "The number of top solid layers is increased when slicing if the thickness calculated by top shell layers is thinner than this value. This can avoid having too thin a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers."
|
||||
msgstr "當切片時,如果通過頂部殼層計算的厚度小於設定值,將自動增加頂部實心層的數量,以避免層高較小時頂部殼層過薄。若設為 0,則停用此功能,頂部殼層厚度完全由設定的頂部殼層數決定"
|
||||
|
||||
msgid "Anisotropic surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Anisotropic patterns on the top and bottom surfaces.\n"
|
||||
"Co-directional printing mode will be applied. For certain patterns, omni-directional filling provides color dispersion when using multi-colored or silk plastics.\n"
|
||||
"This option disable the gap fill.\n"
|
||||
"This option can increase a printing time."
|
||||
msgstr ""
|
||||
|
||||
msgid "Separated infills"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Centers the internal infill of each part on itself, as if it were sliced on its own, instead of on the whole assembly. Parts that touch or overlap are treated as one body and share a center; separate parts (or distinct 3D objects) each get their own.\n"
|
||||
"Useful when an assembly groups several objects that should each keep a consistent, self-centered infill.\n"
|
||||
"Affects line and grid patterns and rotation-template infills.\n"
|
||||
"Patterns locked to global coordinates (Gyroid, Honeycomb, TPMS, ...) are unaffected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Center surface pattern on"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Chooses where the centering point of centered top/bottom surface patterns (Archimedean Chords, Octagram Spiral) is placed.\n"
|
||||
" - Each Surface: centers the pattern on every individual surface region, so each island is symmetric on its own.\n"
|
||||
" - Each Model: centers the pattern on each connected body. Parts that touch or overlap share one center; parts detached from the rest each get their own.\n"
|
||||
" - Each Assembly: uses a single shared center for the whole object or assembly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Surface"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Each Assembly"
|
||||
msgstr ""
|
||||
|
||||
# TODO: Review, changed by lang refactor. PR 14254
|
||||
msgid "This is the speed at which traveling is done."
|
||||
msgstr "空駛的速度。空駛是無擠出量的快速移動"
|
||||
@@ -15924,6 +16085,14 @@ msgstr "扭曲多邊形孔"
|
||||
msgid "Rotate the polyhole every layer."
|
||||
msgstr "依層旋轉多邊形孔。"
|
||||
|
||||
msgid "Maximum Polyhole edge count"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Maximum number of polyhole edges\n"
|
||||
"This setting limits the amount of edges a polyhole can have"
|
||||
msgstr ""
|
||||
|
||||
msgid "G-code thumbnails"
|
||||
msgstr "G-code 縮圖"
|
||||
|
||||
@@ -19288,6 +19457,12 @@ msgstr "三角面片數量"
|
||||
msgid "Calculating, please wait..."
|
||||
msgstr "正在計算,請稍候..."
|
||||
|
||||
msgid "Save these settings as default"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
|
||||
msgstr ""
|
||||
|
||||
msgid "PresetBundle"
|
||||
msgstr "設定檔組"
|
||||
|
||||
@@ -19719,6 +19894,133 @@ msgstr ""
|
||||
"您知道嗎?當列印容易翹曲的材料(如 ABS)時,適當提高熱床溫度\n"
|
||||
"可以降低翹曲的機率。"
|
||||
|
||||
#~ msgid "Continue to sync filaments"
|
||||
#~ msgstr "繼續同步線材"
|
||||
|
||||
#~ msgctxt "Sync_Nozzle_AMS"
|
||||
#~ msgid "Cancel"
|
||||
#~ msgstr "取消"
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
#~ msgid ""
|
||||
#~ "External Bridging angle override.\n"
|
||||
#~ "If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
#~ "Otherwise the provided angle will be used according to:\n"
|
||||
#~ " - The absolute coordinates\n"
|
||||
#~ " - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
#~ " - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
#~ "\n"
|
||||
#~ "Use 180° for zero absolute angle."
|
||||
#~ msgstr ""
|
||||
#~ "外部橋接角度覆蓋。\n"
|
||||
#~ "若保持為零,將為每個特定橋接自動計算橋接角度。\n"
|
||||
#~ "否則將依下列方式使用所提供的角度:\n"
|
||||
#~ " - 絕對座標\n"
|
||||
#~ " - 絕對座標 + 模型旋轉:若已啟用「對齊填充方向至模型」\n"
|
||||
#~ " - 最佳自動角度 + 此數值:若已啟用「相對橋接角度」\n"
|
||||
#~ "\n"
|
||||
#~ "若要設定絕對角度為零,請使用 180°。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Internal Bridging angle override.\n"
|
||||
#~ "If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
|
||||
#~ "Otherwise the provided angle will be used according to:\n"
|
||||
#~ " - The absolute coordinates\n"
|
||||
#~ " - The absolute coordinates + Model rotation: If Align infill direction to model is enabled\n"
|
||||
#~ " - The optimal automatic angle + this value: If 'Relative Bridge Angle' is enabled\n"
|
||||
#~ "\n"
|
||||
#~ "Use 180° for zero absolute angle."
|
||||
#~ msgstr ""
|
||||
#~ "內部橋接角度覆寫。\n"
|
||||
#~ "若保持為零,將為每個特定橋接自動計算橋接角度。\n"
|
||||
#~ "否則將依照下列方式使用所提供的角度:\n"
|
||||
#~ " - 絕對座標\n"
|
||||
#~ " - 絕對座標 + 模型旋轉:若啟用「將填充方向對齊模型」\n"
|
||||
#~ " - 最佳自動角度 + 此值:若啟用「相對橋接角度」\n"
|
||||
#~ "\n"
|
||||
#~ "使用 180° 表示零絕對角度。"
|
||||
|
||||
#~ msgid "Align infill direction to model"
|
||||
#~ msgstr "對齊填充方向至模型"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Aligns infill, bridge, ironing and surface fill directions to follow the model's orientation on the build plate.\n"
|
||||
#~ "When enabled, directions rotate with the model to maintain optimal strength characteristics."
|
||||
#~ msgstr ""
|
||||
#~ "使填充、橋接、熨燙與表面填充的方向對齊,以跟隨模型在列印板上的方向。\n"
|
||||
#~ "啟用後,方向會隨模型一同旋轉,以維持最佳的強度特性。"
|
||||
|
||||
#~ msgid "Print"
|
||||
#~ msgstr "列印"
|
||||
|
||||
#~ msgid "in"
|
||||
#~ msgstr "在"
|
||||
|
||||
#~ msgid "Object coordinates"
|
||||
#~ msgstr "物件座標"
|
||||
|
||||
#~ msgid "World coordinates"
|
||||
#~ msgstr "世界座標"
|
||||
|
||||
#~ msgid "Translate(Relative)"
|
||||
#~ msgstr "平移(相對)"
|
||||
|
||||
#~ msgid "Rotate (absolute)"
|
||||
#~ msgstr "旋轉(絕對)"
|
||||
|
||||
#~ msgid "Part coordinates"
|
||||
#~ msgstr "零件座標"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
|
||||
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
#~ msgstr ""
|
||||
#~ "雲端同步衝突:此預設在 OrcaCloud 中有較新的版本。\n"
|
||||
#~ "拉取會下載雲端副本。強制推送會以您的本機預設覆寫雲端版本。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
|
||||
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
#~ msgstr ""
|
||||
#~ "雲端同步衝突:OrcaCloud 中已有同名的預設。\n"
|
||||
#~ "拉取會下載雲端副本。強制推送會以您的本機預設覆寫它。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
|
||||
#~ "Delete will delete your local preset. Force push overwrites it with your local preset."
|
||||
#~ msgstr ""
|
||||
#~ "雲端同步衝突:先前已從雲端刪除同名的預設。\n"
|
||||
#~ "「刪除」將刪除您的本機預設。「強制推送」會以您的本機預設覆寫它。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
|
||||
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
|
||||
#~ msgstr ""
|
||||
#~ "雲端同步衝突:發生了未預期或無法識別的預設衝突。\n"
|
||||
#~ "拉取會下載雲端副本。強制推送會以您的本機預設覆寫它。"
|
||||
|
||||
#~ msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
|
||||
#~ msgstr "預設內容過大,無法同步至雲端(超過 1MB)。請移除自訂設定以減少預設大小,或僅在本機使用。"
|
||||
|
||||
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
|
||||
#~ msgstr "啟用懸挑自適應壓力補償 (beta)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
|
||||
#~ "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
|
||||
#~ msgstr ""
|
||||
#~ "針對懸空以及同一特徵內的流量變化啟用自適應壓力補償 (PA)。這是一個實驗性選項,因為若 PA 設定檔設定不準確,將會導致懸空前後的外表面出現均勻性問題。\n"
|
||||
#~ "與 Prusa 印表機不相容,因為它們會暫停以處理 PA 變更,進而導致延遲與瑕疵。"
|
||||
|
||||
#~ msgid "Pressure advance for bridges"
|
||||
#~ msgstr "橋接的壓力補償"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
|
||||
#~ "\n"
|
||||
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
|
||||
#~ msgstr "橋接的壓力補償值。設為 0 以停用此功能。降低橋接時的壓力補償值有助於減少橋接結束後立即出現的輕微欠擠出現象。這種現象是由於在空中列印時噴嘴內壓力下降引起的,而降低壓力補償值有助於抵消這一影響。"
|
||||
|
||||
#~ msgid "Filament Sync Options"
|
||||
#~ msgstr "線材同步選項"
|
||||
|
||||
|
||||
BIN
resources/handy_models/OrcaBadge.3mf
Normal file
BIN
resources/handy_models/OrcaBadge.3mf
Normal file
Binary file not shown.
Binary file not shown.
20905
resources/hms/hms_lt_093.json
Normal file
20905
resources/hms/hms_lt_093.json
Normal file
File diff suppressed because it is too large
Load Diff
20317
resources/hms/hms_lt_094.json
Normal file
20317
resources/hms/hms_lt_094.json
Normal file
File diff suppressed because it is too large
Load Diff
20217
resources/hms/hms_lt_22E.json
Normal file
20217
resources/hms/hms_lt_22E.json
Normal file
File diff suppressed because it is too large
Load Diff
21801
resources/hms/hms_lt_239.json
Normal file
21801
resources/hms/hms_lt_239.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -1,3 +1,3 @@
|
||||
<svg width="19" height="20" viewBox="0 0 19 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12.9742 9.65669C13.2353 9.91782 13.2353 10.3401 12.9742 10.5984L7.64038 15.935C7.37924 16.1961 6.95698 16.1961 6.69863 15.935C6.44027 15.6739 6.43749 15.2516 6.69863 14.9933L11.5602 10.1317L6.69585 5.26742C6.43472 5.00628 6.43472 4.58403 6.69585 4.32567C6.95698 4.06731 7.37924 4.06454 7.6376 4.32567L12.9742 9.65669Z" fill="#009688"/>
|
||||
<path d="M12.9742 9.65669C13.2353 9.91782 13.2353 10.3401 12.9742 10.5984L7.64038 15.935C7.37924 16.1961 6.95698 16.1961 6.69863 15.935C6.44027 15.6739 6.43749 15.2516 6.69863 14.9933L11.5602 10.1317L6.69585 5.26742C6.43472 5.00628 6.43472 4.58403 6.69585 4.32567C6.95698 4.06731 7.37924 4.06454 7.6376 4.32567L12.9742 9.65669Z" fill="#949494"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 449 B After Width: | Height: | Size: 449 B |
@@ -1,3 +1,3 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M10.5084 13.1962C10.2472 13.4574 9.82496 13.4574 9.5666 13.1962L4.23003 7.86242C3.9689 7.60129 3.9689 7.17903 4.23003 6.92068C4.49116 6.66232 4.91342 6.65954 5.17178 6.92068L10.0333 11.7822L14.8976 6.9179C15.1588 6.65676 15.581 6.65676 15.8394 6.9179C16.0977 7.17903 16.1005 7.60129 15.8394 7.85965L10.5084 13.1962Z" fill="#009688"/>
|
||||
<path d="M10.5084 13.1962C10.2472 13.4574 9.82496 13.4574 9.5666 13.1962L4.23003 7.86242C3.9689 7.60129 3.9689 7.17903 4.23003 6.92068C4.49116 6.66232 4.91342 6.65954 5.17178 6.92068L10.0333 11.7822L14.8976 6.9179C15.1588 6.65676 15.581 6.65676 15.8394 6.9179C16.0977 7.17903 16.1005 7.60129 15.8394 7.85965L10.5084 13.1962Z" fill="#949494"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 446 B After Width: | Height: | Size: 446 B |
1
resources/images/param_z_contouring.svg
Normal file
1
resources/images/param_z_contouring.svg
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="a" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18"><line x1="2.5" y1="14.5" x2="16.5" y2="14.5" style="fill:none; stroke:#949494; stroke-linecap:square; stroke-miterlimit:10;"/><line x1="2.5" y1="16.5" x2="16.5" y2="16.5" style="fill:none; stroke:#949494; stroke-linecap:square; stroke-miterlimit:10;"/><line x1="16.5" y1="12.5" x2="2.67" y2="12.5" style="fill:none; stroke:#949494; stroke-linecap:square; stroke-miterlimit:10;"/><line x1="16.5" y1="10.5" x2="3.19" y2="10.5" style="fill:none; stroke:#949494; stroke-linecap:square; stroke-miterlimit:10;"/><line x1="4.11" y1="8.5" x2="16.5" y2="8.5" style="fill:none; stroke:#949494; stroke-linecap:square; stroke-miterlimit:10;"/><line x1="16.5" y1="6.5" x2="5.56" y2="6.5" style="fill:none; stroke:#949494; stroke-linecap:square; stroke-miterlimit:10;"/><line x1="7.87" y1="4.5" x2="16.5" y2="4.5" style="fill:none; stroke:#949494; stroke-linecap:square; stroke-miterlimit:10;"/><line x1="12.92" y1="2.5" x2="16.5" y2="2.5" style="fill:none; stroke:#949494; stroke-linecap:square; stroke-miterlimit:10;"/><path d="M.5,16.5v-2C.5,6.77,6.77.5,14.5.5h2" style="fill:none; stroke:#009688; stroke-linecap:square; stroke-miterlimit:10;"/></svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Afinia",
|
||||
"version": "02.04.00.01",
|
||||
"version": "02.04.00.02",
|
||||
"force_update": "0",
|
||||
"description": "Afinia configurations",
|
||||
"machine_model_list": [
|
||||
@@ -124,14 +124,6 @@
|
||||
"name": "fdm_filament_tpu",
|
||||
"sub_path": "filament/fdm_filament_tpu.json"
|
||||
},
|
||||
{
|
||||
"name": "Afinia ABS",
|
||||
"sub_path": "filament/Afinia ABS.json"
|
||||
},
|
||||
{
|
||||
"name": "Afinia ABS+",
|
||||
"sub_path": "filament/Afinia ABS+.json"
|
||||
},
|
||||
{
|
||||
"name": "Afinia ABS+@HS",
|
||||
"sub_path": "filament/Afinia ABS+@HS.json"
|
||||
@@ -140,34 +132,18 @@
|
||||
"name": "Afinia ABS@HS",
|
||||
"sub_path": "filament/Afinia ABS@HS.json"
|
||||
},
|
||||
{
|
||||
"name": "Afinia Value ABS",
|
||||
"sub_path": "filament/Afinia Value ABS.json"
|
||||
},
|
||||
{
|
||||
"name": "Afinia Value ABS@HS",
|
||||
"sub_path": "filament/Afinia Value ABS@HS.json"
|
||||
},
|
||||
{
|
||||
"name": "Afinia PLA",
|
||||
"sub_path": "filament/Afinia PLA.json"
|
||||
},
|
||||
{
|
||||
"name": "Afinia PLA@HS",
|
||||
"sub_path": "filament/Afinia PLA@HS.json"
|
||||
},
|
||||
{
|
||||
"name": "Afinia Value PLA",
|
||||
"sub_path": "filament/Afinia Value PLA.json"
|
||||
},
|
||||
{
|
||||
"name": "Afinia Value PLA@HS",
|
||||
"sub_path": "filament/Afinia Value PLA@HS.json"
|
||||
},
|
||||
{
|
||||
"name": "Afinia TPU",
|
||||
"sub_path": "filament/Afinia TPU.json"
|
||||
},
|
||||
{
|
||||
"name": "Afinia TPU@HS",
|
||||
"sub_path": "filament/Afinia TPU@HS.json"
|
||||
|
||||
@@ -1,37 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFB00",
|
||||
"setting_id": "i5tf9foHnTVNmA2r",
|
||||
"name": "Afinia ABS+",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_abs",
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_cost": [
|
||||
"24.99"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Afinia"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"275"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"275"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Afinia H400 Pro 0.4 nozzle",
|
||||
"Afinia H400 Pro 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,31 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFB00",
|
||||
"setting_id": "LhDHvMepbh8ecfQT",
|
||||
"name": "Afinia ABS",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_abs",
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_cost": [
|
||||
"24.99"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Afinia"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Afinia H400 Pro 0.4 nozzle",
|
||||
"Afinia H400 Pro 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFA00",
|
||||
"setting_id": "1qEFsay7kjYIUkpG",
|
||||
"name": "Afinia PLA",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_pla",
|
||||
"filament_cost": [
|
||||
"24.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.26"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"21"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Afinia"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Afinia H400 Pro 0.4 nozzle",
|
||||
"Afinia H400 Pro 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,28 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Afinia TPU",
|
||||
"inherits": "fdm_filament_tpu",
|
||||
"from": "system",
|
||||
"setting_id": "E7WBTARZ971LaDMj",
|
||||
"filament_id": "GFU01",
|
||||
"instantiation": "true",
|
||||
"filament_vendor": [
|
||||
"Afinia"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.22"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"230"
|
||||
],
|
||||
"filament_cost": [
|
||||
"41.99"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"230"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Afinia H400 Pro 0.4 nozzle",
|
||||
"Afinia H400 Pro 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,37 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFB00",
|
||||
"setting_id": "jEYVpOPBjFtQ0DXn",
|
||||
"name": "Afinia Value ABS",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_abs",
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_cost": [
|
||||
"24.99"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Afinia"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"245"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"245"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Afinia H400 Pro 0.4 nozzle",
|
||||
"Afinia H400 Pro 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,40 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFA00",
|
||||
"setting_id": "oNBk0IxmW7C99WI3",
|
||||
"name": "Afinia Value PLA",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_pla",
|
||||
"filament_cost": [
|
||||
"24.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.26"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"21"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Afinia"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"190"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"190"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Afinia H400 Pro 0.4 nozzle",
|
||||
"Afinia H400 Pro 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "Bambulab",
|
||||
"url": "http://www.bambulab.com/Parameters/vendor/BBL.json",
|
||||
"version": "02.01.00.18",
|
||||
"version": "02.01.00.19",
|
||||
"force_update": "0",
|
||||
"description": "BBL configurations",
|
||||
"machine_model_list": [
|
||||
@@ -2177,6 +2177,10 @@
|
||||
"name": "Generic ABS @BBL X2D 0.4 nozzle",
|
||||
"sub_path": "filament/Generic ABS @BBL X2D 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "addnorth ABS rABS",
|
||||
"sub_path": "filament/addnorth/addnorth ABS rABS.json"
|
||||
},
|
||||
{
|
||||
"name": "PolyLite ABS @BBL A1",
|
||||
"sub_path": "filament/Polymaker/PolyLite ABS @BBL A1.json"
|
||||
@@ -3005,6 +3009,22 @@
|
||||
"name": "Generic PA @BBL X2D 0.4 nozzle",
|
||||
"sub_path": "filament/Generic PA @BBL X2D 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "addnorth PA Adura",
|
||||
"sub_path": "filament/addnorth/addnorth PA Adura.json"
|
||||
},
|
||||
{
|
||||
"name": "addnorth PA Adura FDA",
|
||||
"sub_path": "filament/addnorth/addnorth PA Adura FDA.json"
|
||||
},
|
||||
{
|
||||
"name": "addnorth PA6 Addlantis",
|
||||
"sub_path": "filament/addnorth/addnorth PA6 Addlantis.json"
|
||||
},
|
||||
{
|
||||
"name": "addnorth PVDF Adamant S1",
|
||||
"sub_path": "filament/addnorth/addnorth PVDF Adamant S1.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PA-CF",
|
||||
"sub_path": "filament/Generic PA-CF.json"
|
||||
@@ -3029,6 +3049,10 @@
|
||||
"name": "Generic PA-CF @BBL X2D 0.4 nozzle",
|
||||
"sub_path": "filament/Generic PA-CF @BBL X2D 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "addnorth PA-CF Adura X",
|
||||
"sub_path": "filament/addnorth/addnorth PA-CF Adura X.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PC @BBL A1",
|
||||
"sub_path": "filament/Bambu PC @BBL A1.json"
|
||||
@@ -3329,6 +3353,10 @@
|
||||
"name": "Generic PC @BBL X2D 0.4 nozzle",
|
||||
"sub_path": "filament/Generic PC @BBL X2D 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "addnorth PC BLend HT LCF",
|
||||
"sub_path": "filament/addnorth/addnorth PC BLend HT LCF.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PCTG @BBL A1",
|
||||
"sub_path": "filament/Generic PCTG @BBL A1.json"
|
||||
@@ -4185,6 +4213,30 @@
|
||||
"name": "Generic PETG @BBL X2D 0.4 nozzle",
|
||||
"sub_path": "filament/Generic PETG @BBL X2D 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "addnorth PETG Base",
|
||||
"sub_path": "filament/addnorth/addnorth PETG Base.json"
|
||||
},
|
||||
{
|
||||
"name": "addnorth PETG ESD",
|
||||
"sub_path": "filament/addnorth/addnorth PETG ESD.json"
|
||||
},
|
||||
{
|
||||
"name": "addnorth PETG Economy",
|
||||
"sub_path": "filament/addnorth/addnorth PETG Economy.json"
|
||||
},
|
||||
{
|
||||
"name": "addnorth PETG Flame v0",
|
||||
"sub_path": "filament/addnorth/addnorth PETG Flame v0.json"
|
||||
},
|
||||
{
|
||||
"name": "addnorth PETG PRO Matte",
|
||||
"sub_path": "filament/addnorth/addnorth PETG PRO Matte.json"
|
||||
},
|
||||
{
|
||||
"name": "addnorth PETG rPETG Matte",
|
||||
"sub_path": "filament/addnorth/addnorth PETG rPETG Matte.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PETG HF @BBL A1",
|
||||
"sub_path": "filament/Generic PETG HF @BBL A1.json"
|
||||
@@ -4305,6 +4357,10 @@
|
||||
"name": "Generic PETG-CF @BBL X2D 0.4 nozzle",
|
||||
"sub_path": "filament/Generic PETG-CF @BBL X2D 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "addnorth PETG-CF Rigid X",
|
||||
"sub_path": "filament/addnorth/addnorth PETG-CF Rigid X.json"
|
||||
},
|
||||
{
|
||||
"name": "PolyLite PETG @BBL A1",
|
||||
"sub_path": "filament/Polymaker/PolyLite PETG @BBL A1.json"
|
||||
@@ -6589,6 +6645,34 @@
|
||||
"name": "Generic PLA @BBL X2D 0.4 nozzle",
|
||||
"sub_path": "filament/Generic PLA @BBL X2D 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "addnorth PLA E-PLA",
|
||||
"sub_path": "filament/addnorth/addnorth PLA E-PLA.json"
|
||||
},
|
||||
{
|
||||
"name": "addnorth PLA Economy",
|
||||
"sub_path": "filament/addnorth/addnorth PLA Economy.json"
|
||||
},
|
||||
{
|
||||
"name": "addnorth PLA HT-PLA PRO Matte",
|
||||
"sub_path": "filament/addnorth/addnorth PLA HT-PLA PRO Matte.json"
|
||||
},
|
||||
{
|
||||
"name": "addnorth PLA Textura",
|
||||
"sub_path": "filament/addnorth/addnorth PLA Textura.json"
|
||||
},
|
||||
{
|
||||
"name": "addnorth PLA Wood",
|
||||
"sub_path": "filament/addnorth/addnorth PLA Wood.json"
|
||||
},
|
||||
{
|
||||
"name": "addnorth PLA X-PLA",
|
||||
"sub_path": "filament/addnorth/addnorth PLA X-PLA.json"
|
||||
},
|
||||
{
|
||||
"name": "addnorth PLA rPLA RE-ADD",
|
||||
"sub_path": "filament/addnorth/addnorth PLA rPLA RE-ADD.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PLA High Speed @BBL A1",
|
||||
"sub_path": "filament/Generic PLA High Speed @BBL A1.json"
|
||||
@@ -6649,6 +6733,10 @@
|
||||
"name": "Generic PLA High Speed @BBL X2D 0.4 nozzle",
|
||||
"sub_path": "filament/Generic PLA High Speed @BBL X2D 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "addnorth PLA X-PLA High Speed",
|
||||
"sub_path": "filament/addnorth/addnorth PLA X-PLA High Speed.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PLA Silk",
|
||||
"sub_path": "filament/Generic PLA Silk.json"
|
||||
@@ -6689,6 +6777,10 @@
|
||||
"name": "Generic PLA Silk @BBL X2D 0.4 nozzle",
|
||||
"sub_path": "filament/Generic PLA Silk @BBL X2D 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "addnorth PLA Premium Silk",
|
||||
"sub_path": "filament/addnorth/addnorth PLA Premium Silk.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PLA-CF",
|
||||
"sub_path": "filament/Generic PLA-CF.json"
|
||||
@@ -6729,6 +6821,10 @@
|
||||
"name": "Generic PLA-CF @BBL X2D 0.4 nozzle",
|
||||
"sub_path": "filament/Generic PLA-CF @BBL X2D 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "addnorth PLA-CF Carbon Fiber",
|
||||
"sub_path": "filament/addnorth/addnorth PLA-CF Carbon Fiber.json"
|
||||
},
|
||||
{
|
||||
"name": "Numakers PLA+ @BBL A1",
|
||||
"sub_path": "filament/Numakers/Numakers PLA+ @BBL A1.json"
|
||||
@@ -6981,10 +7077,6 @@
|
||||
"name": "Panchroma PLA @BBL X1C 0.2 nozzle",
|
||||
"sub_path": "filament/Polymaker/Panchroma PLA @BBL X1C 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Panchroma PLA Silk @BBL X1C 0.2 nozzle",
|
||||
"sub_path": "filament/Polymaker/Panchroma PLA Silk @BBL X1C 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Panchroma PLA Celestial @BBL A1",
|
||||
"sub_path": "filament/Polymaker/Panchroma PLA Celestial @BBL A1.json"
|
||||
@@ -7381,6 +7473,10 @@
|
||||
"name": "Panchroma PLA Silk @BBL X1C",
|
||||
"sub_path": "filament/Polymaker/Panchroma PLA Silk @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Panchroma PLA Silk @BBL X1C 0.2 nozzle",
|
||||
"sub_path": "filament/Polymaker/Panchroma PLA Silk @BBL X1C 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Panchroma PLA Starlight @BBL A1",
|
||||
"sub_path": "filament/Polymaker/Panchroma PLA Starlight @BBL A1.json"
|
||||
@@ -8889,6 +8985,18 @@
|
||||
"name": "Generic TPU @BBL X2D 0.4 nozzle",
|
||||
"sub_path": "filament/Generic TPU @BBL X2D 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "addnorth TPU EasyFlex",
|
||||
"sub_path": "filament/addnorth/addnorth TPU EasyFlex.json"
|
||||
},
|
||||
{
|
||||
"name": "addnorth TPU Pro Matte 85A",
|
||||
"sub_path": "filament/addnorth/addnorth TPU Pro Matte 85A.json"
|
||||
},
|
||||
{
|
||||
"name": "addnorth TPU Pro Matte 95A",
|
||||
"sub_path": "filament/addnorth/addnorth TPU Pro Matte 95A.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic TPU for AMS @BBL A1",
|
||||
"sub_path": "filament/Generic TPU for AMS @BBL A1.json"
|
||||
|
||||
339
resources/profiles/BBL/filament/addnorth/addnorth ABS rABS.json
Normal file
339
resources/profiles/BBL/filament/addnorth/addnorth ABS rABS.json
Normal file
@@ -0,0 +1,339 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "addnorth ABS rABS",
|
||||
"inherits": "Generic ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GF_ANRA_00",
|
||||
"filament_id": "GF_ANRA",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"1"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"50"
|
||||
],
|
||||
"circle_compensation_speed": [
|
||||
"200"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle",
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle",
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle",
|
||||
"Bambu Lab X2D 0.2 nozzle",
|
||||
"Bambu Lab X2D 0.4 nozzle",
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"compatible_prints": [],
|
||||
"compatible_prints_condition": "",
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.008"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.041"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.033"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.035"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
],
|
||||
"diameter_limit": [
|
||||
"50"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"enable_overhang_bridge_fan": [
|
||||
"1"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"105"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"105"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"30"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"25"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"200"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"43"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.03"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"45"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_scarf_gap": [
|
||||
"0%"
|
||||
],
|
||||
"filament_scarf_height": [
|
||||
"10%"
|
||||
],
|
||||
"filament_scarf_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"none"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"addnorth ABS rABS"
|
||||
],
|
||||
"filament_shrink": [
|
||||
"100%"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
|
||||
],
|
||||
"filament_type": [
|
||||
"ABS"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"addnorth"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.23415"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.22"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.088"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"105"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"105"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"255",
|
||||
"255"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"250",
|
||||
"250"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"230"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"50"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"25%"
|
||||
],
|
||||
"overhang_threshold_participating_cooling": [
|
||||
"95%"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.02"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"3"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"105"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"105"
|
||||
],
|
||||
"version": "2.0.0.77"
|
||||
}
|
||||
@@ -0,0 +1,339 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "addnorth PA Adura FDA",
|
||||
"inherits": "Generic PA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GF_ANAF_00",
|
||||
"filament_id": "GF_ANAF",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"1"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"50"
|
||||
],
|
||||
"circle_compensation_speed": [
|
||||
"200"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle",
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle",
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle",
|
||||
"Bambu Lab X2D 0.2 nozzle",
|
||||
"Bambu Lab X2D 0.4 nozzle",
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"compatible_prints": [],
|
||||
"compatible_prints_condition": "",
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.008"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.041"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.033"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.035"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
],
|
||||
"diameter_limit": [
|
||||
"50"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"enable_overhang_bridge_fan": [
|
||||
"1"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"5"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"30"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"300"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"50"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.1"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.99",
|
||||
"0.99"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"8",
|
||||
"11"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"45"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_scarf_gap": [
|
||||
"0%"
|
||||
],
|
||||
"filament_scarf_height": [
|
||||
"10%"
|
||||
],
|
||||
"filament_scarf_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"none"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"addnorth PA Adura FDA"
|
||||
],
|
||||
"filament_shrink": [
|
||||
"100%"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
|
||||
],
|
||||
"filament_type": [
|
||||
"PA"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"addnorth"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"2"
|
||||
],
|
||||
"hole_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.23415"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.22"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.088"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"265",
|
||||
"265"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"265",
|
||||
"265"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"245"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"10%"
|
||||
],
|
||||
"overhang_threshold_participating_cooling": [
|
||||
"95%"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.02"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"40"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"110"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"version": "2.0.0.77"
|
||||
}
|
||||
339
resources/profiles/BBL/filament/addnorth/addnorth PA Adura.json
Normal file
339
resources/profiles/BBL/filament/addnorth/addnorth PA Adura.json
Normal file
@@ -0,0 +1,339 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "addnorth PA Adura",
|
||||
"inherits": "Generic PA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GF_ANAD_00",
|
||||
"filament_id": "GF_ANAD",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"1"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"50"
|
||||
],
|
||||
"circle_compensation_speed": [
|
||||
"200"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle",
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle",
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle",
|
||||
"Bambu Lab X2D 0.2 nozzle",
|
||||
"Bambu Lab X2D 0.4 nozzle",
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"compatible_prints": [],
|
||||
"compatible_prints_condition": "",
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.008"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.041"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.033"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.035"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
],
|
||||
"diameter_limit": [
|
||||
"50"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"enable_overhang_bridge_fan": [
|
||||
"1"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"5"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"30"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"300"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"50"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.1"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.99",
|
||||
"0.99"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"8",
|
||||
"11"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"45"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_scarf_gap": [
|
||||
"0%"
|
||||
],
|
||||
"filament_scarf_height": [
|
||||
"10%"
|
||||
],
|
||||
"filament_scarf_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"none"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"addnorth PA Adura"
|
||||
],
|
||||
"filament_shrink": [
|
||||
"100%"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
|
||||
],
|
||||
"filament_type": [
|
||||
"PA"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"addnorth"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"2"
|
||||
],
|
||||
"hole_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.23415"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.22"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.088"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"265",
|
||||
"265"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"265",
|
||||
"265"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"245"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"10%"
|
||||
],
|
||||
"overhang_threshold_participating_cooling": [
|
||||
"95%"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.02"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"40"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"110"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"version": "2.0.0.77"
|
||||
}
|
||||
@@ -0,0 +1,339 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "addnorth PA-CF Adura X",
|
||||
"inherits": "Generic PA-CF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GF_ANAX_00",
|
||||
"filament_id": "GF_ANAX",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"1"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"50"
|
||||
],
|
||||
"circle_compensation_speed": [
|
||||
"200"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle",
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle",
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle",
|
||||
"Bambu Lab X2D 0.2 nozzle",
|
||||
"Bambu Lab X2D 0.4 nozzle",
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"compatible_prints": [],
|
||||
"compatible_prints_condition": "",
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.008"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.041"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.033"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.035"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
],
|
||||
"diameter_limit": [
|
||||
"50"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"enable_overhang_bridge_fan": [
|
||||
"1"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"5"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"30"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"300"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"109"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.2"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.99",
|
||||
"0.99"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"8",
|
||||
"15"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"45"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_scarf_gap": [
|
||||
"0%"
|
||||
],
|
||||
"filament_scarf_height": [
|
||||
"10%"
|
||||
],
|
||||
"filament_scarf_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"none"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"addnorth PA-CF Adura X"
|
||||
],
|
||||
"filament_shrink": [
|
||||
"100%"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
|
||||
],
|
||||
"filament_type": [
|
||||
"PA-CF"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"addnorth"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"2"
|
||||
],
|
||||
"hole_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.23415"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.22"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.088"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"280",
|
||||
"280"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"275",
|
||||
"275"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"280"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"260"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"90"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"10%"
|
||||
],
|
||||
"overhang_threshold_participating_cooling": [
|
||||
"95%"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.02"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"40"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"120"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"version": "2.0.0.77"
|
||||
}
|
||||
@@ -0,0 +1,339 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "addnorth PA6 Addlantis",
|
||||
"inherits": "Generic PA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GF_ANLA_00",
|
||||
"filament_id": "GF_ANLA",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"1"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"circle_compensation_speed": [
|
||||
"200"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle",
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle",
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle",
|
||||
"Bambu Lab X2D 0.2 nozzle",
|
||||
"Bambu Lab X2D 0.4 nozzle",
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"compatible_prints": [],
|
||||
"compatible_prints_condition": "",
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.008"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.041"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.033"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.035"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
],
|
||||
"diameter_limit": [
|
||||
"50"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"enable_overhang_bridge_fan": [
|
||||
"1"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"5"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"30"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"300"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"82"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.18"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.99",
|
||||
"0.99"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"8",
|
||||
"11"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_notes": "File Version:2.62 - V.Pack:18_05_2026",
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"45"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.6",
|
||||
"0.6"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_scarf_gap": [
|
||||
"0%"
|
||||
],
|
||||
"filament_scarf_height": [
|
||||
"10%"
|
||||
],
|
||||
"filament_scarf_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"none"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"addnorth PA6 Addlantis"
|
||||
],
|
||||
"filament_shrink": [
|
||||
"100%"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
|
||||
],
|
||||
"filament_type": [
|
||||
"PA6"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"addnorth"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"2"
|
||||
],
|
||||
"hole_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.23415"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.22"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.088"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"275",
|
||||
"275"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"275",
|
||||
"275"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"285"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"265"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"40"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"0%"
|
||||
],
|
||||
"overhang_threshold_participating_cooling": [
|
||||
"95%"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.02"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"40"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"15"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"110"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"version": "2.0.0.77"
|
||||
}
|
||||
@@ -0,0 +1,339 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "addnorth PC BLend HT LCF",
|
||||
"inherits": "Generic PC @base",
|
||||
"from": "system",
|
||||
"setting_id": "GF_ANPBX_00",
|
||||
"filament_id": "GF_ANPBX",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"50"
|
||||
],
|
||||
"circle_compensation_speed": [
|
||||
"200"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle",
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle",
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle",
|
||||
"Bambu Lab X2D 0.2 nozzle",
|
||||
"Bambu Lab X2D 0.4 nozzle",
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"compatible_prints": [],
|
||||
"compatible_prints_condition": "",
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.008"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.041"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.033"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.035"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
],
|
||||
"diameter_limit": [
|
||||
"50"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"enable_overhang_bridge_fan": [
|
||||
"1"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"70"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"70"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"30"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"40"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"40"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"300"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"109"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.3"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"15",
|
||||
"15"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"45"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_scarf_gap": [
|
||||
"0%"
|
||||
],
|
||||
"filament_scarf_height": [
|
||||
"10%"
|
||||
],
|
||||
"filament_scarf_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"none"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"addnorth PC BLend HT LCF"
|
||||
],
|
||||
"filament_shrink": [
|
||||
"100%"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
|
||||
],
|
||||
"filament_type": [
|
||||
"PC"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"addnorth"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.23415"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.22"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.088"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"80"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"80"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"285",
|
||||
"285"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"275",
|
||||
"275"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"290"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"265"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"90"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"10%"
|
||||
],
|
||||
"overhang_threshold_participating_cooling": [
|
||||
"95%"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.02"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"40"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"70"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"70"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"185"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"version": "2.0.0.77"
|
||||
}
|
||||
339
resources/profiles/BBL/filament/addnorth/addnorth PETG Base.json
Normal file
339
resources/profiles/BBL/filament/addnorth/addnorth PETG Base.json
Normal file
@@ -0,0 +1,339 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "addnorth PETG Base",
|
||||
"inherits": "Generic PETG @base",
|
||||
"from": "system",
|
||||
"setting_id": "GF_ANPE_00",
|
||||
"filament_id": "GF_ANPE",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"0"
|
||||
],
|
||||
"circle_compensation_speed": [
|
||||
"200"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle",
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle",
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle",
|
||||
"Bambu Lab X2D 0.2 nozzle",
|
||||
"Bambu Lab X2D 0.4 nozzle",
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"compatible_prints": [],
|
||||
"compatible_prints_condition": "",
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.008"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.041"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.033"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.035"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
],
|
||||
"diameter_limit": [
|
||||
"50"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"enable_overhang_bridge_fan": [
|
||||
"1"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"70"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"70"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"30"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"90"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"40"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"300"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"35.6"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.27"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"45"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_scarf_gap": [
|
||||
"0%"
|
||||
],
|
||||
"filament_scarf_height": [
|
||||
"10%"
|
||||
],
|
||||
"filament_scarf_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"none"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"addnorth PETG Base"
|
||||
],
|
||||
"filament_shrink": [
|
||||
"100%"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
|
||||
],
|
||||
"filament_type": [
|
||||
"PETG"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"addnorth"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.23415"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.22"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.088"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"80"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"80"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"255",
|
||||
"255"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"275"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"240"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"90"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"10%"
|
||||
],
|
||||
"overhang_threshold_participating_cooling": [
|
||||
"95%"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.02"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"3"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"70"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"70"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"50"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"75"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"75"
|
||||
],
|
||||
"version": "2.0.0.77"
|
||||
}
|
||||
339
resources/profiles/BBL/filament/addnorth/addnorth PETG ESD.json
Normal file
339
resources/profiles/BBL/filament/addnorth/addnorth PETG ESD.json
Normal file
@@ -0,0 +1,339 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "addnorth PETG ESD",
|
||||
"inherits": "Generic PETG @base",
|
||||
"from": "system",
|
||||
"setting_id": "GF_ANEG_00",
|
||||
"filament_id": "GF_ANEG",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"0"
|
||||
],
|
||||
"circle_compensation_speed": [
|
||||
"200"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle",
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle",
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle",
|
||||
"Bambu Lab X2D 0.2 nozzle",
|
||||
"Bambu Lab X2D 0.4 nozzle",
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"compatible_prints": [],
|
||||
"compatible_prints_condition": "",
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.008"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.041"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.033"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.035"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
],
|
||||
"diameter_limit": [
|
||||
"50"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"enable_overhang_bridge_fan": [
|
||||
"1"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"70"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"70"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"30"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"90"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"40"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"300"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"76"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.3"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.97",
|
||||
"0.97"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_notes": "File Version:2.6 high reliability - V.Pack:18_05_2026",
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"45"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_scarf_gap": [
|
||||
"0%"
|
||||
],
|
||||
"filament_scarf_height": [
|
||||
"10%"
|
||||
],
|
||||
"filament_scarf_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"none"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"addnorth PETG ESD"
|
||||
],
|
||||
"filament_shrink": [
|
||||
"100%"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
|
||||
],
|
||||
"filament_type": [
|
||||
"PETG"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"addnorth"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.23415"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.22"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.088"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"80"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"80"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"290",
|
||||
"290"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"290",
|
||||
"290"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"255"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"90"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"10%"
|
||||
],
|
||||
"overhang_threshold_participating_cooling": [
|
||||
"95%"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.02"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"3"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"70"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"70"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"50"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"70"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"70"
|
||||
],
|
||||
"version": "2.0.0.77"
|
||||
}
|
||||
@@ -0,0 +1,339 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "addnorth PETG Economy",
|
||||
"inherits": "Generic PETG @base",
|
||||
"from": "system",
|
||||
"setting_id": "GF_ANGE_00",
|
||||
"filament_id": "GF_ANGE",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"0"
|
||||
],
|
||||
"circle_compensation_speed": [
|
||||
"200"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle",
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle",
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle",
|
||||
"Bambu Lab X2D 0.2 nozzle",
|
||||
"Bambu Lab X2D 0.4 nozzle",
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"compatible_prints": [],
|
||||
"compatible_prints_condition": "",
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.008"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.041"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.033"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.035"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
],
|
||||
"diameter_limit": [
|
||||
"50"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"enable_overhang_bridge_fan": [
|
||||
"1"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"70"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"70"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"30"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"90"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"40"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"300"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"27"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.25"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"45"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_scarf_gap": [
|
||||
"0%"
|
||||
],
|
||||
"filament_scarf_height": [
|
||||
"10%"
|
||||
],
|
||||
"filament_scarf_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"none"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"addnorth PETG Economy"
|
||||
],
|
||||
"filament_shrink": [
|
||||
"100%"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
|
||||
],
|
||||
"filament_type": [
|
||||
"PETG"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"addnorth"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.23415"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.22"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.088"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"80"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"80"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"255",
|
||||
"255"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"275"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"240"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"90"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"10%"
|
||||
],
|
||||
"overhang_threshold_participating_cooling": [
|
||||
"95%"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.02"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"3"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"70"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"70"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"50"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"75"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"75"
|
||||
],
|
||||
"version": "2.0.0.77"
|
||||
}
|
||||
@@ -0,0 +1,339 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "addnorth PETG Flame v0",
|
||||
"inherits": "Generic PETG @base",
|
||||
"from": "system",
|
||||
"setting_id": "GF_ANPF_00",
|
||||
"filament_id": "GF_ANPF",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"0"
|
||||
],
|
||||
"circle_compensation_speed": [
|
||||
"200"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle",
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle",
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle",
|
||||
"Bambu Lab X2D 0.2 nozzle",
|
||||
"Bambu Lab X2D 0.4 nozzle",
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"compatible_prints": [],
|
||||
"compatible_prints_condition": "",
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.008"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.041"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.033"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.035"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
],
|
||||
"diameter_limit": [
|
||||
"50"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"enable_overhang_bridge_fan": [
|
||||
"1"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"70"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"70"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"30"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"90"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"40"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"300"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"71"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.27"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.97",
|
||||
"0.97"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_notes": "File Version:2.4 high reliability - V.Pack:18_05_2026",
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"45"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_scarf_gap": [
|
||||
"0%"
|
||||
],
|
||||
"filament_scarf_height": [
|
||||
"10%"
|
||||
],
|
||||
"filament_scarf_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"none"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"addnorth PETG Flame V0"
|
||||
],
|
||||
"filament_shrink": [
|
||||
"100%"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
|
||||
],
|
||||
"filament_type": [
|
||||
"PETG"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"addnorth"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.23415"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.22"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.088"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"80"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"80"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"290",
|
||||
"290"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"290",
|
||||
"290"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"255"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"90"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"10%"
|
||||
],
|
||||
"overhang_threshold_participating_cooling": [
|
||||
"95%"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.02"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"3"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"70"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"70"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"50"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"70"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"70"
|
||||
],
|
||||
"version": "2.0.0.77"
|
||||
}
|
||||
@@ -0,0 +1,339 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "addnorth PETG PRO Matte",
|
||||
"inherits": "Generic PETG @base",
|
||||
"from": "system",
|
||||
"setting_id": "GF_ANPM_00",
|
||||
"filament_id": "GF_ANPM",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"0"
|
||||
],
|
||||
"circle_compensation_speed": [
|
||||
"200"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle",
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle",
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle",
|
||||
"Bambu Lab X2D 0.2 nozzle",
|
||||
"Bambu Lab X2D 0.4 nozzle",
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"compatible_prints": [],
|
||||
"compatible_prints_condition": "",
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.008"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.041"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.033"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.035"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
],
|
||||
"diameter_limit": [
|
||||
"50"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"enable_overhang_bridge_fan": [
|
||||
"1"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"70"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"70"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"30"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"90"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"40"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"300"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"54.5"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.27"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"8",
|
||||
"8"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"45"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_scarf_gap": [
|
||||
"0%"
|
||||
],
|
||||
"filament_scarf_height": [
|
||||
"10%"
|
||||
],
|
||||
"filament_scarf_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"none"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"addnorth PETG PRO Matte"
|
||||
],
|
||||
"filament_shrink": [
|
||||
"100%"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
|
||||
],
|
||||
"filament_type": [
|
||||
"PETG"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"addnorth"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.23415"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.22"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.088"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"80"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"80"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"275"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"235"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"90"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"10%"
|
||||
],
|
||||
"overhang_threshold_participating_cooling": [
|
||||
"95%"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"1"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.02"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"3"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"70"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"70"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"50"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"80"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"80"
|
||||
],
|
||||
"version": "2.0.0.77"
|
||||
}
|
||||
@@ -0,0 +1,339 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "addnorth PETG rPETG Matte",
|
||||
"inherits": "Generic PETG @base",
|
||||
"from": "system",
|
||||
"setting_id": "GF_ANRM_00",
|
||||
"filament_id": "GF_ANRM",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"0"
|
||||
],
|
||||
"circle_compensation_speed": [
|
||||
"200"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle",
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle",
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle",
|
||||
"Bambu Lab X2D 0.2 nozzle",
|
||||
"Bambu Lab X2D 0.4 nozzle",
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"compatible_prints": [],
|
||||
"compatible_prints_condition": "",
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.008"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.041"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.033"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.035"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
],
|
||||
"diameter_limit": [
|
||||
"50"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"enable_overhang_bridge_fan": [
|
||||
"1"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"70"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"70"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"30"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"90"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"40"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"300"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"36"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.27"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"45"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_scarf_gap": [
|
||||
"0%"
|
||||
],
|
||||
"filament_scarf_height": [
|
||||
"10%"
|
||||
],
|
||||
"filament_scarf_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"none"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"addnorth PETG rPETG Matte"
|
||||
],
|
||||
"filament_shrink": [
|
||||
"100%"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
|
||||
],
|
||||
"filament_type": [
|
||||
"PETG"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"addnorth"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.23415"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.22"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.088"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"80"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"80"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"255",
|
||||
"255"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"225"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"90"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"10%"
|
||||
],
|
||||
"overhang_threshold_participating_cooling": [
|
||||
"95%"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.02"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"3"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"70"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"70"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"50"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"75"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"75"
|
||||
],
|
||||
"version": "2.0.0.77"
|
||||
}
|
||||
@@ -0,0 +1,339 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "addnorth PETG-CF Rigid X",
|
||||
"inherits": "Generic PETG-CF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GF_ANRX_00",
|
||||
"filament_id": "GF_ANRX",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"0"
|
||||
],
|
||||
"circle_compensation_speed": [
|
||||
"200"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle",
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle",
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle",
|
||||
"Bambu Lab X2D 0.2 nozzle",
|
||||
"Bambu Lab X2D 0.4 nozzle",
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"compatible_prints": [],
|
||||
"compatible_prints_condition": "",
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.008"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.041"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.033"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.035"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
],
|
||||
"diameter_limit": [
|
||||
"50"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"enable_overhang_bridge_fan": [
|
||||
"1"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"70"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"70"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"30"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"5"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"300"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"82"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.3"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"8",
|
||||
"11"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026 – Special thanks to Mats.Z (3DP24, Jonkoping University / Campus Varnamo) for profile improvements during internship autumn 2025.",
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"45"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_scarf_gap": [
|
||||
"0%"
|
||||
],
|
||||
"filament_scarf_height": [
|
||||
"10%"
|
||||
],
|
||||
"filament_scarf_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"none"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"addnorth PETG-CF Rigid X"
|
||||
],
|
||||
"filament_shrink": [
|
||||
"100%"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
|
||||
],
|
||||
"filament_type": [
|
||||
"PETG-CF"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"addnorth"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.23415"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.22"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.088"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"80"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"80"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"275"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"245"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"10%"
|
||||
],
|
||||
"overhang_threshold_participating_cooling": [
|
||||
"95%"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"0"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.02"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"40"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"6"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"40"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"70"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"70"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"50"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"80"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"80"
|
||||
],
|
||||
"version": "2.0.0.77"
|
||||
}
|
||||
339
resources/profiles/BBL/filament/addnorth/addnorth PLA E-PLA.json
Normal file
339
resources/profiles/BBL/filament/addnorth/addnorth PLA E-PLA.json
Normal file
@@ -0,0 +1,339 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "addnorth PLA E-PLA",
|
||||
"inherits": "Generic PLA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GF_ANEP_00",
|
||||
"filament_id": "GF_ANEP",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"0"
|
||||
],
|
||||
"circle_compensation_speed": [
|
||||
"200"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"1"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle",
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle",
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle",
|
||||
"Bambu Lab X2D 0.2 nozzle",
|
||||
"Bambu Lab X2D 0.4 nozzle",
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"compatible_prints": [],
|
||||
"compatible_prints_condition": "",
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"55"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"5"
|
||||
],
|
||||
"counter_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.008"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.041"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.033"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.035"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
],
|
||||
"diameter_limit": [
|
||||
"50"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"enable_overhang_bridge_fan": [
|
||||
"1"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"100"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"20"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.24"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98",
|
||||
"0.98"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_notes": "File Version:2.7 - V.Pack:18_05_2026",
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"45"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_scarf_gap": [
|
||||
"15%"
|
||||
],
|
||||
"filament_scarf_height": [
|
||||
"10%"
|
||||
],
|
||||
"filament_scarf_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"none"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"addnorth PLA E-PLA"
|
||||
],
|
||||
"filament_shrink": [
|
||||
"100%"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
|
||||
],
|
||||
"filament_type": [
|
||||
"PLA"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"addnorth"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.23415"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.22"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.088"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"55"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"55"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"240",
|
||||
"240"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"235",
|
||||
"235"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"240"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"190"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"50%"
|
||||
],
|
||||
"overhang_threshold_participating_cooling": [
|
||||
"95%"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.02"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"3"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"45"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"45"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"50"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"65"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"65"
|
||||
],
|
||||
"version": "2.0.0.77"
|
||||
}
|
||||
@@ -0,0 +1,339 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "addnorth PLA Economy",
|
||||
"inherits": "Generic PLA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GF_ANPL_00",
|
||||
"filament_id": "GF_ANPL",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"0"
|
||||
],
|
||||
"circle_compensation_speed": [
|
||||
"200"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"1"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle",
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle",
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle",
|
||||
"Bambu Lab X2D 0.2 nozzle",
|
||||
"Bambu Lab X2D 0.4 nozzle",
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"compatible_prints": [],
|
||||
"compatible_prints_condition": "",
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"55"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"55"
|
||||
],
|
||||
"counter_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.008"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.041"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.033"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.035"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
],
|
||||
"diameter_limit": [
|
||||
"50"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"enable_overhang_bridge_fan": [
|
||||
"1"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"100"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"23"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.24"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98",
|
||||
"0.98"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"45"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_scarf_gap": [
|
||||
"15%"
|
||||
],
|
||||
"filament_scarf_height": [
|
||||
"10%"
|
||||
],
|
||||
"filament_scarf_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"none"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"addnorth PLA Economy"
|
||||
],
|
||||
"filament_shrink": [
|
||||
"100%"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
|
||||
],
|
||||
"filament_type": [
|
||||
"PLA"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"addnorth"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.23415"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.22"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.088"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"240",
|
||||
"240"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"235",
|
||||
"235"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"240"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"200"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"25%"
|
||||
],
|
||||
"overhang_threshold_participating_cooling": [
|
||||
"95%"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.02"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"3"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"45"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"45"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"50"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"65"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"65"
|
||||
],
|
||||
"version": "2.0.0.77"
|
||||
}
|
||||
@@ -0,0 +1,339 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "addnorth PLA HT-PLA PRO Matte",
|
||||
"inherits": "Generic PLA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GF_ANHTP_00",
|
||||
"filament_id": "GF_ANHTP",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"0"
|
||||
],
|
||||
"circle_compensation_speed": [
|
||||
"200"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"2"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle",
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle",
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle",
|
||||
"Bambu Lab X2D 0.2 nozzle",
|
||||
"Bambu Lab X2D 0.4 nozzle",
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"compatible_prints": [],
|
||||
"compatible_prints_condition": "",
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"55"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"55"
|
||||
],
|
||||
"counter_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.008"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.041"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.033"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.035"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
],
|
||||
"diameter_limit": [
|
||||
"50"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"enable_overhang_bridge_fan": [
|
||||
"1"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"100"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"55"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.4"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98",
|
||||
"0.98"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"8",
|
||||
"11"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"45"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_scarf_gap": [
|
||||
"15%"
|
||||
],
|
||||
"filament_scarf_height": [
|
||||
"10%"
|
||||
],
|
||||
"filament_scarf_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"none"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"addnorth PLA HT-PLA PRO Matte"
|
||||
],
|
||||
"filament_shrink": [
|
||||
"100%"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
|
||||
],
|
||||
"filament_type": [
|
||||
"PLA"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"addnorth"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.23415"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.22"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.088"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"70"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"70"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"240",
|
||||
"240"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"235",
|
||||
"235"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"245"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"210"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"50%"
|
||||
],
|
||||
"overhang_threshold_participating_cooling": [
|
||||
"95%"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.02"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"3"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"45"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"45"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"50"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"75"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"75"
|
||||
],
|
||||
"version": "2.0.0.77"
|
||||
}
|
||||
@@ -0,0 +1,339 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "addnorth PLA Premium Silk",
|
||||
"inherits": "Generic PLA Silk @base",
|
||||
"from": "system",
|
||||
"setting_id": "GF_ANPS_00",
|
||||
"filament_id": "GF_ANPS",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"50"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"0"
|
||||
],
|
||||
"circle_compensation_speed": [
|
||||
"200"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"2"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle",
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle",
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle",
|
||||
"Bambu Lab X2D 0.2 nozzle",
|
||||
"Bambu Lab X2D 0.4 nozzle",
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"compatible_prints": [],
|
||||
"compatible_prints_condition": "",
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"55"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"55"
|
||||
],
|
||||
"counter_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.008"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.041"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.033"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.035"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
],
|
||||
"diameter_limit": [
|
||||
"50"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"enable_overhang_bridge_fan": [
|
||||
"1"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"90"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"70"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"100"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"42.5"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.26"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"8",
|
||||
"10"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_notes": "File Version:2.7 - V.Pack:18_05_2026",
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"45"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.6",
|
||||
"0.6"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_scarf_gap": [
|
||||
"15%"
|
||||
],
|
||||
"filament_scarf_height": [
|
||||
"10%"
|
||||
],
|
||||
"filament_scarf_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"none"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"addnorth PLA Premium Silk"
|
||||
],
|
||||
"filament_shrink": [
|
||||
"100%"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
|
||||
],
|
||||
"filament_type": [
|
||||
"PLA"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"addnorth"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.23415"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.22"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.088"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"250",
|
||||
"250"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"245",
|
||||
"245"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"255"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"235"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"80"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"25%"
|
||||
],
|
||||
"overhang_threshold_participating_cooling": [
|
||||
"95%"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.02"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"3"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"45"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"45"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"50"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"65"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"65"
|
||||
],
|
||||
"version": "2.0.0.77"
|
||||
}
|
||||
@@ -0,0 +1,339 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "addnorth PLA Textura",
|
||||
"inherits": "Generic PLA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GF_ANTE_00",
|
||||
"filament_id": "GF_ANTE",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"0"
|
||||
],
|
||||
"circle_compensation_speed": [
|
||||
"200"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"1"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle",
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle",
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle",
|
||||
"Bambu Lab X2D 0.2 nozzle",
|
||||
"Bambu Lab X2D 0.4 nozzle",
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"compatible_prints": [],
|
||||
"compatible_prints_condition": "",
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"55"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"55"
|
||||
],
|
||||
"counter_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.008"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.041"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.033"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.035"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
],
|
||||
"diameter_limit": [
|
||||
"50"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"enable_overhang_bridge_fan": [
|
||||
"1"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"100"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"55"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.27"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98",
|
||||
"0.98"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"10",
|
||||
"14"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_notes": "File Version:2.7 - V.Pack:18_05_2026",
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"45"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.6",
|
||||
"0.6"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_scarf_gap": [
|
||||
"15%"
|
||||
],
|
||||
"filament_scarf_height": [
|
||||
"10%"
|
||||
],
|
||||
"filament_scarf_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"none"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"addnorth PLA Textura"
|
||||
],
|
||||
"filament_shrink": [
|
||||
"100%"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
|
||||
],
|
||||
"filament_type": [
|
||||
"PLA"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"addnorth"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.23415"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.22"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.088"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"235",
|
||||
"235"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"235",
|
||||
"235"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"240"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"190"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"25%"
|
||||
],
|
||||
"overhang_threshold_participating_cooling": [
|
||||
"95%"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.02"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"3"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"45"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"45"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"50"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"65"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"65"
|
||||
],
|
||||
"version": "2.0.0.77"
|
||||
}
|
||||
339
resources/profiles/BBL/filament/addnorth/addnorth PLA Wood.json
Normal file
339
resources/profiles/BBL/filament/addnorth/addnorth PLA Wood.json
Normal file
@@ -0,0 +1,339 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "addnorth PLA Wood",
|
||||
"inherits": "Generic PLA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GF_ANPLW_00",
|
||||
"filament_id": "GF_ANPLW",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"0"
|
||||
],
|
||||
"circle_compensation_speed": [
|
||||
"200"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"1"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle",
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle",
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle",
|
||||
"Bambu Lab X2D 0.2 nozzle",
|
||||
"Bambu Lab X2D 0.4 nozzle",
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"compatible_prints": [],
|
||||
"compatible_prints_condition": "",
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"35"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"35"
|
||||
],
|
||||
"counter_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.008"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.041"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.033"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.035"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
],
|
||||
"diameter_limit": [
|
||||
"50"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"enable_overhang_bridge_fan": [
|
||||
"1"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"100"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"54.5"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.24"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98",
|
||||
"0.98"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"8",
|
||||
"8"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_notes": "File Version:2.7 - V.Pack:18_05_2026",
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"45"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.6",
|
||||
"0.6"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_scarf_gap": [
|
||||
"15%"
|
||||
],
|
||||
"filament_scarf_height": [
|
||||
"10%"
|
||||
],
|
||||
"filament_scarf_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"none"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"addnorth PLA Wood"
|
||||
],
|
||||
"filament_shrink": [
|
||||
"100%"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
|
||||
],
|
||||
"filament_type": [
|
||||
"PLA"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"addnorth"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.23415"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.22"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.088"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"200"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"50%"
|
||||
],
|
||||
"overhang_threshold_participating_cooling": [
|
||||
"95%"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"0"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.02"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"3"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"45"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"45"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"50"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"version": "2.0.0.77"
|
||||
}
|
||||
@@ -0,0 +1,339 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "addnorth PLA X-PLA High Speed",
|
||||
"inherits": "Generic PLA High Speed @base",
|
||||
"from": "system",
|
||||
"setting_id": "GF_ANXPH_00",
|
||||
"filament_id": "GF_ANXPH",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"0"
|
||||
],
|
||||
"circle_compensation_speed": [
|
||||
"200"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"1"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle",
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle",
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle",
|
||||
"Bambu Lab X2D 0.2 nozzle",
|
||||
"Bambu Lab X2D 0.4 nozzle",
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"compatible_prints": [],
|
||||
"compatible_prints_condition": "",
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"55"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"55"
|
||||
],
|
||||
"counter_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.008"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.041"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.033"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.035"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
],
|
||||
"diameter_limit": [
|
||||
"50"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"enable_overhang_bridge_fan": [
|
||||
"1"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"100"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"20"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.24"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98",
|
||||
"0.98"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_notes": "File Version:2.7 - V.Pack:18_05_2026",
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"45"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.6",
|
||||
"0.6"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_scarf_gap": [
|
||||
"15%"
|
||||
],
|
||||
"filament_scarf_height": [
|
||||
"10%"
|
||||
],
|
||||
"filament_scarf_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"none"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"addnorth PLA X-PLA High Speed"
|
||||
],
|
||||
"filament_shrink": [
|
||||
"100%"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
|
||||
],
|
||||
"filament_type": [
|
||||
"PLA"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"addnorth"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.23415"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.22"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.088"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"55"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"55"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"240",
|
||||
"240"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"235",
|
||||
"235"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"240"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"190"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"50%"
|
||||
],
|
||||
"overhang_threshold_participating_cooling": [
|
||||
"95%"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.02"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"3"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"45"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"45"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"50"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"65"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"65"
|
||||
],
|
||||
"version": "2.0.0.77"
|
||||
}
|
||||
339
resources/profiles/BBL/filament/addnorth/addnorth PLA X-PLA.json
Normal file
339
resources/profiles/BBL/filament/addnorth/addnorth PLA X-PLA.json
Normal file
@@ -0,0 +1,339 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "addnorth PLA X-PLA",
|
||||
"inherits": "Generic PLA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GF_ANXP_00",
|
||||
"filament_id": "GF_ANXP",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"0"
|
||||
],
|
||||
"circle_compensation_speed": [
|
||||
"200"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"1"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle",
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle",
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle",
|
||||
"Bambu Lab X2D 0.2 nozzle",
|
||||
"Bambu Lab X2D 0.4 nozzle",
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"compatible_prints": [],
|
||||
"compatible_prints_condition": "",
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"55"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"55"
|
||||
],
|
||||
"counter_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.008"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.041"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.033"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.035"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
],
|
||||
"diameter_limit": [
|
||||
"50"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"enable_overhang_bridge_fan": [
|
||||
"1"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"100"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"39"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.25"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98",
|
||||
"0.98"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_notes": "File Version:2.7 - V.Pack:18_05_2026",
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"45"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.6",
|
||||
"0.6"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_scarf_gap": [
|
||||
"15%"
|
||||
],
|
||||
"filament_scarf_height": [
|
||||
"10%"
|
||||
],
|
||||
"filament_scarf_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"none"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"addnorth PLA X-PLA"
|
||||
],
|
||||
"filament_shrink": [
|
||||
"100%"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
|
||||
],
|
||||
"filament_type": [
|
||||
"PLA"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"addnorth"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.23415"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.22"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.088"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"65"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"65"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"235",
|
||||
"235"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"240"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"190"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"25%"
|
||||
],
|
||||
"overhang_threshold_participating_cooling": [
|
||||
"95%"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.02"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"3"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"45"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"45"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"50"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"65"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"65"
|
||||
],
|
||||
"version": "2.0.0.77"
|
||||
}
|
||||
@@ -0,0 +1,339 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "addnorth PLA rPLA RE-ADD",
|
||||
"inherits": "Generic PLA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GF_ANRPL_00",
|
||||
"filament_id": "GF_ANRPL",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"0"
|
||||
],
|
||||
"circle_compensation_speed": [
|
||||
"200"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"1"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle",
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle",
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle",
|
||||
"Bambu Lab X2D 0.2 nozzle",
|
||||
"Bambu Lab X2D 0.4 nozzle",
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"compatible_prints": [],
|
||||
"compatible_prints_condition": "",
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"55"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"5"
|
||||
],
|
||||
"counter_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.008"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.041"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.033"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.035"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
],
|
||||
"diameter_limit": [
|
||||
"50"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"enable_overhang_bridge_fan": [
|
||||
"1"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"100"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"23"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.25"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98",
|
||||
"0.98"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"16"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_notes": "File Version:2.7 - V.Pack:18_05_2026",
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"45"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.6",
|
||||
"0.6"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_scarf_gap": [
|
||||
"15%"
|
||||
],
|
||||
"filament_scarf_height": [
|
||||
"10%"
|
||||
],
|
||||
"filament_scarf_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"none"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"addnorth PLA rPLA RE-ADD"
|
||||
],
|
||||
"filament_shrink": [
|
||||
"100%"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
|
||||
],
|
||||
"filament_type": [
|
||||
"PLA"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"addnorth"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.23415"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.22"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.088"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"55"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"55"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"240",
|
||||
"240"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"235",
|
||||
"235"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"240"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"190"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"50%"
|
||||
],
|
||||
"overhang_threshold_participating_cooling": [
|
||||
"95%"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.02"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"3"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"45"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"45"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"50"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"65"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"65"
|
||||
],
|
||||
"version": "2.0.0.77"
|
||||
}
|
||||
@@ -0,0 +1,320 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "addnorth PLA-CF Carbon Fiber",
|
||||
"inherits": "Generic PLA-CF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GF_ANPCF_00",
|
||||
"filament_id": "GF_ANPCF",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"0"
|
||||
],
|
||||
"circle_compensation_speed": [
|
||||
"200"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"1"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle",
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle",
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle",
|
||||
"Bambu Lab X2D 0.2 nozzle",
|
||||
"Bambu Lab X2D 0.4 nozzle",
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"compatible_prints": [],
|
||||
"compatible_prints_condition": "",
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"45"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"45"
|
||||
],
|
||||
"counter_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.008"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.041"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.033"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.035"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
],
|
||||
"diameter_limit": [
|
||||
"50"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"enable_overhang_bridge_fan": [
|
||||
"1"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"100"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"37"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.27"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n\n"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"14"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_notes": "File Version:2.7 - V.Pack:18_05_2026",
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"45"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"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_scarf_gap": [
|
||||
"15%"
|
||||
],
|
||||
"filament_scarf_height": [
|
||||
"10%"
|
||||
],
|
||||
"filament_scarf_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"none"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"addnorth PLA-CF Carbon Fiber"
|
||||
],
|
||||
"filament_shrink": [
|
||||
"100%"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
|
||||
],
|
||||
"filament_type": [
|
||||
"PLA-CF"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"addnorth"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.23415"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.22"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.088"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"55"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"55"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"235"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"230"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"250"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"190"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"50%"
|
||||
],
|
||||
"overhang_threshold_participating_cooling": [
|
||||
"95%"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"0"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.02"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"40"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"7"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"50"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"50"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"50"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"55"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"55"
|
||||
],
|
||||
"version": "2.0.0.87"
|
||||
}
|
||||
@@ -0,0 +1,339 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "addnorth PVDF Adamant S1",
|
||||
"inherits": "Generic PA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GF_ANPV_00",
|
||||
"filament_id": "GF_ANPV",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"1"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"50"
|
||||
],
|
||||
"circle_compensation_speed": [
|
||||
"200"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle",
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle",
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle",
|
||||
"Bambu Lab X2D 0.2 nozzle",
|
||||
"Bambu Lab X2D 0.4 nozzle",
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"compatible_prints": [],
|
||||
"compatible_prints_condition": "",
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.008"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.041"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.033"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.035"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
],
|
||||
"diameter_limit": [
|
||||
"50"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"enable_overhang_bridge_fan": [
|
||||
"1"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"5"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"25"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"400"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"146"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.8"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"45"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_scarf_gap": [
|
||||
"0%"
|
||||
],
|
||||
"filament_scarf_height": [
|
||||
"10%"
|
||||
],
|
||||
"filament_scarf_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"none"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"addnorth PVDF Adamant S1"
|
||||
],
|
||||
"filament_shrink": [
|
||||
"100%"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
|
||||
],
|
||||
"filament_type": [
|
||||
"PA"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"addnorth"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"2"
|
||||
],
|
||||
"hole_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.23415"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.22"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.088"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"265",
|
||||
"265"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"240"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"80"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"50%"
|
||||
],
|
||||
"overhang_threshold_participating_cooling": [
|
||||
"95%"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.02"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"0"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"40"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"135"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"version": "2.0.0.77"
|
||||
}
|
||||
@@ -0,0 +1,339 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "addnorth TPU EasyFlex",
|
||||
"inherits": "Generic TPU @base",
|
||||
"from": "system",
|
||||
"setting_id": "GF_ANEF_00",
|
||||
"filament_id": "GF_ANEF",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"0"
|
||||
],
|
||||
"circle_compensation_speed": [
|
||||
"200"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"1"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle",
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle",
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle",
|
||||
"Bambu Lab X2D 0.2 nozzle",
|
||||
"Bambu Lab X2D 0.4 nozzle",
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"compatible_prints": [],
|
||||
"compatible_prints_condition": "",
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.008"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.041"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.033"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.035"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
],
|
||||
"diameter_limit": [
|
||||
"50"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"enable_overhang_bridge_fan": [
|
||||
"1"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"30"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"30"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"600"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"82"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.1"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"40",
|
||||
"40"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"3.9",
|
||||
"5"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_notes": "File Version:2.7 - V.Pack:18_05_2026",
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"45"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_scarf_gap": [
|
||||
"15%"
|
||||
],
|
||||
"filament_scarf_height": [
|
||||
"10%"
|
||||
],
|
||||
"filament_scarf_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"none"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"addnorth TPU EasyFlex"
|
||||
],
|
||||
"filament_shrink": [
|
||||
"100%"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
|
||||
],
|
||||
"filament_type": [
|
||||
"TPU"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"addnorth"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.23415"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.22"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.088"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"35"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"35"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"240",
|
||||
"240"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"235",
|
||||
"235"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"250"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"230"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"50%"
|
||||
],
|
||||
"overhang_threshold_participating_cooling": [
|
||||
"95%"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.02"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"3"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"50"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"35"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"35"
|
||||
],
|
||||
"version": "2.0.0.77"
|
||||
}
|
||||
@@ -0,0 +1,339 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "addnorth TPU Pro Matte 85A",
|
||||
"inherits": "Generic TPU @base",
|
||||
"from": "system",
|
||||
"setting_id": "GF_ANTA_00",
|
||||
"filament_id": "GF_ANTA",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"0"
|
||||
],
|
||||
"circle_compensation_speed": [
|
||||
"200"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"1"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle",
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle",
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle",
|
||||
"Bambu Lab X2D 0.2 nozzle",
|
||||
"Bambu Lab X2D 0.4 nozzle",
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"compatible_prints": [],
|
||||
"compatible_prints_condition": "",
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"30"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"30"
|
||||
],
|
||||
"counter_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.008"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.041"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.033"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.035"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
],
|
||||
"diameter_limit": [
|
||||
"50"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"enable_overhang_bridge_fan": [
|
||||
"1"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"30"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"30"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"600"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"82"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.1"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"3.2",
|
||||
"5"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_notes": "File Version:2.2 - V.Pack:18_05_2026",
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"45"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"40",
|
||||
"40"
|
||||
],
|
||||
"filament_scarf_gap": [
|
||||
"15%"
|
||||
],
|
||||
"filament_scarf_height": [
|
||||
"10%"
|
||||
],
|
||||
"filament_scarf_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"none"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"addnorth TPU Pro Matte 85A"
|
||||
],
|
||||
"filament_shrink": [
|
||||
"100%"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
|
||||
],
|
||||
"filament_type": [
|
||||
"TPU"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"addnorth"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.23415"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.22"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.088"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"35"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"35"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"250",
|
||||
"250"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"250",
|
||||
"250"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"250"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"230"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"50%"
|
||||
],
|
||||
"overhang_threshold_participating_cooling": [
|
||||
"95%"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.02"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"3"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"50"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"35"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"35"
|
||||
],
|
||||
"version": "2.0.0.77"
|
||||
}
|
||||
@@ -0,0 +1,340 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "addnorth TPU Pro Matte 95A",
|
||||
"inherits": "Generic TPU @base",
|
||||
"from": "system",
|
||||
"setting_id": "GF_ANTM_00",
|
||||
"filament_id": "GF_ANTM",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"0"
|
||||
],
|
||||
"circle_compensation_speed": [
|
||||
"200"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"1"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle",
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle",
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle",
|
||||
"Bambu Lab X2D 0.2 nozzle",
|
||||
"Bambu Lab X2D 0.4 nozzle",
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"compatible_prints": [],
|
||||
"compatible_prints_condition": "",
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.008"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.041"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.033"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.035"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
],
|
||||
"diameter_limit": [
|
||||
"50"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"enable_overhang_bridge_fan": [
|
||||
"1"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"30"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"30"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"filament_adhesiveness_category": [
|
||||
"600"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"82"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.1"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"40",
|
||||
"40"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"3.9",
|
||||
"5"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_notes": "File Version:2.3 - V.Pack:18_05_2026",
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"45"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"40",
|
||||
"40"
|
||||
],
|
||||
"filament_scarf_gap": [
|
||||
"15%"
|
||||
],
|
||||
"filament_scarf_height": [
|
||||
"10%"
|
||||
],
|
||||
"filament_scarf_length": [
|
||||
"10"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"none"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
"addnorth TPU Pro Matte 95A"
|
||||
],
|
||||
"filament_shrink": [
|
||||
"100%"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
|
||||
],
|
||||
"filament_type": [
|
||||
"TPU"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"addnorth"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_1": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.23415"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.22"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.088"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"35"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"35"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"10"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"240",
|
||||
"240"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"235",
|
||||
"235"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"250"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"230"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"50%"
|
||||
],
|
||||
"overhang_threshold_participating_cooling": [
|
||||
"95%"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.02"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"required_nozzle_HRC": [
|
||||
"3"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"50"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"35"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"35"
|
||||
],
|
||||
"version": "2.0.0.77"
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Blocks",
|
||||
"version": "02.04.00.01",
|
||||
"version": "02.04.00.02",
|
||||
"force_update": "0",
|
||||
"description": "Blocks configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -85,10 +85,8 @@
|
||||
"BLOCKS RD50 V2 0.4 nozzle",
|
||||
"BLOCKS RD50 V2 0.6 nozzle",
|
||||
"BLOCKS RD50 V2 0.8 nozzle",
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RF50 0.4 nozzle",
|
||||
"BLOCKS RF50 0.6 nozzle",
|
||||
"BLOCKS RF50 0.8 nozzle",
|
||||
"BLOCKS RF50"
|
||||
"BLOCKS RF50 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -85,10 +85,8 @@
|
||||
"BLOCKS RD50 V2 0.4 nozzle",
|
||||
"BLOCKS RD50 V2 0.6 nozzle",
|
||||
"BLOCKS RD50 V2 0.8 nozzle",
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RF50 0.4 nozzle",
|
||||
"BLOCKS RF50 0.6 nozzle",
|
||||
"BLOCKS RF50 0.8 nozzle",
|
||||
"BLOCKS RF50"
|
||||
"BLOCKS RF50 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -85,10 +85,8 @@
|
||||
"BLOCKS RD50 V2 0.4 nozzle",
|
||||
"BLOCKS RD50 V2 0.6 nozzle",
|
||||
"BLOCKS RD50 V2 0.8 nozzle",
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RF50 0.4 nozzle",
|
||||
"BLOCKS RF50 0.6 nozzle",
|
||||
"BLOCKS RF50 0.8 nozzle",
|
||||
"BLOCKS RF50"
|
||||
"BLOCKS RF50 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -91,10 +91,8 @@
|
||||
"BLOCKS RD50 V2 0.4 nozzle",
|
||||
"BLOCKS RD50 V2 0.6 nozzle",
|
||||
"BLOCKS RD50 V2 0.8 nozzle",
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RF50 0.4 nozzle",
|
||||
"BLOCKS RF50 0.6 nozzle",
|
||||
"BLOCKS RF50 0.8 nozzle",
|
||||
"BLOCKS RF50"
|
||||
"BLOCKS RF50 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -16,10 +16,8 @@
|
||||
"BLOCKS RD50 V2 0.4 nozzle",
|
||||
"BLOCKS RD50 V2 0.6 nozzle",
|
||||
"BLOCKS RD50 V2 0.8 nozzle",
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RF50 0.4 nozzle",
|
||||
"BLOCKS RF50 0.6 nozzle",
|
||||
"BLOCKS RF50 0.8 nozzle",
|
||||
"BLOCKS RF50"
|
||||
"BLOCKS RF50 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -16,10 +16,8 @@
|
||||
"BLOCKS RD50 V2 0.4 nozzle",
|
||||
"BLOCKS RD50 V2 0.6 nozzle",
|
||||
"BLOCKS RD50 V2 0.8 nozzle",
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RF50 0.4 nozzle",
|
||||
"BLOCKS RF50 0.6 nozzle",
|
||||
"BLOCKS RF50 0.8 nozzle",
|
||||
"BLOCKS RF50"
|
||||
"BLOCKS RF50 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -87,14 +87,11 @@
|
||||
"BLOCKS Pro S100 0.8 nozzle",
|
||||
"BLOCKS Pro S100 1.0 nozzle",
|
||||
"BLOCKS Pro S100 1.2 nozzle",
|
||||
"BLOCKS Pro S100",
|
||||
"BLOCKS RD50 V2 0.4 nozzle",
|
||||
"BLOCKS RD50 V2 0.6 nozzle",
|
||||
"BLOCKS RD50 V2 0.8 nozzle",
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RF50 0.4 nozzle",
|
||||
"BLOCKS RF50 0.6 nozzle",
|
||||
"BLOCKS RF50 0.8 nozzle",
|
||||
"BLOCKS RF50"
|
||||
"BLOCKS RF50 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -22,10 +22,8 @@
|
||||
"BLOCKS RD50 V2 0.4 nozzle",
|
||||
"BLOCKS RD50 V2 0.6 nozzle",
|
||||
"BLOCKS RD50 V2 0.8 nozzle",
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RF50 0.4 nozzle",
|
||||
"BLOCKS RF50 0.6 nozzle",
|
||||
"BLOCKS RF50 0.8 nozzle",
|
||||
"BLOCKS RF50"
|
||||
"BLOCKS RF50 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -45,14 +45,11 @@
|
||||
"BLOCKS Pro S100 0.8 nozzle",
|
||||
"BLOCKS Pro S100 1.0 nozzle",
|
||||
"BLOCKS Pro S100 1.2 nozzle",
|
||||
"BLOCKS Pro S100",
|
||||
"BLOCKS RD50 V2 0.4 nozzle",
|
||||
"BLOCKS RD50 V2 0.6 nozzle",
|
||||
"BLOCKS RD50 V2 0.8 nozzle",
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RF50 0.4 nozzle",
|
||||
"BLOCKS RF50 0.6 nozzle",
|
||||
"BLOCKS RF50 0.8 nozzle",
|
||||
"BLOCKS RF50"
|
||||
"BLOCKS RF50 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -16,10 +16,8 @@
|
||||
"BLOCKS RD50 V2 0.4 nozzle",
|
||||
"BLOCKS RD50 V2 0.6 nozzle",
|
||||
"BLOCKS RD50 V2 0.8 nozzle",
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RF50 0.4 nozzle",
|
||||
"BLOCKS RF50 0.6 nozzle",
|
||||
"BLOCKS RF50 0.8 nozzle",
|
||||
"BLOCKS RF50"
|
||||
"BLOCKS RF50 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -60,14 +60,11 @@
|
||||
"BLOCKS Pro S100 0.8 nozzle",
|
||||
"BLOCKS Pro S100 1.0 nozzle",
|
||||
"BLOCKS Pro S100 1.2 nozzle",
|
||||
"BLOCKS Pro S100",
|
||||
"BLOCKS RD50 V2 0.4 nozzle",
|
||||
"BLOCKS RD50 V2 0.6 nozzle",
|
||||
"BLOCKS RD50 V2 0.8 nozzle",
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RF50 0.4 nozzle",
|
||||
"BLOCKS RF50 0.6 nozzle",
|
||||
"BLOCKS RF50 0.8 nozzle",
|
||||
"BLOCKS RF50"
|
||||
"BLOCKS RF50 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
"top_shell_layers": "6",
|
||||
"top_solid_infill_flow_ratio": "0.96",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RD50 V2 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
"bottom_shell_layers": "6",
|
||||
"top_shell_layers": "6",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RF50",
|
||||
"BLOCKS RF50 0.4 nozzle"
|
||||
],
|
||||
"sparse_infill_speed": "300",
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
"top_shell_layers": "5",
|
||||
"top_solid_infill_flow_ratio": "0.96",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RD50 V2 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
"bottom_shell_layers": "5",
|
||||
"top_shell_layers": "5",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RF50",
|
||||
"BLOCKS RF50 0.4 nozzle"
|
||||
],
|
||||
"sparse_infill_speed": "300",
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
"top_shell_layers": "4",
|
||||
"top_solid_infill_flow_ratio": "0.96",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RD50 V2 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
"bottom_shell_layers": "4",
|
||||
"top_shell_layers": "4",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RF50",
|
||||
"BLOCKS RF50 0.6 nozzle"
|
||||
],
|
||||
"sparse_infill_speed": "300",
|
||||
|
||||
@@ -9,7 +9,6 @@
|
||||
"bottom_shell_layers": "4",
|
||||
"top_shell_layers": "5",
|
||||
"compatible_printers": [
|
||||
"BLOCKS Pro S100",
|
||||
"BLOCKS Pro S100 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
"top_shell_layers": "5",
|
||||
"top_solid_infill_flow_ratio": "0.96",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RD50 V2 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -14,7 +14,6 @@
|
||||
"bottom_shell_layers": "4",
|
||||
"top_shell_layers": "5",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RF50",
|
||||
"BLOCKS RF50 0.4 nozzle"
|
||||
],
|
||||
"sparse_infill_speed": "300",
|
||||
|
||||
@@ -9,7 +9,6 @@
|
||||
"bottom_shell_layers": "4",
|
||||
"top_shell_layers": "5",
|
||||
"compatible_printers": [
|
||||
"BLOCKS Pro S100",
|
||||
"BLOCKS Pro S100 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
"top_shell_layers": "5",
|
||||
"top_solid_infill_flow_ratio": "0.96",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RD50 V2 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
"bottom_shell_layers": "4",
|
||||
"top_shell_layers": "5",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RF50",
|
||||
"BLOCKS RF50 0.4 nozzle"
|
||||
],
|
||||
"sparse_infill_speed": "300",
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
"top_shell_layers": "4",
|
||||
"top_solid_infill_flow_ratio": "0.96",
|
||||
"compatible_printers": [
|
||||
"BLOCKS RD50 V2",
|
||||
"BLOCKS RD50 V2 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user