Merge branch 'main' into enh-spoolman-support
3
.github/workflows/build_all.yml
vendored
|
|
@ -97,12 +97,15 @@ jobs:
|
|||
ver_pure=$(grep 'set(SoftFever_VERSION' version.inc | cut -d '"' -f2)
|
||||
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
|
||||
ver="PR-${{ github.event.number }}"
|
||||
git_commit_hash="${{ github.event.pull_request.head.sha }}"
|
||||
else
|
||||
ver=V$ver_pure
|
||||
git_commit_hash=""
|
||||
fi
|
||||
echo "ver=$ver" >> $GITHUB_ENV
|
||||
echo "ver_pure=$ver_pure" >> $GITHUB_ENV
|
||||
echo "date=$(date +'%Y%m%d')" >> $GITHUB_ENV
|
||||
echo "git_commit_hash=$git_commit_hash" >> $GITHUB_ENV
|
||||
shell: bash
|
||||
- uses: flathub-infra/flatpak-github-actions/flatpak-builder@master
|
||||
with:
|
||||
|
|
|
|||
31
.github/workflows/build_orca.yml
vendored
|
|
@ -22,6 +22,7 @@ jobs:
|
|||
date:
|
||||
ver:
|
||||
ver_pure:
|
||||
ORCA_UPDATER_SIG_KEY: ${{ secrets.ORCA_UPDATER_SIG_KEY }}
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
|
@ -46,12 +47,15 @@ jobs:
|
|||
ver_pure=$(grep 'set(SoftFever_VERSION' version.inc | cut -d '"' -f2)
|
||||
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
|
||||
ver="PR-${{ github.event.number }}"
|
||||
git_commit_hash="${{ github.event.pull_request.head.sha }}"
|
||||
else
|
||||
ver=V$ver_pure
|
||||
git_commit_hash=""
|
||||
fi
|
||||
echo "ver=$ver" >> $GITHUB_ENV
|
||||
echo "ver_pure=$ver_pure" >> $GITHUB_ENV
|
||||
echo "date=$(date +'%Y%m%d')" >> $GITHUB_ENV
|
||||
echo "git_commit_hash=$git_commit_hash" >> $GITHUB_ENV
|
||||
shell: bash
|
||||
|
||||
- name: Get the version and date on Windows
|
||||
|
|
@ -64,16 +68,19 @@ jobs:
|
|||
|
||||
if ($eventName -eq 'pull_request') {
|
||||
$ver = "PR" + $prNumber
|
||||
$git_commit_hash = "${{ github.event.pull_request.head.sha }}"
|
||||
} else {
|
||||
$versionContent = Get-Content version.inc -Raw
|
||||
if ($versionContent -match 'set\(SoftFever_VERSION "(.*?)"\)') {
|
||||
$ver = $matches[1]
|
||||
}
|
||||
$ver = "V$ver"
|
||||
$git_commit_hash = ""
|
||||
}
|
||||
|
||||
echo "ver=$ver" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
|
||||
echo "date=$date" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
|
||||
echo "git_commit_hash=$git_commit_hash" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
|
||||
echo "date: ${{ env.date }} version: ${{ env.ver }}"
|
||||
shell: pwsh
|
||||
|
||||
|
|
@ -124,16 +131,20 @@ jobs:
|
|||
codesign --deep --force --verbose --options runtime --timestamp --entitlements ${{ github.workspace }}/scripts/disable_validation.entitlements --sign "$CERTIFICATE_ID" ${{ github.workspace }}/build/universal/OrcaSlicer/OrcaSlicer_profile_validator.app
|
||||
fi
|
||||
|
||||
# Create main OrcaSlicer DMG
|
||||
ln -s /Applications ${{ github.workspace }}/build/universal/OrcaSlicer/Applications
|
||||
hdiutil create -volname "OrcaSlicer" -srcfolder ${{ github.workspace }}/build/universal/OrcaSlicer -ov -format UDZO OrcaSlicer_Mac_universal_${{ env.ver }}.dmg
|
||||
# Create main OrcaSlicer DMG without the profile validator helper
|
||||
mkdir -p ${{ github.workspace }}/build/universal/OrcaSlicer_dmg
|
||||
rm -rf ${{ github.workspace }}/build/universal/OrcaSlicer_dmg/*
|
||||
cp -R ${{ github.workspace }}/build/universal/OrcaSlicer/OrcaSlicer.app ${{ github.workspace }}/build/universal/OrcaSlicer_dmg/
|
||||
ln -sfn /Applications ${{ github.workspace }}/build/universal/OrcaSlicer_dmg/Applications
|
||||
hdiutil create -volname "OrcaSlicer" -srcfolder ${{ github.workspace }}/build/universal/OrcaSlicer_dmg -ov -format UDZO OrcaSlicer_Mac_universal_${{ env.ver }}.dmg
|
||||
codesign --deep --force --verbose --options runtime --timestamp --entitlements ${{ github.workspace }}/scripts/disable_validation.entitlements --sign "$CERTIFICATE_ID" OrcaSlicer_Mac_universal_${{ env.ver }}.dmg
|
||||
|
||||
# Create separate OrcaSlicer_profile_validator DMG if the app exists
|
||||
if [ -f "${{ github.workspace }}/build/universal/OrcaSlicer/OrcaSlicer_profile_validator.app/Contents/MacOS/OrcaSlicer_profile_validator" ]; then
|
||||
mkdir -p ${{ github.workspace }}/build/universal/OrcaSlicer_profile_validator_dmg
|
||||
rm -rf ${{ github.workspace }}/build/universal/OrcaSlicer_profile_validator_dmg/*
|
||||
cp -R ${{ github.workspace }}/build/universal/OrcaSlicer/OrcaSlicer_profile_validator.app ${{ github.workspace }}/build/universal/OrcaSlicer_profile_validator_dmg/
|
||||
ln -s /Applications ${{ github.workspace }}/build/universal/OrcaSlicer_profile_validator_dmg/Applications
|
||||
ln -sfn /Applications ${{ github.workspace }}/build/universal/OrcaSlicer_profile_validator_dmg/Applications
|
||||
hdiutil create -volname "OrcaSlicer Profile Validator" -srcfolder ${{ github.workspace }}/build/universal/OrcaSlicer_profile_validator_dmg -ov -format UDZO OrcaSlicer_profile_validator_Mac_universal_${{ env.ver }}.dmg
|
||||
codesign --deep --force --verbose --options runtime --timestamp --entitlements ${{ github.workspace }}/scripts/disable_validation.entitlements --sign "$CERTIFICATE_ID" OrcaSlicer_profile_validator_Mac_universal_${{ env.ver }}.dmg
|
||||
fi
|
||||
|
|
@ -153,14 +164,18 @@ jobs:
|
|||
if: github.ref != 'refs/heads/main' && inputs.os == 'macos-14'
|
||||
working-directory: ${{ github.workspace }}
|
||||
run: |
|
||||
ln -s /Applications ${{ github.workspace }}/build/universal/OrcaSlicer/Applications
|
||||
hdiutil create -volname "OrcaSlicer" -srcfolder ${{ github.workspace }}/build/universal/OrcaSlicer -ov -format UDZO OrcaSlicer_Mac_universal_${{ env.ver }}.dmg
|
||||
mkdir -p ${{ github.workspace }}/build/universal/OrcaSlicer_dmg
|
||||
rm -rf ${{ github.workspace }}/build/universal/OrcaSlicer_dmg/*
|
||||
cp -R ${{ github.workspace }}/build/universal/OrcaSlicer/OrcaSlicer.app ${{ github.workspace }}/build/universal/OrcaSlicer_dmg/
|
||||
ln -sfn /Applications ${{ github.workspace }}/build/universal/OrcaSlicer_dmg/Applications
|
||||
hdiutil create -volname "OrcaSlicer" -srcfolder ${{ github.workspace }}/build/universal/OrcaSlicer_dmg -ov -format UDZO OrcaSlicer_Mac_universal_${{ env.ver }}.dmg
|
||||
|
||||
# Create separate OrcaSlicer_profile_validator DMG if the app exists
|
||||
if [ -f "${{ github.workspace }}/build/universal/OrcaSlicer/OrcaSlicer_profile_validator.app/Contents/MacOS/OrcaSlicer_profile_validator" ]; then
|
||||
mkdir -p ${{ github.workspace }}/build/universal/OrcaSlicer_profile_validator_dmg
|
||||
rm -rf ${{ github.workspace }}/build/universal/OrcaSlicer_profile_validator_dmg/*
|
||||
cp -R ${{ github.workspace }}/build/universal/OrcaSlicer/OrcaSlicer_profile_validator.app ${{ github.workspace }}/build/universal/OrcaSlicer_profile_validator_dmg/
|
||||
ln -s /Applications ${{ github.workspace }}/build/universal/OrcaSlicer_profile_validator_dmg/Applications
|
||||
ln -sfn /Applications ${{ github.workspace }}/build/universal/OrcaSlicer_profile_validator_dmg/Applications
|
||||
hdiutil create -volname "OrcaSlicer Profile Validator" -srcfolder ${{ github.workspace }}/build/universal/OrcaSlicer_profile_validator_dmg -ov -format UDZO OrcaSlicer_profile_validator_Mac_universal_${{ env.ver }}.dmg
|
||||
fi
|
||||
|
||||
|
|
@ -317,7 +332,7 @@ jobs:
|
|||
- name: Install dependencies from build_linux.sh
|
||||
if: inputs.os == 'ubuntu-20.04' || inputs.os == 'ubuntu-24.04'
|
||||
shell: bash
|
||||
run: sudo ./build_linux.sh -ur
|
||||
run: sudo env "ORCA_UPDATER_SIG_KEY=$ORCA_UPDATER_SIG_KEY" ./build_linux.sh -ur
|
||||
|
||||
- name: Fix permissions
|
||||
if: inputs.os == 'ubuntu-20.04' || inputs.os == 'ubuntu-24.04'
|
||||
|
|
|
|||
2
.github/workflows/orca_bot.yml
vendored
|
|
@ -17,7 +17,7 @@ jobs:
|
|||
pull-requests: write
|
||||
contents: write # only for delete-branch option
|
||||
steps:
|
||||
- uses: actions/stale@v9
|
||||
- uses: actions/stale@v10
|
||||
with:
|
||||
# PAT for GitHub API authentication
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
|
|
|||
2
.github/workflows/update-translation.yml
vendored
|
|
@ -13,7 +13,7 @@ jobs:
|
|||
uses: actions/checkout@v5
|
||||
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v5
|
||||
uses: actions/setup-python@v6
|
||||
with:
|
||||
python-version: '3.12'
|
||||
|
||||
|
|
|
|||
169
.github/workflows/validate-documentation.yml
vendored
|
|
@ -23,7 +23,7 @@ jobs:
|
|||
|
||||
- name: Get changed files
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v46
|
||||
uses: tj-actions/changed-files@v47
|
||||
with:
|
||||
files: |
|
||||
src/slic3r/GUI/Tab.cpp
|
||||
|
|
@ -58,6 +58,45 @@ jobs:
|
|||
return $null
|
||||
}
|
||||
|
||||
function Get-ImagesFromLine($line) {
|
||||
$images = @()
|
||||
$lineForParsing = [regex]::Replace($line, '`[^`]*`', '')
|
||||
|
||||
# Process markdown and HTML images
|
||||
$imagePatterns = @(
|
||||
@{ Pattern = "!\[([^\]]*)\]\(([^)]+)\)"; Type = "Markdown"; AltGroup = 1; UrlGroup = 2 }
|
||||
@{ Pattern = '<img\s+[^>]*>'; Type = "HTML"; AltGroup = -1; UrlGroup = -1 }
|
||||
)
|
||||
|
||||
foreach ($pattern in $imagePatterns) {
|
||||
foreach ($match in [regex]::Matches($lineForParsing, $pattern.Pattern)) {
|
||||
$altText = ""
|
||||
$url = ""
|
||||
|
||||
if ($pattern.Type -eq "Markdown") {
|
||||
$altText = $match.Groups[$pattern.AltGroup].Value
|
||||
$url = $match.Groups[$pattern.UrlGroup].Value
|
||||
} else {
|
||||
# Extract from HTML
|
||||
$imgTag = $match.Value
|
||||
if ($imgTag -match 'alt\s*=\s*[`"'']([^`"'']*)[`"'']') { $altText = $matches[1] }
|
||||
if ($imgTag -match 'src\s*=\s*[`"'']([^`"'']*)[`"'']') { $url = $matches[1] }
|
||||
}
|
||||
|
||||
$images += @{
|
||||
Match = $match.Value
|
||||
Type = $pattern.Type
|
||||
AltText = $altText
|
||||
Url = $url
|
||||
StartIndex = $match.Index
|
||||
Length = $match.Length
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $images
|
||||
}
|
||||
|
||||
# Initialize
|
||||
$tabFile = Join-Path $PWD "src/slic3r/GUI/Tab.cpp"
|
||||
$docDir = Join-Path $PWD 'doc'
|
||||
|
|
@ -99,8 +138,35 @@ jobs:
|
|||
if ($inCodeFence) { continue }
|
||||
|
||||
$lineForParsing = [regex]::Replace($line, '`[^`]*`', '')
|
||||
foreach ($linkMatch in [regex]::Matches($lineForParsing, '(?<!!)[^\]]*\]\(([^)]+)\)')) {
|
||||
$destRaw = $linkMatch.Groups[1].Value.Trim()
|
||||
|
||||
# Get all images from this line to skip them in link processing
|
||||
$imagesInLine = Get-ImagesFromLine $line
|
||||
$imageRanges = @()
|
||||
foreach ($img in $imagesInLine) {
|
||||
# Exclude the entire image syntax from link processing
|
||||
$imageRanges += @{ Start = $img.StartIndex; End = $img.StartIndex + $img.Length }
|
||||
}
|
||||
|
||||
# Find all markdown links, but exclude those that are part of images
|
||||
foreach ($linkMatch in [regex]::Matches($lineForParsing, '(?<!!)\[([^\]]*)\]\(([^)]+)\)')) {
|
||||
$linkStart = $linkMatch.Index
|
||||
$linkEnd = $linkMatch.Index + $linkMatch.Length
|
||||
|
||||
# Check if this link overlaps with any image
|
||||
$isPartOfImage = $false
|
||||
foreach ($imageRange in $imageRanges) {
|
||||
if (($linkStart -ge $imageRange.Start -and $linkStart -lt $imageRange.End) -or
|
||||
($linkEnd -gt $imageRange.Start -and $linkEnd -le $imageRange.End) -or
|
||||
($linkStart -le $imageRange.Start -and $linkEnd -ge $imageRange.End)) {
|
||||
$isPartOfImage = $true
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
if ($isPartOfImage) { continue }
|
||||
|
||||
$linkText = $linkMatch.Groups[1].Value.Trim()
|
||||
$destRaw = $linkMatch.Groups[2].Value.Trim()
|
||||
|
||||
# Handle internal fragments
|
||||
if ($destRaw.StartsWith('#')) {
|
||||
|
|
@ -207,54 +273,39 @@ jobs:
|
|||
}
|
||||
if ($inCodeFence) { continue }
|
||||
|
||||
$lineForParsing = [regex]::Replace($line, '`[^`]*`', '')
|
||||
# Use the unified image detection function
|
||||
$imagesInLine = Get-ImagesFromLine $line
|
||||
|
||||
# Process markdown and HTML images
|
||||
$imagePatterns = @(
|
||||
@{ Pattern = "!\[([^\]]*)\]\(([^)]+)\)"; Type = "Markdown"; AltGroup = 1; UrlGroup = 2 }
|
||||
@{ Pattern = '<img\s+[^>]*>'; Type = "HTML"; AltGroup = -1; UrlGroup = -1 }
|
||||
)
|
||||
|
||||
foreach ($pattern in $imagePatterns) {
|
||||
foreach ($match in [regex]::Matches($lineForParsing, $pattern.Pattern)) {
|
||||
$altText = ""
|
||||
$url = ""
|
||||
|
||||
if ($pattern.Type -eq "Markdown") {
|
||||
$altText = $match.Groups[$pattern.AltGroup].Value
|
||||
$url = $match.Groups[$pattern.UrlGroup].Value
|
||||
} else {
|
||||
# Extract from HTML
|
||||
$imgTag = $match.Value
|
||||
if ($imgTag -match 'alt\s*=\s*[`"'']([^`"'']*)[`"'']') { $altText = $matches[1] }
|
||||
if ($imgTag -match 'src\s*=\s*[`"'']([^`"'']*)[`"'']') { $url = $matches[1] }
|
||||
}
|
||||
|
||||
if (-not $altText.Trim() -and $url) {
|
||||
$brokenReferences += Add-BrokenReference $relPath ($lineNumber + 1) $match.Value "[$($pattern.Type)] Missing alt text for image" "Image"
|
||||
} elseif ($url -and $altText) {
|
||||
# Validate URL format and file existence
|
||||
if ($url -match $expectedUrlPattern) {
|
||||
$relativePathInUrl = $matches[1]
|
||||
$fileNameFromUrl = [System.IO.Path]::GetFileNameWithoutExtension($relativePathInUrl)
|
||||
|
||||
if ($altText -ne $fileNameFromUrl) {
|
||||
$brokenReferences += Add-BrokenReference $relPath ($lineNumber + 1) $match.Value "[$($pattern.Type)] Alt text `"$altText`" ≠ filename `"$fileNameFromUrl`"" "Image"
|
||||
}
|
||||
|
||||
$expectedImagePath = Join-Path $PWD ($relativePathInUrl -replace "/", "\")
|
||||
if (-not (Test-Path $expectedImagePath)) {
|
||||
$brokenReferences += Add-BrokenReference $relPath ($lineNumber + 1) $match.Value "[$($pattern.Type)] Image not found at path: $relativePathInUrl" "Image"
|
||||
}
|
||||
} else {
|
||||
$urlIssues = @()
|
||||
if (-not $url.StartsWith('https://github.com/SoftFever/OrcaSlicer/blob/main/')) { $urlIssues += "URL must start with expected prefix" }
|
||||
if (-not $url.EndsWith('?raw=true')) { $urlIssues += "URL must end with '?raw=true'" }
|
||||
if ($url -match '^https?://(?!github\.com/SoftFever/OrcaSlicer)') { $urlIssues += "External URLs not allowed" }
|
||||
|
||||
$issueText = "[$($pattern.Type)] URL format issues: " + ($urlIssues -join '; ')
|
||||
$brokenReferences += Add-BrokenReference $relPath ($lineNumber + 1) $match.Value $issueText "Image"
|
||||
foreach ($image in $imagesInLine) {
|
||||
$altText = $image.AltText
|
||||
$url = $image.Url
|
||||
$imageMatch = $image.Match
|
||||
$imageType = $image.Type
|
||||
|
||||
if (-not $altText.Trim() -and $url) {
|
||||
$brokenReferences += Add-BrokenReference $relPath ($lineNumber + 1) $imageMatch "[$imageType] Missing alt text for image" "Image"
|
||||
} elseif ($url -and $altText) {
|
||||
# Validate URL format and file existence
|
||||
if ($url -match $expectedUrlPattern) {
|
||||
$relativePathInUrl = $matches[1]
|
||||
$fileNameFromUrl = [System.IO.Path]::GetFileNameWithoutExtension($relativePathInUrl)
|
||||
|
||||
if ($altText -ne $fileNameFromUrl) {
|
||||
$brokenReferences += Add-BrokenReference $relPath ($lineNumber + 1) $imageMatch "[$imageType] Alt text `"$altText`" ≠ filename `"$fileNameFromUrl`"" "Image"
|
||||
}
|
||||
|
||||
$expectedImagePath = Join-Path $PWD ($relativePathInUrl -replace "/", "\")
|
||||
if (-not (Test-Path $expectedImagePath)) {
|
||||
$brokenReferences += Add-BrokenReference $relPath ($lineNumber + 1) $imageMatch "[$imageType] Image not found at path: $relativePathInUrl" "Image"
|
||||
}
|
||||
} else {
|
||||
$urlIssues = @()
|
||||
if (-not $url.StartsWith('https://github.com/SoftFever/OrcaSlicer/blob/main/')) { $urlIssues += "URL must start with expected prefix" }
|
||||
if (-not $url.EndsWith('?raw=true')) { $urlIssues += "URL must end with '?raw=true'" }
|
||||
if ($url -match '^https?://(?!github\.com/SoftFever/OrcaSlicer)') { $urlIssues += "External URLs not allowed" }
|
||||
|
||||
$issueText = "[$imageType] URL format issues: " + ($urlIssues -join '; ')
|
||||
$brokenReferences += Add-BrokenReference $relPath ($lineNumber + 1) $imageMatch $issueText "Image"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -314,22 +365,4 @@ jobs:
|
|||
} else {
|
||||
Write-Host "::notice::All documentation is valid!"
|
||||
exit 0
|
||||
}
|
||||
|
||||
- name: Comment on PR
|
||||
if: failure() && github.event_name == 'pull_request'
|
||||
uses: actions/github-script@v7
|
||||
with:
|
||||
script: |
|
||||
const validationErrors = process.env.VALIDATION_ERRORS || '';
|
||||
|
||||
const body = `❌ **Documentation validation failed**
|
||||
|
||||
${validationErrors || 'Please check the workflow logs for details about the validation errors.'}`;
|
||||
|
||||
github.rest.issues.createComment({
|
||||
issue_number: context.issue.number,
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
body: body
|
||||
})
|
||||
}
|
||||
23
AGENTS.md
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
# Repository Guidelines
|
||||
|
||||
## Project Structure & Module Organization
|
||||
OrcaSlicer’s C++17 sources live in `src/`, split by feature modules and platform adapters. User assets, icons, and printer presets are in `resources/`; translations stay in `localization/`. Tests sit in `tests/`, grouped by domain (`libslic3r/`, `sla_print/`, etc.) with fixtures under `tests/data/`. CMake helpers reside in `cmake/`, and longer references in `doc/` and `SoftFever_doc/`. Automation scripts belong in `scripts/` and `tools/`. Treat everything in `deps/` and `deps_src/` as vendored snapshots—do not modify without mirroring upstream tags.
|
||||
|
||||
## Build, Test, and Development Commands
|
||||
Use out-of-source builds:
|
||||
- `cmake -S . -B build -DCMAKE_BUILD_TYPE=Release` configures dependencies and generates build files.
|
||||
- `cmake --build build --target OrcaSlicer --config Release` compiles the app; add `--parallel` to speed up.
|
||||
- `cmake --build build --target tests` then `ctest --test-dir build --output-on-failure` runs automated suites.
|
||||
Platform helpers such as `build_linux.sh`, `build_release_macos.sh`, and `build_release_vs2022.bat` wrap the same flow with toolchain flags. Use `build_release_macos.sh -sx` when reproducing macOS build issues, and `scripts/DockerBuild.sh` for reproducible container builds.
|
||||
|
||||
## Coding Style & Naming Conventions
|
||||
`.clang-format` enforces 4-space indents, a 140-column limit, aligned initializers, and brace wrapping for classes and functions. Run `clang-format -i <file>` before committing; the CMake `clang-format` target is available when LLVM tools are on your PATH. Prefer `CamelCase` for classes, `snake_case` for functions and locals, and `SCREAMING_CASE` for constants, matching conventions in `src/`. Keep headers self-contained and align include order with the IWYU pragmas.
|
||||
|
||||
## Testing Guidelines
|
||||
Unit tests rely on Catch2 (`tests/catch2/`). Name specs after the component under test—for example `tests/libslic3r/TestPlanarHole.cpp`—and tag long-running cases so `ctest -L fast` remains useful. Cover new algorithms with deterministic fixtures or sample G-code stored in `tests/data/`. Document manual printer validation or regression slicer checks in your PR when automated coverage is insufficient.
|
||||
|
||||
## Commit & Pull Request Guidelines
|
||||
The history favors concise, sentence-style subject lines with optional issue references, e.g., `Fix grid lines origin for multiple plates (#10724)`. Squash fixups locally before opening a PR. Complete `.github/pull_request_template.md`, include reproduction steps or screenshots for UI changes, and mention impacted presets or translations. Link issues via `Closes #NNNN` when applicable, and call out dependency bumps or profile migrations for maintainer review.
|
||||
|
||||
## Security & Configuration Tips
|
||||
Follow `SECURITY.md` for vulnerability reporting. Keep API tokens and printer credentials out of tracked configs; use `sandboxes/` for experimental settings. When touching third-party code in `deps_src/`, record the upstream commit or release in your PR description and run the relevant platform build script to confirm integration.
|
||||
|
|
@ -69,14 +69,27 @@ endif()
|
|||
|
||||
find_package(Git)
|
||||
if(GIT_FOUND AND EXISTS "${CMAKE_SOURCE_DIR}/.git")
|
||||
# Check current Git commit hash
|
||||
execute_process(
|
||||
COMMAND ${GIT_EXECUTABLE} log -1 --format=%h
|
||||
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
||||
OUTPUT_VARIABLE GIT_COMMIT_HASH
|
||||
OUTPUT_STRIP_TRAILING_WHITESPACE
|
||||
)
|
||||
add_definitions("-DGIT_COMMIT_HASH=\"${GIT_COMMIT_HASH}\"")
|
||||
if(DEFINED ENV{git_commit_hash} AND NOT "$ENV{git_commit_hash}" STREQUAL "")
|
||||
message(STATUS "Specified git commit hash: $ENV{git_commit_hash}")
|
||||
|
||||
# Convert the given hash to short hash
|
||||
execute_process(
|
||||
COMMAND ${GIT_EXECUTABLE} rev-parse --short "$ENV{git_commit_hash}"
|
||||
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
||||
OUTPUT_VARIABLE GIT_COMMIT_HASH
|
||||
OUTPUT_STRIP_TRAILING_WHITESPACE
|
||||
)
|
||||
add_definitions("-DGIT_COMMIT_HASH=\"${GIT_COMMIT_HASH}\"")
|
||||
else()
|
||||
# Check current Git commit hash
|
||||
execute_process(
|
||||
COMMAND ${GIT_EXECUTABLE} log -1 --format=%h
|
||||
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
||||
OUTPUT_VARIABLE GIT_COMMIT_HASH
|
||||
OUTPUT_STRIP_TRAILING_WHITESPACE
|
||||
)
|
||||
add_definitions("-DGIT_COMMIT_HASH=\"${GIT_COMMIT_HASH}\"")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if(DEFINED ENV{SLIC3R_STATIC})
|
||||
|
|
|
|||
11
README.md
|
|
@ -29,10 +29,13 @@ Optimize your prints with ultra-fast slicing, intelligent support generation, an
|
|||
<table border="2" style="border-color: #ffa500; background-color:rgb(232, 220, 180); color: #856404;">
|
||||
<tr>
|
||||
<td>
|
||||
<strong>⚠️ CAUTION:</strong><br><br>
|
||||
There are several clickbait and malicious websites pretending to be Official OrcaSlicer. These sites may redirect you to dangerous downloads or contain misleading information.
|
||||
<br><br>
|
||||
If you come across any of these in search results, please <a href="https://safebrowsing.google.com/safebrowsing/report_phish/?">report them as unsafe or phishing</a> to help keep the community secure.
|
||||
<strong>⚠️ CAUTION:</strong><br>
|
||||
Several clickbait and malicious websites, such as <b>orca-slicer[.]com</b> and <b>orcaslicer[.]net</b>, are pretending to be the official OrcaSlicer site. These sites may redirect you to dangerous downloads or contain misleading information.<br>
|
||||
<b>Our only official website is <a href="https://www.orcaslicer.com/">www.orcaslicer.com</a>.</b><br><br>
|
||||
If you come across any of these in search results, please <b>report them</b> as unsafe or phishing to help keep the community secure with:<br>
|
||||
- <a href="https://safebrowsing.google.com/safebrowsing/report_phish/">Google Safe Browsing</a><br>
|
||||
- <a href="https://www.microsoft.com/en-us/wdsi/support/report-unsafe-site">Microsoft Security Intelligence</a><br>
|
||||
- <a href="https://ipthreat.net/tools/reportphishing">IPThreat</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
|
|
|||
|
|
@ -225,6 +225,9 @@ if [[ -n "${BUILD_ORCA}" ]] ; then
|
|||
if [[ -n "${BUILD_TESTS}" ]] ; then
|
||||
BUILD_ARGS+=(-DBUILD_TESTS=ON)
|
||||
fi
|
||||
if [[ -n "${ORCA_UPDATER_SIG_KEY}" ]] ; then
|
||||
BUILD_ARGS+=(-DORCA_UPDATER_SIG_KEY="${ORCA_UPDATER_SIG_KEY}")
|
||||
fi
|
||||
|
||||
echo "Configuring OrcaSlicer..."
|
||||
set -x
|
||||
|
|
|
|||
|
|
@ -24,6 +24,8 @@ cd deps
|
|||
mkdir %build_dir%
|
||||
cd %build_dir%
|
||||
set DEPS=%CD%/OrcaSlicer_dep
|
||||
set "SIG_FLAG="
|
||||
if defined ORCA_UPDATER_SIG_KEY set "SIG_FLAG=-DORCA_UPDATER_SIG_KEY=%ORCA_UPDATER_SIG_KEY%"
|
||||
if "%1"=="slicer" (
|
||||
GOTO :slicer
|
||||
)
|
||||
|
|
@ -42,7 +44,7 @@ mkdir %build_dir%
|
|||
cd %build_dir%
|
||||
|
||||
echo cmake .. -G "Visual Studio 16 2019" -A x64 -DBBL_RELEASE_TO_PUBLIC=1 -DCMAKE_PREFIX_PATH="%DEPS%/usr/local" -DCMAKE_INSTALL_PREFIX="./OrcaSlicer" -DCMAKE_BUILD_TYPE=%build_type%
|
||||
cmake .. -G "Visual Studio 16 2019" -A x64 -DBBL_RELEASE_TO_PUBLIC=1 -DCMAKE_PREFIX_PATH="%DEPS%/usr/local" -DCMAKE_INSTALL_PREFIX="./OrcaSlicer" -DCMAKE_BUILD_TYPE=%build_type% -DWIN10SDK_PATH="C:/Program Files (x86)/Windows Kits/10/Include/10.0.19041.0"
|
||||
cmake .. -G "Visual Studio 16 2019" -A x64 -DBBL_RELEASE_TO_PUBLIC=1 %SIG_FLAG% -DCMAKE_PREFIX_PATH="%DEPS%/usr/local" -DCMAKE_INSTALL_PREFIX="./OrcaSlicer" -DCMAKE_BUILD_TYPE=%build_type% -DWIN10SDK_PATH="C:/Program Files (x86)/Windows Kits/10/Include/10.0.19041.0"
|
||||
cmake --build . --config %build_type% --target ALL_BUILD -- -m
|
||||
cd ..
|
||||
call scripts/run_gettext.bat
|
||||
|
|
|
|||
|
|
@ -174,6 +174,7 @@ function build_slicer() {
|
|||
-G "${SLICER_CMAKE_GENERATOR}" \
|
||||
-DBBL_RELEASE_TO_PUBLIC=1 \
|
||||
-DORCA_TOOLS=ON \
|
||||
${ORCA_UPDATER_SIG_KEY:+-DORCA_UPDATER_SIG_KEY="$ORCA_UPDATER_SIG_KEY"} \
|
||||
-DCMAKE_PREFIX_PATH="$DEPS/usr/local" \
|
||||
-DCMAKE_INSTALL_PREFIX="$PWD/OrcaSlicer" \
|
||||
-DCMAKE_BUILD_TYPE="$BUILD_CONFIG" \
|
||||
|
|
|
|||
|
|
@ -38,6 +38,8 @@ cd deps
|
|||
mkdir %build_dir%
|
||||
cd %build_dir%
|
||||
set DEPS=%CD%/OrcaSlicer_dep
|
||||
set "SIG_FLAG="
|
||||
if defined ORCA_UPDATER_SIG_KEY set "SIG_FLAG=-DORCA_UPDATER_SIG_KEY=%ORCA_UPDATER_SIG_KEY%"
|
||||
|
||||
if "%1"=="slicer" (
|
||||
GOTO :slicer
|
||||
|
|
@ -58,7 +60,7 @@ mkdir %build_dir%
|
|||
cd %build_dir%
|
||||
|
||||
echo on
|
||||
cmake .. -G "Visual Studio 17 2022" -A x64 -DBBL_RELEASE_TO_PUBLIC=1 -DORCA_TOOLS=ON -DCMAKE_PREFIX_PATH="%DEPS%/usr/local" -DCMAKE_INSTALL_PREFIX="./OrcaSlicer" -DCMAKE_BUILD_TYPE=%build_type% -DWIN10SDK_PATH="%WindowsSdkDir%Include\%WindowsSDKVersion%\"
|
||||
cmake .. -G "Visual Studio 17 2022" -A x64 -DBBL_RELEASE_TO_PUBLIC=1 -DORCA_TOOLS=ON %SIG_FLAG% -DCMAKE_PREFIX_PATH="%DEPS%/usr/local" -DCMAKE_INSTALL_PREFIX="./OrcaSlicer" -DCMAKE_BUILD_TYPE=%build_type% -DWIN10SDK_PATH="%WindowsSdkDir%Include\%WindowsSDKVersion%\"
|
||||
cmake --build . --config %build_type% --target ALL_BUILD -- -m
|
||||
@echo off
|
||||
cd ..
|
||||
|
|
|
|||
|
|
@ -2,130 +2,124 @@
|
|||
|
||||
During high-speed movements, vibrations can cause a phenomenon called "ringing," where periodic ripples appear on the print surface. Input Shaping provides an effective solution by counteracting these vibrations, improving print quality and reducing wear on components without needing to significantly lower print speeds.
|
||||
|
||||
- [Klipper](#klipper)
|
||||
- [Resonance Compensation](#resonance-compensation)
|
||||
- [Marlin](#marlin)
|
||||
- [ZV Input Shaping](#zv-input-shaping)
|
||||
> [!IMPORTANT]
|
||||
> RepRap can only set one frequency for both X and Y axes so you will need to select a frequency that works well for both axes.
|
||||
|
||||
- [Types](#types)
|
||||
- [Default](#default)
|
||||
- [Version Table](#version-table)
|
||||
- [Calibration Steps](#calibration-steps)
|
||||
- [Fixed-Time Motion](#fixed-time-motion)
|
||||
- [Credits](#credits)
|
||||
|
||||
## Klipper
|
||||
## Types
|
||||
|
||||
### Resonance Compensation
|
||||
It is usually recommended to use MZV, EI (specially for Delta printers) or ZV as a simple and effective solution.
|
||||
Not all Input Shaping types are available in all firmware and their performance may vary depending on the firmware implementation and the printer's mechanics.
|
||||
|
||||
The Klipper Resonance Compensation is a set of Input Shaping modes that can be used to reduce ringing and improve print quality.
|
||||
Ussualy the recommended values modes are `MZV` or `EI` for Delta printers.
|
||||
### Default
|
||||
|
||||
1. Pre-requisites:
|
||||
1. In OrcaSlicer, set:
|
||||
1. Acceleration high enough to trigger ringing (e.g., 2000 mm/s²).
|
||||
2. Speed high enough to trigger ringing (e.g., 100 mm/s).
|
||||
When "Default" is selected, the firmware's default input shaper will be used.
|
||||
Every firmware and even its version may have a different default type but usually are:
|
||||
|
||||
> [!NOTE]
|
||||
> These settings depend on your printer's motion ability and the filament's max volumetric speed. If you can't reach speeds that cause ringing, try increasing the filament's max volumetric speed (avoid materials below 10 mm³/s).
|
||||
3. Jerk [Klipper Square Corner Velocity](https://www.klipper3d.org/Kinematics.html?h=square+corner+velocity#look-ahead) to 5 or a high value (e.g., 20).
|
||||
- Klipper: MZV
|
||||
- Marlin: ZV
|
||||
- RepRap:
|
||||
- Version >= 3.4: MZV
|
||||
- Version < 3.4: DAA
|
||||
- Version < 3.2: DAA (without damping option)
|
||||
|
||||
2. In printer settigs:
|
||||
1. Set the Shaper Type to `MZV` or `EI`.
|
||||
```gcode
|
||||
SET_INPUT_SHAPER SHAPER_TYPE=MZV
|
||||
```
|
||||
2. Disable [Minimun Cruise Ratio](https://www.klipper3d.org/Kinematics.html#minimum-cruise-ratio) with:
|
||||
```gcode
|
||||
SET_VELOCITY_LIMIT MINIMUM_CRUISE_RATIO=0
|
||||
```
|
||||
3. Use an opaque, high-gloss filament to make the ringing more visible.
|
||||
2. Print the Input Shaping Frequency test with a range of frequencies.
|
||||
### Version Table
|
||||
|
||||

|
||||
| Type | Name | [Klipper](https://www.klipper3d.org/Resonance_Compensation.html#technical-details) | [RepRap](https://docs.duet3d.com/User_manual/Reference/Gcodes#m593-configure-input-shaping) | [Marlin 2](https://marlinfw.org/docs/features/ft_motion.html#more-complexity-zv-input-shaper) | Marlin Legacy |
|
||||
|---|---|---|---|---|---|
|
||||
| MZV | Modified Zero Vibration | >=0.9.0 | >=3.4 | - | - |
|
||||
| ZV | Zero Vibration | >=0.9.0 | = 3.5 | >2.1.2 | - |
|
||||
| ZVD | Zero Vibration Derivative | >=0.9.0 | >=3.4 | - | - |
|
||||
| ZVDD | Zero Vibration Double Derivative | - | >=3.4 | - | - |
|
||||
| ZVDDD | Zero Vibration Triple Derivative | - | >=3.4 | - | - |
|
||||
| EI | Extra Insensitive | >=0.9.0 | - | - | - |
|
||||
| 2HUMP_EI / EI2 | Two-Hump Extra Insensitive | >=0.9.0 | >=3.4 | - | - |
|
||||
| 3HUMP_EI / EI3 | Three-Hump Extra Insensitive | >=0.9.0 | >=3.4 | - | - |
|
||||
| [FT_MOTION](https://marlinfw.org/docs/features/ft_motion.html#fixed-time-motion-by-ulendo) | Fixed-Time Motion | - | - | >2.1.3 | - |
|
||||
| DAA | Damped Anti-Resonance | - | < 3.4 | - | - |
|
||||
|
||||
1. Measure the X and Y heights and read the frequency set at that point in OrcaSlicer.
|
||||
## Calibration Steps
|
||||
|
||||

|
||||

|
||||
|
||||
2. If not a clear result, you can measure a X and Y min and max acceptable heights and repeat the test with that min and max value.
|
||||
|
||||
> [!WARNING]
|
||||
> There is a chance you will need to set higher than 60Hz frequencies. Some printers with very rigid frames and excellent mechanics may exhibit frequencies exceeding 100Hz.
|
||||
|
||||
3. Print the Damping test setting your X and Y frequency to the value you found in the previous step.
|
||||
|
||||

|
||||
|
||||
1. Measure the X and Y heights and read the damping set at that point in OrcaSlicer.
|
||||
|
||||

|
||||

|
||||
0. Pre-requisites:
|
||||
1. Use an opaque, high-gloss filament to make the ringing more visible.
|
||||
2. In OrcaSlicer, set:
|
||||
1. Acceleration high enough to trigger ringing (e.g., 20000 mm/s²).
|
||||
2. Speed high enough to trigger ringing (e.g., 200 mm/s).
|
||||
|
||||
> [!IMPORTANT]
|
||||
> Not all Resonance Compensation modes support damping.
|
||||
|
||||
4. Restore your 3D Printer settings to avoid keep using high acceleration and jerk values.
|
||||
5. Save the settings
|
||||
1. You need to go to the printer settings and set the X and Y frequency and damp to the value you found in the previous step.
|
||||
|
||||
## Marlin
|
||||
|
||||
### ZV Input Shaping
|
||||
|
||||
ZV Input Shaping introduces an anti-vibration signal into the stepper motion for the X and Y axes. It works by splitting the step count into two halves: the first at half the frequency and the second as an "echo," delayed by half the ringing interval. This simple approach effectively reduces vibrations, improving print quality and allowing for higher speeds.
|
||||
|
||||
1. Pre-requisites:
|
||||
1. In OrcaSlicer, set:
|
||||
1. Acceleration high enough to trigger ringing (e.g., 2000 mm/s²).
|
||||
2. Speed high enough to trigger ringing (e.g., 100 mm/s).
|
||||
|
||||
> [!NOTE]
|
||||
> These settings depend on your printer's motion ability and the filament's max volumetric speed. If you can't reach speeds that cause ringing, try increasing the filament's max volumetric speed (avoid materials below 10 mm³/s).
|
||||
|
||||
3. Jerk
|
||||
1. If using [Classic Jerk](https://marlinfw.org/docs/configuration/configuration.html#jerk-) use a high value (e.g., 20).
|
||||
2. If using [Junction Deviation](https://marlinfw.org/docs/features/junction_deviation.html) (new Marlin default mode) this test will use 0.25 (high enough to most printers).
|
||||
2. Use an opaque, high-gloss filament to make the ringing more visible.
|
||||
2. Print the Input Shaping Frequency test with a range of frequencies.
|
||||
> It's recommended to use the fastest [acceleration](speed_settings_acceleration), [speed](speed_settings_other_layers_speed) and [Jerk/Junction Deviation](speed_settings_jerk_xy) your printer can handle without losing steps.
|
||||
> This test **will set the values to high values** limited by your printer's motion ability and the filament's max volumetric speed (avoid materials below 10 mm³/s).
|
||||
|
||||
1. Select the Test Model ´Ringing Tower´ (Recommended) or ´Fast Tower´ (Reduced version useful for printers with high ringing).
|
||||
2. Select the [Input Shaper Type](#types) you want to test. Each firmware has different types available and each type has different performance.
|
||||
3. Select a range of frequencies to test. The Default 15hz to 110hz range is usually a good start.
|
||||
4. Select your damping. Usually, a value between 0.1 and 0.2 is a good start but you can change it to 0 and your printer will use the firmware default value (if available).
|
||||

|
||||
|
||||
1. Measure the X and Y heights and read the frequency set at that point in OrcaSlicer.
|
||||
|
||||

|
||||

|
||||
|
||||
1. Measure the X and Y heights and read the frequency set at that point in OrcaSlicer.
|
||||

|
||||
- Marlin:
|
||||

|
||||
- Klipper:
|
||||

|
||||
2. If not a clear result, you can measure a X and Y min and max acceptable heights and repeat the test with that min and max value.
|
||||
|
||||
> [!WARNING]
|
||||
> There is a chance you will need to set higher than 60Hz frequencies. Some printers with very rigid frames and excellent mechanics may exhibit frequencies exceeding 100Hz.
|
||||
|
||||
3. Print the Damping test setting your X and Y frequency to the value you found in the previous step.
|
||||
|
||||
5. Print the Damping test setting your X and Y frequency to the value you found in the previous step.
|
||||

|
||||
1. Measure the X and Y heights and read the damping set at that point in OrcaSlicer.
|
||||

|
||||
- Marlin:
|
||||

|
||||
- Klipper:
|
||||

|
||||
|
||||
1. Measure the X and Y heights and read the damping set at that point in OrcaSlicer.
|
||||
|
||||

|
||||

|
||||
|
||||
4. Restore your 3D Printer settings to avoid keep using high acceleration and jerk values.
|
||||
1. Reboot your printer.
|
||||
2. Use the following G-code to restore your printer settings:
|
||||
```gcode
|
||||
M501
|
||||
```
|
||||
5. Save the settings
|
||||
1. You need to go to the printer settings and set the X and Y frequency and damp to the value you found in the previous step.
|
||||
2. Use the following G-code to set the frequency:
|
||||
```gcode
|
||||
M593 X F#Xfrequency D#XDamping
|
||||
M593 Y F#Yfrequency D#YDamping
|
||||
M500
|
||||
```
|
||||
Example
|
||||
```gcode
|
||||
M593 X F37.25 D0.16
|
||||
M593 Y F37.5 D0.06
|
||||
M500
|
||||
```
|
||||
6. **Restore your 3D Printer settings to avoid keep using high acceleration and jerk values.**
|
||||
7. Save the settings
|
||||
- Into your printer firmware settings save the values you found (Type, frequency/cies and damp)
|
||||
- Save it into Orca's printer profile settings in Printer settings/ Machine G-code/ Machine start G-code using the following G-code:
|
||||
- Klipper:
|
||||
- Skeleton
|
||||
```gcode
|
||||
SET_INPUT_SHAPER SHAPER_TYPE=TYPE SHAPER_FREQ_X=#Xfrequency DAMPING_RATIO_X=#XDamping SHAPER_FREQ_Y=#Yfrequency DAMPING_RATIO_Y=#YDamping
|
||||
```
|
||||
Example
|
||||
```gcode
|
||||
SET_INPUT_SHAPER SHAPER_TYPE=MZV SHAPER_FREQ_X=37.25 DAMPING_RATIO_X=0.16 SHAPER_FREQ_Y=37.5 DAMPING_RATIO_Y=0.06
|
||||
```
|
||||
- Marlin:
|
||||
- Skeleton
|
||||
```gcode
|
||||
M593 X F#Xfrequency D#XDamping
|
||||
M593 Y F#Yfrequency D#YDamping
|
||||
M500
|
||||
```
|
||||
Example
|
||||
```gcode
|
||||
M593 X F37.25 D0.16
|
||||
M593 Y F37.5 D0.06
|
||||
M500
|
||||
```
|
||||
- RepRap:
|
||||
- Skeleton for RepRap 3.3 and later
|
||||
```gcode
|
||||
M593 P#Type F#frequency S#Damping
|
||||
```
|
||||
Example RepRap 3.4 and later
|
||||
```gcode
|
||||
M593 P"ZVD" F37.25 S0.16
|
||||
```
|
||||
- Skeleton for RepRap 3.2 and earlier
|
||||
```gcode
|
||||
M593 F#frequency
|
||||
```
|
||||
Example Legacy (RepRap 3.2 and earlier)
|
||||
```gcode
|
||||
M593 F37.25
|
||||
```
|
||||
|
||||
### Fixed-Time Motion
|
||||
|
||||
|
|
|
|||
|
|
@ -84,19 +84,34 @@ How to building with Visual Studio 2022 on Windows 64-bit.
|
|||
```
|
||||
|
||||
> [!NOTE]
|
||||
> The build process will take a long time depending on your system but even with high-end hardware it can take up to 40 minutes.
|
||||
|
||||
> [!TIP]
|
||||
> If you encounter issues, you can try to uninstall ZLIB from your Vcpkg library.
|
||||
|
||||
3. If successful, you will find the VS 2022 solution file in:
|
||||
3. If successful, you will find the Visual Studio solution file in:
|
||||
```shell
|
||||
build\OrcaSlicer.sln
|
||||
```
|
||||
4. Open the solution in Visual Studio, set the build configuration to `Release` and run the `Local Windows Debugger`.
|
||||

|
||||
5. Your resulting executable will be located in:
|
||||
```shell
|
||||
\build\src\Release\orca-slicer.exe
|
||||
```
|
||||
|
||||
> [!NOTE]
|
||||
> The first time you build a branch, it will take a long time.
|
||||
> Changes to .cpp files are quickly compiled.
|
||||
> Changes to .hpp files take longer, depending on what you change.
|
||||
> If you switch back and forth between branches, it also takes a long time to rebuild, even if you haven't made any changes.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> Make sure that CMake version 3.31.x is actually being used. Run `cmake --version` and verify it returns a **3.31.x** version.
|
||||
> If you see an older version (e.g. 3.29), it's likely due to another copy in your system's PATH (e.g. from Strawberry Perl).
|
||||
> You can run where cmake to check the active paths and rearrange your **System Environment Variables** > PATH, ensuring the correct CMake (e.g. C:\Program Files\CMake\bin) appears before others like C:\Strawberry\c\bin.
|
||||
|
||||
> [!NOTE]
|
||||
> [!TIP]
|
||||
> If the build fails, try deleting the `build/` and `deps/build/` directories to clear any cached build data. Rebuilding after a clean-up is usually sufficient to resolve most issues.
|
||||
|
||||
## MacOS 64-bit
|
||||
|
|
|
|||
|
|
@ -139,9 +139,9 @@ The following sample JSON file shows how to create a new generic filament profil
|
|||
> When developing profiles, you may notice that changes aren't reflected in OrcaSlicer after editing profile files. This happens because OrcaSlicer caches profiles in the system folder.
|
||||
> To force OrcaSlicer to load your updated profiles:
|
||||
> 1. **Access the configuration folder**: Go to **Help** → **Show Configuration Folder**
|
||||
> 
|
||||
> 
|
||||
> 2. **Clear the cache**: Delete the `system` folder to remove cached profiles
|
||||
> 
|
||||
> 
|
||||
> 3. **Restart OrcaSlicer**: Launch the application to load your updated profiles
|
||||
> This process forces OrcaSlicer to update its profile cache from the source files in the `resources/profiles/` directory.
|
||||
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 406 KiB |
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 6.1 KiB |
|
Before Width: | Height: | Size: 298 KiB |
|
Before Width: | Height: | Size: 134 KiB After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 6.5 KiB |
BIN
doc/images/develop/compile_vs2022_local_debugger.png
Normal file
|
After Width: | Height: | Size: 830 B |
|
Before Width: | Height: | Size: 28 KiB |
BIN
doc/images/develop/go-to-configuration-folder.png
Normal file
|
After Width: | Height: | Size: 4.9 KiB |
|
Before Width: | Height: | Size: 24 KiB |
BIN
doc/images/develop/profile-delete-system-folder.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 1.8 MiB After Width: | Height: | Size: 344 KiB |
BIN
doc/images/fill/fill-layer-time-variability.png
Normal file
|
After Width: | Height: | Size: 78 KiB |
|
|
@ -68,6 +68,9 @@ This creates a smooth, vase-like appearance.
|
|||
When enabled, Smooth Spiral smooths out X and Y moves as well, resulting in no visible seams even on non-vertical walls.
|
||||
This produces the smoothest possible spiral print.
|
||||
|
||||
> [!NOTE]
|
||||
> If you are using absolute e distances, the smoothing may not work as expected.
|
||||
|
||||
#### Max XY Smoothing
|
||||
|
||||
Maximum distance to move points in XY to achieve a smooth spiral. If expressed as a percentage, it is calculated relative to the nozzle diameter.
|
||||
|
|
|
|||
|
|
@ -33,7 +33,9 @@ The pattern that will be used when ironing. Usually, the best pattern is the one
|
|||
## Flow
|
||||
|
||||
The amount of material to extrude during ironing.
|
||||
This % is a percentage of the normal flow rate. A lower value will result in a smoother finish but may not cover the surface completely. A higher value may cover the surface better but can lead to over extrusion or rougher finish.
|
||||
This % is a percentage of the normal flow rate. A lower value will result in a smoother finish but may not cover the surface completely. A higher value may cover the surface better but can lead to over extrusion or rougher finish.
|
||||
|
||||
A lower layer height may require higher flow due to less volumetric extrusion per distance.
|
||||
|
||||
## Line spacing
|
||||
|
||||
|
|
@ -48,10 +50,9 @@ The distance to keep from the edges, which can help prevent over-extrusion at th
|
|||
|
||||
If this value is set to 0, the ironing toolpath will start directly at the perimeter edges without any inward offset. This means the [ironing pattern](#pattern) will extend all the way to the outer boundaries of the top surface being ironed.
|
||||
|
||||
## Angle
|
||||
## Angle Offset
|
||||
|
||||
The angle ironing is done at.
|
||||
A negative number disables this function and uses the [sparse infill direction](strength_settings_infill#direction).
|
||||
The angle of ironing lines offset relative to the top surface solid infill direction. Commonly used ironing angle offsets are 0°, 45°, and 90° each producing a [different surface finish](https://github.com/SoftFever/OrcaSlicer/issues/10834#issuecomment-3322628589) which will depend on your printer nozzle.
|
||||
|
||||
## Speed
|
||||
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ To mitigate this effect, OrcaSlicer allows you to specify a negative distance th
|
|||
|
||||
## Precise wall
|
||||
|
||||
The 'Precise Wall' is a distinctive feature introduced by OrcaSlicer, aimed at improving the dimensional accuracy of prints and minimizing layer inconsistencies by slightly increasing the spacing between the outer wall and the inner wall.
|
||||
The 'Precise Wall' is a distinctive feature introduced by OrcaSlicer, aimed at improving the dimensional accuracy of prints and minimizing layer inconsistencies by slightly increasing the spacing between the outer wall and the inner wall when printing in [Inner Outer wall order](quality_settings_wall_and_surfaces#innerouter).
|
||||
|
||||
### Technical explanation
|
||||
|
||||
|
|
|
|||
|
|
@ -60,7 +60,9 @@ Set this to any option other than Auto will force the wall direction regardless
|
|||
## Surface flow ratio
|
||||
|
||||
This factor affects the amount of material for [top or bottom solid infill](strength_settings_top_bottom_shells). You can decrease it slightly to have smooth surface finish.
|
||||
The actual top surface flow used is calculated by multiplying this value with the filament flow ratio, and if set, the object's flow ratio.
|
||||
The actual top or bottom surface flow used is calculated by multiplying this value by the filament flow ratio, and if set, the object's flow ratio.
|
||||
|
||||
Other flow ratios, such as ratios for the first layer (does not affect brims and skirts), outer and inner walls, overhang perimeters, sparse infill, internal solid infill, gap fill, support, and support interfaces, can also be adjusted after enabling the "Set other flow ratios" option.
|
||||
|
||||
> [!TIP]
|
||||
> Before using a value other than 1, it is recommended to [calibrate the flow ratio](flow-rate-calib) to ensure that the flow ratio is set correctly for your printer and filament.
|
||||
|
|
@ -92,6 +94,9 @@ Highly recommended for detailed or aesthetic prints.
|
|||
|
||||

|
||||
|
||||
> [!NOTE]
|
||||
> This feature is not compatible with Timelapse mode, as it can cause unexpected travel moves.
|
||||
|
||||
### Max detour length
|
||||
|
||||
Defines the maximum distance the printer is allowed to detour to avoid crossing a wall.
|
||||
|
|
|
|||
BIN
doc/print_settings/strength/infill-analysis/infill-analysis.7z
Normal file
|
|
@ -1,58 +1,95 @@
|
|||
# Patterns
|
||||
|
||||
Patterns determine how material is distributed within a print. Different patterns can affect strength, flexibility and print speed using the same density setting.
|
||||
Patterns determine how material is distributed within a print. Different patterns can affect strength, flexibility and print speed using the same density setting.
|
||||
The infill pattern also impacts the uniformity of the layer times, since the patterns may be constant, or present significant variations between adjacent layers.
|
||||
|
||||
There is no one-size-fits-all solution, as the best pattern depends on the specific print and its requirements.
|
||||
|
||||
Many patterns may look similar and have similar overall specifications, but they can behave very differently in practice.
|
||||
As most settings in 3D printing, experience is the best way to determine which pattern works best for your specific needs.
|
||||
|
||||
## Patterns Quick Reference
|
||||
## Analysis parameters
|
||||
|
||||
| | Pattern | Applies to | X-Y Strength | Z Strength | Material Usage | Print Time |
|
||||
|---|---|---|---|---|---|---|
|
||||
|  | [Monotonic](#monotonic) | - **[Solid Infill](strength_settings_infill#internal-solid-infill)** - **[Surface](strength_settings_top_bottom_shells)** | Normal | Normal | Normal-High | Normal-Low |
|
||||
|  | [Monotonic line](#monotonic-line) | - **[Solid Infill](strength_settings_infill#internal-solid-infill)** - **[Surface](strength_settings_top_bottom_shells)** | Normal | Normal | Normal | Normal |
|
||||
|  | [Rectilinear](#rectilinear) | - **[Sparse Infill](strength_settings_infill#sparse-infill-density)** - **[Solid Infill](strength_settings_infill#internal-solid-infill)** - **[Surface](strength_settings_top_bottom_shells)** - **[Ironing](quality_settings_ironing)** | Normal-Low | Low | Normal | Normal-Low |
|
||||
|  | [Aligned Rectilinear](#aligned-rectilinear) | - **[Sparse Infill](strength_settings_infill#sparse-infill-density)** - **[Solid Infill](strength_settings_infill#internal-solid-infill)** - **[Surface](strength_settings_top_bottom_shells)** | Normal-Low | Normal | Normal | Normal-Low |
|
||||
|  | [Zig Zag](#zig-zag) | - **[Sparse Infill](strength_settings_infill#sparse-infill-density)** | Normal-Low | Low | Normal | Normal-Low |
|
||||
|  | [Cross Zag](#cross-zag) | - **[Sparse Infill](strength_settings_infill#sparse-infill-density)** | Normal | Low | Normal | Normal-Low |
|
||||
|  | [Locked Zag](#locked-zag) | - **[Sparse Infill](strength_settings_infill#sparse-infill-density)** | Normal-Low | Normal-Low | Low | Extra-High |
|
||||
|  | [Line](#line) | - **[Sparse Infill](strength_settings_infill#sparse-infill-density)** | Low | Low | Normal-High | Normal-Low |
|
||||
|  | [Grid](#grid) | - **[Sparse Infill](strength_settings_infill#sparse-infill-density)** | High | High | Normal-High | Normal-Low |
|
||||
|  | [Triangles](#triangles) | - **[Sparse Infill](strength_settings_infill#sparse-infill-density)** | High | Normal | Normal-High | Normal-Low |
|
||||
|  | [Tri-hexagon](#tri-hexagon) | - **[Sparse Infill](strength_settings_infill#sparse-infill-density)** | High | Normal-High | Normal-High | Normal-Low |
|
||||
|  | [Cubic](#cubic) | - **[Sparse Infill](strength_settings_infill#sparse-infill-density)** | High | High | Normal-High | Normal-Low |
|
||||
|  | [Adaptive Cubic](#adaptive-cubic) | - **[Sparse Infill](strength_settings_infill#sparse-infill-density)** | Normal-High | Normal-High | Normal | Low |
|
||||
|  | [Quarter Cubic](#quarter-cubic) | - **[Sparse Infill](strength_settings_infill#sparse-infill-density)** | High | High | Normal-High | Normal-Low |
|
||||
|  | [Support Cubic](#support-cubic) | - **[Sparse Infill](strength_settings_infill#sparse-infill-density)** | Low | Low | Normal | Extra-Low |
|
||||
|  | [Lightning](#lightning) | - **[Sparse Infill](strength_settings_infill#sparse-infill-density)** | Low | Low | Low | Ultra-Low |
|
||||
|  | [Honeycomb](#honeycomb) | - **[Sparse Infill](strength_settings_infill#sparse-infill-density)** | High | High | Low | Ultra-High |
|
||||
|  | [3D Honeycomb](#3d-honeycomb) | - **[Sparse Infill](strength_settings_infill#sparse-infill-density)** | Normal-High | Normal-High | Low | High |
|
||||
|  | [Lateral Honeycomb](#lateral-honeycomb) | - **[Sparse Infill](strength_settings_infill#sparse-infill-density)** | Normal-Low | Normal-Low | Normal-High | Normal-Low |
|
||||
|  | [Lateral Lattice](#lateral-lattice) | - **[Sparse Infill](strength_settings_infill#sparse-infill-density)** | Normal-Low | Low | Normal-High | Normal-Low |
|
||||
|  | [Cross Hatch](#cross-hatch) | - **[Sparse Infill](strength_settings_infill#sparse-infill-density)** | Normal-High | Normal-High | Normal-Low | Normal-High |
|
||||
|  | [TPMS-D](#tpms-d) | - **[Sparse Infill](strength_settings_infill#sparse-infill-density)** | High | High | Normal-Low | High |
|
||||
|  | [TPMS-FK](#tpms-fk) | - **[Sparse Infill](strength_settings_infill#sparse-infill-density)** | Normal-High | Normal-High | Low | High |
|
||||
|  | [Gyroid](#gyroid) | - **[Sparse Infill](strength_settings_infill#sparse-infill-density)** | High | High | Normal-Low | Normal-High |
|
||||
|  | [Concentric](#concentric) | - **[Sparse Infill](strength_settings_infill#sparse-infill-density)** - **[Solid Infill](strength_settings_infill#internal-solid-infill)** - **[Surface](strength_settings_top_bottom_shells)** - **[Ironing](quality_settings_ironing)** | Low | Normal | Normal-High | Normal-Low |
|
||||
|  | [Hilbert Curve](#hilbert-curve) | - **[Sparse Infill](strength_settings_infill#sparse-infill-density)** - **[Solid Infill](strength_settings_infill#internal-solid-infill)** - **[Surface](strength_settings_top_bottom_shells)** | Low | Normal | Low | High |
|
||||
|  | [Archimedean Chords](#archimedean-chords) | - **[Sparse Infill](strength_settings_infill#sparse-infill-density)** - **[Solid Infill](strength_settings_infill#internal-solid-infill)** - **[Surface](strength_settings_top_bottom_shells)** | Low | Normal | Normal-High | Normal-Low |
|
||||
|  | [Octagram Spiral](#octagram-spiral) | - **[Sparse Infill](strength_settings_infill#sparse-infill-density)** - **[Solid Infill](strength_settings_infill#internal-solid-infill)** - **[Surface](strength_settings_top_bottom_shells)** | Low | Normal | Normal-Low | Normal |
|
||||
### Strength
|
||||
|
||||
- **X-Y Direction**: The strength of the print in the "Horizontal" X-Y plane. Affected by the pattern's connections between walls, contact between layers, and path.
|
||||
- **Z Direction**: The strength of the print in the "Vertical" Z direction. Affected by contact between layers.
|
||||
|
||||
### Material Usage
|
||||
|
||||
Not all patterns use the same amount of material due to their **Density Calculations** and adjustments to the paths.
|
||||
This leads to patterns that do not use the specified percentage but rather variations of it.
|
||||
|
||||
### Print Time
|
||||
|
||||
Print time can vary significantly between patterns due to differences in their pathing and infill strategies.
|
||||
Some patterns may complete faster due to more efficient use of the print head's movement, while others may take longer due to more complex paths.
|
||||
|
||||
> [!NOTE]
|
||||
> You can download [infill_desc_calculator.xlsx](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/print_settings/strength/infill_desc_calculator.xlsx?raw=true) used to calculate the values above.
|
||||
> OrcaSlicer Time estimations are not always accurate, especially with complex patterns.
|
||||
> This analysis was estimated with [Klipper Estimator](https://github.com/Annex-Engineering/klipper_estimator).
|
||||
|
||||
### Layer Time Variability
|
||||
|
||||
Layer time variability refers to the differences in time it takes to print each layer of a pattern. Some patterns may have consistent layer times, while others may experience significant fluctuations. These variations can potentially impact the outer appearance of the print due to differences in cooling and material flow between layers.
|
||||
|
||||

|
||||
|
||||
## Patterns Quick Reference
|
||||
|
||||
| - | Pattern | Strength | Material Usage | Print Time | Layer time Variability |
|
||||
|---|---|---|---|---|---|
|
||||
| <img alt="param_monotonic" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/param_monotonic.svg?raw=true" height="45"> | [Monotonic](#monotonic) | X-Y: ⚪️ Normal<br> Z: ⚪️ Normal | ⚪️ Normal | 🔘 Normal-Low | 🟢 None |
|
||||
| <img alt="param_monotonicline" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/param_monotonicline.svg?raw=true" height="45"> | [Monotonic line](#monotonic-line) | X-Y: ⚪️ Normal<br> Z: ⚪️ Normal | ⚪️ Normal | 🔘 Normal-Low | 🟢 None |
|
||||
| <img alt="param_rectilinear" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/param_rectilinear.svg?raw=true" height="45"> | [Rectilinear](#rectilinear) | X-Y: ⚪️ Normal-Low<br> Z: 🟡 Low | ⚪️ Normal | 🔘 Normal-Low | 🔵 Unnoticeable |
|
||||
| <img alt="param_alignedrectilinear" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/param_alignedrectilinear.svg?raw=true" height="45"> | [Aligned Rectilinear](#aligned-rectilinear) | X-Y: ⚪️ Normal-Low<br> Z: ⚪️ Normal | ⚪️ Normal | 🔘 Normal-Low | 🔵 Unnoticeable |
|
||||
| <img alt="param_zigzag" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/param_zigzag.svg?raw=true" height="45"> | [Zig Zag](#zig-zag) | X-Y: ⚪️ Normal-Low<br> Z: 🟡 Low | ⚪️ Normal | 🔘 Normal-Low | 🔵 Unnoticeable |
|
||||
| <img alt="param_crosszag" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/param_crosszag.svg?raw=true" height="45"> | [Cross Zag](#cross-zag) | X-Y: ⚪️ Normal<br> Z: 🟡 Low | ⚪️ Normal | 🔘 Normal-Low | 🔵 Unnoticeable |
|
||||
| <img alt="param_lockedzag" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/param_lockedzag.svg?raw=true" height="45"> | [Locked Zag](#locked-zag) | X-Y: ⚪️ Normal-Low<br> Z: ⚪️ Normal-Low | ⚪️ Normal-High | ⚪️ Normal-High | 🟢 None |
|
||||
| <img alt="param_line" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/param_line.svg?raw=true" height="45"> | [Line](#line) | X-Y: 🟡 Low<br> Z: 🟡 Low | ⚪️ Normal | 🔘 Normal-Low | 🟢 None |
|
||||
| <img alt="param_grid" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/param_grid.svg?raw=true" height="45"> | [Grid](#grid) | X-Y: 🟣 High<br> Z: 🟣 High | ⚪️ Normal | 🟣 Low | 🟢 None |
|
||||
| <img alt="param_triangles" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/param_triangles.svg?raw=true" height="45"> | [Triangles](#triangles) | X-Y: 🟣 High<br> Z: ⚪️ Normal | ⚪️ Normal | 🔘 Normal-Low | 🟢 None |
|
||||
| <img alt="param_tri-hexagon" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/param_tri-hexagon.svg?raw=true" height="45"> | [Tri-hexagon](#tri-hexagon) | X-Y: 🟣 High<br> Z: 🔘 Normal-High | ⚪️ Normal | 🔘 Normal-Low | 🟢 None |
|
||||
| <img alt="param_cubic" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/param_cubic.svg?raw=true" height="45"> | [Cubic](#cubic) | X-Y: 🟣 High<br> Z: 🟣 High | ⚪️ Normal | 🔘 Normal-Low | 🔵 Unnoticeable |
|
||||
| <img alt="param_adaptivecubic" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/param_adaptivecubic.svg?raw=true" height="45"> | [Adaptive Cubic](#adaptive-cubic) | X-Y: 🔘 Normal-High<br> Z: 🔘 Normal-High | 🟣 Low | 🟣 Low | 🔵 Unnoticeable |
|
||||
| <img alt="param_quartercubic" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/param_quartercubic.svg?raw=true" height="45"> | [Quarter Cubic](#quarter-cubic) | X-Y: 🟣 High<br> Z: 🟣 High | ⚪️ Normal | 🔘 Normal-Low | 🔵 Unnoticeable |
|
||||
| <img alt="param_supportcubic" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/param_supportcubic.svg?raw=true" height="45"> | [Support Cubic](#support-cubic) | X-Y: 🟡 Low<br> Z: 🟡 Low | 🔵 Extra-Low | 🔵 Extra-Low | 🔴 Likely Noticeable |
|
||||
| <img alt="param_lightning" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/param_lightning.svg?raw=true" height="45"> | [Lightning](#lightning) | X-Y: 🟡 Low<br> Z: 🟡 Low | 🟢 Ultra-Low | 🟢 Ultra-Low | 🔴 Likely Noticeable |
|
||||
| <img alt="param_honeycomb" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/param_honeycomb.svg?raw=true" height="45"> | [Honeycomb](#honeycomb) | X-Y: 🟣 High<br> Z: 🟣 High | 🟡 High | 🔴 Ultra-High | 🟢 None |
|
||||
| <img alt="param_3dhoneycomb" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/param_3dhoneycomb.svg?raw=true" height="45"> | [3D Honeycomb](#3d-honeycomb) | X-Y: 🔘 Normal-High<br> Z: 🔘 Normal-High | 🔘 Normal-Low | 🟠 Extra-High | 🟡 Possibly Noticeable |
|
||||
| <img alt="param_lateral-honeycomb" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/param_lateral-honeycomb.svg?raw=true" height="45"> | [Lateral Honeycomb](#lateral-honeycomb) | X-Y: ⚪️ Normal-Low<br> Z: ⚪️ Normal-Low | ⚪️ Normal | 🔘 Normal-Low | 🟡 Possibly Noticeable |
|
||||
| <img alt="param_lateral-lattice" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/param_lateral-lattice.svg?raw=true" height="45"> | [Lateral Lattice](#lateral-lattice) | X-Y: ⚪️ Normal-Low<br> Z: 🟡 Low | ⚪️ Normal | 🔘 Normal-Low | 🔵 Unnoticeable |
|
||||
| <img alt="param_crosshatch" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/param_crosshatch.svg?raw=true" height="45"> | [Cross Hatch](#cross-hatch) | X-Y: 🔘 Normal-High<br> Z: 🔘 Normal-High | ⚪️ Normal | 🟡 High | 🔴 Likely Noticeable |
|
||||
| <img alt="param_tpmsd" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/param_tpmsd.svg?raw=true" height="45"> | [TPMS-D](#tpms-d) | X-Y: 🟣 High<br> Z: 🟣 High | ⚪️ Normal | 🟡 High | 🟡 Possibly Noticeable |
|
||||
| <img alt="param_tpmsfk" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/param_tpmsfk.svg?raw=true" height="45"> | [TPMS-FK](#tpms-fk) | X-Y: 🔘 Normal-High<br> Z: 🔘 Normal-High | ⚪️ Normal | 🔴 Ultra-High | 🟡 Possibly Noticeable |
|
||||
| <img alt="param_gyroid" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/param_gyroid.svg?raw=true" height="45"> | [Gyroid](#gyroid) | X-Y: 🟣 High<br> Z: 🟣 High | ⚪️ Normal | 🔴 Ultra-High | 🔵 Unnoticeable |
|
||||
| <img alt="param_concentric" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/param_concentric.svg?raw=true" height="45"> | [Concentric](#concentric) | X-Y: 🟡 Low<br> Z: ⚪️ Normal | ⚪️ Normal | 🔘 Normal-Low | 🟢 None |
|
||||
| <img alt="param_hilbertcurve" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/param_hilbertcurve.svg?raw=true" height="45"> | [Hilbert Curve](#hilbert-curve) | X-Y: 🟡 Low<br> Z: ⚪️ Normal | ⚪️ Normal | 🟠 Extra-High | 🟢 None |
|
||||
| <img alt="param_archimedeanchords" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/param_archimedeanchords.svg?raw=true" height="45"> | [Archimedean Chords](#archimedean-chords) | X-Y: 🟡 Low<br> Z: ⚪️ Normal | ⚪️ Normal | 🔘 Normal-Low | 🟢 None |
|
||||
| <img alt="param_octagramspiral" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/param_octagramspiral.svg?raw=true" height="45"> | [Octagram Spiral](#octagram-spiral) | X-Y: 🟡 Low<br> Z: ⚪️ Normal | ⚪️ Normal | ⚪️ Normal | 🟢 None |
|
||||
|
||||
> [!NOTE]
|
||||
> This estimations are based in a Cube model to maintain consistency.
|
||||
> This **WILL NOT** be the same for all models and only serves as a standard guideline.
|
||||
|
||||
> [!TIP]
|
||||
> You can see how this analysis was made in [infill-analysis](https://github.com/SoftFever/OrcaSlicer/tree/main/doc/print_settings/strength/infill-analysis) folder:
|
||||
> - [Infill calculator Project](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/print_settings/strength/infill-analysis/infill_calculator.3mf?raw=true) to generate the gcode files and images.
|
||||
> - [infill_desc_calculator.xlsx](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/print_settings/strength/infill-analysis/infill_desc_calculator.xlsx?raw=true) used to calculate the values above.
|
||||
> - Time, and material usage where simulated with the same [Klipper Estimator](https://github.com/Annex-Engineering/klipper_estimator) values to maintain consistency.
|
||||
|
||||
## Monotonic
|
||||
|
||||
[Rectilinear](#rectilinear) in a uniform direction for a smoother visual surface.
|
||||
|
||||
- **Horizontal Strength (X-Y):** Normal
|
||||
- **Vertical Strength (Z):** Normal
|
||||
- **Strength**
|
||||
- **Horizontal (X-Y):** ⚪️ Normal
|
||||
- **Vertical (Z):** ⚪️ Normal
|
||||
- **Density Calculation:** % of total infill volume
|
||||
- **Material Usage:** Normal
|
||||
- **Print Time:** Normal-Low
|
||||
- **Material/Time (Higher better):** Normal-High
|
||||
- **Material Usage:** ⚪️ Normal
|
||||
- **Print Time:** 🔘 Normal-Low
|
||||
- **Material/Time (Higher better):** 🔘 Normal-High
|
||||
- **Layer time Variability:** 🟢 None
|
||||
- **Applies to:**
|
||||
- **[Solid Infill](strength_settings_infill#internal-solid-infill)**
|
||||
- **[Surface](strength_settings_top_bottom_shells)**
|
||||
|
|
@ -63,12 +100,14 @@ As most settings in 3D printing, experience is the best way to determine which p
|
|||
|
||||
[Monotonic](#monotonic) but avoids overlapping with the perimeter, reducing excess material at joints. May introduce visible seams and increase print time.
|
||||
|
||||
- **Horizontal Strength (X-Y):** Normal
|
||||
- **Vertical Strength (Z):** Normal
|
||||
- **Strength**
|
||||
- **Horizontal (X-Y):** ⚪️ Normal
|
||||
- **Vertical (Z):** ⚪️ Normal
|
||||
- **Density Calculation:** % of total infill volume
|
||||
- **Material Usage:** Normal
|
||||
- **Print Time:** Normal
|
||||
- **Material/Time (Higher better):** Normal
|
||||
- **Material Usage:** ⚪️ Normal
|
||||
- **Print Time:** 🔘 Normal-Low
|
||||
- **Material/Time (Higher better):** 🔘 Normal-High
|
||||
- **Layer time Variability:** 🟢 None
|
||||
- **Applies to:**
|
||||
- **[Solid Infill](strength_settings_infill#internal-solid-infill)**
|
||||
- **[Surface](strength_settings_top_bottom_shells)**
|
||||
|
|
@ -79,14 +118,17 @@ As most settings in 3D printing, experience is the best way to determine which p
|
|||
|
||||
Parallel lines spaced according to infill density. Each layer is printed perpendicular to the previous, resulting in low vertical bonding. Consider using new [Zig Zag](#zig-zag) infill instead.
|
||||
|
||||
- **Horizontal Strength (X-Y):** Normal-Low
|
||||
- **Vertical Strength (Z):** Low
|
||||
- **Strength**
|
||||
- **Horizontal (X-Y):** ⚪️ Normal-Low
|
||||
- **Vertical (Z):** 🟡 Low
|
||||
- **Density Calculation:** % of total infill volume
|
||||
- **Material Usage:** Normal
|
||||
- **Print Time:** Normal-Low
|
||||
- **Material/Time (Higher better):** Normal
|
||||
- **Material Usage:** ⚪️ Normal
|
||||
- **Print Time:** 🔘 Normal-Low
|
||||
- **Material/Time (Higher better):** 🔘 Normal-High
|
||||
- **Layer time Variability:** 🔵 Unnoticeable
|
||||
- **Applies to:**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)** - **[Solid Infill](strength_settings_infill#internal-solid-infill)**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)**
|
||||
- **[Solid Infill](strength_settings_infill#internal-solid-infill)**
|
||||
- **[Surface](strength_settings_top_bottom_shells)**
|
||||
- **[Ironing](quality_settings_ironing)**
|
||||
|
||||
|
|
@ -97,14 +139,17 @@ Parallel lines spaced according to infill density. Each layer is printed perpend
|
|||
Parallel lines spaced by the infill spacing, each layer printed in the same direction as the previous layer. Good horizontal strength perpendicular to the lines, but terrible in parallel direction.
|
||||
Recommended with layer anchoring to improve not perpendicular strength.
|
||||
|
||||
- **Horizontal Strength (X-Y):** Normal-Low
|
||||
- **Vertical Strength (Z):** Normal
|
||||
- **Strength**
|
||||
- **Horizontal (X-Y):** ⚪️ Normal-Low
|
||||
- **Vertical (Z):** ⚪️ Normal
|
||||
- **Density Calculation:** % of total infill volume
|
||||
- **Material Usage:** Normal
|
||||
- **Print Time:** Normal-Low
|
||||
- **Material/Time (Higher better):** Normal
|
||||
- **Material Usage:** ⚪️ Normal
|
||||
- **Print Time:** 🔘 Normal-Low
|
||||
- **Material/Time (Higher better):** 🔘 Normal-High
|
||||
- **Layer time Variability:** 🔵 Unnoticeable
|
||||
- **Applies to:**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)** - **[Solid Infill](strength_settings_infill#internal-solid-infill)**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)**
|
||||
- **[Solid Infill](strength_settings_infill#internal-solid-infill)**
|
||||
- **[Surface](strength_settings_top_bottom_shells)**
|
||||
|
||||

|
||||
|
|
@ -113,12 +158,14 @@ Recommended with layer anchoring to improve not perpendicular strength.
|
|||
|
||||
Similar to [rectilinear](#rectilinear) with consistent pattern between layers. Allows you to add a Symmetric infill Y axis for models with two symmetric parts.
|
||||
|
||||
- **Horizontal Strength (X-Y):** Normal-Low
|
||||
- **Vertical Strength (Z):** Low
|
||||
- **Strength**
|
||||
- **Horizontal (X-Y):** ⚪️ Normal-Low
|
||||
- **Vertical (Z):** 🟡 Low
|
||||
- **Density Calculation:** % of total infill volume
|
||||
- **Material Usage:** Normal
|
||||
- **Print Time:** Normal-Low
|
||||
- **Material/Time (Higher better):** Normal
|
||||
- **Material Usage:** ⚪️ Normal
|
||||
- **Print Time:** 🔘 Normal-Low
|
||||
- **Material/Time (Higher better):** 🔘 Normal-High
|
||||
- **Layer time Variability:** 🔵 Unnoticeable
|
||||
- **Applies to:**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)**
|
||||
|
||||
|
|
@ -128,12 +175,14 @@ Similar to [rectilinear](#rectilinear) with consistent pattern between layers. A
|
|||
|
||||
Similar to [Zig Zag](#zig-zag) but displacing each layer with Infill shift step parameter.
|
||||
|
||||
- **Horizontal Strength (X-Y):** Normal
|
||||
- **Vertical Strength (Z):** Low
|
||||
- **Strength**
|
||||
- **Horizontal (X-Y):** ⚪️ Normal
|
||||
- **Vertical (Z):** 🟡 Low
|
||||
- **Density Calculation:** % of total infill volume
|
||||
- **Material Usage:** Normal
|
||||
- **Print Time:** Normal-Low
|
||||
- **Material/Time (Higher better):** Normal
|
||||
- **Material Usage:** ⚪️ Normal
|
||||
- **Print Time:** 🔘 Normal-Low
|
||||
- **Material/Time (Higher better):** 🔘 Normal-High
|
||||
- **Layer time Variability:** 🔵 Unnoticeable
|
||||
- **Applies to:**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)**
|
||||
|
||||
|
|
@ -141,14 +190,18 @@ Similar to [Zig Zag](#zig-zag) but displacing each layer with Infill shift step
|
|||
|
||||
## Locked Zag
|
||||
|
||||
Adaptive version of [Zig Zag](#zig-zag) adding an external skin texture to interlock layers and a low material skeleton.
|
||||
Version of [Zig Zag](#zig-zag) that adds extra skin.
|
||||
When using this fill, you can individually modify the density of the skeleton and skin, as well as the size of the skin and how much interconnection there is between the skin and the skeleton (a lock depth of 50% of the skin depth is recommended).
|
||||
|
||||
- **Horizontal Strength (X-Y):** Normal-Low
|
||||
- **Vertical Strength (Z):** Normal-Low
|
||||
- **Density Calculation:** Same as [Zig Zag](#zig-zag) but increasing near walls
|
||||
- **Material Usage:** Normal-High
|
||||
- **Print Time:** Extra-High
|
||||
- **Material/Time (Higher better):** Low
|
||||
- **Strength**
|
||||
- **Horizontal (X-Y):** ⚪️ Normal-Low
|
||||
- **Vertical (Z):** ⚪️ Normal-Low
|
||||
- **Density Calculation:** Similar to [Zig Zag](#zig-zag).
|
||||
Skin density * ( Infill Area - Skin Area + lock depth area) + ( Skin density * Skin area).
|
||||
- **Material Usage:** ⚪️ Normal-High
|
||||
- **Print Time:** ⚪️ Normal-High
|
||||
- **Material/Time (Higher better):** ⚪️ Normal
|
||||
- **Layer time Variability:** 🟢 None
|
||||
- **Applies to:**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)**
|
||||
|
||||
|
|
@ -158,12 +211,14 @@ Adaptive version of [Zig Zag](#zig-zag) adding an external skin texture to inter
|
|||
|
||||
Similar to [rectilinear](#rectilinear), but each line is slightly rotated to improve print speed.
|
||||
|
||||
- **Horizontal Strength (X-Y):** Low
|
||||
- **Vertical Strength (Z):** Low
|
||||
- **Strength**
|
||||
- **Horizontal (X-Y):** 🟡 Low
|
||||
- **Vertical (Z):** 🟡 Low
|
||||
- **Density Calculation:** % of total infill volume
|
||||
- **Material Usage:** Normal
|
||||
- **Print Time:** Normal-Low
|
||||
- **Material/Time (Higher better):** Normal-High
|
||||
- **Material Usage:** ⚪️ Normal
|
||||
- **Print Time:** 🔘 Normal-Low
|
||||
- **Material/Time (Higher better):** 🔘 Normal-High
|
||||
- **Layer time Variability:** 🟢 None
|
||||
- **Applies to:**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)**
|
||||
|
||||
|
|
@ -173,12 +228,14 @@ Similar to [rectilinear](#rectilinear), but each line is slightly rotated to imp
|
|||
|
||||
Two-layer pattern of perpendicular lines, forming a grid. Overlapping points may cause noise or artifacts.
|
||||
|
||||
- **Horizontal Strength (X-Y):** High
|
||||
- **Vertical Strength (Z):** High
|
||||
- **Strength**
|
||||
- **Horizontal (X-Y):** 🟣 High
|
||||
- **Vertical (Z):** 🟣 High
|
||||
- **Density Calculation:** % of total infill volume
|
||||
- **Material Usage:** Normal
|
||||
- **Print Time:** Normal-Low
|
||||
- **Material/Time (Higher better):** Normal-High
|
||||
- **Material Usage:** ⚪️ Normal
|
||||
- **Print Time:** 🟣 Low
|
||||
- **Material/Time (Higher better):** 🔘 Normal-High
|
||||
- **Layer time Variability:** 🟢 None
|
||||
- **Applies to:**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)**
|
||||
|
||||
|
|
@ -188,12 +245,14 @@ Two-layer pattern of perpendicular lines, forming a grid. Overlapping points may
|
|||
|
||||
Triangle-based grid, offering strong X-Y strength but with triple overlaps at intersections.
|
||||
|
||||
- **Horizontal Strength (X-Y):** High
|
||||
- **Vertical Strength (Z):** Normal
|
||||
- **Strength**
|
||||
- **Horizontal (X-Y):** 🟣 High
|
||||
- **Vertical (Z):** ⚪️ Normal
|
||||
- **Density Calculation:** % of total infill volume
|
||||
- **Material Usage:** Normal
|
||||
- **Print Time:** Normal-Low
|
||||
- **Material/Time (Higher better):** Normal-High
|
||||
- **Material Usage:** ⚪️ Normal
|
||||
- **Print Time:** 🔘 Normal-Low
|
||||
- **Material/Time (Higher better):** 🔘 Normal-High
|
||||
- **Layer time Variability:** 🟢 None
|
||||
- **Applies to:**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)**
|
||||
|
||||
|
|
@ -203,12 +262,14 @@ Triangle-based grid, offering strong X-Y strength but with triple overlaps at in
|
|||
|
||||
Similar to the [triangles](#triangles) pattern but offset to prevent triple overlaps at intersections. This design combines triangles and hexagons, providing excellent X-Y strength.
|
||||
|
||||
- **Horizontal Strength (X-Y):** High
|
||||
- **Vertical Strength (Z):** Normal-High
|
||||
- **Strength**
|
||||
- **Horizontal (X-Y):** 🟣 High
|
||||
- **Vertical (Z):** 🔘 Normal-High
|
||||
- **Density Calculation:** % of total infill volume
|
||||
- **Material Usage:** Normal
|
||||
- **Print Time:** Normal-Low
|
||||
- **Material/Time (Higher better):** Normal-High
|
||||
- **Material Usage:** ⚪️ Normal
|
||||
- **Print Time:** 🔘 Normal-Low
|
||||
- **Material/Time (Higher better):** 🔘 Normal-High
|
||||
- **Layer time Variability:** 🟢 None
|
||||
- **Applies to:**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)**
|
||||
|
||||
|
|
@ -218,12 +279,14 @@ Similar to the [triangles](#triangles) pattern but offset to prevent triple over
|
|||
|
||||
3D cube pattern with corners facing down, distributing force in all directions. Triangles in the horizontal plane provide good X-Y strength.
|
||||
|
||||
- **Horizontal Strength (X-Y):** High
|
||||
- **Vertical Strength (Z):** High
|
||||
- **Strength**
|
||||
- **Horizontal (X-Y):** 🟣 High
|
||||
- **Vertical (Z):** 🟣 High
|
||||
- **Density Calculation:** % of total infill volume
|
||||
- **Material Usage:** Normal
|
||||
- **Print Time:** Normal-Low
|
||||
- **Material/Time (Higher better):** Normal-High
|
||||
- **Material Usage:** ⚪️ Normal
|
||||
- **Print Time:** 🔘 Normal-Low
|
||||
- **Material/Time (Higher better):** 🔘 Normal-High
|
||||
- **Layer time Variability:** 🔵 Unnoticeable
|
||||
- **Applies to:**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)**
|
||||
|
||||
|
|
@ -233,12 +296,14 @@ Similar to the [triangles](#triangles) pattern but offset to prevent triple over
|
|||
|
||||
[Cubic](#cubic) pattern with adaptive density: denser near walls, sparser in the center. Saves material and time while maintaining strength, ideal for large prints.
|
||||
|
||||
- **Horizontal Strength (X-Y):** Normal-High
|
||||
- **Vertical Strength (Z):** Normal-High
|
||||
- **Strength**
|
||||
- **Horizontal (X-Y):** 🔘 Normal-High
|
||||
- **Vertical (Z):** 🔘 Normal-High
|
||||
- **Density Calculation:** Same as [Cubic](#cubic) but reduced in the center
|
||||
- **Material Usage:** Low
|
||||
- **Print Time:** Low
|
||||
- **Material/Time (Higher better):** Normal
|
||||
- **Material Usage:** 🟣 Low
|
||||
- **Print Time:** 🟣 Low
|
||||
- **Material/Time (Higher better):** ⚪️ Normal
|
||||
- **Layer time Variability:** 🔵 Unnoticeable
|
||||
- **Applies to:**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)**
|
||||
|
||||
|
|
@ -248,12 +313,14 @@ Similar to the [triangles](#triangles) pattern but offset to prevent triple over
|
|||
|
||||
[Cubic](#cubic) pattern with extra internal divisions, improving X-Y strength.
|
||||
|
||||
- **Horizontal Strength (X-Y):** High
|
||||
- **Vertical Strength (Z):** High
|
||||
- **Strength**
|
||||
- **Horizontal (X-Y):** 🟣 High
|
||||
- **Vertical (Z):** 🟣 High
|
||||
- **Density Calculation:** % of total infill volume
|
||||
- **Material Usage:** Normal
|
||||
- **Print Time:** Normal-Low
|
||||
- **Material/Time (Higher better):** Normal-High
|
||||
- **Material Usage:** ⚪️ Normal
|
||||
- **Print Time:** 🔘 Normal-Low
|
||||
- **Material/Time (Higher better):** 🔘 Normal-High
|
||||
- **Layer time Variability:** 🔵 Unnoticeable
|
||||
- **Applies to:**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)**
|
||||
|
||||
|
|
@ -263,12 +330,14 @@ Similar to the [triangles](#triangles) pattern but offset to prevent triple over
|
|||
|
||||
Support |Cubic is a variation of the [Cubic](#cubic) infill pattern that is specifically designed for support top layers. Will use more material than Lightning infill but will provide better strength. Nevertheless, it is still a low-density infill pattern.
|
||||
|
||||
- **Horizontal Strength (X-Y):** Low
|
||||
- **Vertical Strength (Z):** Low
|
||||
- **Strength**
|
||||
- **Horizontal (X-Y):** 🟡 Low
|
||||
- **Vertical (Z):** 🟡 Low
|
||||
- **Density Calculation:** % of layer before top shell layers
|
||||
- **Material Usage:** Extra-Low
|
||||
- **Print Time:** Extra-Low
|
||||
- **Material/Time (Higher better):** Normal
|
||||
- **Material Usage:** 🔵 Extra-Low
|
||||
- **Print Time:** 🔵 Extra-Low
|
||||
- **Material/Time (Higher better):** 🟡 Low
|
||||
- **Layer time Variability:** 🔴 Likely Noticeable
|
||||
- **Applies to:**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)**
|
||||
|
||||
|
|
@ -278,12 +347,14 @@ Support |Cubic is a variation of the [Cubic](#cubic) infill pattern that is spec
|
|||
|
||||
Ultra-fast, ultra-low material infill. Designed for speed and efficiency, ideal for quick prints or non-structural prototypes.
|
||||
|
||||
- **Horizontal Strength (X-Y):** Low
|
||||
- **Vertical Strength (Z):** Low
|
||||
- **Strength**
|
||||
- **Horizontal (X-Y):** 🟡 Low
|
||||
- **Vertical (Z):** 🟡 Low
|
||||
- **Density Calculation:** % of layer before top shell layers
|
||||
- **Material Usage:** Ultra-Low
|
||||
- **Print Time:** Ultra-Low
|
||||
- **Material/Time (Higher better):** Low
|
||||
- **Material Usage:** 🟢 Ultra-Low
|
||||
- **Print Time:** 🟢 Ultra-Low
|
||||
- **Material/Time (Higher better):** ⚪️ Normal-Low
|
||||
- **Layer time Variability:** 🔴 Likely Noticeable
|
||||
- **Applies to:**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)**
|
||||
|
||||
|
|
@ -293,12 +364,14 @@ Ultra-fast, ultra-low material infill. Designed for speed and efficiency, ideal
|
|||
|
||||
Hexagonal pattern balancing strength and material use. Double walls in each hexagon increase material consumption.
|
||||
|
||||
- **Horizontal Strength (X-Y):** High
|
||||
- **Vertical Strength (Z):** High
|
||||
- **Strength**
|
||||
- **Horizontal (X-Y):** 🟣 High
|
||||
- **Vertical (Z):** 🟣 High
|
||||
- **Density Calculation:** % of total infill volume
|
||||
- **Material Usage:** High
|
||||
- **Print Time:** Ultra-High
|
||||
- **Material/Time (Higher better):** Low
|
||||
- **Material Usage:** 🟡 High
|
||||
- **Print Time:** 🔴 Ultra-High
|
||||
- **Material/Time (Higher better):** 🟡 Low
|
||||
- **Layer time Variability:** 🟢 None
|
||||
- **Applies to:**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)**
|
||||
|
||||
|
|
@ -308,12 +381,14 @@ Hexagonal pattern balancing strength and material use. Double walls in each hexa
|
|||
|
||||
This infill tries to generate a printable honeycomb structure by printing squares and octagons maintaining a vertical angle high enough to maintain contact with the previous layer.
|
||||
|
||||
- **Horizontal Strength (X-Y):** Normal-High
|
||||
- **Vertical Strength (Z):** Normal-High
|
||||
- **Strength**
|
||||
- **Horizontal (X-Y):** 🔘 Normal-High
|
||||
- **Vertical (Z):** 🔘 Normal-High
|
||||
- **Density Calculation:** Unknown
|
||||
- **Material Usage:** Normal-Low
|
||||
- **Print Time:** High
|
||||
- **Material/Time (Higher better):** Low
|
||||
- **Material Usage:** 🔘 Normal-Low
|
||||
- **Print Time:** 🟠 Extra-High
|
||||
- **Material/Time (Higher better):** 🟡 Low
|
||||
- **Layer time Variability:** 🟡 Possibly Noticeable
|
||||
- **Applies to:**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)**
|
||||
|
||||
|
|
@ -323,12 +398,14 @@ This infill tries to generate a printable honeycomb structure by printing square
|
|||
|
||||
Vertical Honeycomb pattern. Acceptable torsional stiffness. Developed for low densities structures like wings. Improve over [Lateral Lattice](#lateral-lattice) offers same performance with lower densities.This infill includes a Overhang angle parameter to improve the point of contact between layers and reduce the risk of delamination.
|
||||
|
||||
- **Horizontal Strength (X-Y):** Normal-Low
|
||||
- **Vertical Strength (Z):** Normal-Low
|
||||
- **Strength**
|
||||
- **Horizontal (X-Y):** ⚪️ Normal-Low
|
||||
- **Vertical (Z):** ⚪️ Normal-Low
|
||||
- **Density Calculation:** % of total infill volume
|
||||
- **Material Usage:** Normal
|
||||
- **Print Time:** Normal-Low
|
||||
- **Material/Time (Higher better):** Normal-High
|
||||
- **Material Usage:** ⚪️ Normal
|
||||
- **Print Time:** 🔘 Normal-Low
|
||||
- **Material/Time (Higher better):** 🔘 Normal-High
|
||||
- **Layer time Variability:** 🟡 Possibly Noticeable
|
||||
- **Applies to:**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)**
|
||||
|
||||
|
|
@ -338,12 +415,14 @@ Vertical Honeycomb pattern. Acceptable torsional stiffness. Developed for low de
|
|||
|
||||
Low-strength pattern with good flexibility. You can adjust **Angle 1** and **Angle 2** to optimize the infill for your specific model. Each angle adjusts the plane of each layer generated by the pattern. 0° is vertical.
|
||||
|
||||
- **Horizontal Strength (X-Y):** Normal-Low
|
||||
- **Vertical Strength (Z):** Low
|
||||
- **Strength**
|
||||
- **Horizontal (X-Y):** ⚪️ Normal-Low
|
||||
- **Vertical (Z):** 🟡 Low
|
||||
- **Density Calculation:** % of total infill volume
|
||||
- **Material Usage:** Normal
|
||||
- **Print Time:** Normal-Low
|
||||
- **Material/Time (Higher better):** Normal-High
|
||||
- **Material Usage:** ⚪️ Normal
|
||||
- **Print Time:** 🔘 Normal-Low
|
||||
- **Material/Time (Higher better):** 🔘 Normal-High
|
||||
- **Layer time Variability:** 🔵 Unnoticeable
|
||||
- **Applies to:**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)**
|
||||
|
||||
|
|
@ -354,12 +433,14 @@ Low-strength pattern with good flexibility. You can adjust **Angle 1** and **Ang
|
|||
Similar to [Gyroid](#gyroid) but with linear patterns, creating weak points at internal corners.
|
||||
Easier to slice but consider using [TPMS-D](#tpms-d) or [Gyroid](#gyroid) for better strength and flexibility.
|
||||
|
||||
- **Horizontal Strength (X-Y):** Normal-High
|
||||
- **Vertical Strength (Z):** Normal-High
|
||||
- **Strength**
|
||||
- **Horizontal (X-Y):** 🔘 Normal-High
|
||||
- **Vertical (Z):** 🔘 Normal-High
|
||||
- **Density Calculation:** % of total infill volume
|
||||
- **Material Usage:** Normal
|
||||
- **Print Time:** Normal-High
|
||||
- **Material/Time (Higher better):** Normal-Low
|
||||
- **Material Usage:** ⚪️ Normal
|
||||
- **Print Time:** 🟡 High
|
||||
- **Material/Time (Higher better):** 🟡 Low
|
||||
- **Layer time Variability:** 🔴 Likely Noticeable
|
||||
- **Applies to:**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)**
|
||||
|
||||
|
|
@ -369,12 +450,14 @@ Easier to slice but consider using [TPMS-D](#tpms-d) or [Gyroid](#gyroid) for be
|
|||
|
||||
Triply Periodic Minimal Surface (Schwarz Diamond). Hybrid between [Cross Hatch](#cross-hatch) and [Gyroid](#gyroid), combining rigidity and smooth transitions. Isotropic and strong in all directions. This geometry is faster to slice than Gyroid, but slower than Cross Hatch.
|
||||
|
||||
- **Horizontal Strength (X-Y):** High
|
||||
- **Vertical Strength (Z):** High
|
||||
- **Strength**
|
||||
- **Horizontal (X-Y):** 🟣 High
|
||||
- **Vertical (Z):** 🟣 High
|
||||
- **Density Calculation:** % of total infill volume
|
||||
- **Material Usage:** Normal
|
||||
- **Print Time:** High
|
||||
- **Material/Time (Higher better):** Normal-Low
|
||||
- **Material Usage:** ⚪️ Normal
|
||||
- **Print Time:** 🟡 High
|
||||
- **Material/Time (Higher better):** 🟡 Low
|
||||
- **Layer time Variability:** 🟡 Possibly Noticeable
|
||||
- **Applies to:**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)**
|
||||
|
||||
|
|
@ -384,12 +467,14 @@ Triply Periodic Minimal Surface (Schwarz Diamond). Hybrid between [Cross Hatch](
|
|||
|
||||
Triply Periodic Minimal Surface (Fischer–Koch S) pattern. Its smooth, continuous geometry resembles trabecular bone microstructure, offering a balance between rigidity and energy absorption. Compared to [TPMS-D](#tpms-d), it has more complex curvature, which can improve load distribution and shock absorption in functional parts.
|
||||
|
||||
- **Horizontal Strength (X-Y):** Normal-High
|
||||
- **Vertical Strength (Z):** Normal-High
|
||||
- **Strength**
|
||||
- **Horizontal (X-Y):** 🔘 Normal-High
|
||||
- **Vertical (Z):** 🔘 Normal-High
|
||||
- **Density Calculation:** % of total infill volume
|
||||
- **Material Usage:** Normal
|
||||
- **Print Time:** High
|
||||
- **Material/Time (Higher better):** Low
|
||||
- **Material Usage:** ⚪️ Normal
|
||||
- **Print Time:** 🔴 Ultra-High
|
||||
- **Material/Time (Higher better):** 🟡 Low
|
||||
- **Layer time Variability:** 🟡 Possibly Noticeable
|
||||
- **Applies to:**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)**
|
||||
|
||||
|
|
@ -399,12 +484,14 @@ Triply Periodic Minimal Surface (Fischer–Koch S) pattern. Its smooth, continuo
|
|||
|
||||
Mathematical, isotropic surface providing equal strength in all directions. Excellent for strong, flexible prints and resin filling due to its interconnected structure. This pattern may require more time to slice because of all the points needed to generate each curve. If your model has complex geometry, consider using a simpler infill pattern like [TPMS-D](#tpms-d) or [Cross Hatch](#cross-hatch).
|
||||
|
||||
- **Horizontal Strength (X-Y):** High
|
||||
- **Vertical Strength (Z):** High
|
||||
- **Strength**
|
||||
- **Horizontal (X-Y):** 🟣 High
|
||||
- **Vertical (Z):** 🟣 High
|
||||
- **Density Calculation:** % of total infill volume
|
||||
- **Material Usage:** Normal
|
||||
- **Print Time:** Normal-High
|
||||
- **Material/Time (Higher better):** Normal-Low
|
||||
- **Material Usage:** ⚪️ Normal
|
||||
- **Print Time:** 🔴 Ultra-High
|
||||
- **Material/Time (Higher better):** 🟡 Low
|
||||
- **Layer time Variability:** 🔵 Unnoticeable
|
||||
- **Applies to:**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)**
|
||||
|
||||
|
|
@ -414,14 +501,17 @@ Mathematical, isotropic surface providing equal strength in all directions. Exce
|
|||
|
||||
Fills the area with progressively smaller versions of the outer contour, creating a concentric pattern. Ideal for 100% infill or flexible prints.
|
||||
|
||||
- **Horizontal Strength (X-Y):** Low
|
||||
- **Vertical Strength (Z):** Normal
|
||||
- **Strength**
|
||||
- **Horizontal (X-Y):** 🟡 Low
|
||||
- **Vertical (Z):** ⚪️ Normal
|
||||
- **Density Calculation:** % of total infill volume
|
||||
- **Material Usage:** Normal
|
||||
- **Print Time:** Normal-Low
|
||||
- **Material/Time (Higher better):** Normal-High
|
||||
- **Material Usage:** ⚪️ Normal
|
||||
- **Print Time:** 🔘 Normal-Low
|
||||
- **Material/Time (Higher better):** 🔘 Normal-High
|
||||
- **Layer time Variability:** 🟢 None
|
||||
- **Applies to:**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)** - **[Solid Infill](strength_settings_infill#internal-solid-infill)**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)**
|
||||
- **[Solid Infill](strength_settings_infill#internal-solid-infill)**
|
||||
- **[Surface](strength_settings_top_bottom_shells)**
|
||||
- **[Ironing](quality_settings_ironing)**
|
||||
|
||||
|
|
@ -429,17 +519,20 @@ Fills the area with progressively smaller versions of the outer contour, creatin
|
|||
|
||||
## Hilbert Curve
|
||||
|
||||
Hilbert Curve is a space-filling curve that can be used to create a continuous infill pattern. It is known for its Aesthetic appeal and ability to fill space efficiently.
|
||||
Print speed is very low due to the complexity of the path, which can lead to longer print times. It is not recommended for structural parts but can be used for Aesthetic purposes.
|
||||
Hilbert Curve is a space-filling curve that can be used to create a continuous infill pattern. It is known for its aesthetic appeal and ability to fill space efficiently.
|
||||
Print speed is very low due to the complexity of the path, which can lead to longer print times. It is not recommended for structural parts but can be used for aesthetic purposes.
|
||||
|
||||
- **Horizontal Strength (X-Y):** Low
|
||||
- **Vertical Strength (Z):** Normal
|
||||
- **Strength**
|
||||
- **Horizontal (X-Y):** 🟡 Low
|
||||
- **Vertical (Z):** ⚪️ Normal
|
||||
- **Density Calculation:** % of total infill volume
|
||||
- **Material Usage:** Normal
|
||||
- **Print Time:** High
|
||||
- **Material/Time (Higher better):** Low
|
||||
- **Material Usage:** ⚪️ Normal
|
||||
- **Print Time:** 🟠 Extra-High
|
||||
- **Material/Time (Higher better):** 🟡 Low
|
||||
- **Layer time Variability:** 🟢 None
|
||||
- **Applies to:**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)** - **[Solid Infill](strength_settings_infill#internal-solid-infill)**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)**
|
||||
- **[Solid Infill](strength_settings_infill#internal-solid-infill)**
|
||||
- **[Surface](strength_settings_top_bottom_shells)**
|
||||
|
||||

|
||||
|
|
@ -448,14 +541,17 @@ Print speed is very low due to the complexity of the path, which can lead to lon
|
|||
|
||||
Spiral pattern that fills the area with concentric arcs, creating a smooth and continuous infill. Can be filled with resin thanks to its interconnected hollow structure, which allows the resin to flow through it and cure properly.
|
||||
|
||||
- **Horizontal Strength (X-Y):** Low
|
||||
- **Vertical Strength (Z):** Normal
|
||||
- **Strength**
|
||||
- **Horizontal (X-Y):** 🟡 Low
|
||||
- **Vertical (Z):** ⚪️ Normal
|
||||
- **Density Calculation:** % of total infill volume
|
||||
- **Material Usage:** Normal
|
||||
- **Print Time:** Normal-Low
|
||||
- **Material/Time (Higher better):** Normal-High
|
||||
- **Material Usage:** ⚪️ Normal
|
||||
- **Print Time:** 🔘 Normal-Low
|
||||
- **Material/Time (Higher better):** 🔘 Normal-High
|
||||
- **Layer time Variability:** 🟢 None
|
||||
- **Applies to:**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)** - **[Solid Infill](strength_settings_infill#internal-solid-infill)**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)**
|
||||
- **[Solid Infill](strength_settings_infill#internal-solid-infill)**
|
||||
- **[Surface](strength_settings_top_bottom_shells)**
|
||||
|
||||

|
||||
|
|
@ -464,14 +560,17 @@ Spiral pattern that fills the area with concentric arcs, creating a smooth and c
|
|||
|
||||
Aesthetic pattern with low strength and high print time.
|
||||
|
||||
- **Horizontal Strength (X-Y):** Low
|
||||
- **Vertical Strength (Z):** Normal
|
||||
- **Strength**
|
||||
- **Horizontal (X-Y):** 🟡 Low
|
||||
- **Vertical (Z):** ⚪️ Normal
|
||||
- **Density Calculation:** % of total infill volume
|
||||
- **Material Usage:** Normal
|
||||
- **Print Time:** Normal
|
||||
- **Material/Time (Higher better):** Normal-Low
|
||||
- **Material Usage:** ⚪️ Normal
|
||||
- **Print Time:** ⚪️ Normal
|
||||
- **Material/Time (Higher better):** ⚪️ Normal
|
||||
- **Layer time Variability:** 🟢 None
|
||||
- **Applies to:**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)** - **[Solid Infill](strength_settings_infill#internal-solid-infill)**
|
||||
- **[Sparse Infill](strength_settings_infill#sparse-infill-density)**
|
||||
- **[Solid Infill](strength_settings_infill#internal-solid-infill)**
|
||||
- **[Surface](strength_settings_top_bottom_shells)**
|
||||
|
||||

|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 21:06+0800\n"
|
||||
"POT-Creation-Date: 2025-09-28 18:44+0800\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -5846,6 +5846,17 @@ msgstr ""
|
|||
msgid "Load 3mf"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This project was created with an OrcaSlicer 2.3.1-alpha and uses infill "
|
||||
"rotation template settings that may not work properly with your current "
|
||||
"infill pattern. This could result in weak support or print quality issues."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Would you like OrcaSlicer to automatically fix this by clearing the rotation "
|
||||
"template settings?"
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid ""
|
||||
"The 3mf's version %s is newer than %s's version %s, found following "
|
||||
|
|
@ -6357,10 +6368,10 @@ msgstr ""
|
|||
msgid "Others"
|
||||
msgstr ""
|
||||
|
||||
msgid "Login Region"
|
||||
msgid "Login region"
|
||||
msgstr ""
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgid "Stealth mode"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6368,10 +6379,13 @@ msgid ""
|
|||
"don't use BBL machines or use LAN mode only can safely turn on this function."
|
||||
msgstr ""
|
||||
|
||||
msgid "Network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Use legacy network plugin (Takes effect after restarting Orca)"
|
||||
msgid "Use legacy network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6408,7 +6422,7 @@ msgstr ""
|
|||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default Page"
|
||||
msgid "Default page"
|
||||
msgstr ""
|
||||
|
||||
msgid "Set the page opened on startup."
|
||||
|
|
@ -6492,14 +6506,17 @@ msgid ""
|
|||
"each printer automatically."
|
||||
msgstr ""
|
||||
|
||||
msgid "Show the step mesh parameter setting dialog."
|
||||
msgid "Show options when importing STEP file"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled,a parameter settings dialog will appear during STEP file import."
|
||||
msgstr ""
|
||||
|
||||
msgid "Multi-device Management (Take effect after restarting Orca Slicer)."
|
||||
msgid "Multi device management"
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6570,7 +6587,10 @@ msgstr ""
|
|||
msgid "Load Geometry Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load Behaviour"
|
||||
msgid "Load behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
|
|
@ -6582,16 +6602,16 @@ msgstr ""
|
|||
msgid "Maximum count of recent files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add model files (stl/step) to recent file list."
|
||||
msgid "Add STL/STEP files to recent files list"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clear my choice on the unsaved projects."
|
||||
msgstr ""
|
||||
|
||||
msgid "No warnings when loading 3MF with modified G-code"
|
||||
msgid "Don't warn when loading 3MF with modified G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto-Backup"
|
||||
msgid "Auto backup"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6607,10 +6627,13 @@ msgstr ""
|
|||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
msgid "Downloads folder"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dark Mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable Dark mode"
|
||||
msgid "Enable dark mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Develop mode"
|
||||
|
|
@ -8224,10 +8247,10 @@ msgstr ""
|
|||
msgid "Global shortcuts"
|
||||
msgstr ""
|
||||
|
||||
msgid "Rotate View"
|
||||
msgid "Pan View"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pan View"
|
||||
msgid "Rotate View"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom View"
|
||||
|
|
@ -15049,6 +15072,9 @@ msgstr ""
|
|||
msgid "Network Test"
|
||||
msgstr ""
|
||||
|
||||
msgid "Network test"
|
||||
msgstr ""
|
||||
|
||||
msgid "Start Test Multi-Thread"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 21:06+0800\n"
|
||||
"POT-Creation-Date: 2025-09-28 18:44+0800\n"
|
||||
"PO-Revision-Date: 2025-03-15 10:55+0100\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -6291,6 +6291,17 @@ msgstr ""
|
|||
msgid "Load 3mf"
|
||||
msgstr "Carregar 3mf"
|
||||
|
||||
msgid ""
|
||||
"This project was created with an OrcaSlicer 2.3.1-alpha and uses infill "
|
||||
"rotation template settings that may not work properly with your current "
|
||||
"infill pattern. This could result in weak support or print quality issues."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Would you like OrcaSlicer to automatically fix this by clearing the rotation "
|
||||
"template settings?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"The 3mf's version %s is newer than %s's version %s, found following "
|
||||
|
|
@ -6867,11 +6878,11 @@ msgstr "Nord-America"
|
|||
msgid "Others"
|
||||
msgstr "Altres"
|
||||
|
||||
msgid "Login Region"
|
||||
msgid "Login region"
|
||||
msgstr "Regió d'inici de sessió"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgstr "Mode Silenciós"
|
||||
msgid "Stealth mode"
|
||||
msgstr "Mode silenciós"
|
||||
|
||||
msgid ""
|
||||
"This stops the transmission of data to Bambu's cloud services. Users who "
|
||||
|
|
@ -6881,10 +6892,13 @@ msgstr ""
|
|||
"usuaris que no utilitzen màquines BBL o només utilitzen el mode LAN poden "
|
||||
"activar aquesta funció de manera segura."
|
||||
|
||||
msgid "Network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr "Habilita el plugin de xarxa"
|
||||
|
||||
msgid "Use legacy network plugin (Takes effect after restarting Orca)"
|
||||
msgid "Use legacy network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6928,7 +6942,7 @@ msgstr ""
|
|||
msgid "Home"
|
||||
msgstr "Inici"
|
||||
|
||||
msgid "Default Page"
|
||||
msgid "Default page"
|
||||
msgstr "Pàgina predeterminada"
|
||||
|
||||
msgid "Set the page opened on startup."
|
||||
|
|
@ -7031,15 +7045,18 @@ msgstr ""
|
|||
"Si està habilitada, l'Orca recordarà i canviarà automàticament la "
|
||||
"configuració del filament/procés per a cada impressora."
|
||||
|
||||
msgid "Show the step mesh parameter setting dialog."
|
||||
msgid "Show options when importing STEP file"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled,a parameter settings dialog will appear during STEP file import."
|
||||
msgstr ""
|
||||
|
||||
msgid "Multi-device Management (Take effect after restarting Orca Slicer)."
|
||||
msgstr "Gestió multidispositiu(Entra en vigor després de reiniciar Studio)."
|
||||
msgid "Multi device management"
|
||||
msgstr "Gestió multidispositiu"
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"With this option enabled, you can send a task to multiple devices at the "
|
||||
|
|
@ -7119,8 +7136,11 @@ msgstr "Pregunta sempre"
|
|||
msgid "Load Geometry Only"
|
||||
msgstr "Carregar només geometria"
|
||||
|
||||
msgid "Load Behaviour"
|
||||
msgstr "Carregar Comportament"
|
||||
msgid "Load behaviour"
|
||||
msgstr "Carregar comportament"
|
||||
|
||||
msgid "Behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
msgstr ""
|
||||
|
|
@ -7133,16 +7153,16 @@ msgstr ""
|
|||
msgid "Maximum count of recent files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add model files (stl/step) to recent file list."
|
||||
msgid "Add STL/STEP files to recent files list"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clear my choice on the unsaved projects."
|
||||
msgstr "Esborrar la meva elecció sobre els projectes no desats."
|
||||
|
||||
msgid "No warnings when loading 3MF with modified G-code"
|
||||
msgid "Don't warn when loading 3MF with modified G-code"
|
||||
msgstr "No hi ha avisos en carregar 3MF amb Codis-G modificats"
|
||||
|
||||
msgid "Auto-Backup"
|
||||
msgid "Auto backup"
|
||||
msgstr "Còpia de seguretat automàtica"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -7160,10 +7180,13 @@ msgstr "Freqüència de còpia de seguretat en segons."
|
|||
msgid "Downloads"
|
||||
msgstr "Descàrregues"
|
||||
|
||||
msgid "Downloads folder"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dark Mode"
|
||||
msgstr "Mode fosc"
|
||||
|
||||
msgid "Enable Dark mode"
|
||||
msgid "Enable dark mode"
|
||||
msgstr "Habilitar el mode fosc"
|
||||
|
||||
msgid "Develop mode"
|
||||
|
|
@ -8987,12 +9010,12 @@ msgstr "Mostrar la llista de dreceres de teclat"
|
|||
msgid "Global shortcuts"
|
||||
msgstr "Dreceres Globals"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "Rotar la vista"
|
||||
|
||||
msgid "Pan View"
|
||||
msgstr "Vista Panoràmica"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "Rotar la vista"
|
||||
|
||||
msgid "Zoom View"
|
||||
msgstr "Vista amb Zoom"
|
||||
|
||||
|
|
@ -17531,6 +17554,9 @@ msgstr "Esborrar entrada"
|
|||
msgid "Network Test"
|
||||
msgstr "Prova de Xarxa"
|
||||
|
||||
msgid "Network test"
|
||||
msgstr "Prova de Xarxa"
|
||||
|
||||
msgid "Start Test Multi-Thread"
|
||||
msgstr "Inicia la prova Multi-Thread"
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 21:06+0800\n"
|
||||
"POT-Creation-Date: 2025-09-28 18:44+0800\n"
|
||||
"PO-Revision-Date: 2024-11-03 20:59+0100\n"
|
||||
"Last-Translator: René Mošner <Renemosner@seznam.cz>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -6170,6 +6170,17 @@ msgstr ""
|
|||
msgid "Load 3mf"
|
||||
msgstr "Načíst 3mf"
|
||||
|
||||
msgid ""
|
||||
"This project was created with an OrcaSlicer 2.3.1-alpha and uses infill "
|
||||
"rotation template settings that may not work properly with your current "
|
||||
"infill pattern. This could result in weak support or print quality issues."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Would you like OrcaSlicer to automatically fix this by clearing the rotation "
|
||||
"template settings?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"The 3mf's version %s is newer than %s's version %s, found following "
|
||||
|
|
@ -6725,21 +6736,24 @@ msgstr "Severní Amerika"
|
|||
msgid "Others"
|
||||
msgstr "Ostatní"
|
||||
|
||||
msgid "Login Region"
|
||||
msgid "Login region"
|
||||
msgstr "Región přihlášení"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgstr "Tajný Režim"
|
||||
msgid "Stealth mode"
|
||||
msgstr "Tajný režim"
|
||||
|
||||
msgid ""
|
||||
"This stops the transmission of data to Bambu's cloud services. Users who "
|
||||
"don't use BBL machines or use LAN mode only can safely turn on this function."
|
||||
msgstr ""
|
||||
|
||||
msgid "Network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Use legacy network plugin (Takes effect after restarting Orca)"
|
||||
msgid "Use legacy network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6779,7 +6793,7 @@ msgstr ""
|
|||
msgid "Home"
|
||||
msgstr "Home"
|
||||
|
||||
msgid "Default Page"
|
||||
msgid "Default page"
|
||||
msgstr ""
|
||||
|
||||
msgid "Set the page opened on startup."
|
||||
|
|
@ -6867,14 +6881,17 @@ msgid ""
|
|||
"each printer automatically."
|
||||
msgstr ""
|
||||
|
||||
msgid "Show the step mesh parameter setting dialog."
|
||||
msgid "Show options when importing STEP file"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled,a parameter settings dialog will appear during STEP file import."
|
||||
msgstr ""
|
||||
|
||||
msgid "Multi-device Management (Take effect after restarting Orca Slicer)."
|
||||
msgid "Multi device management"
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6952,7 +6969,10 @@ msgstr ""
|
|||
msgid "Load Geometry Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load Behaviour"
|
||||
msgid "Load behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
|
|
@ -6964,16 +6984,16 @@ msgstr ""
|
|||
msgid "Maximum count of recent files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add model files (stl/step) to recent file list."
|
||||
msgid "Add STL/STEP files to recent files list"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clear my choice on the unsaved projects."
|
||||
msgstr "Vymazat moje volby pro neuložené projekty."
|
||||
|
||||
msgid "No warnings when loading 3MF with modified G-code"
|
||||
msgid "Don't warn when loading 3MF with modified G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto-Backup"
|
||||
msgid "Auto backup"
|
||||
msgstr "Automatické zálohování"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6990,10 +7010,13 @@ msgstr "Doba zálohování v sekundách."
|
|||
msgid "Downloads"
|
||||
msgstr "Stahování"
|
||||
|
||||
msgid "Downloads folder"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dark Mode"
|
||||
msgstr "Tmavý režim"
|
||||
|
||||
msgid "Enable Dark mode"
|
||||
msgid "Enable dark mode"
|
||||
msgstr "Povolit tmavý režim"
|
||||
|
||||
msgid "Develop mode"
|
||||
|
|
@ -8733,12 +8756,12 @@ msgstr "Zobrazit přehled klávesových zkratek"
|
|||
msgid "Global shortcuts"
|
||||
msgstr "Globální zkratky"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "Otočit pohled"
|
||||
|
||||
msgid "Pan View"
|
||||
msgstr "Zobrazení panorama"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "Otočit pohled"
|
||||
|
||||
msgid "Zoom View"
|
||||
msgstr "Zvětšit zobrazení"
|
||||
|
||||
|
|
@ -16321,6 +16344,9 @@ msgstr "Smazat vstup"
|
|||
msgid "Network Test"
|
||||
msgstr ""
|
||||
|
||||
msgid "Network test"
|
||||
msgstr ""
|
||||
|
||||
msgid "Start Test Multi-Thread"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 21:06+0800\n"
|
||||
"POT-Creation-Date: 2025-09-28 18:44+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Heiko Liebscher <hliebschergmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -4296,8 +4296,8 @@ msgid ""
|
|||
"Invalid pattern. Use N, N#K, or a comma-separated list with optional #K per "
|
||||
"entry. Examples: 5, 5#2, 1,7,9, 5,9#2,18."
|
||||
msgstr ""
|
||||
"Ungültiges Muster. Verwenden Sie N, N#K oder eine durch Kommas getrennte Liste "
|
||||
"mit optionalem #K pro Eintrag. Beispiele: 5, 5#2, 1,7,9, 5,9#2,18."
|
||||
"Ungültiges Muster. Verwenden Sie N, N#K oder eine durch Kommas getrennte "
|
||||
"Liste mit optionalem #K pro Eintrag. Beispiele: 5, 5#2, 1,7,9, 5,9#2,18."
|
||||
|
||||
#, boost-format
|
||||
msgid "Invalid format. Expected vector format: \"%1%\""
|
||||
|
|
@ -6361,6 +6361,23 @@ msgstr "Der 3mf stammt nicht vom OrcaSlicer, lade nur die Geometriedaten."
|
|||
msgid "Load 3mf"
|
||||
msgstr "Lade 3mf"
|
||||
|
||||
msgid ""
|
||||
"This project was created with an OrcaSlicer 2.3.1-alpha and uses infill "
|
||||
"rotation template settings that may not work properly with your current "
|
||||
"infill pattern. This could result in weak support or print quality issues."
|
||||
msgstr ""
|
||||
"Dieses Projekt wurde mit einem OrcaSlicer 2.3.1-alpha erstellt und verwendet "
|
||||
"Vorlageneinstellungen für die Infill-Rotation, die möglicherweise nicht "
|
||||
"richtig mit Ihrem aktuellen Infill-Muster funktionieren. Dies könnte zu "
|
||||
"schwacher Unterstützung oder Druckqualitätsproblemen führen."
|
||||
|
||||
msgid ""
|
||||
"Would you like OrcaSlicer to automatically fix this by clearing the rotation "
|
||||
"template settings?"
|
||||
msgstr ""
|
||||
"Möchten Sie, dass OrcaSlicer dies automatisch behebt, indem die "
|
||||
"Vorlageneinstellungen für die Rotation gelöscht werden?"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"The 3mf's version %s is newer than %s's version %s, found following "
|
||||
|
|
@ -6952,11 +6969,11 @@ msgstr "Nordamerika"
|
|||
msgid "Others"
|
||||
msgstr "Sonstiges"
|
||||
|
||||
msgid "Login Region"
|
||||
msgstr "Login-Region"
|
||||
msgid "Login region"
|
||||
msgstr "Login region"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgstr "Unsichtbarer Modus"
|
||||
msgid "Stealth mode"
|
||||
msgstr "Unsichtbarer modus"
|
||||
|
||||
msgid ""
|
||||
"This stops the transmission of data to Bambu's cloud services. Users who "
|
||||
|
|
@ -6966,13 +6983,14 @@ msgstr ""
|
|||
"Benutzer, die keine BBL-Maschinen verwenden oder nur den LAN-Modus "
|
||||
"verwenden, können diese Funktion sicher aktivieren."
|
||||
|
||||
msgid "Network plugin"
|
||||
msgstr "Netzwerk-Plugin"
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr "Netzwerk-Plugin aktivieren"
|
||||
|
||||
msgid "Use legacy network plugin (Takes effect after restarting Orca)"
|
||||
msgstr ""
|
||||
"Verwenden Sie das alte Netzwerk-Plugin (wirkt sich nach dem Neustart von "
|
||||
"Orca aus)"
|
||||
msgid "Use legacy network plugin"
|
||||
msgstr "Verwenden Sie das alte Netzwerk-Plugin"
|
||||
|
||||
msgid ""
|
||||
"Disable to use latest network plugin that supports new BambuLab firmwares."
|
||||
|
|
@ -7015,7 +7033,7 @@ msgstr ""
|
|||
msgid "Home"
|
||||
msgstr "Startseite"
|
||||
|
||||
msgid "Default Page"
|
||||
msgid "Default page"
|
||||
msgstr "Standardseite"
|
||||
|
||||
msgid "Set the page opened on startup."
|
||||
|
|
@ -7110,7 +7128,7 @@ msgstr ""
|
|||
"Wenn aktiviert, merkt sich Orca die Filament-/Prozesskonfiguration für jeden "
|
||||
"Drucker und wechselt automatisch."
|
||||
|
||||
msgid "Show the step mesh parameter setting dialog."
|
||||
msgid "Show options when importing STEP file"
|
||||
msgstr "Zeige den Dialog für die Parameter-Einstellungen des Step-Netzes."
|
||||
|
||||
msgid ""
|
||||
|
|
@ -7118,8 +7136,11 @@ msgid ""
|
|||
msgstr ""
|
||||
"Wenn aktiviert, wird während des Imports von STEP-Dateien ein Dialogfeld "
|
||||
|
||||
msgid "Multi-device Management (Take effect after restarting Orca Slicer)."
|
||||
msgstr "Multi-Geräte-Verwaltung (nach Neustart von Studio wirksam)."
|
||||
msgid "Multi device management"
|
||||
msgstr "Multi-Geräte-Verwaltung"
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"With this option enabled, you can send a task to multiple devices at the "
|
||||
|
|
@ -7197,9 +7218,12 @@ msgstr "Immer fragen"
|
|||
msgid "Load Geometry Only"
|
||||
msgstr "Nur Geometrie laden"
|
||||
|
||||
msgid "Load Behaviour"
|
||||
msgid "Load behaviour"
|
||||
msgstr "Ladeverhalten"
|
||||
|
||||
msgid "Behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
msgstr ""
|
||||
"sollen Drucker/Filament/Prozess Einstellungen geladen werden beim Öffnen "
|
||||
|
|
@ -7211,17 +7235,18 @@ msgstr "Maximum zuletzt verwendeter Dateien"
|
|||
msgid "Maximum count of recent files"
|
||||
msgstr "Maximale Anzahl der zuletzt verwendeten Dateien"
|
||||
|
||||
msgid "Add model files (stl/step) to recent file list."
|
||||
msgstr "Modell-Dateien (stl/step) zur Liste der zuletzt verwendeten Dateien hinzufügen."
|
||||
msgid "Add STL/STEP files to recent files list"
|
||||
msgstr ""
|
||||
"Modell-Dateien STL/STEP zur Liste der zuletzt verwendeten Dateien hinzufügen"
|
||||
|
||||
msgid "Clear my choice on the unsaved projects."
|
||||
msgstr "Meine Auswahl für nicht gespeicherte Projekte löschen."
|
||||
|
||||
msgid "No warnings when loading 3MF with modified G-code"
|
||||
msgid "Don't warn when loading 3MF with modified G-code"
|
||||
msgstr "Keine Warnungen beim Laden von 3MF mit modifizierten G-Codes"
|
||||
|
||||
msgid "Auto-Backup"
|
||||
msgstr "Automatische Datensicherung"
|
||||
msgid "Auto backup"
|
||||
msgstr "Automatische datensicherung"
|
||||
|
||||
msgid ""
|
||||
"Backup your project periodically for restoring from the occasional crash."
|
||||
|
|
@ -7238,11 +7263,14 @@ msgstr "Die Zeitdauer für die Sicherung in Sekunden."
|
|||
msgid "Downloads"
|
||||
msgstr "Downloads"
|
||||
|
||||
msgid "Downloads folder"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dark Mode"
|
||||
msgstr "Dunkler Modus"
|
||||
|
||||
msgid "Enable Dark mode"
|
||||
msgstr "Dunklen Modus aktivieren"
|
||||
msgid "Enable dark mode"
|
||||
msgstr "Dunklen modus aktivieren"
|
||||
|
||||
msgid "Develop mode"
|
||||
msgstr "Entwicklermodus"
|
||||
|
|
@ -9110,12 +9138,12 @@ msgstr "Liste der Tastaturkürzel anzeigen"
|
|||
msgid "Global shortcuts"
|
||||
msgstr "Globale Tastaturkürzel"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "Drehen der Ansicht"
|
||||
|
||||
msgid "Pan View"
|
||||
msgstr "Pan-Ansicht"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "Drehen der Ansicht"
|
||||
|
||||
msgid "Zoom View"
|
||||
msgstr "Ansicht zoomen"
|
||||
|
||||
|
|
@ -12355,11 +12383,11 @@ msgid ""
|
|||
"'5#' equals '5#1'), or a comma-separated list (e.g. 1,7,9) to insert at "
|
||||
"explicit layers. Layers are 1-based."
|
||||
msgstr ""
|
||||
"Fügt an bestimmten Schichten massive Füllung ein. Verwenden Sie N, um jede "
|
||||
"N-te Schicht einzufügen, N#K, um K aufeinanderfolgende massive Schichten alle N "
|
||||
"Schichten einzufügen (K ist optional, z.B. '5#' entspricht '5#1'), oder eine "
|
||||
"kommagetrennte Liste (z.B. 1,7,9), um sie in expliziten Schichten einzufügen. "
|
||||
"Schichten sind 1-basiert."
|
||||
"Fügt an bestimmten Schichten massive Füllung ein. Verwenden Sie N, um jede N-"
|
||||
"te Schicht einzufügen, N#K, um K aufeinanderfolgende massive Schichten alle "
|
||||
"N Schichten einzufügen (K ist optional, z.B. '5#' entspricht '5#1'), oder "
|
||||
"eine kommagetrennte Liste (z.B. 1,7,9), um sie in expliziten Schichten "
|
||||
"einzufügen. Schichten sind 1-basiert."
|
||||
|
||||
msgid "Fill Multiline"
|
||||
msgstr "Mehrzeilige Füllung"
|
||||
|
|
@ -13229,12 +13257,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Drehen Sie die Richtung der spärlichen Füllung pro Schicht mit einer Vorlage "
|
||||
"von Winkeln. Geben Sie durch Kommas getrennte Grad ein (z.B. '0,30,60,90'). "
|
||||
"Winkel werden schichtweise in der Reihenfolge angewendet und wiederholt, wenn "
|
||||
"die Liste endet. Erweiterte Syntax wird unterstützt: '+5' dreht +5° jede "
|
||||
"Schicht; '+5#5' dreht +5° alle 5 Schichten. Siehe das Wiki für Details. Wenn eine "
|
||||
"Vorlage festgelegt ist, wird die Standardfüllrichtungseinstellung ignoriert. "
|
||||
"Beachten Sie: Einige Füllmuster (z.B. Gyroid) steuern die Rotation selbst; "
|
||||
"verwenden Sie sie mit Vorsicht."
|
||||
"Winkel werden schichtweise in der Reihenfolge angewendet und wiederholt, "
|
||||
"wenn die Liste endet. Erweiterte Syntax wird unterstützt: '+5' dreht +5° "
|
||||
"jede Schicht; '+5#5' dreht +5° alle 5 Schichten. Siehe das Wiki für Details. "
|
||||
"Wenn eine Vorlage festgelegt ist, wird die Standardfüllrichtungseinstellung "
|
||||
"ignoriert. Beachten Sie: Einige Füllmuster (z.B. Gyroid) steuern die "
|
||||
"Rotation selbst; verwenden Sie sie mit Vorsicht."
|
||||
|
||||
msgid "°"
|
||||
msgstr "°"
|
||||
|
|
@ -17871,6 +17899,9 @@ msgstr "Eingabe löschen"
|
|||
msgid "Network Test"
|
||||
msgstr "Netzwerktest"
|
||||
|
||||
msgid "Network test"
|
||||
msgstr "Netzwerktest"
|
||||
|
||||
msgid "Start Test Multi-Thread"
|
||||
msgstr "Starten Sie den Test mit mehreren Threads"
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 21:06+0800\n"
|
||||
"POT-Creation-Date: 2025-09-28 18:44+0800\n"
|
||||
"PO-Revision-Date: 2025-05-18 09:32-0300\n"
|
||||
"Last-Translator: Alexandre Folle de Menezes\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -5938,6 +5938,17 @@ msgstr "The 3mf is not supported by OrcaSlicer, loading geometry data only."
|
|||
msgid "Load 3mf"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This project was created with an OrcaSlicer 2.3.1-alpha and uses infill "
|
||||
"rotation template settings that may not work properly with your current "
|
||||
"infill pattern. This could result in weak support or print quality issues."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Would you like OrcaSlicer to automatically fix this by clearing the rotation "
|
||||
"template settings?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"The 3mf's version %s is newer than %s's version %s, found following "
|
||||
|
|
@ -6469,10 +6480,10 @@ msgstr ""
|
|||
msgid "Others"
|
||||
msgstr ""
|
||||
|
||||
msgid "Login Region"
|
||||
msgid "Login region"
|
||||
msgstr ""
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgid "Stealth mode"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6480,10 +6491,13 @@ msgid ""
|
|||
"don't use BBL machines or use LAN mode only can safely turn on this function."
|
||||
msgstr ""
|
||||
|
||||
msgid "Network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Use legacy network plugin (Takes effect after restarting Orca)"
|
||||
msgid "Use legacy network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6520,7 +6534,7 @@ msgstr ""
|
|||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default Page"
|
||||
msgid "Default page"
|
||||
msgstr ""
|
||||
|
||||
msgid "Set the page opened on startup."
|
||||
|
|
@ -6604,14 +6618,17 @@ msgid ""
|
|||
"each printer automatically."
|
||||
msgstr ""
|
||||
|
||||
msgid "Show the step mesh parameter setting dialog."
|
||||
msgid "Show options when importing STEP file"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled,a parameter settings dialog will appear during STEP file import."
|
||||
msgstr ""
|
||||
|
||||
msgid "Multi-device Management (Take effect after restarting Orca Slicer)."
|
||||
msgid "Multi device management"
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6688,7 +6705,10 @@ msgstr ""
|
|||
msgid "Load Geometry Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load Behaviour"
|
||||
msgid "Load behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
|
|
@ -6700,16 +6720,16 @@ msgstr ""
|
|||
msgid "Maximum count of recent files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add model files (stl/step) to recent file list."
|
||||
msgid "Add STL/STEP files to recent files list"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clear my choice on the unsaved projects."
|
||||
msgstr ""
|
||||
|
||||
msgid "No warnings when loading 3MF with modified G-code"
|
||||
msgid "Don't warn when loading 3MF with modified G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto-Backup"
|
||||
msgid "Auto backup"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6727,11 +6747,14 @@ msgstr ""
|
|||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
msgid "Downloads folder"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dark Mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable Dark mode"
|
||||
msgstr "Enable Dark Mode"
|
||||
msgid "Enable dark mode"
|
||||
msgstr "Enable dark Mode"
|
||||
|
||||
msgid "Develop mode"
|
||||
msgstr "Developer mode"
|
||||
|
|
@ -8389,10 +8412,10 @@ msgstr ""
|
|||
msgid "Global shortcuts"
|
||||
msgstr ""
|
||||
|
||||
msgid "Rotate View"
|
||||
msgid "Pan View"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pan View"
|
||||
msgid "Rotate View"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom View"
|
||||
|
|
@ -15492,6 +15515,9 @@ msgstr ""
|
|||
msgid "Network Test"
|
||||
msgstr ""
|
||||
|
||||
msgid "Network test"
|
||||
msgstr ""
|
||||
|
||||
msgid "Start Test Multi-Thread"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 21:06+0800\n"
|
||||
"POT-Creation-Date: 2025-09-28 18:44+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Carlos Fco. Caruncho Serrano <puzzlero@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -6309,6 +6309,17 @@ msgstr "El 3mf no es de Orca Slicer, cargando sólo datos de geometría."
|
|||
msgid "Load 3mf"
|
||||
msgstr "Cargar 3mf"
|
||||
|
||||
msgid ""
|
||||
"This project was created with an OrcaSlicer 2.3.1-alpha and uses infill "
|
||||
"rotation template settings that may not work properly with your current "
|
||||
"infill pattern. This could result in weak support or print quality issues."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Would you like OrcaSlicer to automatically fix this by clearing the rotation "
|
||||
"template settings?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"The 3mf's version %s is newer than %s's version %s, found following "
|
||||
|
|
@ -6889,10 +6900,10 @@ msgstr "América del Norte"
|
|||
msgid "Others"
|
||||
msgstr "Otros"
|
||||
|
||||
msgid "Login Region"
|
||||
msgid "Login region"
|
||||
msgstr "Región de inicio de sesión"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgid "Stealth mode"
|
||||
msgstr "Modo invisible"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6903,10 +6914,13 @@ msgstr ""
|
|||
"Los usuarios que no utilicen máquinas BBL o que solo utilicen el modo LAN "
|
||||
"pueden activar esta función de forma segura."
|
||||
|
||||
msgid "Network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr "Activar el plugin de red"
|
||||
|
||||
msgid "Use legacy network plugin (Takes effect after restarting Orca)"
|
||||
msgid "Use legacy network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6950,7 +6964,7 @@ msgstr ""
|
|||
msgid "Home"
|
||||
msgstr "Página de Inicio"
|
||||
|
||||
msgid "Default Page"
|
||||
msgid "Default page"
|
||||
msgstr "Página por defecto"
|
||||
|
||||
msgid "Set the page opened on startup."
|
||||
|
|
@ -7049,15 +7063,18 @@ msgstr ""
|
|||
"Si está activada, Orca recordará y cambiará la configuración de archivos/"
|
||||
"procesos para cada impresora automáticamente."
|
||||
|
||||
msgid "Show the step mesh parameter setting dialog."
|
||||
msgid "Show options when importing STEP file"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled,a parameter settings dialog will appear during STEP file import."
|
||||
msgstr ""
|
||||
|
||||
msgid "Multi-device Management (Take effect after restarting Orca Slicer)."
|
||||
msgstr "Gestión multidispositivo (surte efecto tras reiniciar Orca)."
|
||||
msgid "Multi device management"
|
||||
msgstr "Gestión multidispositivo"
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"With this option enabled, you can send a task to multiple devices at the "
|
||||
|
|
@ -7137,7 +7154,10 @@ msgstr ""
|
|||
msgid "Load Geometry Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load Behaviour"
|
||||
msgid "Load behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
|
|
@ -7149,16 +7169,16 @@ msgstr ""
|
|||
msgid "Maximum count of recent files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add model files (stl/step) to recent file list."
|
||||
msgid "Add STL/STEP files to recent files list"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clear my choice on the unsaved projects."
|
||||
msgstr "Limpiar mi elección de proyectos no guardados."
|
||||
|
||||
msgid "No warnings when loading 3MF with modified G-code"
|
||||
msgid "Don't warn when loading 3MF with modified G-code"
|
||||
msgstr "No avisar cuando cargue archivos 3MF con G-Codes modificados"
|
||||
|
||||
msgid "Auto-Backup"
|
||||
msgid "Auto backup"
|
||||
msgstr "Copia de seguridad automática"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -7176,11 +7196,14 @@ msgstr "El periodo de copia de seguridad en segundos."
|
|||
msgid "Downloads"
|
||||
msgstr "Descargas"
|
||||
|
||||
msgid "Downloads folder"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dark Mode"
|
||||
msgstr "Modo Oscuro"
|
||||
|
||||
msgid "Enable Dark mode"
|
||||
msgstr "Activar Modo Oscuro"
|
||||
msgid "Enable dark mode"
|
||||
msgstr "Activar modo oscuro"
|
||||
|
||||
msgid "Develop mode"
|
||||
msgstr "Modo de desarrollador"
|
||||
|
|
@ -9004,12 +9027,12 @@ msgstr "Muestra lista de atajos de teclado"
|
|||
msgid "Global shortcuts"
|
||||
msgstr "Atajos globales"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "Rotar Vista"
|
||||
|
||||
msgid "Pan View"
|
||||
msgstr "Desplazar vista"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "Rotar Vista"
|
||||
|
||||
msgid "Zoom View"
|
||||
msgstr "Hacer Zoom"
|
||||
|
||||
|
|
@ -17394,6 +17417,9 @@ msgstr "Borrar original"
|
|||
msgid "Network Test"
|
||||
msgstr "Prueba de Red"
|
||||
|
||||
msgid "Network test"
|
||||
msgstr "Prueba de red"
|
||||
|
||||
msgid "Start Test Multi-Thread"
|
||||
msgstr "Iniciar Pruebas Multitarea"
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 21:06+0800\n"
|
||||
"POT-Creation-Date: 2025-09-28 18:44+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Guislain Cyril, Thomas Lété\n"
|
||||
|
|
@ -6334,6 +6334,17 @@ msgstr ""
|
|||
msgid "Load 3mf"
|
||||
msgstr "Charger 3mf"
|
||||
|
||||
msgid ""
|
||||
"This project was created with an OrcaSlicer 2.3.1-alpha and uses infill "
|
||||
"rotation template settings that may not work properly with your current "
|
||||
"infill pattern. This could result in weak support or print quality issues."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Would you like OrcaSlicer to automatically fix this by clearing the rotation "
|
||||
"template settings?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"The 3mf's version %s is newer than %s's version %s, found following "
|
||||
|
|
@ -6927,10 +6938,10 @@ msgstr "Amérique du Nord"
|
|||
msgid "Others"
|
||||
msgstr "Autre"
|
||||
|
||||
msgid "Login Region"
|
||||
msgid "Login region"
|
||||
msgstr "Région d'origine"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgid "Stealth mode"
|
||||
msgstr "Mode privé"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6942,10 +6953,13 @@ msgstr ""
|
|||
"utilisent uniquement le mode LAN peuvent activer cette fonction en toute "
|
||||
"sécurité."
|
||||
|
||||
msgid "Network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr "Activer le plug-in réseau"
|
||||
|
||||
msgid "Use legacy network plugin (Takes effect after restarting Orca)"
|
||||
msgid "Use legacy network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6989,7 +7003,7 @@ msgstr ""
|
|||
msgid "Home"
|
||||
msgstr "Accueil"
|
||||
|
||||
msgid "Default Page"
|
||||
msgid "Default page"
|
||||
msgstr "Page par défaut"
|
||||
|
||||
msgid "Set the page opened on startup."
|
||||
|
|
@ -7093,15 +7107,18 @@ msgstr ""
|
|||
"Si cette option est activée, Orca se souviendra de la configuration du "
|
||||
"filament/processus pour chaque imprimante et la modifiera automatiquement."
|
||||
|
||||
msgid "Show the step mesh parameter setting dialog."
|
||||
msgid "Show options when importing STEP file"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled,a parameter settings dialog will appear during STEP file import."
|
||||
msgstr ""
|
||||
|
||||
msgid "Multi-device Management (Take effect after restarting Orca Slicer)."
|
||||
msgstr "Gestion multi-appareils (prend effet après le redémarrage d’Orca)."
|
||||
msgid "Multi device management"
|
||||
msgstr "Gestion multi appareils"
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"With this option enabled, you can send a task to multiple devices at the "
|
||||
|
|
@ -7181,9 +7198,12 @@ msgstr "Toujours demander"
|
|||
msgid "Load Geometry Only"
|
||||
msgstr "Charger uniquement la géométrie"
|
||||
|
||||
msgid "Load Behaviour"
|
||||
msgid "Load behaviour"
|
||||
msgstr "Comportement du chargement"
|
||||
|
||||
msgid "Behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
msgstr ""
|
||||
"Les paramètres de l’imprimante/du filament/du processus doivent-ils être "
|
||||
|
|
@ -7195,17 +7215,16 @@ msgstr ""
|
|||
msgid "Maximum count of recent files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add model files (stl/step) to recent file list."
|
||||
msgid "Add STL/STEP files to recent files list"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clear my choice on the unsaved projects."
|
||||
msgstr "Efface mon choix sur les projets non enregistrés."
|
||||
|
||||
msgid "No warnings when loading 3MF with modified G-code"
|
||||
msgstr ""
|
||||
"Pas d'avertissement lors du chargement de 3MF avec des G-codes modifiés"
|
||||
msgid "Don't warn when loading 3MF with modified G-code"
|
||||
msgstr "Pas d'avertissement lors du chargement de 3MF avec des G-codes modifiés"
|
||||
|
||||
msgid "Auto-Backup"
|
||||
msgid "Auto backup"
|
||||
msgstr "Sauvegarde automatique"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -7223,10 +7242,13 @@ msgstr "Période de sauvegarde en secondes."
|
|||
msgid "Downloads"
|
||||
msgstr "Téléchargements"
|
||||
|
||||
msgid "Downloads folder"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dark Mode"
|
||||
msgstr "Mode Sombre"
|
||||
|
||||
msgid "Enable Dark mode"
|
||||
msgid "Enable dark mode"
|
||||
msgstr "Activer le mode Sombre"
|
||||
|
||||
msgid "Develop mode"
|
||||
|
|
@ -9100,12 +9122,12 @@ msgstr "Afficher la liste des raccourcis clavier"
|
|||
msgid "Global shortcuts"
|
||||
msgstr "Raccourcis globaux"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "Rotation de la vue"
|
||||
|
||||
msgid "Pan View"
|
||||
msgstr "Déplacement de vue"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "Rotation de la vue"
|
||||
|
||||
msgid "Zoom View"
|
||||
msgstr "Vue agrandie"
|
||||
|
||||
|
|
@ -17758,6 +17780,9 @@ msgstr "Supprimer l’objet"
|
|||
msgid "Network Test"
|
||||
msgstr "Test du réseau"
|
||||
|
||||
msgid "Network test"
|
||||
msgstr "Test du réseau"
|
||||
|
||||
msgid "Start Test Multi-Thread"
|
||||
msgstr "Démarrer le test multithread"
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 21:06+0800\n"
|
||||
"POT-Creation-Date: 2025-09-28 18:44+0800\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -6082,6 +6082,17 @@ msgstr ""
|
|||
msgid "Load 3mf"
|
||||
msgstr "3mf betöltése"
|
||||
|
||||
msgid ""
|
||||
"This project was created with an OrcaSlicer 2.3.1-alpha and uses infill "
|
||||
"rotation template settings that may not work properly with your current "
|
||||
"infill pattern. This could result in weak support or print quality issues."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Would you like OrcaSlicer to automatically fix this by clearing the rotation "
|
||||
"template settings?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"The 3mf's version %s is newer than %s's version %s, found following "
|
||||
|
|
@ -6628,10 +6639,10 @@ msgstr "Észak-Amerika"
|
|||
msgid "Others"
|
||||
msgstr "Egyéb"
|
||||
|
||||
msgid "Login Region"
|
||||
msgid "Login region"
|
||||
msgstr "Régió"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgid "Stealth mode"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6639,10 +6650,13 @@ msgid ""
|
|||
"don't use BBL machines or use LAN mode only can safely turn on this function."
|
||||
msgstr ""
|
||||
|
||||
msgid "Network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Use legacy network plugin (Takes effect after restarting Orca)"
|
||||
msgid "Use legacy network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6683,7 +6697,7 @@ msgstr ""
|
|||
msgid "Home"
|
||||
msgstr "Haza"
|
||||
|
||||
msgid "Default Page"
|
||||
msgid "Default page"
|
||||
msgstr ""
|
||||
|
||||
msgid "Set the page opened on startup."
|
||||
|
|
@ -6774,14 +6788,17 @@ msgid ""
|
|||
"each printer automatically."
|
||||
msgstr ""
|
||||
|
||||
msgid "Show the step mesh parameter setting dialog."
|
||||
msgid "Show options when importing STEP file"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled,a parameter settings dialog will appear during STEP file import."
|
||||
msgstr ""
|
||||
|
||||
msgid "Multi-device Management (Take effect after restarting Orca Slicer)."
|
||||
msgid "Multi device management"
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6860,7 +6877,10 @@ msgstr ""
|
|||
msgid "Load Geometry Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load Behaviour"
|
||||
msgid "Load behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
|
|
@ -6872,16 +6892,16 @@ msgstr ""
|
|||
msgid "Maximum count of recent files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add model files (stl/step) to recent file list."
|
||||
msgid "Add STL/STEP files to recent files list"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clear my choice on the unsaved projects."
|
||||
msgstr ""
|
||||
|
||||
msgid "No warnings when loading 3MF with modified G-code"
|
||||
msgid "Don't warn when loading 3MF with modified G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto-Backup"
|
||||
msgid "Auto backup"
|
||||
msgstr "Automatikus biztonsági mentés"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6897,10 +6917,13 @@ msgstr ""
|
|||
msgid "Downloads"
|
||||
msgstr "Letöltések"
|
||||
|
||||
msgid "Downloads folder"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dark Mode"
|
||||
msgstr "Sötét mód"
|
||||
|
||||
msgid "Enable Dark mode"
|
||||
msgid "Enable dark mode"
|
||||
msgstr "Sötét mód engedélyezése"
|
||||
|
||||
msgid "Develop mode"
|
||||
|
|
@ -8629,12 +8652,12 @@ msgstr "Gyorsgombok listájának megjelenítése"
|
|||
msgid "Global shortcuts"
|
||||
msgstr "Globális gyorsbillentyűk"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "Nézet elforgatása"
|
||||
|
||||
msgid "Pan View"
|
||||
msgstr "Pásztázó nézet"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "Nézet elforgatása"
|
||||
|
||||
msgid "Zoom View"
|
||||
msgstr "Nagyítás nézet"
|
||||
|
||||
|
|
@ -15950,6 +15973,9 @@ msgstr "Bemenet törlése"
|
|||
msgid "Network Test"
|
||||
msgstr "Hálózati teszt"
|
||||
|
||||
msgid "Network test"
|
||||
msgstr "Hálózati teszt"
|
||||
|
||||
msgid "Start Test Multi-Thread"
|
||||
msgstr "Teszt indítása több szálon"
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 21:06+0800\n"
|
||||
"POT-Creation-Date: 2025-09-28 18:44+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -6312,6 +6312,17 @@ msgstr ""
|
|||
msgid "Load 3mf"
|
||||
msgstr "Carica 3mf"
|
||||
|
||||
msgid ""
|
||||
"This project was created with an OrcaSlicer 2.3.1-alpha and uses infill "
|
||||
"rotation template settings that may not work properly with your current "
|
||||
"infill pattern. This could result in weak support or print quality issues."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Would you like OrcaSlicer to automatically fix this by clearing the rotation "
|
||||
"template settings?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"The 3mf's version %s is newer than %s's version %s, found following "
|
||||
|
|
@ -6888,10 +6899,10 @@ msgstr "Nord America"
|
|||
msgid "Others"
|
||||
msgstr "Altro"
|
||||
|
||||
msgid "Login Region"
|
||||
msgid "Login region"
|
||||
msgstr "Regione di accesso"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgid "Stealth mode"
|
||||
msgstr "Modalità invisibile"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6902,10 +6913,13 @@ msgstr ""
|
|||
"utenti che non utilizzano macchine BBL o che utilizzano la modalità Solo LAN "
|
||||
"possono attivare questa funzione in tutta sicurezza."
|
||||
|
||||
msgid "Network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr "Abilita modulo di rete"
|
||||
|
||||
msgid "Use legacy network plugin (Takes effect after restarting Orca)"
|
||||
msgid "Use legacy network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6948,7 +6962,7 @@ msgstr ""
|
|||
msgid "Home"
|
||||
msgstr "Pagina iniziale"
|
||||
|
||||
msgid "Default Page"
|
||||
msgid "Default page"
|
||||
msgstr "Pagina predefinita"
|
||||
|
||||
msgid "Set the page opened on startup."
|
||||
|
|
@ -7048,15 +7062,18 @@ msgstr ""
|
|||
"Se abilitato, Orca ricorderà e cambierà automaticamente la configurazione "
|
||||
"del filamento/processo per ciascuna stampante."
|
||||
|
||||
msgid "Show the step mesh parameter setting dialog."
|
||||
msgid "Show options when importing STEP file"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled,a parameter settings dialog will appear during STEP file import."
|
||||
msgstr ""
|
||||
|
||||
msgid "Multi-device Management (Take effect after restarting Orca Slicer)."
|
||||
msgstr "Gestione multi-dispositivo (avrà effetto dopo il riavvio di Orca)."
|
||||
msgid "Multi device management"
|
||||
msgstr "Gestione multi-dispositivo"
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"With this option enabled, you can send a task to multiple devices at the "
|
||||
|
|
@ -7135,9 +7152,12 @@ msgstr "Chiedi sempre"
|
|||
msgid "Load Geometry Only"
|
||||
msgstr "Carica solo la geometria"
|
||||
|
||||
msgid "Load Behaviour"
|
||||
msgid "Load behaviour"
|
||||
msgstr "Comportamento di caricamento"
|
||||
|
||||
msgid "Behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
msgstr ""
|
||||
"Quando si apre un file .3mf, è necessario caricare le impostazioni della "
|
||||
|
|
@ -7149,16 +7169,16 @@ msgstr ""
|
|||
msgid "Maximum count of recent files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add model files (stl/step) to recent file list."
|
||||
msgid "Add STL/STEP files to recent files list"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clear my choice on the unsaved projects."
|
||||
msgstr "Cancella la mia scelta sui progetti non salvati."
|
||||
|
||||
msgid "No warnings when loading 3MF with modified G-code"
|
||||
msgid "Don't warn when loading 3MF with modified G-code"
|
||||
msgstr "Nessun avviso durante il caricamento di 3MF con G-code modificati"
|
||||
|
||||
msgid "Auto-Backup"
|
||||
msgid "Auto backup"
|
||||
msgstr "Backup automatico"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -7176,10 +7196,13 @@ msgstr "Periodo di backup in secondi."
|
|||
msgid "Downloads"
|
||||
msgstr "Scaricati"
|
||||
|
||||
msgid "Downloads folder"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dark Mode"
|
||||
msgstr "Modalità scura"
|
||||
|
||||
msgid "Enable Dark mode"
|
||||
msgid "Enable dark mode"
|
||||
msgstr "Attiva modalità Scura"
|
||||
|
||||
msgid "Develop mode"
|
||||
|
|
@ -9030,12 +9053,12 @@ msgstr "Mostra elenco scorciatoie da tastiera"
|
|||
msgid "Global shortcuts"
|
||||
msgstr "Scorciatoie globali"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "Ruota vista"
|
||||
|
||||
msgid "Pan View"
|
||||
msgstr "Vista panoramica"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "Ruota vista"
|
||||
|
||||
msgid "Zoom View"
|
||||
msgstr "Ingrandimento vista"
|
||||
|
||||
|
|
@ -17665,6 +17688,9 @@ msgstr "Elimina input"
|
|||
msgid "Network Test"
|
||||
msgstr "Test di rete"
|
||||
|
||||
msgid "Network test"
|
||||
msgstr "Test di rete"
|
||||
|
||||
msgid "Start Test Multi-Thread"
|
||||
msgstr "Avvia test multi-thread"
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 21:06+0800\n"
|
||||
"POT-Creation-Date: 2025-09-28 18:44+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -5964,6 +5964,17 @@ msgstr ""
|
|||
msgid "Load 3mf"
|
||||
msgstr "3mfを読込み"
|
||||
|
||||
msgid ""
|
||||
"This project was created with an OrcaSlicer 2.3.1-alpha and uses infill "
|
||||
"rotation template settings that may not work properly with your current "
|
||||
"infill pattern. This could result in weak support or print quality issues."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Would you like OrcaSlicer to automatically fix this by clearing the rotation "
|
||||
"template settings?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"The 3mf's version %s is newer than %s's version %s, found following "
|
||||
|
|
@ -6501,10 +6512,10 @@ msgstr "北米"
|
|||
msgid "Others"
|
||||
msgstr "その他"
|
||||
|
||||
msgid "Login Region"
|
||||
msgid "Login region"
|
||||
msgstr "地域"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgid "Stealth mode"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6512,10 +6523,13 @@ msgid ""
|
|||
"don't use BBL machines or use LAN mode only can safely turn on this function."
|
||||
msgstr ""
|
||||
|
||||
msgid "Network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Use legacy network plugin (Takes effect after restarting Orca)"
|
||||
msgid "Use legacy network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6552,7 +6566,7 @@ msgstr ""
|
|||
msgid "Home"
|
||||
msgstr "ホーム"
|
||||
|
||||
msgid "Default Page"
|
||||
msgid "Default page"
|
||||
msgstr ""
|
||||
|
||||
msgid "Set the page opened on startup."
|
||||
|
|
@ -6640,14 +6654,17 @@ msgid ""
|
|||
"each printer automatically."
|
||||
msgstr ""
|
||||
|
||||
msgid "Show the step mesh parameter setting dialog."
|
||||
msgid "Show options when importing STEP file"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled,a parameter settings dialog will appear during STEP file import."
|
||||
msgstr ""
|
||||
|
||||
msgid "Multi-device Management (Take effect after restarting Orca Slicer)."
|
||||
msgid "Multi device management"
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6718,7 +6735,10 @@ msgstr ""
|
|||
msgid "Load Geometry Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load Behaviour"
|
||||
msgid "Load behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
|
|
@ -6730,16 +6750,16 @@ msgstr ""
|
|||
msgid "Maximum count of recent files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add model files (stl/step) to recent file list."
|
||||
msgid "Add STL/STEP files to recent files list"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clear my choice on the unsaved projects."
|
||||
msgstr ""
|
||||
|
||||
msgid "No warnings when loading 3MF with modified G-code"
|
||||
msgid "Don't warn when loading 3MF with modified G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto-Backup"
|
||||
msgid "Auto backup"
|
||||
msgstr "自動バックアップ"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6755,10 +6775,13 @@ msgstr ""
|
|||
msgid "Downloads"
|
||||
msgstr "ダウンロード"
|
||||
|
||||
msgid "Downloads folder"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dark Mode"
|
||||
msgstr "ダークモード"
|
||||
|
||||
msgid "Enable Dark mode"
|
||||
msgid "Enable dark mode"
|
||||
msgstr "ダークモードを有効"
|
||||
|
||||
msgid "Develop mode"
|
||||
|
|
@ -8423,12 +8446,12 @@ msgstr "ショートカット一覧を表示"
|
|||
msgid "Global shortcuts"
|
||||
msgstr "ショートカット"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "回転"
|
||||
|
||||
msgid "Pan View"
|
||||
msgstr "移動"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "回転"
|
||||
|
||||
msgid "Zoom View"
|
||||
msgstr "ズーム"
|
||||
|
||||
|
|
@ -15599,6 +15622,9 @@ msgstr ""
|
|||
msgid "Network Test"
|
||||
msgstr ""
|
||||
|
||||
msgid "Network test"
|
||||
msgstr ""
|
||||
|
||||
msgid "Start Test Multi-Thread"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 21:06+0800\n"
|
||||
"POT-Creation-Date: 2025-09-28 18:44+0800\n"
|
||||
"PO-Revision-Date: 2025-06-02 17:12+0900\n"
|
||||
"Last-Translator: crwusiz <crwusiz@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -6122,6 +6122,17 @@ msgstr "이 3mf는 OrcaSlicer에서 지원되지 않습니다. 형상 데이터
|
|||
msgid "Load 3mf"
|
||||
msgstr "3mf 불러오기"
|
||||
|
||||
msgid ""
|
||||
"This project was created with an OrcaSlicer 2.3.1-alpha and uses infill "
|
||||
"rotation template settings that may not work properly with your current "
|
||||
"infill pattern. This could result in weak support or print quality issues."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Would you like OrcaSlicer to automatically fix this by clearing the rotation "
|
||||
"template settings?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"The 3mf's version %s is newer than %s's version %s, found following "
|
||||
|
|
@ -6673,10 +6684,10 @@ msgstr "북아메리카"
|
|||
msgid "Others"
|
||||
msgstr "기타"
|
||||
|
||||
msgid "Login Region"
|
||||
msgid "Login region"
|
||||
msgstr "로그인 지역"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgid "Stealth mode"
|
||||
msgstr "스텔스 모드"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6686,10 +6697,13 @@ msgstr ""
|
|||
"이 기능은 뱀부의 클라우드 서비스로의 데이터 전송을 중지합니다. BBL 머신을 사"
|
||||
"용하지 않거나 LAN 모드만 사용하는 사용자는 이 기능을 안전하게 켤 수 있습니다."
|
||||
|
||||
msgid "Network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr "네트워크 플러그인 사용"
|
||||
|
||||
msgid "Use legacy network plugin (Takes effect after restarting Orca)"
|
||||
msgid "Use legacy network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6731,7 +6745,7 @@ msgstr ""
|
|||
msgid "Home"
|
||||
msgstr "홈"
|
||||
|
||||
msgid "Default Page"
|
||||
msgid "Default page"
|
||||
msgstr "기본 페이지"
|
||||
|
||||
msgid "Set the page opened on startup."
|
||||
|
|
@ -6824,15 +6838,18 @@ msgstr ""
|
|||
"활성화하면 Orca는 각 프린터의 필라멘트/프로세스 구성을 자동으로 기억하고 전환"
|
||||
"합니다."
|
||||
|
||||
msgid "Show the step mesh parameter setting dialog."
|
||||
msgid "Show options when importing STEP file"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled,a parameter settings dialog will appear during STEP file import."
|
||||
msgstr ""
|
||||
|
||||
msgid "Multi-device Management (Take effect after restarting Orca Slicer)."
|
||||
msgstr "다중 장치 관리 (Orca를 다시 시작한 후 적용됨)."
|
||||
msgid "Multi device management"
|
||||
msgstr "다중 장치 관리"
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"With this option enabled, you can send a task to multiple devices at the "
|
||||
|
|
@ -6907,9 +6924,12 @@ msgstr "항상 물어보세요"
|
|||
msgid "Load Geometry Only"
|
||||
msgstr "형상만 로드"
|
||||
|
||||
msgid "Load Behaviour"
|
||||
msgid "Load behaviour"
|
||||
msgstr "행동 로드"
|
||||
|
||||
msgid "Behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
msgstr ".3mf를 열 때 프린터/필라멘트/프로세스 설정이 로드되어야 합니까?"
|
||||
|
||||
|
|
@ -6919,16 +6939,16 @@ msgstr ""
|
|||
msgid "Maximum count of recent files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add model files (stl/step) to recent file list."
|
||||
msgid "Add STL/STEP files to recent files list"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clear my choice on the unsaved projects."
|
||||
msgstr "저장되지 않은 프로젝트에서 내 선택을 지웁니다."
|
||||
|
||||
msgid "No warnings when loading 3MF with modified G-code"
|
||||
msgid "Don't warn when loading 3MF with modified G-code"
|
||||
msgstr "수정된 Gcode로 3MF를 로드할 때 경고 없음"
|
||||
|
||||
msgid "Auto-Backup"
|
||||
msgid "Auto backup"
|
||||
msgstr "자동 백업"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6944,10 +6964,13 @@ msgstr "백업 기간(초)입니다."
|
|||
msgid "Downloads"
|
||||
msgstr "다운로드"
|
||||
|
||||
msgid "Downloads folder"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dark Mode"
|
||||
msgstr "다크 모드"
|
||||
|
||||
msgid "Enable Dark mode"
|
||||
msgid "Enable dark mode"
|
||||
msgstr "다크 모드 사용"
|
||||
|
||||
msgid "Develop mode"
|
||||
|
|
@ -8707,12 +8730,12 @@ msgstr "키보드 단축키 목록 보기"
|
|||
msgid "Global shortcuts"
|
||||
msgstr "전역 단축키"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "시점 회전"
|
||||
|
||||
msgid "Pan View"
|
||||
msgstr "시점 이동"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "시점 회전"
|
||||
|
||||
msgid "Zoom View"
|
||||
msgstr "시점 확대/축소"
|
||||
|
||||
|
|
@ -16730,6 +16753,9 @@ msgstr "입력객체 삭제"
|
|||
msgid "Network Test"
|
||||
msgstr "네트워크 테스트"
|
||||
|
||||
msgid "Network test"
|
||||
msgstr "네트워크 테스트"
|
||||
|
||||
msgid "Start Test Multi-Thread"
|
||||
msgstr "멀티스레드 테스트 시작"
|
||||
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 21:06+0800\n"
|
||||
"POT-Creation-Date: 2025-09-28 18:44+0800\n"
|
||||
"PO-Revision-Date: 2025-03-21 21:00+0200\n"
|
||||
"Last-Translator: Gintaras Kučinskas <sharanchius@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -6256,6 +6256,17 @@ msgstr "3MF nepalaikomas Orca Slicer. Įkeliami tik geometrijos duomenys."
|
|||
msgid "Load 3mf"
|
||||
msgstr "Įkelti 3MF"
|
||||
|
||||
msgid ""
|
||||
"This project was created with an OrcaSlicer 2.3.1-alpha and uses infill "
|
||||
"rotation template settings that may not work properly with your current "
|
||||
"infill pattern. This could result in weak support or print quality issues."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Would you like OrcaSlicer to automatically fix this by clearing the rotation "
|
||||
"template settings?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"The 3mf's version %s is newer than %s's version %s, found following "
|
||||
|
|
@ -6818,10 +6829,10 @@ msgstr "Šiaurės Amerika"
|
|||
msgid "Others"
|
||||
msgstr "Kita"
|
||||
|
||||
msgid "Login Region"
|
||||
msgid "Login region"
|
||||
msgstr "Prisijungimo regionas"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgid "Stealth mode"
|
||||
msgstr "Slaptas režimas"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6832,10 +6843,13 @@ msgstr ""
|
|||
"paslaugas. Šią funkciją gali drąsiai įjungti naudotojai, kurie nesinaudoja "
|
||||
"„BBL“ įrenginiais arba naudoja tik LAN režimą."
|
||||
|
||||
msgid "Network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr "Įjungti tinklo papildinį"
|
||||
|
||||
msgid "Use legacy network plugin (Takes effect after restarting Orca)"
|
||||
msgid "Use legacy network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6878,7 +6892,7 @@ msgstr ""
|
|||
msgid "Home"
|
||||
msgstr "Pradžia"
|
||||
|
||||
msgid "Default Page"
|
||||
msgid "Default page"
|
||||
msgstr "Numatytas puslapis"
|
||||
|
||||
msgid "Set the page opened on startup."
|
||||
|
|
@ -6979,16 +6993,18 @@ msgstr ""
|
|||
"Jei įjungta, Orca Slicer automatiškai prisimins ir perjungs gijos ir proceso "
|
||||
"konfigūracijas kiekvienams spausdintuvui."
|
||||
|
||||
msgid "Show the step mesh parameter setting dialog."
|
||||
msgid "Show options when importing STEP file"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled,a parameter settings dialog will appear during STEP file import."
|
||||
msgstr ""
|
||||
|
||||
msgid "Multi-device Management (Take effect after restarting Orca Slicer)."
|
||||
msgid "Multi device management"
|
||||
msgstr "Kelių įrenginių valdymas"
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
"Kelių įrenginių valdymas (įsigalios tik po programos paleidimo iš naujo)."
|
||||
|
||||
msgid ""
|
||||
"With this option enabled, you can send a task to multiple devices at the "
|
||||
|
|
@ -7068,9 +7084,12 @@ msgstr "Visada klausti"
|
|||
msgid "Load Geometry Only"
|
||||
msgstr "Įkelti tik geometriją"
|
||||
|
||||
msgid "Load Behaviour"
|
||||
msgid "Load behaviour"
|
||||
msgstr "Įkelti elgseną"
|
||||
|
||||
msgid "Behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
msgstr ""
|
||||
"Ar atidarant .3mf failą reikia įkelti spausdintuvo / gijų / proceso "
|
||||
|
|
@ -7082,16 +7101,16 @@ msgstr ""
|
|||
msgid "Maximum count of recent files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add model files (stl/step) to recent file list."
|
||||
msgid "Add STL/STEP files to recent files list"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clear my choice on the unsaved projects."
|
||||
msgstr "Išvalyti mano pasirinkimus neišsaugotuose projektuose."
|
||||
|
||||
msgid "No warnings when loading 3MF with modified G-code"
|
||||
msgid "Don't warn when loading 3MF with modified G-code"
|
||||
msgstr "Nerodyti perspėjimų įkeliant 3MF su modifikuotais G-kodais"
|
||||
|
||||
msgid "Auto-Backup"
|
||||
msgid "Auto backup"
|
||||
msgstr "Automatinis atsarginis kopijavimas"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -7109,10 +7128,13 @@ msgstr "Atsarginės kopijos kūrimo laikotarpis sekundėmis."
|
|||
msgid "Downloads"
|
||||
msgstr "Atsisuntimai"
|
||||
|
||||
msgid "Downloads folder"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dark Mode"
|
||||
msgstr "Tamsusis režimas"
|
||||
|
||||
msgid "Enable Dark mode"
|
||||
msgid "Enable dark mode"
|
||||
msgstr "Įjungti tamsųjį režimą"
|
||||
|
||||
msgid "Develop mode"
|
||||
|
|
@ -8945,12 +8967,12 @@ msgstr "Rodyti sparčiųjų klavišų sąrašą"
|
|||
msgid "Global shortcuts"
|
||||
msgstr "Bendrieji spartieji klavišai"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "Pasukti vaizdą"
|
||||
|
||||
msgid "Pan View"
|
||||
msgstr "Judinti vaizdą"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "Pasukti vaizdą"
|
||||
|
||||
msgid "Zoom View"
|
||||
msgstr "Padidinti vaizdą"
|
||||
|
||||
|
|
@ -17293,6 +17315,9 @@ msgstr "Ištrinti įvestį"
|
|||
msgid "Network Test"
|
||||
msgstr "Tinklo testas"
|
||||
|
||||
msgid "Network test"
|
||||
msgstr "Tinklo testas"
|
||||
|
||||
msgid "Start Test Multi-Thread"
|
||||
msgstr "Pradėti bandymą su keliais srautais"
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 21:06+0800\n"
|
||||
"POT-Creation-Date: 2025-09-28 18:44+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -6144,6 +6144,17 @@ msgstr ""
|
|||
msgid "Load 3mf"
|
||||
msgstr "Laad 3mf"
|
||||
|
||||
msgid ""
|
||||
"This project was created with an OrcaSlicer 2.3.1-alpha and uses infill "
|
||||
"rotation template settings that may not work properly with your current "
|
||||
"infill pattern. This could result in weak support or print quality issues."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Would you like OrcaSlicer to automatically fix this by clearing the rotation "
|
||||
"template settings?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"The 3mf's version %s is newer than %s's version %s, found following "
|
||||
|
|
@ -6703,11 +6714,11 @@ msgstr "Noord-Amerika"
|
|||
msgid "Others"
|
||||
msgstr "Andere"
|
||||
|
||||
msgid "Login Region"
|
||||
msgid "Login region"
|
||||
msgstr "Inlogregio"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgstr "Stealth-modus"
|
||||
msgid "Stealth mode"
|
||||
msgstr "Stealth modus"
|
||||
|
||||
msgid ""
|
||||
"This stops the transmission of data to Bambu's cloud services. Users who "
|
||||
|
|
@ -6717,10 +6728,13 @@ msgstr ""
|
|||
"Gebruikers die geen BambuLab-machines gebruiken of alleen de LAN-modus "
|
||||
"gebruiken, kunnen deze functie veilig inschakelen."
|
||||
|
||||
msgid "Network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr "Netwerkplug-in inschakelen"
|
||||
|
||||
msgid "Use legacy network plugin (Takes effect after restarting Orca)"
|
||||
msgid "Use legacy network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6763,7 +6777,7 @@ msgstr ""
|
|||
msgid "Home"
|
||||
msgstr "Thuis"
|
||||
|
||||
msgid "Default Page"
|
||||
msgid "Default page"
|
||||
msgstr "Startpagina"
|
||||
|
||||
msgid "Set the page opened on startup."
|
||||
|
|
@ -6868,15 +6882,18 @@ msgstr ""
|
|||
"Als dit is ingeschakeld, onthoudt Orca automatisch de filament-/"
|
||||
"procesconfiguratie voor elke printer en schakelt deze automatisch om."
|
||||
|
||||
msgid "Show the step mesh parameter setting dialog."
|
||||
msgid "Show options when importing STEP file"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled,a parameter settings dialog will appear during STEP file import."
|
||||
msgstr ""
|
||||
|
||||
msgid "Multi-device Management (Take effect after restarting Orca Slicer)."
|
||||
msgstr "Beheer van meerdere apparaten (Werkt nadat Orca opnieuw is opgestart)."
|
||||
msgid "Multi device management"
|
||||
msgstr "Beheer van meerdere apparaten"
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"With this option enabled, you can send a task to multiple devices at the "
|
||||
|
|
@ -6954,7 +6971,10 @@ msgstr ""
|
|||
msgid "Load Geometry Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load Behaviour"
|
||||
msgid "Load behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
|
|
@ -6966,16 +6986,16 @@ msgstr ""
|
|||
msgid "Maximum count of recent files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add model files (stl/step) to recent file list."
|
||||
msgid "Add STL/STEP files to recent files list"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clear my choice on the unsaved projects."
|
||||
msgstr "Wis keuze voor niet-opgeslagen projecten."
|
||||
|
||||
msgid "No warnings when loading 3MF with modified G-code"
|
||||
msgid "Don't warn when loading 3MF with modified G-code"
|
||||
msgstr "Geen waarschuwingen bij het laden van 3MF met aangepaste G-codes"
|
||||
|
||||
msgid "Auto-Backup"
|
||||
msgid "Auto backup"
|
||||
msgstr "Automatisch een back-up maken"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6993,10 +7013,13 @@ msgstr "De periode van de back-up in seconden."
|
|||
msgid "Downloads"
|
||||
msgstr ""
|
||||
|
||||
msgid "Downloads folder"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dark Mode"
|
||||
msgstr "Donkere modus"
|
||||
|
||||
msgid "Enable Dark mode"
|
||||
msgid "Enable dark mode"
|
||||
msgstr "Donkere modus inschakelen"
|
||||
|
||||
msgid "Develop mode"
|
||||
|
|
@ -8772,10 +8795,10 @@ msgstr "Toon lijst met sneltoetsen"
|
|||
msgid "Global shortcuts"
|
||||
msgstr "Globale snelkoppelingen"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgid "Pan View"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pan View"
|
||||
msgid "Rotate View"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom View"
|
||||
|
|
@ -16186,6 +16209,9 @@ msgstr "Invoer verwijderen"
|
|||
msgid "Network Test"
|
||||
msgstr "Netwerktest"
|
||||
|
||||
msgid "Network test"
|
||||
msgstr "Netwerktest"
|
||||
|
||||
msgid "Start Test Multi-Thread"
|
||||
msgstr "Multi-thread test starten"
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: OrcaSlicer 2.3.0-rc\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 21:06+0800\n"
|
||||
"POT-Creation-Date: 2025-09-28 18:44+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Krzysztof Morga <<tlumaczeniebs@gmail.com>>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -6275,6 +6275,17 @@ msgstr ""
|
|||
msgid "Load 3mf"
|
||||
msgstr "Wczytaj 3MF"
|
||||
|
||||
msgid ""
|
||||
"This project was created with an OrcaSlicer 2.3.1-alpha and uses infill "
|
||||
"rotation template settings that may not work properly with your current "
|
||||
"infill pattern. This could result in weak support or print quality issues."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Would you like OrcaSlicer to automatically fix this by clearing the rotation "
|
||||
"template settings?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"The 3mf's version %s is newer than %s's version %s, found following "
|
||||
|
|
@ -6846,10 +6857,10 @@ msgstr "Ameryka Północna"
|
|||
msgid "Others"
|
||||
msgstr "Inne"
|
||||
|
||||
msgid "Login Region"
|
||||
msgid "Login region"
|
||||
msgstr "Region logowania"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgid "Stealth mode"
|
||||
msgstr "Tryb niewidoczny"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6860,10 +6871,13 @@ msgstr ""
|
|||
"korzystają z maszyn BBL lub używają trybu „tylko LAN”, mogą bezpiecznie "
|
||||
"włączyć tę funkcję."
|
||||
|
||||
msgid "Network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr "Włączenie wtyczki sieciowej"
|
||||
|
||||
msgid "Use legacy network plugin (Takes effect after restarting Orca)"
|
||||
msgid "Use legacy network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6906,7 +6920,7 @@ msgstr ""
|
|||
msgid "Home"
|
||||
msgstr "Strona główna"
|
||||
|
||||
msgid "Default Page"
|
||||
msgid "Default page"
|
||||
msgstr "Domyślna strona"
|
||||
|
||||
msgid "Set the page opened on startup."
|
||||
|
|
@ -7002,15 +7016,18 @@ msgstr ""
|
|||
"Automatycznie zapamiętuje i przełącza konfigurację filamentu/procesu dla "
|
||||
"każdej drukarki."
|
||||
|
||||
msgid "Show the step mesh parameter setting dialog."
|
||||
msgid "Show options when importing STEP file"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled,a parameter settings dialog will appear during STEP file import."
|
||||
msgstr ""
|
||||
|
||||
msgid "Multi-device Management (Take effect after restarting Orca Slicer)."
|
||||
msgstr "Obsługiwanie wielu urządzeń (wymaga ponownego uruchomienia programu)"
|
||||
msgid "Multi device management"
|
||||
msgstr "Obsługiwanie wielu urządzeń"
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"With this option enabled, you can send a task to multiple devices at the "
|
||||
|
|
@ -7083,9 +7100,12 @@ msgstr "Pytanie zawsze"
|
|||
msgid "Load Geometry Only"
|
||||
msgstr "Wczytanie tylko geometrii"
|
||||
|
||||
msgid "Load Behaviour"
|
||||
msgid "Load behaviour"
|
||||
msgstr "Zachowanie przy wczytywaniu"
|
||||
|
||||
msgid "Behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
msgstr ""
|
||||
"Określa czy ustawienia drukarki/filamentu/procesu mają być wczytywane "
|
||||
|
|
@ -7097,16 +7117,16 @@ msgstr ""
|
|||
msgid "Maximum count of recent files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add model files (stl/step) to recent file list."
|
||||
msgid "Add STL/STEP files to recent files list"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clear my choice on the unsaved projects."
|
||||
msgstr "Wyczyść wybory na niezapisanych projektach."
|
||||
|
||||
msgid "No warnings when loading 3MF with modified G-code"
|
||||
msgid "Don't warn when loading 3MF with modified G-code"
|
||||
msgstr "Brak ostrzeżeń przy wczytywaniu plików 3MF z zmodyfikowanymi G-code"
|
||||
|
||||
msgid "Auto-Backup"
|
||||
msgid "Auto backup"
|
||||
msgstr "Automatyczne tworzenie kopii zapasowej"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -7124,10 +7144,13 @@ msgstr "Określa okres kopii zapasowej w sekundach."
|
|||
msgid "Downloads"
|
||||
msgstr "Położenie pobierania"
|
||||
|
||||
msgid "Downloads folder"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dark Mode"
|
||||
msgstr "Tryb ciemny"
|
||||
|
||||
msgid "Enable Dark mode"
|
||||
msgid "Enable dark mode"
|
||||
msgstr "Włączenie trybu ciemnego"
|
||||
|
||||
msgid "Develop mode"
|
||||
|
|
@ -8944,12 +8967,12 @@ msgstr "Pokaż listę skrótów klawiszowych"
|
|||
msgid "Global shortcuts"
|
||||
msgstr "Globalne skróty"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "Obróć widok"
|
||||
|
||||
msgid "Pan View"
|
||||
msgstr "Przesuń widok"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "Obróć widok"
|
||||
|
||||
msgid "Zoom View"
|
||||
msgstr "Przybliż widok"
|
||||
|
||||
|
|
@ -17421,6 +17444,9 @@ msgstr "Usuń wejście"
|
|||
msgid "Network Test"
|
||||
msgstr "Test sieci"
|
||||
|
||||
msgid "Network test"
|
||||
msgstr "Test sieci"
|
||||
|
||||
msgid "Start Test Multi-Thread"
|
||||
msgstr "Rozpocznij test wielowątkowy"
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 21:06+0800\n"
|
||||
"POT-Creation-Date: 2025-09-28 18:44+0800\n"
|
||||
"PO-Revision-Date: 2025-08-13 10:05-0300\n"
|
||||
"Last-Translator: Alexandre Folle de Menezes\n"
|
||||
"Language-Team: Portuguese, Brazilian\n"
|
||||
|
|
@ -1568,8 +1568,8 @@ msgid ""
|
|||
"features.\n"
|
||||
"Click Yes to install it now."
|
||||
msgstr ""
|
||||
"O OrcaSlicer requer o Microsoft WebView2 Runtime para operar "
|
||||
"determinados recursos.\n"
|
||||
"O OrcaSlicer requer o Microsoft WebView2 Runtime para operar determinados "
|
||||
"recursos.\n"
|
||||
"Clique em Sim para instalá-lo agora."
|
||||
|
||||
msgid "WebView2 Runtime"
|
||||
|
|
@ -4245,8 +4245,8 @@ msgid ""
|
|||
"Invalid pattern. Use N, N#K, or a comma-separated list with optional #K per "
|
||||
"entry. Examples: 5, 5#2, 1,7,9, 5,9#2,18."
|
||||
msgstr ""
|
||||
"Padrão inválido. Use N, N#K, ou uma lista separa por vírgulas com #K opcional "
|
||||
"por entrada. Examplos: 5, 5#2, 1,7,9, 5,9#2,18."
|
||||
"Padrão inválido. Use N, N#K, ou uma lista separa por vírgulas com #K "
|
||||
"opcional por entrada. Examplos: 5, 5#2, 1,7,9, 5,9#2,18."
|
||||
|
||||
#, boost-format
|
||||
msgid "Invalid format. Expected vector format: \"%1%\""
|
||||
|
|
@ -6216,8 +6216,8 @@ msgid ""
|
|||
"presets."
|
||||
msgstr ""
|
||||
"Alguns filamentos desconhecidos foram mapeados para a predefinição genérica. "
|
||||
"Por favor, atualize o OrcaSlicer ou reinicie o OrcaSlicer para verificar "
|
||||
"se há uma atualização para as predefinições do sistema."
|
||||
"Por favor, atualize o OrcaSlicer ou reinicie o OrcaSlicer para verificar se "
|
||||
"há uma atualização para as predefinições do sistema."
|
||||
|
||||
#, boost-format
|
||||
msgid "Do you want to save changes to \"%1%\"?"
|
||||
|
|
@ -6286,6 +6286,17 @@ msgstr ""
|
|||
msgid "Load 3mf"
|
||||
msgstr "Carregar 3mf"
|
||||
|
||||
msgid ""
|
||||
"This project was created with an OrcaSlicer 2.3.1-alpha and uses infill "
|
||||
"rotation template settings that may not work properly with your current "
|
||||
"infill pattern. This could result in weak support or print quality issues."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Would you like OrcaSlicer to automatically fix this by clearing the rotation "
|
||||
"template settings?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"The 3mf's version %s is newer than %s's version %s, found following "
|
||||
|
|
@ -6867,11 +6878,11 @@ msgstr "América do Norte"
|
|||
msgid "Others"
|
||||
msgstr "Outros"
|
||||
|
||||
msgid "Login Region"
|
||||
msgstr "Região de Login"
|
||||
msgid "Login region"
|
||||
msgstr "Região de login"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgstr "Modo Oculto"
|
||||
msgid "Stealth mode"
|
||||
msgstr "Modo oculto"
|
||||
|
||||
msgid ""
|
||||
"This stops the transmission of data to Bambu's cloud services. Users who "
|
||||
|
|
@ -6881,11 +6892,14 @@ msgstr ""
|
|||
"Os usuários que não usam máquinas BBL ou usar modo LAN só podem ativar esta "
|
||||
"função com segurança."
|
||||
|
||||
msgid "Network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr "Ativar plugin de rede"
|
||||
|
||||
msgid "Use legacy network plugin (Takes effect after restarting Orca)"
|
||||
msgstr "Usar o plugin de rede legado (entra em vigor após reiniciar o Orca)"
|
||||
msgid "Use legacy network plugin"
|
||||
msgstr "Usar o plugin de rede legado"
|
||||
|
||||
msgid ""
|
||||
"Disable to use latest network plugin that supports new BambuLab firmwares."
|
||||
|
|
@ -6929,8 +6943,8 @@ msgstr ""
|
|||
msgid "Home"
|
||||
msgstr "Início"
|
||||
|
||||
msgid "Default Page"
|
||||
msgstr "Página Padrão"
|
||||
msgid "Default page"
|
||||
msgstr "Página padrão"
|
||||
|
||||
msgid "Set the page opened on startup."
|
||||
msgstr "Define a página aberta na inicialização."
|
||||
|
|
@ -6985,8 +6999,9 @@ msgid "Orbit speed multiplier"
|
|||
msgstr "Multiplicador de velocidade de órbita"
|
||||
|
||||
msgid "Multiplies the orbit speed for finer or coarser camera movement."
|
||||
msgstr "Multiplica a velocidade da órbita para um movimento de câmera "
|
||||
"mais fino ou mais grosseiro."
|
||||
msgstr ""
|
||||
"Multiplica a velocidade da órbita para um movimento de câmera mais fino ou "
|
||||
"mais grosseiro."
|
||||
|
||||
msgid "Show splash screen"
|
||||
msgstr "Mostrar tela de abertura"
|
||||
|
|
@ -7023,17 +7038,18 @@ msgstr ""
|
|||
"Se ativo, Orca vai lembrar e alternar a configuração de filamento/processo "
|
||||
"para cada impressora automaticamente."
|
||||
|
||||
msgid "Show the step mesh parameter setting dialog."
|
||||
msgid "Show options when importing STEP file"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled,a parameter settings dialog will appear during STEP file import."
|
||||
msgstr ""
|
||||
|
||||
msgid "Multi-device Management (Take effect after restarting Orca Slicer)."
|
||||
msgid "Multi device management"
|
||||
msgstr "Gerenciamento de multi dispositivos"
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
"Gerenciamento de Multi-dispositivos (Entra em vigor após reiniciar o "
|
||||
"OrcaSlicer)."
|
||||
|
||||
msgid ""
|
||||
"With this option enabled, you can send a task to multiple devices at the "
|
||||
|
|
@ -7111,8 +7127,11 @@ msgstr "Perguntar Sempre"
|
|||
msgid "Load Geometry Only"
|
||||
msgstr "Carregar Apenas Geometria"
|
||||
|
||||
msgid "Load Behaviour"
|
||||
msgstr "Comportamento de Carregamento"
|
||||
msgid "Load behaviour"
|
||||
msgstr "Comportamento de carregamento"
|
||||
|
||||
msgid "Behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
msgstr ""
|
||||
|
|
@ -7125,17 +7144,17 @@ msgstr "Máximo de arquivos recentes"
|
|||
msgid "Maximum count of recent files"
|
||||
msgstr "Contagem máxima de arquivos recentes"
|
||||
|
||||
msgid "Add model files (stl/step) to recent file list."
|
||||
msgstr "Adicionar arquivos de modelo (stl/step) à lista de arquivos recentes."
|
||||
msgid "Add STL/STEP files to recent files list"
|
||||
msgstr "Adicionar arquivos de modelo STL/STEP à lista de arquivos recentes"
|
||||
|
||||
msgid "Clear my choice on the unsaved projects."
|
||||
msgstr "Limpar minha escolha nos projetos não salvos."
|
||||
|
||||
msgid "No warnings when loading 3MF with modified G-code"
|
||||
msgid "Don't warn when loading 3MF with modified G-code"
|
||||
msgstr "Sem avisos ao carregar 3MF com G-code modificado"
|
||||
|
||||
msgid "Auto-Backup"
|
||||
msgstr "Backup Automático"
|
||||
msgid "Auto backup"
|
||||
msgstr "Backup automático"
|
||||
|
||||
msgid ""
|
||||
"Backup your project periodically for restoring from the occasional crash."
|
||||
|
|
@ -7152,11 +7171,14 @@ msgstr "O período de backup em segundos."
|
|||
msgid "Downloads"
|
||||
msgstr "Transferências"
|
||||
|
||||
msgid "Downloads folder"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dark Mode"
|
||||
msgstr "Modo Escuro"
|
||||
|
||||
msgid "Enable Dark mode"
|
||||
msgstr "Ativar Modo Escuro"
|
||||
msgid "Enable dark mode"
|
||||
msgstr "Ativar modo escuro"
|
||||
|
||||
msgid "Develop mode"
|
||||
msgstr "Modo de Desenvolvimento"
|
||||
|
|
@ -7869,9 +7891,9 @@ msgid ""
|
|||
"A prime tower is required for smooth timelapse. There may be flaws on the "
|
||||
"model without prime tower. Are you sure you want to disable prime tower?"
|
||||
msgstr ""
|
||||
"Uma torre de preparo é necessária para um timelapse suave. Pode haver "
|
||||
"falhas no modelo sem a torre de preparo. Tem certeza de que deseja "
|
||||
"desativar a torre de preparo?"
|
||||
"Uma torre de preparo é necessária para um timelapse suave. Pode haver falhas "
|
||||
"no modelo sem a torre de preparo. Tem certeza de que deseja desativar a "
|
||||
"torre de preparo?"
|
||||
|
||||
msgid ""
|
||||
"Enabling both precise Z height and the prime tower may cause the size of "
|
||||
|
|
@ -7884,9 +7906,8 @@ msgid ""
|
|||
"A prime tower is required for smooth timelapse. There may be flaws on the "
|
||||
"model without prime tower. Do you want to enable prime tower?"
|
||||
msgstr ""
|
||||
"Uma torre de preparo é necessária para um timelapse suave. Pode haver "
|
||||
"falhas no modelo sem a torre de preparo. Deseja ativar a torre de "
|
||||
"preparo?"
|
||||
"Uma torre de preparo é necessária para um timelapse suave. Pode haver falhas "
|
||||
"no modelo sem a torre de preparo. Deseja ativar a torre de preparo?"
|
||||
|
||||
msgid "Still print by object?"
|
||||
msgstr "Ainda imprimir por objeto?"
|
||||
|
|
@ -9009,12 +9030,12 @@ msgstr "Mostrar lista de atalhos de teclado"
|
|||
msgid "Global shortcuts"
|
||||
msgstr "Atalhos globais"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "Rotacionar vista"
|
||||
|
||||
msgid "Pan View"
|
||||
msgstr "Movimentar vista"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "Rotacionar vista"
|
||||
|
||||
msgid "Zoom View"
|
||||
msgstr "Aproximar vista"
|
||||
|
||||
|
|
@ -9280,8 +9301,7 @@ msgstr "Conecte a impressora usando IP e código de acesso"
|
|||
|
||||
msgid ""
|
||||
"Step 1. Please confirm Orca Slicer and your printer are in the same LAN."
|
||||
msgstr ""
|
||||
"Passo 1. Confirme se o OrcaSlicer e sua impressora estão na mesma LAN."
|
||||
msgstr "Passo 1. Confirme se o OrcaSlicer e sua impressora estão na mesma LAN."
|
||||
|
||||
msgid ""
|
||||
"Step 2. If the IP and Access Code below are different from the actual values "
|
||||
|
|
@ -9782,8 +9802,8 @@ msgid ""
|
|||
"The prime tower is currently only supported for the Marlin, RepRap/Sprinter, "
|
||||
"RepRapFirmware and Repetier G-code flavors."
|
||||
msgstr ""
|
||||
"A torre de preparo atualmente só é suportada para os G-code do tipo "
|
||||
"Marlin, RepRap/Sprinter, RepRapFirmware e Repetier."
|
||||
"A torre de preparo atualmente só é suportada para os G-code do tipo Marlin, "
|
||||
"RepRap/Sprinter, RepRapFirmware e Repetier."
|
||||
|
||||
msgid "The prime tower is not supported in \"By object\" print."
|
||||
msgstr "A torre de preparo não é suportada na impressão \"Por objeto\"."
|
||||
|
|
@ -9792,26 +9812,26 @@ msgid ""
|
|||
"The prime tower is not supported when adaptive layer height is on. It "
|
||||
"requires that all objects have the same layer height."
|
||||
msgstr ""
|
||||
"A torre de preparo não é suportada quando a altura de camada adaptativa "
|
||||
"está ativa. Isso requer que todos os objetos tenham a mesma altura de camada."
|
||||
"A torre de preparo não é suportada quando a altura de camada adaptativa está "
|
||||
"ativa. Isso requer que todos os objetos tenham a mesma altura de camada."
|
||||
|
||||
msgid ""
|
||||
"The prime tower requires \"support gap\" to be multiple of layer height."
|
||||
msgstr ""
|
||||
"A torre de preparo requer que o \"vão de suporte\" seja múltiplo da "
|
||||
"altura da camada."
|
||||
"A torre de preparo requer que o \"vão de suporte\" seja múltiplo da altura "
|
||||
"da camada."
|
||||
|
||||
msgid "The prime tower requires that all objects have the same layer heights."
|
||||
msgstr ""
|
||||
"A torre de preparo requer que todos os objetos tenham as mesmas alturas "
|
||||
"de camada."
|
||||
"A torre de preparo requer que todos os objetos tenham as mesmas alturas de "
|
||||
"camada."
|
||||
|
||||
msgid ""
|
||||
"The prime tower requires that all objects are printed over the same number "
|
||||
"of raft layers."
|
||||
msgstr ""
|
||||
"A torre de preparo requer que todos os objetos sejam impressos sobre o "
|
||||
"mesmo número de camadas da jangada."
|
||||
"A torre de preparo requer que todos os objetos sejam impressos sobre o mesmo "
|
||||
"número de camadas da jangada."
|
||||
|
||||
msgid ""
|
||||
"The prime tower is only supported for multiple objects if they are printed "
|
||||
|
|
@ -9824,15 +9844,15 @@ msgid ""
|
|||
"The prime tower requires that all objects are sliced with the same layer "
|
||||
"heights."
|
||||
msgstr ""
|
||||
"A torre de preparo requer que todos os objetos sejam fatiados com as "
|
||||
"mesmas alturas de camada."
|
||||
"A torre de preparo requer que todos os objetos sejam fatiados com as mesmas "
|
||||
"alturas de camada."
|
||||
|
||||
msgid ""
|
||||
"The prime tower is only supported if all objects have the same variable "
|
||||
"layer height."
|
||||
msgstr ""
|
||||
"A torre de preparo só é suportada se todos os objetos tiverem a mesma "
|
||||
"altura de camada variável."
|
||||
"A torre de preparo só é suportada se todos os objetos tiverem a mesma altura "
|
||||
"de camada variável."
|
||||
|
||||
msgid ""
|
||||
"One or more object were assigned an extruder that the printer does not have."
|
||||
|
|
@ -10308,7 +10328,8 @@ msgstr "Tipo de placa padrão"
|
|||
|
||||
msgid ""
|
||||
"Default bed type for the printer (supports both numeric and string format)."
|
||||
msgstr "Tipo de placa padrão para a impressora (suporta formato numérico ou string)."
|
||||
msgstr ""
|
||||
"Tipo de placa padrão para a impressora (suporta formato numérico ou string)."
|
||||
|
||||
msgid "First layer print sequence"
|
||||
msgstr "Sequência de impressão da primeira camada"
|
||||
|
|
@ -10635,10 +10656,9 @@ msgid ""
|
|||
"layer consistency. NOTE: This option will be ignored for outer-inner or "
|
||||
"inner-outer-inner wall sequences."
|
||||
msgstr ""
|
||||
"Melhora a precisão da casca ajustando o espaçamento da parede externa. "
|
||||
"Isso também melhora a consistência da camada. Nota: Esta opção será ignorada "
|
||||
"se a sequência da parede for externa-interna ou interna-externa-interna."
|
||||
|
||||
"Melhora a precisão da casca ajustando o espaçamento da parede externa. Isso "
|
||||
"também melhora a consistência da camada. Nota: Esta opção será ignorada se a "
|
||||
"sequência da parede for externa-interna ou interna-externa-interna."
|
||||
|
||||
msgid "Only one wall on top surfaces"
|
||||
msgstr "Parede única em superfícies superiores"
|
||||
|
|
@ -12216,8 +12236,8 @@ msgstr ""
|
|||
"Insere preenchimento sólido em camadas específicas. Use N para inserir a "
|
||||
"cada enésima camada, N#K para inserir K camadas sólidas consecutivas a cada "
|
||||
"enésima camada (K é opcional, ou seja, '5#' é igual a '5#1'), ou uma lista "
|
||||
"separada por vírgulas (Ex. 1,7,9) para inserir em camadas esplícitas. Camadas "
|
||||
"são baseadas em 1."
|
||||
"separada por vírgulas (Ex. 1,7,9) para inserir em camadas esplícitas. "
|
||||
"Camadas são baseadas em 1."
|
||||
|
||||
msgid "Fill Multiline"
|
||||
msgstr "Multilinhas de Preenchimento"
|
||||
|
|
@ -13468,10 +13488,10 @@ msgid ""
|
|||
"semicolon, in the following format: \"1.234, 5.678;\""
|
||||
msgstr ""
|
||||
"Modelo de Compensação de Fluxo, usado para ajustar o fluxo para áreas de "
|
||||
"preenchimento pequenas. O modelo é expresso como um par de valores "
|
||||
"separados por vírgula para o comprimento de extrusão e o fator de "
|
||||
"correção de fluxo. Cada par em uma linha separeada, seguido por "
|
||||
"ponto-e-vírgula, no seguinte formato: \"1.234, 5.678;\""
|
||||
"preenchimento pequenas. O modelo é expresso como um par de valores separados "
|
||||
"por vírgula para o comprimento de extrusão e o fator de correção de fluxo. "
|
||||
"Cada par em uma linha separeada, seguido por ponto-e-vírgula, no seguinte "
|
||||
"formato: \"1.234, 5.678;\""
|
||||
|
||||
msgid "Maximum speed X"
|
||||
msgstr "Velocidade máxima X"
|
||||
|
|
@ -15093,8 +15113,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"A camada de suporte usa uma altura de camada independente da camada do "
|
||||
"objeto. Isso é para suportar a personalização do vão-Z e economizar tempo de "
|
||||
"impressão. Esta opção será inválida quando a torre de preparo estiver "
|
||||
"ativa."
|
||||
"impressão. Esta opção será inválida quando a torre de preparo estiver ativa."
|
||||
|
||||
msgid "Threshold angle"
|
||||
msgstr "Ângulo limiar"
|
||||
|
|
@ -15272,8 +15291,8 @@ msgid ""
|
|||
"the surface."
|
||||
msgstr ""
|
||||
"A quantidade de material a extrudar durante o passar a ferro. Relativo ao "
|
||||
"fluxo da altura normal da camada de interface. Um valor muito alto resulta em "
|
||||
"superextrusão na superfície."
|
||||
"fluxo da altura normal da camada de interface. Um valor muito alto resulta "
|
||||
"em superextrusão na superfície."
|
||||
|
||||
msgid "Support Ironing line spacing"
|
||||
msgstr ""
|
||||
|
|
@ -16911,8 +16930,8 @@ msgstr ""
|
|||
"Agora adicionamos a auto-calibração para diferentes filamentos, que é "
|
||||
"totalmente automatizada e o resultado será salvo na impressora para uso "
|
||||
"futuro. Você só precisa fazer a calibração nos seguintes casos limitados:\n"
|
||||
"1. Se você introduzir um novo filamento de marcas/modelos diferentes ou "
|
||||
"se o filamento estiver úmido;\n"
|
||||
"1. Se você introduzir um novo filamento de marcas/modelos diferentes ou se o "
|
||||
"filamento estiver úmido;\n"
|
||||
"2. Se o bico estiver desgastado ou for substituído por um novo;\n"
|
||||
"3. Se o fluxo volumétrico máximo ou a temperatura de impressão forem "
|
||||
"alteradas na configuração do filamento."
|
||||
|
|
@ -17662,6 +17681,9 @@ msgstr "Excluir entrada"
|
|||
msgid "Network Test"
|
||||
msgstr "Teste de Rede"
|
||||
|
||||
msgid "Network test"
|
||||
msgstr "Teste de Rede"
|
||||
|
||||
msgid "Start Test Multi-Thread"
|
||||
msgstr "Iniciar Teste Multi-Thread"
|
||||
|
||||
|
|
@ -19749,8 +19771,8 @@ msgstr ""
|
|||
#~ msgid ""
|
||||
#~ "Ooze prevention is currently not supported with the prime tower enabled."
|
||||
#~ msgstr ""
|
||||
#~ "A prevenção de vazamento atualmente não é suportada com a torre de "
|
||||
#~ "prepao ativa."
|
||||
#~ "A prevenção de vazamento atualmente não é suportada com a torre de prepao "
|
||||
#~ "ativa."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Interlocking depth of a segmented region. Zero disables this feature."
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: OrcaSlicer V2.3.0 Official Release\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 21:06+0800\n"
|
||||
"POT-Creation-Date: 2025-09-28 18:44+0800\n"
|
||||
"PO-Revision-Date: 2025-07-06 21:08+0700\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Andylg <andylg@yandex.ru>\n"
|
||||
|
|
@ -6350,6 +6350,17 @@ msgstr ""
|
|||
msgid "Load 3mf"
|
||||
msgstr "Загрузка 3mf"
|
||||
|
||||
msgid ""
|
||||
"This project was created with an OrcaSlicer 2.3.1-alpha and uses infill "
|
||||
"rotation template settings that may not work properly with your current "
|
||||
"infill pattern. This could result in weak support or print quality issues."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Would you like OrcaSlicer to automatically fix this by clearing the rotation "
|
||||
"template settings?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"The 3mf's version %s is newer than %s's version %s, found following "
|
||||
|
|
@ -6926,10 +6937,10 @@ msgstr "Северная Америка"
|
|||
msgid "Others"
|
||||
msgstr "Прочее"
|
||||
|
||||
msgid "Login Region"
|
||||
msgid "Login region"
|
||||
msgstr "Регион входа"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgid "Stealth mode"
|
||||
msgstr "Режим конфиденциальности (отключение телеметрии Bambulab)"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6940,10 +6951,13 @@ msgstr ""
|
|||
"которые не используют принтеры BBL или используют режим «Только LAN», могут "
|
||||
"безопасно включить эту функцию."
|
||||
|
||||
msgid "Network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr "Включить сетевой плагин"
|
||||
|
||||
msgid "Use legacy network plugin (Takes effect after restarting Orca)"
|
||||
msgid "Use legacy network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6988,10 +7002,8 @@ msgstr ""
|
|||
msgid "Home"
|
||||
msgstr "Home"
|
||||
|
||||
msgid "Default Page"
|
||||
msgstr ""
|
||||
"Страница \n"
|
||||
"по умолчанию"
|
||||
msgid "Default page"
|
||||
msgstr "Страница по умолчанию"
|
||||
|
||||
msgid "Set the page opened on startup."
|
||||
msgstr "Задание страницы, открываемой при запуске приложения."
|
||||
|
|
@ -7102,7 +7114,7 @@ msgstr ""
|
|||
"с профилем пластиковой нити и процессом печати, выставленными вами в "
|
||||
"последний раз."
|
||||
|
||||
msgid "Show the step mesh parameter setting dialog."
|
||||
msgid "Show options when importing STEP file"
|
||||
msgstr "Показывать диалоговое окно настройки сетки при импорте STEP файла"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -7111,8 +7123,11 @@ msgstr ""
|
|||
"Если включено, во время импорта STEP файла появится диалоговое окно настроек "
|
||||
"параметров импорта."
|
||||
|
||||
msgid "Multi-device Management (Take effect after restarting Orca Slicer)."
|
||||
msgstr "Управление несколькими устройствами (требуется перезапуск программы)"
|
||||
msgid "Multi device management"
|
||||
msgstr "Управление несколькими устройствами"
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"With this option enabled, you can send a task to multiple devices at the "
|
||||
|
|
@ -7195,10 +7210,11 @@ msgid "Load Geometry Only"
|
|||
msgstr "Загружать только геометрию"
|
||||
|
||||
# нее влезает Поведение при открытии
|
||||
msgid "Load Behaviour"
|
||||
msgid "Load behaviour"
|
||||
msgstr "Поведение при открытии"
|
||||
|
||||
msgid "Behaviour"
|
||||
msgstr ""
|
||||
"Поведение \n"
|
||||
"при открытии"
|
||||
|
||||
msgid "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
msgstr ""
|
||||
|
|
@ -7211,7 +7227,7 @@ msgstr ""
|
|||
msgid "Maximum count of recent files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add model files (stl/step) to recent file list."
|
||||
msgid "Add STL/STEP files to recent files list"
|
||||
msgstr ""
|
||||
|
||||
# ??? Сбросить мой выбор действия для проектов, Сбросить запрос о несохранённых изменениях для проекта при закрытии программы
|
||||
|
|
@ -7221,10 +7237,10 @@ msgstr ""
|
|||
"при запросе о несохранённых \n"
|
||||
"изменениях в проекте."
|
||||
|
||||
msgid "No warnings when loading 3MF with modified G-code"
|
||||
msgid "Don't warn when loading 3MF with modified G-code"
|
||||
msgstr "Отключить предупреждения при загрузке 3MF с модифицированным G-кодом"
|
||||
|
||||
msgid "Auto-Backup"
|
||||
msgid "Auto backup"
|
||||
msgstr "Автосоздание резервной копии"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -7242,10 +7258,13 @@ msgstr "Время резервного копирования в секунда
|
|||
msgid "Downloads"
|
||||
msgstr "Загрузки"
|
||||
|
||||
msgid "Downloads folder"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dark Mode"
|
||||
msgstr "Тёмная тема"
|
||||
|
||||
msgid "Enable Dark mode"
|
||||
msgid "Enable dark mode"
|
||||
msgstr "Включить тёмную тему"
|
||||
|
||||
msgid "Develop mode"
|
||||
|
|
@ -9099,12 +9118,12 @@ msgstr "Показать список сочетаний клавиш"
|
|||
msgid "Global shortcuts"
|
||||
msgstr "Глобальные горячие клавиши"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "Вращение камеры"
|
||||
|
||||
msgid "Pan View"
|
||||
msgstr "Перемещение камеры"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "Вращение камеры"
|
||||
|
||||
msgid "Zoom View"
|
||||
msgstr "Масштабирование вида"
|
||||
|
||||
|
|
@ -17832,6 +17851,9 @@ msgstr "Удалить исходные"
|
|||
msgid "Network Test"
|
||||
msgstr "Проверка сети"
|
||||
|
||||
msgid "Network test"
|
||||
msgstr "Проверка сети"
|
||||
|
||||
msgid "Start Test Multi-Thread"
|
||||
msgstr "Запуск многопоточного теста"
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 21:06+0800\n"
|
||||
"POT-Creation-Date: 2025-09-28 18:44+0800\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -6070,6 +6070,17 @@ msgstr "3mf kommer inte från Orca Slicer, laddar endast geometri data."
|
|||
msgid "Load 3mf"
|
||||
msgstr "Ladda 3mf"
|
||||
|
||||
msgid ""
|
||||
"This project was created with an OrcaSlicer 2.3.1-alpha and uses infill "
|
||||
"rotation template settings that may not work properly with your current "
|
||||
"infill pattern. This could result in weak support or print quality issues."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Would you like OrcaSlicer to automatically fix this by clearing the rotation "
|
||||
"template settings?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"The 3mf's version %s is newer than %s's version %s, found following "
|
||||
|
|
@ -6620,10 +6631,10 @@ msgstr "Nordamerika"
|
|||
msgid "Others"
|
||||
msgstr "Andra"
|
||||
|
||||
msgid "Login Region"
|
||||
msgstr "Logga in Region"
|
||||
msgid "Login region"
|
||||
msgstr "Logga in region"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgid "Stealth mode"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6631,10 +6642,13 @@ msgid ""
|
|||
"don't use BBL machines or use LAN mode only can safely turn on this function."
|
||||
msgstr ""
|
||||
|
||||
msgid "Network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Use legacy network plugin (Takes effect after restarting Orca)"
|
||||
msgid "Use legacy network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6674,7 +6688,7 @@ msgstr ""
|
|||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgid "Default Page"
|
||||
msgid "Default page"
|
||||
msgstr ""
|
||||
|
||||
msgid "Set the page opened on startup."
|
||||
|
|
@ -6763,14 +6777,17 @@ msgid ""
|
|||
"each printer automatically."
|
||||
msgstr ""
|
||||
|
||||
msgid "Show the step mesh parameter setting dialog."
|
||||
msgid "Show options when importing STEP file"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled,a parameter settings dialog will appear during STEP file import."
|
||||
msgstr ""
|
||||
|
||||
msgid "Multi-device Management (Take effect after restarting Orca Slicer)."
|
||||
msgid "Multi device management"
|
||||
msgstr ""
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6843,7 +6860,10 @@ msgstr ""
|
|||
msgid "Load Geometry Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load Behaviour"
|
||||
msgid "Load behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
|
|
@ -6855,17 +6875,17 @@ msgstr ""
|
|||
msgid "Maximum count of recent files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add model files (stl/step) to recent file list."
|
||||
msgid "Add STL/STEP files to recent files list"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clear my choice on the unsaved projects."
|
||||
msgstr "Rensa mitt val för de osparade projekten."
|
||||
|
||||
msgid "No warnings when loading 3MF with modified G-code"
|
||||
msgid "Don't warn when loading 3MF with modified G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto-Backup"
|
||||
msgstr "Auto Säkerhetskopiera"
|
||||
msgid "Auto backup"
|
||||
msgstr "Auto säkerhetskopiera"
|
||||
|
||||
msgid ""
|
||||
"Backup your project periodically for restoring from the occasional crash."
|
||||
|
|
@ -6882,10 +6902,13 @@ msgstr "Säkerhetskopieringens varaktighet i sekunder."
|
|||
msgid "Downloads"
|
||||
msgstr "Nedladdningar"
|
||||
|
||||
msgid "Downloads folder"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dark Mode"
|
||||
msgstr "Mörkt Läge"
|
||||
|
||||
msgid "Enable Dark mode"
|
||||
msgid "Enable dark mode"
|
||||
msgstr "Aktivera mörkt läge"
|
||||
|
||||
msgid "Develop mode"
|
||||
|
|
@ -8618,12 +8641,12 @@ msgstr "Visa tangentbordets genvägs lista"
|
|||
msgid "Global shortcuts"
|
||||
msgstr "Övergripande genvägar"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "Rotera vy"
|
||||
|
||||
msgid "Pan View"
|
||||
msgstr "Panoreringsvy"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "Rotera vy"
|
||||
|
||||
msgid "Zoom View"
|
||||
msgstr "Zoomvy"
|
||||
|
||||
|
|
@ -15856,6 +15879,9 @@ msgstr "Ta bort inmatning"
|
|||
msgid "Network Test"
|
||||
msgstr "Nätverkstest"
|
||||
|
||||
msgid "Network test"
|
||||
msgstr "Nätverkstest"
|
||||
|
||||
msgid "Start Test Multi-Thread"
|
||||
msgstr "Börja testa flera trådar"
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 21:06+0800\n"
|
||||
"POT-Creation-Date: 2025-09-28 18:44+0800\n"
|
||||
"PO-Revision-Date: 2025-09-14 23:43+0300\n"
|
||||
"Last-Translator: GlauTech\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -178,7 +178,7 @@ msgid "Smart fill"
|
|||
msgstr "Akıllı boyama"
|
||||
|
||||
msgid "Bucket fill"
|
||||
msgstr "Kova boya aracı"
|
||||
msgstr "Boya kovası aracı"
|
||||
|
||||
msgid "Height range"
|
||||
msgstr "Yükseklik aralığı"
|
||||
|
|
@ -336,7 +336,7 @@ msgid "Auto"
|
|||
msgstr "Otomatik"
|
||||
|
||||
msgid "Manual"
|
||||
msgstr "Manual"
|
||||
msgstr "Manuel"
|
||||
|
||||
msgid "Plug"
|
||||
msgstr "Tak"
|
||||
|
|
@ -369,7 +369,7 @@ msgid "Flip upside down"
|
|||
msgstr "Baş aşağı çevir"
|
||||
|
||||
msgid "Connectors"
|
||||
msgstr "Konektörler"
|
||||
msgstr "Bağlayıcılar"
|
||||
|
||||
msgid "Type"
|
||||
msgstr "Tür"
|
||||
|
|
@ -566,7 +566,7 @@ msgstr[0] "%1$d bağlayıcı nesnenin dışında"
|
|||
msgstr[1] "%1$d bağlayıcı nesnenin dışında"
|
||||
|
||||
msgid "Some connectors are overlapped"
|
||||
msgstr "Bazı konektörler üst üste binmiş"
|
||||
msgstr "Bazı bağlayıcılar üst üste binmiş"
|
||||
|
||||
msgid "Select at least one object to keep after cutting."
|
||||
msgstr "Kesimden sonra saklanacak en az bir nesne seçin."
|
||||
|
|
@ -6235,6 +6235,17 @@ msgstr ""
|
|||
msgid "Load 3mf"
|
||||
msgstr "3mf yükle"
|
||||
|
||||
msgid ""
|
||||
"This project was created with an OrcaSlicer 2.3.1-alpha and uses infill "
|
||||
"rotation template settings that may not work properly with your current "
|
||||
"infill pattern. This could result in weak support or print quality issues."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Would you like OrcaSlicer to automatically fix this by clearing the rotation "
|
||||
"template settings?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"The 3mf's version %s is newer than %s's version %s, found following "
|
||||
|
|
@ -6801,10 +6812,10 @@ msgstr "Kuzey Amerika"
|
|||
msgid "Others"
|
||||
msgstr "Diğer"
|
||||
|
||||
msgid "Login Region"
|
||||
msgstr "Giriş Bölgesi"
|
||||
msgid "Login region"
|
||||
msgstr "Giriş bölgesi"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgid "Stealth mode"
|
||||
msgstr "Gizli mod"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6815,12 +6826,14 @@ msgstr ""
|
|||
"kullanmayan veya yalnızca LAN modunu kullanan kullanıcılar bu işlevi güvenle "
|
||||
"açabilir."
|
||||
|
||||
msgid "Network plugin"
|
||||
msgstr "Ağ eklentisi"
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr "Ağ eklentisini etkinleştir"
|
||||
|
||||
msgid "Use legacy network plugin (Takes effect after restarting Orca)"
|
||||
msgstr ""
|
||||
"Eski ağ eklentisini kullan (Orca'yı yeniden başlattıktan sonra etkili olur)"
|
||||
msgid "Use legacy network plugin"
|
||||
msgstr "Eski ağ eklentisini kullan"
|
||||
|
||||
msgid ""
|
||||
"Disable to use latest network plugin that supports new BambuLab firmwares."
|
||||
|
|
@ -6865,8 +6878,8 @@ msgstr ""
|
|||
msgid "Home"
|
||||
msgstr "Ana Sayfa"
|
||||
|
||||
msgid "Default Page"
|
||||
msgstr "Varsayılan Sayfa"
|
||||
msgid "Default page"
|
||||
msgstr "Varsayılan sayfa"
|
||||
|
||||
msgid "Set the page opened on startup."
|
||||
msgstr "Açılışta açılacak sayfayı ayarlayın."
|
||||
|
|
@ -6962,8 +6975,8 @@ msgstr ""
|
|||
"Etkinleştirilirse, Orca her yazıcı için filament/işlem yapılandırmasını "
|
||||
"hatırlayacak ve otomatik olarak değiştirecektir."
|
||||
|
||||
msgid "Show the step mesh parameter setting dialog."
|
||||
msgstr "Step ağ parametresi ayar iletişim kutusunu göster."
|
||||
msgid "Show options when importing STEP file"
|
||||
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."
|
||||
|
|
@ -6971,9 +6984,11 @@ msgstr ""
|
|||
"Etkinleştirilirse, STEP dosyası içe aktarılırken bir parametre ayarları "
|
||||
"iletişim kutusu görüntülenir."
|
||||
|
||||
msgid "Multi-device Management (Take effect after restarting Orca Slicer)."
|
||||
msgstr ""
|
||||
"Çoklu Cihaz Yönetimi(Studio yeniden başlatıldıktan sonra geçerli olur)."
|
||||
msgid "Multi device management"
|
||||
msgstr "Çoklu Cihaz Yönetimi"
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr "(Yeniden başlatma gerektirir)"
|
||||
|
||||
msgid ""
|
||||
"With this option enabled, you can send a task to multiple devices at the "
|
||||
|
|
@ -7051,8 +7066,11 @@ msgstr "Her Zaman Sor"
|
|||
msgid "Load Geometry Only"
|
||||
msgstr "Yalnızca Geometriyi Yükle"
|
||||
|
||||
msgid "Load Behaviour"
|
||||
msgstr "Yükleme Davranışı"
|
||||
msgid "Load behaviour"
|
||||
msgstr "Yükleme davranışı"
|
||||
|
||||
msgid "Behaviour"
|
||||
msgstr "Davranış"
|
||||
|
||||
msgid "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
msgstr "Bir .3mf açılırken yazıcı/filament/işlem ayarları yüklenmeli mi?"
|
||||
|
|
@ -7063,16 +7081,16 @@ msgstr "Son kullanılan dosyaların maksimum sayısı"
|
|||
msgid "Maximum count of recent files"
|
||||
msgstr "Son dosyaların maksimum sayısı"
|
||||
|
||||
msgid "Add model files (stl/step) to recent file list."
|
||||
msgstr "Model dosyalarını (STL/STEP) son dosyalar listesine ekle."
|
||||
msgid "Add STL/STEP files to recent files list"
|
||||
msgstr "STL/STEP dosyalarını son dosyalar listesine ekle"
|
||||
|
||||
msgid "Clear my choice on the unsaved projects."
|
||||
msgstr "Kaydedilmemiş projelerdeki seçimimi temizle."
|
||||
|
||||
msgid "No warnings when loading 3MF with modified G-code"
|
||||
msgstr "Değiştirilmiş G-kodları içeren 3MF dosyalarını yüklerken uyarı verme"
|
||||
msgid "Don't warn when loading 3MF with modified G-code"
|
||||
msgstr "Değiştirilmiş G-kodları içeren 3MF dosyalarını yüklerken uyarma"
|
||||
|
||||
msgid "Auto-Backup"
|
||||
msgid "Auto backup"
|
||||
msgstr "Otomatik yedekleme"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -7090,10 +7108,13 @@ msgstr "Saniye cinsinden yedekleme periyodu."
|
|||
msgid "Downloads"
|
||||
msgstr "İndirilenler"
|
||||
|
||||
msgid "Downloads folder"
|
||||
msgstr "İndirilenler klasörü"
|
||||
|
||||
msgid "Dark Mode"
|
||||
msgstr "Karanlık Mod"
|
||||
|
||||
msgid "Enable Dark mode"
|
||||
msgid "Enable dark mode"
|
||||
msgstr "Karanlık modu etkinleştir"
|
||||
|
||||
msgid "Develop mode"
|
||||
|
|
@ -8914,12 +8935,12 @@ msgstr "Klavye kısayolları listesini göster"
|
|||
msgid "Global shortcuts"
|
||||
msgstr "Genel kısayollar"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "Görüntüyü döndür"
|
||||
|
||||
msgid "Pan View"
|
||||
msgstr "Pan Görünümü"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "Görüntüyü döndür"
|
||||
|
||||
msgid "Zoom View"
|
||||
msgstr "Zoom Görünümü"
|
||||
|
||||
|
|
@ -12475,6 +12496,7 @@ msgstr "İlk katmana pütürlü yüzey uygulanıp uygulanmayacağı."
|
|||
msgid "Fuzzy skin generator mode"
|
||||
msgstr "Pütürlü yüzey oluşturma modu"
|
||||
|
||||
#, fuzzy, c-format, boost-format
|
||||
msgid ""
|
||||
"Fuzzy skin generation mode. Works only with Arachne!\n"
|
||||
"Displacement: Сlassic mode when the pattern is formed by shifting the nozzle "
|
||||
|
|
@ -17450,6 +17472,9 @@ msgid "Delete input"
|
|||
msgstr "Girişi sil"
|
||||
|
||||
msgid "Network Test"
|
||||
msgstr "Ağ Testi"
|
||||
|
||||
msgid "Network test"
|
||||
msgstr "Ağ testi"
|
||||
|
||||
msgid "Start Test Multi-Thread"
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: orcaslicerua\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 21:06+0800\n"
|
||||
"POT-Creation-Date: 2025-09-28 18:44+0800\n"
|
||||
"PO-Revision-Date: 2025-03-07 09:30+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Ukrainian\n"
|
||||
|
|
@ -6294,6 +6294,17 @@ msgstr "3mf не від Orca Slicer, завантажуйте лише дані
|
|||
msgid "Load 3mf"
|
||||
msgstr "Завантажити 3mf"
|
||||
|
||||
msgid ""
|
||||
"This project was created with an OrcaSlicer 2.3.1-alpha and uses infill "
|
||||
"rotation template settings that may not work properly with your current "
|
||||
"infill pattern. This could result in weak support or print quality issues."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Would you like OrcaSlicer to automatically fix this by clearing the rotation "
|
||||
"template settings?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"The 3mf's version %s is newer than %s's version %s, found following "
|
||||
|
|
@ -6859,10 +6870,10 @@ msgstr "Північна Америка"
|
|||
msgid "Others"
|
||||
msgstr "Інші"
|
||||
|
||||
msgid "Login Region"
|
||||
msgid "Login region"
|
||||
msgstr "Регіон входу"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgid "Stealth mode"
|
||||
msgstr "Прихований режим"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6873,10 +6884,13 @@ msgstr ""
|
|||
"користуються машинами BBL або використовують лише режим локальної мережі, "
|
||||
"можуть безпечно ввімкнути цю функцію."
|
||||
|
||||
msgid "Network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr "Увімкнути мережевий плагін"
|
||||
|
||||
msgid "Use legacy network plugin (Takes effect after restarting Orca)"
|
||||
msgid "Use legacy network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6920,7 +6934,7 @@ msgstr ""
|
|||
msgid "Home"
|
||||
msgstr "Домашня"
|
||||
|
||||
msgid "Default Page"
|
||||
msgid "Default page"
|
||||
msgstr "Початкова сторінка"
|
||||
|
||||
msgid "Set the page opened on startup."
|
||||
|
|
@ -7020,16 +7034,18 @@ msgstr ""
|
|||
"Якщо увімкнено, Orca запам'ятовує та автоматично перемикає конфігурацію "
|
||||
"нитки/процесу для кожного принтера."
|
||||
|
||||
msgid "Show the step mesh parameter setting dialog."
|
||||
msgid "Show options when importing STEP file"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled,a parameter settings dialog will appear during STEP file import."
|
||||
msgstr ""
|
||||
|
||||
msgid "Multi-device Management (Take effect after restarting Orca Slicer)."
|
||||
msgid "Multi device management"
|
||||
msgstr "Керування кількома пристроями"
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
"Керування кількома пристроями (набуває чинності після перезапуску Orca)."
|
||||
|
||||
msgid ""
|
||||
"With this option enabled, you can send a task to multiple devices at the "
|
||||
|
|
@ -7108,9 +7124,12 @@ msgstr "Запитувати завжди"
|
|||
msgid "Load Geometry Only"
|
||||
msgstr "Завантажити Тільки Геометрію"
|
||||
|
||||
msgid "Load Behaviour"
|
||||
msgid "Load behaviour"
|
||||
msgstr "Поведінка завантаження"
|
||||
|
||||
msgid "Behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
msgstr ""
|
||||
"Чи повинні бути завантажені налаштування принтера/філаменту/процесу при "
|
||||
|
|
@ -7122,16 +7141,16 @@ msgstr ""
|
|||
msgid "Maximum count of recent files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add model files (stl/step) to recent file list."
|
||||
msgid "Add STL/STEP files to recent files list"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clear my choice on the unsaved projects."
|
||||
msgstr "Очистити мій вибір для незбережених проектів."
|
||||
|
||||
msgid "No warnings when loading 3MF with modified G-code"
|
||||
msgid "Don't warn when loading 3MF with modified G-code"
|
||||
msgstr "Немає попереджень при завантаженні файлу 3MF із зміненими G-кодами"
|
||||
|
||||
msgid "Auto-Backup"
|
||||
msgid "Auto backup"
|
||||
msgstr "Автобекап"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -7149,10 +7168,13 @@ msgstr "Період резервного копіювання в секунда
|
|||
msgid "Downloads"
|
||||
msgstr "Завантаження"
|
||||
|
||||
msgid "Downloads folder"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dark Mode"
|
||||
msgstr "Темний режим"
|
||||
|
||||
msgid "Enable Dark mode"
|
||||
msgid "Enable dark mode"
|
||||
msgstr "Увімкнути темний режим"
|
||||
|
||||
msgid "Develop mode"
|
||||
|
|
@ -8972,12 +8994,12 @@ msgstr "Показати список клавіш"
|
|||
msgid "Global shortcuts"
|
||||
msgstr "Глобальні ярлики"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "Повернути вигляд"
|
||||
|
||||
msgid "Pan View"
|
||||
msgstr "Панорамний вигляд"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "Повернути вигляд"
|
||||
|
||||
msgid "Zoom View"
|
||||
msgstr "Перегляд масштабу"
|
||||
|
||||
|
|
@ -17381,6 +17403,9 @@ msgstr "Видалити початкові об'єкти"
|
|||
msgid "Network Test"
|
||||
msgstr "Тест мережі"
|
||||
|
||||
msgid "Network test"
|
||||
msgstr "Тест мережі"
|
||||
|
||||
msgid "Start Test Multi-Thread"
|
||||
msgstr "Розпочати тестування багатопотоково"
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Slic3rPE\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 21:06+0800\n"
|
||||
"POT-Creation-Date: 2025-09-28 18:44+0800\n"
|
||||
"PO-Revision-Date: 2024-07-28 07:12+0000\n"
|
||||
"Last-Translator: Handle <mail@bysb.net>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -6001,6 +6001,19 @@ msgstr "该3mf文件不是来自Orca Slicer,将只加载几何数据。"
|
|||
msgid "Load 3mf"
|
||||
msgstr "加载3mf"
|
||||
|
||||
msgid ""
|
||||
"This project was created with an OrcaSlicer 2.3.1-alpha and uses infill "
|
||||
"rotation template settings that may not work properly with your current "
|
||||
"infill pattern. This could result in weak support or print quality issues."
|
||||
msgstr ""
|
||||
"该项目由 OrcaSlicer 2.3.1-alpha 创建,并使用了填充旋转模板设置,这些设置可能"
|
||||
"无法与您当前的填充模式正常配合,可能导致支撑不足或打印质量问题。"
|
||||
|
||||
msgid ""
|
||||
"Would you like OrcaSlicer to automatically fix this by clearing the rotation "
|
||||
"template settings?"
|
||||
msgstr "您是否希望 OrcaSlicer 清除旋转模板设置以自动修复此问题?"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"The 3mf's version %s is newer than %s's version %s, found following "
|
||||
|
|
@ -6532,10 +6545,10 @@ msgstr "北美"
|
|||
msgid "Others"
|
||||
msgstr "其他"
|
||||
|
||||
msgid "Login Region"
|
||||
msgid "Login region"
|
||||
msgstr "登录区域"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgid "Stealth mode"
|
||||
msgstr "局域网模式"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6545,11 +6558,14 @@ msgstr ""
|
|||
"停止向拓竹科技服务器发送数据。如果您不使用Bambu Lab的打印机或仅使用局域网模"
|
||||
"式,则可以安全地启用此功能。"
|
||||
|
||||
msgid "Network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr "启用网络插件"
|
||||
|
||||
msgid "Use legacy network plugin (Takes effect after restarting Orca)"
|
||||
msgstr "使用旧版网络插件(重启Orca后生效)"
|
||||
msgid "Use legacy network plugin"
|
||||
msgstr "使用旧版网络插件"
|
||||
|
||||
msgid ""
|
||||
"Disable to use latest network plugin that supports new BambuLab firmwares."
|
||||
|
|
@ -6589,7 +6605,7 @@ msgstr ""
|
|||
msgid "Home"
|
||||
msgstr "首页"
|
||||
|
||||
msgid "Default Page"
|
||||
msgid "Default page"
|
||||
msgstr "起始页"
|
||||
|
||||
msgid "Set the page opened on startup."
|
||||
|
|
@ -6676,15 +6692,18 @@ msgid ""
|
|||
"each printer automatically."
|
||||
msgstr "如果启用,Orca会自动记录并切换您不同打印机之间的耗材配置与打印参数。"
|
||||
|
||||
msgid "Show the step mesh parameter setting dialog."
|
||||
msgid "Show options when importing STEP file"
|
||||
msgstr "显示STEP网格参数设置对话框"
|
||||
|
||||
msgid ""
|
||||
"If enabled,a parameter settings dialog will appear during STEP file import."
|
||||
msgstr "如果启用,在导入STEP文件时将出现参数设置对话框"
|
||||
|
||||
msgid "Multi-device Management (Take effect after restarting Orca Slicer)."
|
||||
msgstr "多设备管理 (重启Orca后生效)"
|
||||
msgid "Multi device management"
|
||||
msgstr "多设备管理"
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"With this option enabled, you can send a task to multiple devices at the "
|
||||
|
|
@ -6754,9 +6773,12 @@ msgstr "总是提问"
|
|||
msgid "Load Geometry Only"
|
||||
msgstr "仅加载几何形状"
|
||||
|
||||
msgid "Load Behaviour"
|
||||
msgid "Load behaviour"
|
||||
msgstr "加载 交互项"
|
||||
|
||||
msgid "Behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
msgstr "printter/filament/process 设置项文件能否以 .3mf后缀方式打开"
|
||||
|
||||
|
|
@ -6766,16 +6788,16 @@ msgstr "最大最近使用文件数"
|
|||
msgid "Maximum count of recent files"
|
||||
msgstr "最近使用文件的最大数量"
|
||||
|
||||
msgid "Add model files (stl/step) to recent file list."
|
||||
msgstr "添加模型文件(stl/step)到最近文件列表"
|
||||
msgid "Add STL/STEP files to recent files list"
|
||||
msgstr "添加模型文件 STL/STEP 到最近文件列表"
|
||||
|
||||
msgid "Clear my choice on the unsaved projects."
|
||||
msgstr "清除我对未保存的项目的选择。"
|
||||
|
||||
msgid "No warnings when loading 3MF with modified G-code"
|
||||
msgid "Don't warn when loading 3MF with modified G-code"
|
||||
msgstr "加载具有修改的 G-Code 的 3MF 时不会出现警告"
|
||||
|
||||
msgid "Auto-Backup"
|
||||
msgid "Auto backup"
|
||||
msgstr "自动备份"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6791,10 +6813,13 @@ msgstr "备份的周期"
|
|||
msgid "Downloads"
|
||||
msgstr "下载"
|
||||
|
||||
msgid "Downloads folder"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dark Mode"
|
||||
msgstr "深色模式"
|
||||
|
||||
msgid "Enable Dark mode"
|
||||
msgid "Enable dark mode"
|
||||
msgstr "启用深色模式"
|
||||
|
||||
msgid "Develop mode"
|
||||
|
|
@ -8503,12 +8528,12 @@ msgstr "显示键盘快捷键列表"
|
|||
msgid "Global shortcuts"
|
||||
msgstr "全局快捷键"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "旋转视角"
|
||||
|
||||
msgid "Pan View"
|
||||
msgstr "移动视角"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "旋转视角"
|
||||
|
||||
msgid "Zoom View"
|
||||
msgstr "缩放视角"
|
||||
|
||||
|
|
@ -15963,6 +15988,9 @@ msgstr "删除输入"
|
|||
msgid "Network Test"
|
||||
msgstr "网络测试"
|
||||
|
||||
msgid "Network test"
|
||||
msgstr "网络测试"
|
||||
|
||||
msgid "Start Test Multi-Thread"
|
||||
msgstr "多线程开始测试"
|
||||
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 21:06+0800\n"
|
||||
"POT-Creation-Date: 2025-09-28 18:44+0800\n"
|
||||
"PO-Revision-Date: 2025-03-27 19:32+0800\n"
|
||||
"Last-Translator: 5idereal <hi@5idereal.cc>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -6017,6 +6017,17 @@ msgstr "該 3mf 檔案不是來自 Orca Slicer,將只載入幾何資料。"
|
|||
msgid "Load 3mf"
|
||||
msgstr "載入 3mf"
|
||||
|
||||
msgid ""
|
||||
"This project was created with an OrcaSlicer 2.3.1-alpha and uses infill "
|
||||
"rotation template settings that may not work properly with your current "
|
||||
"infill pattern. This could result in weak support or print quality issues."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Would you like OrcaSlicer to automatically fix this by clearing the rotation "
|
||||
"template settings?"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"The 3mf's version %s is newer than %s's version %s, found following "
|
||||
|
|
@ -6549,10 +6560,10 @@ msgstr "北美"
|
|||
msgid "Others"
|
||||
msgstr "其他"
|
||||
|
||||
msgid "Login Region"
|
||||
msgid "Login region"
|
||||
msgstr "登入區域"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgid "Stealth mode"
|
||||
msgstr "區域網路模式"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6562,11 +6573,14 @@ msgstr ""
|
|||
"這會停止資料傳輸到 Bambu 的雲端服務。使用者如果不使用 Bambu 機台或僅使用區域"
|
||||
"網路模式,可以安全地啟用此功能。"
|
||||
|
||||
msgid "Network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr "啟用網路外掛程式"
|
||||
|
||||
msgid "Use legacy network plugin (Takes effect after restarting Orca)"
|
||||
msgstr "使用舊版網路外掛(重新啟動 Orca 後生效)"
|
||||
msgid "Use legacy network plugin"
|
||||
msgstr "使用舊版網路外掛"
|
||||
|
||||
msgid ""
|
||||
"Disable to use latest network plugin that supports new BambuLab firmwares."
|
||||
|
|
@ -6606,7 +6620,7 @@ msgstr ""
|
|||
msgid "Home"
|
||||
msgstr "首頁"
|
||||
|
||||
msgid "Default Page"
|
||||
msgid "Default page"
|
||||
msgstr "預設頁面"
|
||||
|
||||
msgid "Set the page opened on startup."
|
||||
|
|
@ -6693,15 +6707,18 @@ msgid ""
|
|||
"each printer automatically."
|
||||
msgstr "啟用後,Orca 會記住且自動切換各機臺線材與列印設定。"
|
||||
|
||||
msgid "Show the step mesh parameter setting dialog."
|
||||
msgid "Show options when importing STEP file"
|
||||
msgstr "顯示 STEP 網格參數設定視窗。"
|
||||
|
||||
msgid ""
|
||||
"If enabled,a parameter settings dialog will appear during STEP file import."
|
||||
msgstr "啟用後,匯入 STEP 檔案時會顯示參數設定視窗。"
|
||||
|
||||
msgid "Multi-device Management (Take effect after restarting Orca Slicer)."
|
||||
msgstr "多臺設備管理 (需重開 Orca)"
|
||||
msgid "Multi device management"
|
||||
msgstr "多臺設備管理"
|
||||
|
||||
msgid "(Requires restart)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"With this option enabled, you can send a task to multiple devices at the "
|
||||
|
|
@ -6771,9 +6788,12 @@ msgstr "總是詢問"
|
|||
msgid "Load Geometry Only"
|
||||
msgstr "僅載入幾何資料"
|
||||
|
||||
msgid "Load Behaviour"
|
||||
msgid "Load behaviour"
|
||||
msgstr "載入方式"
|
||||
|
||||
msgid "Behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
msgstr "開啟 .3mf 檔案時,是否需要載入印表機、線材和參數設定?"
|
||||
|
||||
|
|
@ -6783,16 +6803,16 @@ msgstr ""
|
|||
msgid "Maximum count of recent files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add model files (stl/step) to recent file list."
|
||||
msgid "Add STL/STEP files to recent files list"
|
||||
msgstr ""
|
||||
|
||||
msgid "Clear my choice on the unsaved projects."
|
||||
msgstr "清除我對未儲存專案項目的選擇。"
|
||||
|
||||
msgid "No warnings when loading 3MF with modified G-code"
|
||||
msgid "Don't warn when loading 3MF with modified G-code"
|
||||
msgstr "載入包含修改過 G-code 的 3MF 時不顯示警告"
|
||||
|
||||
msgid "Auto-Backup"
|
||||
msgid "Auto backup"
|
||||
msgstr "自動備份"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -6808,10 +6828,13 @@ msgstr "備份的週期。"
|
|||
msgid "Downloads"
|
||||
msgstr "下載"
|
||||
|
||||
msgid "Downloads folder"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dark Mode"
|
||||
msgstr "深色模式"
|
||||
|
||||
msgid "Enable Dark mode"
|
||||
msgid "Enable dark mode"
|
||||
msgstr "啟用深色模式"
|
||||
|
||||
msgid "Develop mode"
|
||||
|
|
@ -8525,12 +8548,12 @@ msgstr "顯示鍵盤快捷鍵清單"
|
|||
msgid "Global shortcuts"
|
||||
msgstr "全域快捷鍵"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "旋轉視角"
|
||||
|
||||
msgid "Pan View"
|
||||
msgstr "移動視角"
|
||||
|
||||
msgid "Rotate View"
|
||||
msgstr "旋轉視角"
|
||||
|
||||
msgid "Zoom View"
|
||||
msgstr "縮放視角"
|
||||
|
||||
|
|
@ -16133,6 +16156,9 @@ msgstr "刪除輸入"
|
|||
msgid "Network Test"
|
||||
msgstr "網路測試"
|
||||
|
||||
msgid "Network test"
|
||||
msgstr "網路測試"
|
||||
|
||||
msgid "Start Test Multi-Thread"
|
||||
msgstr "啟動多執行緒測試"
|
||||
|
||||
|
|
|
|||
1
resources/images/loop.svg
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><svg id="a" xmlns="http://www.w3.org/2000/svg" width="5.64mm" height="5.64mm" viewBox="0 0 16 16"><polyline points=".5 13.5 4 13.5 4 10" style="fill:none; stroke:gray; stroke-linecap:round; stroke-linejoin:round;"/><polyline points="14.5 1.5 11 1.5 11 5" style="fill:none; stroke:gray; stroke-linecap:round; stroke-linejoin:round;"/><path d="M11.45,1.72c2.83,1.93,3.89,5.69,2.34,8.86-1.21,2.48-3.7,3.92-6.29,3.92" style="fill:none; stroke:gray; stroke-linecap:round; stroke-linejoin:round;"/><path d="M3.56,13.28C.72,11.36-.34,7.59,1.21,4.42,2.43,1.94,4.91.5,7.5.5" style="fill:none; stroke:gray; stroke-linecap:round; stroke-linejoin:round;"/></svg>
|
||||
|
After Width: | Height: | Size: 688 B |
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Afinia",
|
||||
"version": "02.03.01.01",
|
||||
"version": "02.03.01.10",
|
||||
"force_update": "0",
|
||||
"description": "Afinia configurations",
|
||||
"machine_model_list": [
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Anker",
|
||||
"version": "02.03.01.00",
|
||||
"version": "02.03.01.10",
|
||||
"force_update": "0",
|
||||
"description": "Anker configurations",
|
||||
"machine_model_list": [
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Anycubic",
|
||||
"version": "02.03.01.00",
|
||||
"version": "02.03.01.10",
|
||||
"force_update": "0",
|
||||
"description": "Anycubic configurations",
|
||||
"machine_model_list": [
|
||||
|
|
|
|||
|
|
@ -36,21 +36,15 @@
|
|||
"bed_custom_texture": "",
|
||||
"bed_exclude_area": [
|
||||
"0x0",
|
||||
"2.5x0",
|
||||
"2.5x255",
|
||||
"0x255",
|
||||
"0x255",
|
||||
"255x255",
|
||||
"255x252.5",
|
||||
"0x252.5",
|
||||
"255x255",
|
||||
"252.5x255",
|
||||
"252.5x0",
|
||||
"255x0",
|
||||
"255x255",
|
||||
"0x255",
|
||||
"0x0",
|
||||
"0x2.5",
|
||||
"255x2.5",
|
||||
"255x0"
|
||||
"2x2",
|
||||
"2x253",
|
||||
"253x253",
|
||||
"253x2",
|
||||
"2x2"
|
||||
],
|
||||
"bed_mesh_max": "0,0",
|
||||
"bed_mesh_min": "0,0",
|
||||
|
|
|
|||
|
|
@ -36,21 +36,15 @@
|
|||
"bed_custom_texture": "",
|
||||
"bed_exclude_area": [
|
||||
"0x0",
|
||||
"2.5x0",
|
||||
"2.5x255",
|
||||
"0x255",
|
||||
"0x255",
|
||||
"255x255",
|
||||
"255x252.5",
|
||||
"0x252.5",
|
||||
"255x255",
|
||||
"252.5x255",
|
||||
"252.5x0",
|
||||
"255x0",
|
||||
"255x255",
|
||||
"0x255",
|
||||
"0x0",
|
||||
"0x2.5",
|
||||
"255x2.5",
|
||||
"255x0"
|
||||
"2x2",
|
||||
"2x253",
|
||||
"253x253",
|
||||
"253x2",
|
||||
"2x2"
|
||||
],
|
||||
"bed_mesh_max": "0,0",
|
||||
"bed_mesh_min": "0,0",
|
||||
|
|
|
|||
|
|
@ -36,21 +36,15 @@
|
|||
"bed_custom_texture": "",
|
||||
"bed_exclude_area": [
|
||||
"0x0",
|
||||
"2.5x0",
|
||||
"2.5x255",
|
||||
"0x255",
|
||||
"0x255",
|
||||
"255x255",
|
||||
"255x252.5",
|
||||
"0x252.5",
|
||||
"255x255",
|
||||
"252.5x255",
|
||||
"252.5x0",
|
||||
"255x0",
|
||||
"255x255",
|
||||
"0x255",
|
||||
"0x0",
|
||||
"0x2.5",
|
||||
"255x2.5",
|
||||
"255x0"
|
||||
"2x2",
|
||||
"2x253",
|
||||
"253x253",
|
||||
"253x2",
|
||||
"2x2"
|
||||
],
|
||||
"bed_mesh_max": "0,0",
|
||||
"bed_mesh_min": "0,0",
|
||||
|
|
|
|||
|
|
@ -36,21 +36,15 @@
|
|||
"bed_custom_texture": "",
|
||||
"bed_exclude_area": [
|
||||
"0x0",
|
||||
"2.5x0",
|
||||
"2.5x255",
|
||||
"0x255",
|
||||
"0x255",
|
||||
"255x255",
|
||||
"255x252.5",
|
||||
"0x252.5",
|
||||
"255x255",
|
||||
"252.5x255",
|
||||
"252.5x0",
|
||||
"255x0",
|
||||
"255x255",
|
||||
"0x255",
|
||||
"0x0",
|
||||
"0x2.5",
|
||||
"255x2.5",
|
||||
"255x0"
|
||||
"2x2",
|
||||
"2x253",
|
||||
"253x253",
|
||||
"253x2",
|
||||
"2x2"
|
||||
],
|
||||
"bed_mesh_max": "0,0",
|
||||
"bed_mesh_min": "0,0",
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@
|
|||
"internal_solid_infill_line_width": "0.42",
|
||||
"internal_solid_infill_pattern": "zig-zag",
|
||||
"internal_solid_infill_speed": "200",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.1",
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@
|
|||
"internal_solid_infill_line_width": "0.22",
|
||||
"internal_solid_infill_pattern": "zig-zag",
|
||||
"internal_solid_infill_speed": "120",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.1",
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@
|
|||
"internal_solid_infill_line_width": "0.42",
|
||||
"internal_solid_infill_pattern": "zig-zag",
|
||||
"internal_solid_infill_speed": "200",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.1",
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@
|
|||
"internal_solid_infill_line_width": "0.42",
|
||||
"internal_solid_infill_pattern": "monotonic",
|
||||
"internal_solid_infill_speed": "240",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "10%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.15",
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@
|
|||
"internal_solid_infill_line_width": "0.42",
|
||||
"internal_solid_infill_pattern": "zig-zag",
|
||||
"internal_solid_infill_speed": "150",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.1",
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@
|
|||
"internal_solid_infill_line_width": "0.42",
|
||||
"internal_solid_infill_pattern": "monotonic",
|
||||
"internal_solid_infill_speed": "130",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "10%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.15",
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@
|
|||
"internal_solid_infill_line_width": "0.42",
|
||||
"internal_solid_infill_pattern": "zig-zag",
|
||||
"internal_solid_infill_speed": "100",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.1",
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@
|
|||
"internal_solid_infill_line_width": "0.42",
|
||||
"internal_solid_infill_pattern": "monotonic",
|
||||
"internal_solid_infill_speed": "130",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "10%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.15",
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@
|
|||
"internal_solid_infill_line_width": "0.42",
|
||||
"internal_solid_infill_pattern": "monotonic",
|
||||
"internal_solid_infill_speed": "130",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "10%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.15",
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@
|
|||
"internal_solid_infill_line_width": "0.42",
|
||||
"internal_solid_infill_pattern": "zig-zag",
|
||||
"internal_solid_infill_speed": "130",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.1",
|
||||
|
|
|
|||
|
|
@ -90,7 +90,7 @@
|
|||
"internal_solid_infill_line_width": "0.42",
|
||||
"internal_solid_infill_pattern": "monotonic",
|
||||
"internal_solid_infill_speed": "250",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "10%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.15",
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@
|
|||
"internal_solid_infill_line_width": "0.45",
|
||||
"internal_solid_infill_pattern": "zig-zag",
|
||||
"internal_solid_infill_speed": "200",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.1",
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@
|
|||
"internal_solid_infill_line_width": "0.42",
|
||||
"internal_solid_infill_pattern": "monotonic",
|
||||
"internal_solid_infill_speed": "120",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "10%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.15",
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@
|
|||
"internal_solid_infill_line_width": "0.42",
|
||||
"internal_solid_infill_pattern": "zig-zag",
|
||||
"internal_solid_infill_speed": "180",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.1",
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@
|
|||
"internal_solid_infill_line_width": "0.62",
|
||||
"internal_solid_infill_pattern": "monotonic",
|
||||
"internal_solid_infill_speed": "150",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.1",
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@
|
|||
"internal_solid_infill_line_width": "0.82",
|
||||
"internal_solid_infill_pattern": "zig-zag",
|
||||
"internal_solid_infill_speed": "150",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.1",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Artillery",
|
||||
"version": "02.03.01.00",
|
||||
"version": "02.03.01.10",
|
||||
"force_update": "0",
|
||||
"description": "Artillery configurations",
|
||||
"machine_model_list": [
|
||||
|
|
|
|||
|
|
@ -101,7 +101,7 @@
|
|||
"internal_solid_infill_acceleration": "100%",
|
||||
"internal_solid_infill_pattern": "monotonic",
|
||||
"internal_solid_infill_speed": "300",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.1",
|
||||
|
|
|
|||
|
|
@ -93,7 +93,7 @@
|
|||
"internal_solid_infill_line_width": "0.22",
|
||||
"internal_solid_infill_pattern": "zig-zag",
|
||||
"internal_solid_infill_speed": "150",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.1",
|
||||
|
|
|
|||
|
|
@ -98,7 +98,7 @@
|
|||
"internal_bridge_speed": "150%",
|
||||
"internal_solid_infill_acceleration": "100%",
|
||||
"internal_solid_infill_pattern": "monotonic",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.1",
|
||||
|
|
|
|||
|
|
@ -99,7 +99,7 @@
|
|||
"internal_solid_infill_acceleration": "100%",
|
||||
"internal_solid_infill_pattern": "monotonic",
|
||||
"internal_solid_infill_speed": "300",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.1",
|
||||
|
|
|
|||
|
|
@ -99,7 +99,7 @@
|
|||
"internal_bridge_speed": "150%",
|
||||
"internal_solid_infill_acceleration": "100%",
|
||||
"internal_solid_infill_pattern": "monotonic",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.1",
|
||||
|
|
|
|||
|
|
@ -100,7 +100,7 @@
|
|||
"internal_bridge_speed": "150%",
|
||||
"internal_solid_infill_acceleration": "100%",
|
||||
"internal_solid_infill_pattern": "monotonic",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.1",
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@
|
|||
"internal_bridge_speed": "150%",
|
||||
"internal_solid_infill_acceleration": "100%",
|
||||
"internal_solid_infill_pattern": "monotonic",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.1",
|
||||
|
|
|
|||
|
|
@ -103,7 +103,7 @@
|
|||
"internal_solid_infill_line_width": "0.42",
|
||||
"internal_solid_infill_pattern": "monotonic",
|
||||
"internal_solid_infill_speed": "250",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.1",
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@
|
|||
"internal_solid_infill_line_width": "0.42",
|
||||
"internal_solid_infill_pattern": "monotonic",
|
||||
"internal_solid_infill_speed": "150",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.1",
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@
|
|||
"internal_solid_infill_line_width": "0.42",
|
||||
"internal_solid_infill_pattern": "monotonic",
|
||||
"internal_solid_infill_speed": "150",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.1",
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@
|
|||
"internal_solid_infill_line_width": "0.42",
|
||||
"internal_solid_infill_pattern": "monotonic",
|
||||
"internal_solid_infill_speed": "300",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.1",
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@
|
|||
"internal_solid_infill_line_width": "0.42",
|
||||
"internal_solid_infill_pattern": "monotonic",
|
||||
"internal_solid_infill_speed": "300",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.1",
|
||||
|
|
|
|||
|
|
@ -98,7 +98,7 @@
|
|||
"internal_solid_infill_line_width": "0.42",
|
||||
"internal_solid_infill_pattern": "monotonic",
|
||||
"internal_solid_infill_speed": "300",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.1",
|
||||
|
|
|
|||
|
|
@ -96,7 +96,7 @@
|
|||
"internal_solid_infill_line_width": "0.42",
|
||||
"internal_solid_infill_pattern": "monotonic",
|
||||
"internal_solid_infill_speed": "300",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.1",
|
||||
|
|
|
|||
|
|
@ -93,7 +93,7 @@
|
|||
"internal_solid_infill_line_width": "0.62",
|
||||
"internal_solid_infill_pattern": "monotonic",
|
||||
"internal_solid_infill_speed": "150",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.1",
|
||||
|
|
|
|||
|
|
@ -93,7 +93,7 @@
|
|||
"internal_solid_infill_line_width": "0.82",
|
||||
"internal_solid_infill_pattern": "monotonic",
|
||||
"internal_solid_infill_speed": "150",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.1",
|
||||
|
|
|
|||
|
|
@ -99,7 +99,7 @@
|
|||
"internal_solid_infill_line_width": "0.42",
|
||||
"internal_solid_infill_pattern": "monotonic",
|
||||
"internal_solid_infill_speed": "300",
|
||||
"ironing_angle": "-1",
|
||||
"ironing_angle": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_pattern": "zig-zag",
|
||||
"ironing_spacing": "0.1",
|
||||
|
|
|
|||
|
|
@ -6,16 +6,12 @@
|
|||
"description": "the initial version of BBL configurations",
|
||||
"machine_model_list": [
|
||||
{
|
||||
"name": "Bambu Lab X1 Carbon",
|
||||
"sub_path": "machine/Bambu Lab X1 Carbon.json"
|
||||
"name": "Bambu Lab A1",
|
||||
"sub_path": "machine/Bambu Lab A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab X1",
|
||||
"sub_path": "machine/Bambu Lab X1.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab X1E",
|
||||
"sub_path": "machine/Bambu Lab X1E.json"
|
||||
"name": "Bambu Lab A1 mini",
|
||||
"sub_path": "machine/Bambu Lab A1 mini.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab P1P",
|
||||
|
|
@ -26,12 +22,16 @@
|
|||
"sub_path": "machine/Bambu Lab P1S.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab A1 mini",
|
||||
"sub_path": "machine/Bambu Lab A1 mini.json"
|
||||
"name": "Bambu Lab X1",
|
||||
"sub_path": "machine/Bambu Lab X1.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab A1",
|
||||
"sub_path": "machine/Bambu Lab A1.json"
|
||||
"name": "Bambu Lab X1 Carbon",
|
||||
"sub_path": "machine/Bambu Lab X1 Carbon.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab X1E",
|
||||
"sub_path": "machine/Bambu Lab X1E.json"
|
||||
}
|
||||
],
|
||||
"process_list": [
|
||||
|
|
@ -605,10 +605,82 @@
|
|||
}
|
||||
],
|
||||
"filament_list": [
|
||||
{
|
||||
"name": "COEX PCTG PRIME @BBL X1C",
|
||||
"sub_path": "filament/COEX/COEX PCTG PRIME @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PCTG PRIME @BBL X1C 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX PCTG PRIME @BBL X1C 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PCTG PRIME @BBL X1C 0.8 nozzle",
|
||||
"sub_path": "filament/COEX/COEX PCTG PRIME @BBL X1C 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PETG @BBL X1C",
|
||||
"sub_path": "filament/COEX/COEX PETG @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PETG @BBL X1C 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX PETG @BBL X1C 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PETG @BBL X1C 0.8 nozzle",
|
||||
"sub_path": "filament/COEX/COEX PETG @BBL X1C 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PLA @BBL A1M",
|
||||
"sub_path": "filament/COEX/COEX PLA @BBL A1M.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PLA @BBL P1P",
|
||||
"sub_path": "filament/COEX/COEX PLA @BBL P1P.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PLA @BBL X1C",
|
||||
"sub_path": "filament/COEX/COEX PLA @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_common",
|
||||
"sub_path": "filament/fdm_filament_common.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PCTG PRIME @BBL A1M 0.4 nozzle",
|
||||
"sub_path": "filament/COEX/COEX PCTG PRIME @BBL A1M.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PCTG PRIME @BBL A1M 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX PCTG PRIME @BBL A1M 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PCTG PRIME @BBL A1M 0.8 nozzle",
|
||||
"sub_path": "filament/COEX/COEX PCTG PRIME @BBL A1M 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PETG @BBL A1M 0.4 nozzle",
|
||||
"sub_path": "filament/COEX/COEX PETG @BBL A1M.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PETG @BBL A1M 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX PETG @BBL A1M 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PETG @BBL A1M 0.8 nozzle",
|
||||
"sub_path": "filament/COEX/COEX PETG @BBL A1M 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PLA @BBL A1M 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX PLA @BBL A1M 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PLA @BBL P1P 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX PLA @BBL P1P 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PLA @BBL X1C 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX PLA @BBL X1C 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "FusRock ABS-GF @base",
|
||||
"sub_path": "filament/FusRock/FusRock ABS-GF @base.json"
|
||||
|
|
@ -4185,6 +4257,282 @@
|
|||
"name": "AliZ PLA @P1-X1",
|
||||
"sub_path": "filament/AliZ/AliZ PLA @P1-X1.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX ABS @BBL X1",
|
||||
"sub_path": "filament/COEX/COEX ABS @BBL X1.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX ABS @BBL X1 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX ABS @BBL X1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX ABS @BBL X1C",
|
||||
"sub_path": "filament/COEX/COEX ABS @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX ABS @BBL X1C 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX ABS @BBL X1C 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX ABS PRIME @BBL X1",
|
||||
"sub_path": "filament/COEX/COEX ABS PRIME @BBL X1.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX ABS PRIME @BBL X1 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX ABS PRIME @BBL X1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX ABS PRIME @BBL X1C",
|
||||
"sub_path": "filament/COEX/COEX ABS PRIME @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX ABS PRIME @BBL X1C 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX ABS PRIME @BBL X1C 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX ASA PRIME @BBL X1",
|
||||
"sub_path": "filament/COEX/COEX ASA PRIME @BBL X1.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX ASA PRIME @BBL X1 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX ASA PRIME @BBL X1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX ASA PRIME @BBL X1C",
|
||||
"sub_path": "filament/COEX/COEX ASA PRIME @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX ASA PRIME @BBL X1C 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX ASA PRIME @BBL X1C 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX NYLEX PA6-CF @BBL X1C",
|
||||
"sub_path": "filament/COEX/COEX NYLEX PA6-CF @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX NYLEX UNFILLED @BBL X1C",
|
||||
"sub_path": "filament/COEX/COEX NYLEX UNFILLED @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PCTG PRIME @BBL A1",
|
||||
"sub_path": "filament/COEX/COEX PCTG PRIME @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PCTG PRIME @BBL A1 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX PCTG PRIME @BBL A1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PCTG PRIME @BBL A1 0.8 nozzle",
|
||||
"sub_path": "filament/COEX/COEX PCTG PRIME @BBL A1 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PETG @BBL A1",
|
||||
"sub_path": "filament/COEX/COEX PETG @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PETG @BBL A1 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX PETG @BBL A1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PETG @BBL A1 0.8 nozzle",
|
||||
"sub_path": "filament/COEX/COEX PETG @BBL A1 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PLA @BBL A1",
|
||||
"sub_path": "filament/COEX/COEX PLA @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PLA @BBL A1 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX PLA @BBL A1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PLA @BBL X1",
|
||||
"sub_path": "filament/COEX/COEX PLA @BBL X1.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PLA PRIME @BBL A1",
|
||||
"sub_path": "filament/COEX/COEX PLA PRIME @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PLA PRIME @BBL A1 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX PLA PRIME @BBL A1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PLA PRIME @BBL A1M",
|
||||
"sub_path": "filament/COEX/COEX PLA PRIME @BBL A1M.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PLA PRIME @BBL A1M 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX PLA PRIME @BBL A1M 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PLA PRIME @BBL P1P",
|
||||
"sub_path": "filament/COEX/COEX PLA PRIME @BBL P1P.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PLA PRIME @BBL P1P 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX PLA PRIME @BBL P1P 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PLA PRIME @BBL X1",
|
||||
"sub_path": "filament/COEX/COEX PLA PRIME @BBL X1.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PLA PRIME @BBL X1 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX PLA PRIME @BBL X1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PLA PRIME @BBL X1C",
|
||||
"sub_path": "filament/COEX/COEX PLA PRIME @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PLA PRIME @BBL X1C 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX PLA PRIME @BBL X1C 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PLA+Silk @BBL A1",
|
||||
"sub_path": "filament/COEX/COEX PLA+Silk @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PLA+Silk @BBL A1 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX PLA+Silk @BBL A1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PLA+Silk @BBL A1M",
|
||||
"sub_path": "filament/COEX/COEX PLA+Silk @BBL A1M.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PLA+Silk @BBL A1M 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX PLA+Silk @BBL A1M 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PLA+Silk @BBL P1P",
|
||||
"sub_path": "filament/COEX/COEX PLA+Silk @BBL P1P.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PLA+Silk @BBL P1P 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX PLA+Silk @BBL P1P 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PLA+Silk @BBL X1",
|
||||
"sub_path": "filament/COEX/COEX PLA+Silk @BBL X1.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PLA+Silk @BBL X1 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX PLA+Silk @BBL X1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PLA+Silk @BBL X1C",
|
||||
"sub_path": "filament/COEX/COEX PLA+Silk @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX PLA+Silk @BBL X1C 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX PLA+Silk @BBL X1C 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX TPE 30D @BBL A1",
|
||||
"sub_path": "filament/COEX/COEX TPE 30D @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX TPE 30D @BBL A1M",
|
||||
"sub_path": "filament/COEX/COEX TPE 30D @BBL A1M.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX TPE 30D @BBL P1P",
|
||||
"sub_path": "filament/COEX/COEX TPE 30D @BBL P1P.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX TPE 30D @BBL X1",
|
||||
"sub_path": "filament/COEX/COEX TPE 30D @BBL X1.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX TPE 30D @BBL X1C",
|
||||
"sub_path": "filament/COEX/COEX TPE 30D @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX TPE 40D @BBL A1",
|
||||
"sub_path": "filament/COEX/COEX TPE 40D @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX TPE 40D @BBL A1 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX TPE 40D @BBL A1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX TPE 40D @BBL A1M",
|
||||
"sub_path": "filament/COEX/COEX TPE 40D @BBL A1M.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX TPE 40D @BBL A1M 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX TPE 40D @BBL A1M 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX TPE 40D @BBL P1P",
|
||||
"sub_path": "filament/COEX/COEX TPE 40D @BBL P1P.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX TPE 40D @BBL P1P 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX TPE 40D @BBL P1P 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX TPE 40D @BBL X1",
|
||||
"sub_path": "filament/COEX/COEX TPE 40D @BBL X1.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX TPE 40D @BBL X1 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX TPE 40D @BBL X1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX TPE 40D @BBL X1C",
|
||||
"sub_path": "filament/COEX/COEX TPE 40D @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX TPE 40D @BBL X1C 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX TPE 40D @BBL X1C 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX TPE 60D @BBL A1",
|
||||
"sub_path": "filament/COEX/COEX TPE 60D @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX TPE 60D @BBL A1 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX TPE 60D @BBL A1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX TPE 60D @BBL A1M",
|
||||
"sub_path": "filament/COEX/COEX TPE 60D @BBL A1M.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX TPE 60D @BBL A1M 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX TPE 60D @BBL A1M 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX TPE 60D @BBL P1P",
|
||||
"sub_path": "filament/COEX/COEX TPE 60D @BBL P1P.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX TPE 60D @BBL P1P 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX TPE 60D @BBL P1P 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX TPE 60D @BBL X1",
|
||||
"sub_path": "filament/COEX/COEX TPE 60D @BBL X1.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX TPE 60D @BBL X1 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX TPE 60D @BBL X1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX TPE 60D @BBL X1C",
|
||||
"sub_path": "filament/COEX/COEX TPE 60D @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX TPE 60D @BBL X1C 0.2 nozzle",
|
||||
"sub_path": "filament/COEX/COEX TPE 60D @BBL X1C 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "COEX TPU 60A @BBL X1C",
|
||||
"sub_path": "filament/COEX/COEX TPU 60A @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Overture ASA @BBL X1",
|
||||
"sub_path": "filament/Overture/Overture ASA @BBL X1.json"
|
||||
|
|
@ -4452,12 +4800,12 @@
|
|||
"sub_path": "machine/fdm_bbl_3dp_001_common.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"sub_path": "machine/Bambu Lab X1 Carbon 0.4 nozzle.json"
|
||||
"name": "Bambu Lab A1 0.4 nozzle",
|
||||
"sub_path": "machine/Bambu Lab A1 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab X1 0.4 nozzle",
|
||||
"sub_path": "machine/Bambu Lab X1 0.4 nozzle.json"
|
||||
"name": "Bambu Lab A1 mini 0.4 nozzle",
|
||||
"sub_path": "machine/Bambu Lab A1 mini 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab P1P 0.4 nozzle",
|
||||
|
|
@ -4468,40 +4816,40 @@
|
|||
"sub_path": "machine/Bambu Lab P1S 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab A1 mini 0.4 nozzle",
|
||||
"sub_path": "machine/Bambu Lab A1 mini 0.4 nozzle.json"
|
||||
"name": "Bambu Lab X1 0.4 nozzle",
|
||||
"sub_path": "machine/Bambu Lab X1 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"sub_path": "machine/Bambu Lab X1 Carbon 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab X1E 0.4 nozzle",
|
||||
"sub_path": "machine/Bambu Lab X1E 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab A1 0.4 nozzle",
|
||||
"sub_path": "machine/Bambu Lab A1 0.4 nozzle.json"
|
||||
"name": "Bambu Lab A1 0.2 nozzle",
|
||||
"sub_path": "machine/Bambu Lab A1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab X1 Carbon 0.2 nozzle",
|
||||
"sub_path": "machine/Bambu Lab X1 Carbon 0.2 nozzle.json"
|
||||
"name": "Bambu Lab A1 0.6 nozzle",
|
||||
"sub_path": "machine/Bambu Lab A1 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"sub_path": "machine/Bambu Lab X1 Carbon 0.6 nozzle.json"
|
||||
"name": "Bambu Lab A1 0.8 nozzle",
|
||||
"sub_path": "machine/Bambu Lab A1 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"sub_path": "machine/Bambu Lab X1 Carbon 0.8 nozzle.json"
|
||||
"name": "Bambu Lab A1 mini 0.2 nozzle",
|
||||
"sub_path": "machine/Bambu Lab A1 mini 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab X1 0.2 nozzle",
|
||||
"sub_path": "machine/Bambu Lab X1 0.2 nozzle.json"
|
||||
"name": "Bambu Lab A1 mini 0.6 nozzle",
|
||||
"sub_path": "machine/Bambu Lab A1 mini 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab X1 0.8 nozzle",
|
||||
"sub_path": "machine/Bambu Lab X1 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab X1 0.6 nozzle",
|
||||
"sub_path": "machine/Bambu Lab X1 0.6 nozzle.json"
|
||||
"name": "Bambu Lab A1 mini 0.8 nozzle",
|
||||
"sub_path": "machine/Bambu Lab A1 mini 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab P1P 0.2 nozzle",
|
||||
|
|
@ -4528,16 +4876,28 @@
|
|||
"sub_path": "machine/Bambu Lab P1S 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab A1 mini 0.2 nozzle",
|
||||
"sub_path": "machine/Bambu Lab A1 mini 0.2 nozzle.json"
|
||||
"name": "Bambu Lab X1 0.2 nozzle",
|
||||
"sub_path": "machine/Bambu Lab X1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab A1 mini 0.6 nozzle",
|
||||
"sub_path": "machine/Bambu Lab A1 mini 0.6 nozzle.json"
|
||||
"name": "Bambu Lab X1 0.6 nozzle",
|
||||
"sub_path": "machine/Bambu Lab X1 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab A1 mini 0.8 nozzle",
|
||||
"sub_path": "machine/Bambu Lab A1 mini 0.8 nozzle.json"
|
||||
"name": "Bambu Lab X1 0.8 nozzle",
|
||||
"sub_path": "machine/Bambu Lab X1 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab X1 Carbon 0.2 nozzle",
|
||||
"sub_path": "machine/Bambu Lab X1 Carbon 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"sub_path": "machine/Bambu Lab X1 Carbon 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"sub_path": "machine/Bambu Lab X1 Carbon 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab X1E 0.2 nozzle",
|
||||
|
|
@ -4550,18 +4910,6 @@
|
|||
{
|
||||
"name": "Bambu Lab X1E 0.8 nozzle",
|
||||
"sub_path": "machine/Bambu Lab X1E 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab A1 0.2 nozzle",
|
||||
"sub_path": "machine/Bambu Lab A1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab A1 0.6 nozzle",
|
||||
"sub_path": "machine/Bambu Lab A1 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Lab A1 0.8 nozzle",
|
||||
"sub_path": "machine/Bambu Lab A1 0.8 nozzle.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "COEX ABS @BBL X1 0.2 nozzle",
|
||||
"inherits": "COEX ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "CXABSB01_02",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 0.2 nozzle"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"1.6"
|
||||
]
|
||||
}
|
||||